: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;*/
}

/* Telegram promo modal */
body.telegram-promo-open > .modal-backdrop {
    --bs-backdrop-opacity: 1;
    background: rgba(5, 16, 39, 0.3);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

body.telegram-promo-open > .modal-backdrop.show {
    opacity: 1;
}

@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
    body.telegram-promo-open > .modal-backdrop {
        background: rgba(5, 16, 39, 0.36);
    }
}

#BannerModal {
    --telegram-ink: #0b1832;
    --telegram-muted: #5e6c82;
    --telegram-blue: #0877b5;
    --telegram-blue-hover: #06679e;
    width: 100%;
    padding-right: 0 !important;
    padding-left: 0 !important;
}

#BannerModal .telegram-promo__dialog {
    --bs-modal-margin: 16px;
    width: min(840px, calc(100vw - 32px));
    max-width: 840px;
    min-width: 0;
    min-height: calc(100% - 32px);
    margin: 16px auto;
    flex: 0 0 auto;
}

#BannerModal .telegram-promo__card {
    width: 100%;
    max-height: calc(100dvh - 32px);
    flex: 0 0 100%;
    overflow: hidden;
    border: 1px solid rgba(15, 37, 74, 0.12);
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 32px 90px rgba(4, 16, 40, 0.28);
}

@supports not (height: 100dvh) {
    #BannerModal .telegram-promo__card {
        max-height: calc(100vh - 32px);
    }
}

#BannerModal .modal-body {
    min-width: 0;
    padding: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
}

#BannerModal .telegram-promo__layout {
    display: grid;
    grid-template-columns: minmax(250px, 0.82fr) minmax(0, 1.18fr);
    min-width: 0;
}

#BannerModal .telegram-promo__visual {
    position: relative;
    isolation: isolate;
    min-height: 430px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 22px;
    padding: 46px 32px;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 18%, rgba(56, 202, 255, 0.28), transparent 34%),
        linear-gradient(145deg, #091a3a 0%, #102b57 100%);
}

#BannerModal .telegram-promo__visual::before,
#BannerModal .telegram-promo__visual::after {
    position: absolute;
    z-index: -1;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    content: "";
}

#BannerModal .telegram-promo__visual::before {
    width: 260px;
    height: 260px;
    top: -94px;
    right: -112px;
}

#BannerModal .telegram-promo__visual::after {
    width: 180px;
    height: 180px;
    bottom: -96px;
    left: -74px;
}

#BannerModal .telegram-promo__logo {
    width: 174px;
    height: 174px;
    display: grid;
    place-items: center;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 24px 60px rgba(0, 12, 38, 0.32);
    backdrop-filter: blur(8px);
}

#BannerModal .telegram-promo__logo img {
    width: 100%;
    height: auto;
    max-width: none;
    margin: 0;
    aspect-ratio: 1;
    object-fit: contain;
    border-radius: 50%;
}

#BannerModal .telegram-promo__channel {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 13px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.88);
    background: rgba(255, 255, 255, 0.08);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.04em;
}

#BannerModal .telegram-promo__content {
    align-self: center;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
    padding: 54px 54px 50px;
}

#BannerModal .telegram-promo__eyebrow {
    margin: 0 0 18px;
    color: var(--telegram-blue);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

#BannerModal .telegram-promo__title {
    max-width: 470px;
    margin: 0;
    color: var(--telegram-ink);
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 750;
    line-height: 1.14;
    letter-spacing: -0.035em;
    overflow-wrap: break-word;
}

#BannerModal .telegram-promo__text {
    max-width: 440px;
    margin: 22px 0 0;
    color: var(--telegram-muted);
    font-size: 16px;
    line-height: 1.65;
    overflow-wrap: break-word;
}

#BannerModal .telegram-promo__cta {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
    padding: 13px 20px;
    border: 1px solid var(--telegram-blue);
    border-radius: 13px;
    color: #ffffff;
    background: var(--telegram-blue);
    box-shadow: 0 12px 30px rgba(8, 119, 181, 0.24);
    font-size: 15px;
    font-weight: 750;
    line-height: 1.25;
    text-align: center;
    text-decoration: none;
    transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

#BannerModal .telegram-promo__cta:hover {
    border-color: var(--telegram-blue-hover);
    color: #ffffff;
    background: var(--telegram-blue-hover);
    box-shadow: 0 15px 34px rgba(6, 103, 158, 0.3);
    transform: translateY(-2px);
}

#BannerModal .telegram-promo__cta:focus-visible {
    outline: 3px solid var(--telegram-ink);
    outline-offset: 3px;
}

#BannerModal .telegram-promo__close:focus-visible {
    outline: 3px solid #ffffff;
    outline-offset: 2px;
    box-shadow: 0 0 0 5px var(--telegram-blue);
}

#BannerModal .telegram-promo__close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(15, 37, 74, 0.1);
    border-radius: 50%;
    color: #263a59;
    background: rgba(242, 246, 251, 0.92);
    cursor: pointer;
    transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

#BannerModal .telegram-promo__close:hover {
    color: var(--telegram-ink);
    background: #e8eff7;
    transform: rotate(4deg);
}

/* The Jivo widget uses the maximum z-index and otherwise sits above Bootstrap modals. */
body.modal-open #jivo-iframe-container,
body.modal-open > jdiv {
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* 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) {
    #BannerModal .telegram-promo__layout {
        grid-template-columns: minmax(200px, 0.7fr) minmax(0, 1.3fr);
    }

    #BannerModal .telegram-promo__visual {
        min-height: 390px;
        padding: 38px 24px;
    }

    #BannerModal .telegram-promo__logo {
        width: 142px;
        height: 142px;
    }

    #BannerModal .telegram-promo__content {
        padding: 44px 40px 40px;
    }
}


/* 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) {
    #BannerModal .telegram-promo__dialog {
        --bs-modal-margin: 12px;
        width: min(540px, calc(100vw - 24px));
        min-height: calc(100% - 24px);
        margin: 12px auto;
    }

    #BannerModal .telegram-promo__card {
        max-height: calc(100dvh - 24px);
        border-radius: 24px;
    }

    #BannerModal .telegram-promo__layout {
        grid-template-columns: minmax(0, 1fr);
    }

    #BannerModal .telegram-promo__visual {
        min-height: 136px;
        flex-direction: row;
        gap: 16px;
        padding: 22px 66px 22px 24px;
    }

    #BannerModal .telegram-promo__logo {
        width: 82px;
        height: 82px;
        flex: 0 0 82px;
        padding: 7px;
    }

    #BannerModal .telegram-promo__channel {
        justify-content: center;
        text-align: center;
    }

    #BannerModal .telegram-promo__content {
        padding: 28px 24px 26px;
    }

    #BannerModal .telegram-promo__eyebrow {
        margin-bottom: 13px;
        font-size: 11px;
    }

    #BannerModal .telegram-promo__title {
        font-size: clamp(25px, 7.4vw, 31px);
        line-height: 1.16;
    }

    #BannerModal .telegram-promo__text {
        margin-top: 14px;
        font-size: 15px;
        line-height: 1.55;
    }

    #BannerModal .telegram-promo__cta {
        width: 100%;
        margin-top: 22px;
    }

    #BannerModal .telegram-promo__close {
        top: 12px;
        right: 12px;
        color: #ffffff;
        border-color: rgba(255, 255, 255, 0.22);
        background: rgba(255, 255, 255, 0.12);
    }

    #BannerModal .telegram-promo__close:hover {
        color: #ffffff;
        background: rgba(255, 255, 255, 0.2);
    }
   
    .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;
    }
}

@media screen and (max-width: 359px) {
    #BannerModal .telegram-promo__visual {
        min-height: 116px;
        gap: 11px;
        padding: 16px 60px 16px 18px;
    }

    #BannerModal .telegram-promo__logo {
        width: 66px;
        height: 66px;
        flex-basis: 66px;
    }

    #BannerModal .telegram-promo__channel {
        padding: 6px 9px;
        font-size: 10px;
    }

    #BannerModal .telegram-promo__content {
        padding: 23px 18px 20px;
    }
}

@media screen and (max-width: 767px) and (max-height: 520px) {
    #BannerModal .telegram-promo__visual {
        display: none;
    }

    #BannerModal .telegram-promo__content {
        padding-top: 58px;
    }

    #BannerModal .telegram-promo__close {
        color: #263a59;
        border-color: rgba(15, 37, 74, 0.1);
        background: #f2f6fb;
    }
}

@media screen and (min-width: 768px) and (max-height: 520px) {
    #BannerModal .telegram-promo__visual {
        min-height: 300px;
        padding-top: 24px;
        padding-bottom: 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    #BannerModal .telegram-promo__cta,
    #BannerModal .telegram-promo__close {
        transition: none;
    }

    #BannerModal .telegram-promo__cta:hover,
    #BannerModal .telegram-promo__close:hover {
        transform: none;
    }
}



@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;
    }*/
}

.info_card_img svg{
    height:50px;
}

.info_card_img img {
    display: block;
    height: 50px;
    max-width: 72px;
    object-fit: contain;
    width: auto;
}

.exchange-logo-placeholder {
    align-items: center;
    background: var(--main-light-blue);
    border-radius: 50%;
    display: flex;
    font-size: 24px;
    font-weight: 600;
    height: 50px;
    justify-content: center;
    width: 50px;
}

@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);
}
