/*fonts*/
.h1 {
    font-size: var(--font-size-h1);
    font-weight: var(--font-weight-medium);
    line-height: var(--line-height-h1);
}

.h2 {
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-medium);
    line-height: var(--line-height-h2);
}

.h3 {
    font-size: var(--font-size-h3);
    font-weight: var(--font-weight-medium);
    line-height: var(--line-height-h3);
}

.h4 {
    font-size: var(--font-size-h4);
    font-weight: var(--font-weight-medium);
    line-height: var(--line-height-h4);
}
.text_body {
    font-size: var(--font-size-body);
    font-weight: var(--font-weight-regular);
    line-height: var(--line-height-body);
}

.price {
    font-size: var(--font-size-price);
    font-weight: var(--font-weight-medium);
    line-height: var(--line-height-price);
}

.caption-big {
    font-size: var(--font-size-caption-big);
    font-weight: var(--font-weight-regular);
    line-height: var(--line-height-caption-big);
}

.caption-small {
    font-size: var(--font-size-caption-small);
    font-weight: var(--font-weight-regular);
    line-height: var(--line-height-caption-small);
}

.text_link {
    font-size: var(--font-size-links);
    font-weight: var(--font-weight-medium);
    line-height: var(--line-height-links);
}

.descriptor {
    font-size: var(--font-size-descriptor);
    font-weight: var(--font-weight-regular);
    line-height: var(--line-height-descriptor);
}

/*cards*/


.opportunity_card {
    background-color: var(--main-light-blue);
    padding: 47px 42px 49px 42px;
    display: flex;
    flex-direction: row;
    gap: 30px;
    height: 100%;
    align-content: center;
    transition: all 0.3s;
}

    .opportunity_card:hover {
        box-shadow: var(--box-shadow-sm);
    }

.tariff_card {
    padding: 60px 0 60px 0;
    max-width: 400px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
   margin: 0 auto;
    width: 100%
}

.review_card {
    padding: 30px;
    background-color: #F4F4F4;
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
    text-align: left !important;
}

.review_card:hover {
   box-shadow: var(--box-shadow-sm)
}


/*buttons*/

.button__create-sm {
    cursor: pointer;
    text-align: center;
    
    
    background-color: var(--main-accent);
    padding: 8px 18px;
    
    line-height: var(--line-height-button);
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    border: none;
    color: var(--text-white-color);
    border-radius: 9px;
    display: block;
    transition: all 0.3s ease;
}

    .button__create-sm:hover {
        background-color: #F98971;
        color: var(--text-white-color);
    }


.button__create {
    cursor: pointer;
    text-align: center;
    min-width: 190px;
    height: 50px;
    background-color: var(--main-accent);
    padding: 15px 18px;
    font-size: var(--font-size-button);
    line-height: var(--line-height-button);
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    border: none;
    color: var(--text-white-color);
    border-radius: 9px;
    display: block;
    transition: all 0.3s ease;
}


    .button__create:hover {
        background-color: #F98971;
        color: var(--text-white-color);
    }


    .button__create:disabled {
        background-color: #FCD2C9;
    }


.button__sample {
    cursor: pointer;
    text-align: center;
    min-width: 190px;
    height: 50px;
    background-color: var(--text-white-color);
    padding: 15px 18px;
    font-size: var(--font-size-button);
    line-height: var(--line-height-button);
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    outline: 1px solid var(--main-light-grey) !important;
    color: var(--text-black-color);
    border-radius: 9px;
    border: none;
    transition: all 0.3s ease;
}

    .button__sample:hover {
        color: #F56748;
        outline: 1px solid #FA2D00 !important;
    }




@media screen and (max-width: 700px) {
   /* .h2 {
        font-size: var(--font-size-h3);
        font-weight: var(--font-weight-medium);
        line-height: var(--line-height-h3);
    }*/

}

@media screen and (max-width: 480px) {
    /*.h2 {
        font-size: var(--font-size-h3);
        font-weight: var(--font-weight-medium);
        line-height: var(--line-height-h3);
    }*/

    .info_card {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}





.exchange {
    background-color: rgba(243, 186, 47, 0.1);
    padding-top: 120px;
    text-align: center;
}

.exchange__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.exchange__title {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: center;
}

.exchange__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 600px;
    align-items: center;
}



    .exchange__btns {
        display:flex;
        justify-content:center;
        flex-direction:row;
        gap: 44px;
        align-items: center;
        margin-bottom: 50px;
    }



    
@media screen and (max-width: 480px) {
    .exchange__btns {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .exchange__info_wrapper{
        max-width:95%;
    }

}

@media screen and (min-width: 768px){
    .exchange__info_wrapper {
        max-width: 50%;
        margin: 50px auto;
        padding: 10px 10px;
    }

    .tariff_card_details {
       
        padding: 50px 40px !important;
        
    }
}


.exchange__info {
    background-color: var(--background-color);
    padding-top: 40px;
    padding-bottom: 80px;
    text-align: center;
}

    .exchange__info_wrapper {
        display: flex;
        flex-direction: column;
        align-content: center;
        justify-content:center;
        gap: 10px;
        text-align: center;
        margin: 50px auto;
        padding: 10px 0px;
    }

    .exchange__info_h4 {
        padding-bottom: 24px;
    }

    .exchange__info_body {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .exchange__card {
    }

    .exchange__cards_wrapper {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }


.tariff_section {
    padding-top: 150px;
    padding-bottom: 70px;
}

.tariff_section__wrapper {
    display: grid;
    grid-template-columns: 447px 1fr;
    gap: 30px;
}

.tariff_card_details {

    display: flex;
    align-items: center;
    padding: 50px 10px;
    gap: 40px;
    height: 100%;
    background-color: #F4F4F4;
    border-radius: 12px;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}
    .tariff_card_details:hover {
        box-shadow: var(--box-shadow-sm)
    }

    .tariff_card_details a {
        color: var(--text-black-color);
        text-decoration:underline;
    }

    .tariff_card_details .text_body {
        font-size:18px !important;
    }

.tariff_card_details__title {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.tariff_card_details__body {
    
    display: flex;
    
    
}

.tariff_card_details__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.tariff_card_section {
    margin: 128px 12px 4px 6px;
}

.tariff_card_center {
    text-align: center;
}

.tariff_card_details__desc {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    
}



/* news */

.news {
    padding-top: 40px;
    padding-bottom: 80px;
    background-color: var(--background-color);
}


.news_wrapper {
    display: grid;
    grid-template-columns: 384px 1fr;
    gap: 30px;
}

.news_title {
    display: flex;
    flex-direction: column;
}

.news_title__h3 {
    padding-bottom: 11px;
}

.news_title__body {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news_card__body {
    display: flex;
    flex-direction: column;
    
}

.news_span {
    color: var(--main-light-grey);
}

.news_body {
    display: grid;
    grid-template-columns: repeat(2, 477px);
    gap: 30px;
}

.news_body__h2 {
    text-align: center;
    padding-bottom: 20px;
}

.news_body__card {
    background-color: white;
    display: flex;
    padding: 0;
    flex-direction: column;    
    align-items: flex-start;
    margin: 10px 0;
    transition: all .3s;
    height: 100%;
}

    .news_body__card:hover {
        box-shadow: var(--box-shadow-value)
    }

    .news_body__card a {
        display: block;
        width: 100%;
        color: var(--text-black-color)
    }

    .news_body__card a:hover {
       
        color: var(--text-gray-color)
    }

.news_body__card  img{
    width: 100%
}

.news_body__card_info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    padding: 20px 10px 10px 10px;
}


.news_card {
    background-color: var(--text-white-color);
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
    max-width: 384px;
    padding: 20px 16px 20px 16px;
    
    box-shadow: var(--box-shadow-sm)
}

 a{
    color : var(--text-black-color);
}

 a:hover{
    color : var(--text-gray-color);
}
