:root {
    /* main colors*/
    --main-dark--blue: #081344;
    --main-light-blue: #F0F5FA;
    --main-light-grey: #999BA0;
    --main-accent: #F67458;
    --background-color: #FAFAFA;
    /* text colors*/
    --text-black-color: #0B0F22;
    --text-gray-color: #4A4C55;
    --text-white-color: #FFFFFF;
    /*font sizes*/
    --font-size-h1: 80px;
    --font-size-h2: 44px;
    --font-size-price: 40px;
    --font-size-caption-big: 32px;
    --font-size-h3: 24px;
    --font-size-h4: 20px;
    --font-size-button: 17px;
    --font-size-body: 16px;
    --font-size-links: 16px;
    --font-size-caption-small: 14px;
    --font-size-descriptor: 12px;
    /*line-heights*/
    --line-height-h1: 80px;
    --line-height-h2: 48.8px;
    --line-height-price: 46.9px;
    --line-height-caption-big: 37.5px;
    --line-height-h3: 28.8px;
    --line-height-h4: 24px;
    --line-height-button: 20.4px;
    --line-height-body: 19.2px;
    --line-height-links: 19.2px;
    --line-height-caption-small: 16.8px;
    --line-height-descriptor: 14.4px;
    /*font weights*/
    --font-weight-bold: 700;
    --font-weight-medium: 500;
    --font-weight-medium-600: 600;
    --font-weight-regular: 400;
    /**/
    --skeleton-gradient-color: linear-gradient(to right, #DDE2E5 0%, #E2E6E8 33%, #F3F5F5 52%, #E3E7EA 74%, #DDE2E5 100%);
    --box-shadow-value: 0 4px 4px rgba(0, 0, 0, 0.25);
    --box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

body {
    font-family: "Roboto", sans-serif;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

p, h1, h2, h3, h4, h5 {
    margin: 0 !important;
    padding: 0;
}

ul, ol {
    margin: 0;
    padding: 0;
}

ul {
    list-style: none;
}




/*header block*/


/*navbar block*/


.navbar__link {
    font-size: var(--font-size-links);
    font-weight: var(--font-weight-medium);
    line-height: var(--line-height-links);
    color: var(--text-white-color);
}

/*main block*/
.main {
    background-color: var(--main-dark--blue);
    color: var(--text-white-color);
}

.main__wrapper {
    display: flex;
    flex-direction: row;
    gap: 5px;
    padding: 100px 0 100px 0;
}

.main__info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main__info_h1 {
    padding-bottom: 20px;
}

.main__info_desc {
    max-width: 68%;
    font-size: var(--font-size-body);
    font-weight: var(--font-weight-regular);
    line-height: var(--line-height-body);
}

.desc1 {
    padding-bottom: 5px;
}



.main__img {
    width: 740px;
    height: 468px;
}

/* info block */
.info {
    
    background-color: var(--background-color);
}

.info__wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

    .info__wrapper a {
        color: var(--text-black-color);
    }

.info__h2 {
    color: var(--text-black-color);
}

/*
.info_card_img {
    width: 64px;
    height: 64px;
}*/

/*opportunities*/
.opportunities {
   
    background-color: var(--background-color);
}

.opportunities__wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    color: var(--text-black-color);
}

.opportunities__h2 {
    /*padding-right: 100px;*/
  
}

.opportunities__body {
    max-width: 400px;
}

.opportunities__img {
    width: 78px;
    height: 102px;
}

.opportunities__wrapper_info {
    display: flex;
    flex-wrap:wrap;
    flex-direction: row;
    align-items: baseline;
    gap: 20px;
    
}

.opportunities__wrapper_cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(300px, 1fr));
    gap: 30px;

}

/*feedback*/
.feedback {
    background-color: var(--main-dark--blue);
      padding: 50px 0;
    color: var(--text-white-color);
}

.feedback__info {
    text-align:center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-wrap:wrap;
    align-content: center;
    align-items:center;
    gap: 20px;
    padding:50px 0;
}

.feedback__btn {
    margin-bottom: 90px;
}

/*statistic*/
.statistic {
    background-color: var(--main-light-blue);
    padding: 50px 0 !important;
}

.statistic__wrapper {
    padding: 56px 77px 56px 135px;
    display: flex;
    flex-direction: row;
    gap: 135px;
}

.statistic__info {
    max-width: 521px;
    display: flex;
    flex-direction: column;
    gap: 34px;
    padding-bottom: 15px;
}

.statistic__text {
    max-width: 428px;
    color: var(--text-gray-color);
}

.statistic__img {
    max-width: 532px;
    box-shadow: var(--box-shadow-sm);
    padding:0 ;
    
    
}

/*tariff*/
#tariff {
    
}

.tariff {
    padding-top: 100px;
    background-color: var(--background-color);
}

.tariff__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.tariff__h2 {
    padding-bottom: 35px;
    color: var(--text-gray-color);
}

.tariff_cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tariff_card__sample {
    background-color: #F4F4F4;
    border: solid 1px #e7e7e7;
}

.tariff_card__premium {
    color: var(--text-white-color);
    background-color: #081344;
    border: solid 1px #081344;
}

.tariff_card__title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding-bottom: 25px;
}


.tariff_card__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding-top: 16px;
    padding-bottom: 37px;
}

.premium__h2 {
    color: var(--main-accent);
}

/*video*/
.video {
    padding-top: 180px;
}

.video_footage {
    padding: 0 80px 0 80px;
    max-width: 100%;
    width: 1240px;
    height: 650px;
}

/*reviews*/
.reviews {
    background-color: var(--text-white-color);
    padding-top: 100px;
    padding-bottom: 100px;
}

.reviews__wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.review_cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    
}

.review_card__header {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 85px;
}

.review_card__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.review_card__rate {
    color: var(--main-accent);
}

.caption-names {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.review_card__body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: var(--text-gray-color);
}

.footer {
    background-color: #06103B;
    padding: 80px 99px 0 70px;
    color: var(--text-white-color);
}

.footer__wrapper {
    display: grid;
    grid-template-columns: repeat(3, minmax(450px, 1fr));
    gap: 30px;
}

.footer__img {

}

.footer_p {
    color: #727070;
}

.footer__block1, .footer__block2, .footer__block3 {
    max-width: 447px;
}

.footer__block2 {

}

.footer__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: #727070;
}

.footer__h4 {
    color: var(--text-white-color);
}

.footer__list {
    color: #727070;
    display: flex;
    flex-direction: row;
    gap: 80px;
}

.footer__block2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.footer__icons {
    display: flex;
    flex-direction: row;
    gap: 24px;
}

.footer__block3 {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 0 137px 0 56px;
    text-align: center;
}

.footer_btn {
    display: block;
    text-align: center;
    cursor: pointer;
    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;
    transition: all 0.2s ease;
    max-width:250px;
}

    .footer_btn:hover {
        background-color: #F98971;
        color: var(--text-white-color) !important;
    }

.dark_btn {
    display: block;
    text-align: center;
    cursor: pointer;
    background-color: var(--main-dark--blue);
    padding: 5px 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;
    transition: all 0.2s ease;
}


.nav_btn {
    display: block;
    text-align: center;
    cursor: pointer;
    background-color: #f5f5f5;
    padding: 5px 18px;
    font-size: var(--font-size-button);
    line-height: var(--line-height-button);
    font-weight: var(--font-weight-medium);
    font-size: 20px;
    border: solid 1px #b6b6b6;
    color: #8b8b8b;
    border-radius: 9px;
    transition: all 0.2s ease;
}


.nav_btn-disabled {
    display: block;
    text-align: center;
    cursor: initial;
    
    padding: 5px 18px;
    font-size: var(--font-size-button);
    line-height: var(--line-height-button);
    font-weight: var(--font-weight-medium);
    font-size: 20px;
    border: none;
    color: #8b8b8b;
    border-radius: 9px;
    transition: all 0.2s ease;
}


.nav_btn-disabled:hover {
    
    color: #8b8b8b;
    
    
}


    .dark_btn:hover {
        background-color: #14267a;
        color: var(--text-white-color) !important;
    }

.dark_btn-disabled {
    display: block;
    text-align: center;
    cursor: pointer;
    background-color: lightgray;
    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;
}

.dark_btn-disabled:hover {
   
    color: var(--text-white-color);
   
}



.footer__caption {
    padding-top: 24px;
    color: #ABAAAA;
    text-align: center;
    padding-bottom: 75px;
}
.mobile-link {
    cursor: pointer;
    text-align: center;
    max-width:150px;
    
    background-color: var(--main-accent);
    padding: 8px 18px;
    
    font-weight: var(--font-weight-medium);
    
    border: none;
    color: var(--text-white-color);
    border-radius: 9px;
    display: block;
    transition: all 0.3s ease;
}

.statistics {
    background-image: url(../../assets/img/line.svg);
    background-position-x: left;
    background-position-y: bottom;
    background-repeat: no-repeat;
    background-size: cover;
}

.info__cards {
    /* display: grid;
    grid-template-columns: repeat(1, 300px);
    gap: 20px;
    justify-content: space-between;*/
}

.banner-modal {
    background-color: #f0f5fa;
    border-radius: 15px;
    padding:50px 20px;
}

.banner-close {
    border: none;
    border-radius: 50%;
    padding:5px;
    background-color: black;
    width:35px;
    height:35px;
}

.button__subscribe {
    background-color: #039be5;
    padding: 10px 20px;
    border-radius: 8px;
    color: white;
    display: block;
    transition: all 0.3s ease;
    display: inline;
}


    .button__subscribe:hover {
        background-color: #3295c5;
        color:azure;
    }

.banner {
    padding: 10px 20px 20px 20px;
}



    .banner img {
        width: 50%;
        margin-top: 30px;
        max-width:200px;

    }

/* Normal desktop :992px. */
@media (min-width: 992px) and (max-width: 1200px){
    .s-video-area {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}




/* Tablet desktop :768px. */
@media (min-width: 768px) and (max-width: 991px){
    .s-video-area {
        padding-top: 13px;
        padding-bottom: 15px;
    }
   
}

@media screen and (max-width: 991px) {
    .banner-img-block {
        text-align: center;
    }
}


/* Large Mobile :575px. */
@media only screen and (min-width: 575px) and (max-width: 767px){
    .s-video-area {
        padding-top: 27px;
        margin-bottom: -130px;
    }
}

@media screen and (min-width: 480px) {
    .info__wrapper {
        align-items: center;
    }

   
}


@media screen and (max-width: 767px) {
   
    .h1 {
        font-size: var(--font-size-h2) !important;
        line-height: var(--line-height-h2) !important;
    }

    .s-video {
        height: 80px;
        width: 80px;
        line-height: 80px;
        font-size: 20px;
    }

        .s-video::before {
            height: 90px;
            width: 90px;
        }


    .s-video-bg .s-video {
        height: 60px;
        width: 60px;
        font-size: 14px;
        line-height: 60px;
    }

        .s-video-bg .s-video::before {
            height: 60px;
            width: 60px;
        }

    .s-testi-bg {
        background-position: right center;
    }

    .s-video-area {
        padding-top: 37px;
        padding-bottom: 0;
        margin-bottom: -118px;
    }
   
}



@media screen and (min-width: 768px) {
    .info__wrapper {
        align-items: center;
    }
    section{
        padding-left:10px;
        padding-right:10px;
    }
    .banner img {
        width: 70% !important;
    }
  
    
}



@media screen and (min-width: 992px) {
   
}

@media screen and (min-width: 1264px) {
    .info__wrapper {
        align-items: center;
    }

   /* .info__cards {
        display: grid;
        grid-template-columns: repeat(3, 350px);
        gap: 25px;
        
    }*/

   /* .info_card_img {
        width: 100px;
        height: 100px;
    }*/
}

@media screen and (min-width: 1300px) {

    /*.info__cards {
        display: grid;
        grid-template-columns: repeat(5, 256px);
        gap: 25px;
        
    }*/
}

.exchange-block {
    display:flex;
    flex-wrap:nowrap;
  
    gap: 10px;
    width: 100%;
    
}

.info_card__title {
    margin-bottom: 0;
}

.info_card {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 280px;
    min-width: 280px;
    height: 145px;
    border-radius: 12px;
    border: solid 1px #dee2e6;
    padding: 25px;
    margin: 10px;
    background-color: var(--text-white-color);
}


.info_card img{
    
}

    .info_card:hover {
        box-shadow: var(--box-shadow-sm)
    }


.gallery-cell {
    
    counter-increment: gallery-cell;
}

    /* cell number */


.card-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: var(--text-gray-color);
    text-align: initial;
}

.card-head {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
}

.card-head-body {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    gap: 5px;
}


.review-card {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    height: 580px;
    min-width: 350px;
    width: 400px;
    background-color: #F4F4F4;
    transition: all 0.3s ease;
    border: solid 1px #F4F4F4;
    margin: 0 5px;
}

    .review-card:hover {
        box-shadow: var(--box-shadow-sm);
        border: solid 1px #dee2e6;
    }

.review_card__header {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 85px;
}

.review_card__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.review_card__rate {
    color: var(--main-accent);
}