:root {
    --white-blue: #F5F8FF;
    --white: #fff;
    --blue-dark: #102343;
    --sand: #AB9C7F;
    --white-gray: #EDEEF7;
    --blue-footer: #0D1D38;
    --blue-gradient: linear-gradient(0deg, #102343 0%, #274a85 100%);
}

body, html {
    background-color: var(--white-gray);
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-size: 15px;
    font-weight: normal;
    font-family: 'Random Grotesque Slim Book SlimBook';
    color: var(--blue-dark);
    scroll-behavior: smooth;
    overflow-x: hidden;
}

* {
    transition: all .4s ease;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


/* SCROLL BAR */

html::-webkit-scrollbar {
    width: 10px;
    background-color: #333333;
}

html::-webkit-scrollbar-thumb {
    background-image: var(--blue-gradient);
    border-radius: 10px;
}

/* .wrapper {
    max-width: 600px;
    height: 100%;
    margin-right: auto;
    margin-left: auto;

    position: relative;
} */

.container {
    max-width: 1250px;
    margin-right: auto;
    margin-left: auto;

    position: relative;
}

.foot-rigtht {
	display:none;
}

/* header */

header {
    backdrop-filter: blur(63px);
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50px;
    padding: 6px 12px;
    z-index: 15;

    /* height: 39px; */

    position: fixed;
    top: 14px;
    right: 50%;
    transform: translateX(50%);
    width: 90%;
    max-width: 600px;

    /* margin-right: 13px;
    margin-left: 13px; */

    display: none;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 600px) {
    .header-logo img {
        width: 87px !important;
    }
}

.header-logo img {
    width: 160px;
}

#mobileMenu {
    background-color: var(--white);
    position: fixed;
    right: 6px;
    top: 62px;

    display: none;
    opacity: 0;

    align-items: start;
    flex-direction: column;
    gap: 20px;

    padding: 18px 16px;
    border-radius: 12px;
}

.mobile-show {
    animation: mobileMenu 1s ease forwards 1;
    display: flex !important;
}

.mobile-close-show {
    animation: mobileMenuClose 1s ease forwards 1;
    
}

@keyframes mobileMenu {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes mobileMenuClose {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        display: none !important;
    }
}

#mobileMenu a {
    text-decoration: none;
    color: #626366;
    font-size: 25px;
    font-family: 'Random Grotesque Standard Book StandardBook';
}

#mobileMenu a:hover {
    color: var(--blue-dark);
}

/* mobile button */

#mobile-button {
    background-color: var(--sand);
    border-radius: 100%;
    border: none;
    outline: none;
    cursor: pointer;
    width: 39px;
    height: 39px;

    position: relative;
    z-index: 999;
}

#mobile-button span {
    background-color: var(--white);
    width: 27px;
    height: 3px;
    border-radius: 10px;
    display: block;
    margin-left: 6px;
}

#mobile-menu-top-line {
    margin-bottom: 4px;
}

#mobile-menu-midle-line {
    margin-bottom: 4px;
}

.top-line {
    transform: rotate(45deg) translate(5.5px, 5.5px);
}

.bottom-line {
    transform: rotate(-45deg) translate(3.5px, -4.5px);
}

.middle-line {
    opacity: 0;
}

/* main */

main {
    /* background-image: url(../images/bg.png); */
    /* background-size: cover; */
    /* background-repeat: no-repeat; */
    width: 100%;
    height: 100%;
    /* height: calc(100% + 43px); */

    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

main video {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    object-fit: cover;
	
	/* Новые свойства */
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    pointer-events: none;
}

.video-black {
    background: linear-gradient(180deg, rgba(37, 37, 37, 0) 0%, #000 100%);
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 2;
    height: 100%;
}

.main-title {
    width: 900px;
    margin-bottom: 12px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
    display: flex;
    position: relative;
    z-index: 5;
}

.main-subtitle {
    margin-bottom: 17px;
    font-size: 50px;
    text-align: center;
    line-height: 56.8px;
    color: #DDDDDD;
    font-weight: 100;
    font-family: 'Random Grotesque Standard Book StandardBook';
    width: 900px;
    position: relative;
    z-index: 5;
}

.main-subtitle span {
    font-family: 'Random Grotesque Standard Semibold StandardSemibold';
    font-weight: 600;
    color: var(--white);
}

.marquee {
    position: absolute;
    top: 0;
    width: 100vw;
    max-width: 100%;
    overflow-x: hidden;
    background-color: var(--grey);
    margin-bottom: 0px;
    padding: 32px 0px;
    height: 84px;
    z-index: 4;
}
  
.trak {
    position: absolute;
    white-space: nowrap;
    will-change: transform;
    animation: marquee 30s linear infinite;
}

.trak .content {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: hidden;
    gap: 10px;
}
  
@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.city {
    padding: 10px 20px;
    border-radius: 40px;
    color: var(--white);
    font-size: 25px;
    border: 1px #fff solid;
    font-family: 'Random Grotesque Standard Book StandardBook';
}


/* about */

.about {
    background-color: var(--white-gray);
    padding: 45px 0px 73px 0px;
    border-radius: 43px 43px 0px 0px;
    margin-top: -43px;
    position: relative;
    z-index: 4;
}

.about-bubble {
    margin-bottom: 15px;
    margin-right: auto;
    margin-left: auto;
    width: fit-content;
    padding: 5px 10px;
    border-radius: 30px;
    border: 1px #6C788E solid;
    font-family: 'Random Grotesque Standard Book StandardBook';
    font-size: 30px;
    color: #6C788E;
}

.about-title {
    margin-bottom: 32px;
    text-align: center;
    font-family: 'Random Grotesque Standard Book StandardBook';
    font-weight: 400;
    color: var(--blue-dark);
    line-height: 78px;
    font-size: 72px;
}

.about-title span {
    font-family: 'Random Grotesque Standard Semibold StandardSemibold';
    font-weight: 600;
}

.about-items {
    margin-bottom: 50px;
}

.about-scroll {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.about-item {
    flex: 1 1;
    height: 571px;
    width: 30%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 24px;
    overflow: hidden;
}

.about-item-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    padding: 25px 25px 40px 25px;
    height: 100%;
    width: 100%;
    background: linear-gradient(180deg, rgba(37, 37, 37, 0) 0%, #000 100%);
}

.about-item-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.about-item-dots-top {
    display: flex;
    align-items: center;
    gap: 1.6px;
}

.active-dot {
    height: 10.39px;
    width: 10.39px;
    border-radius: 100%;
    background-color: var(--white);
}

.pasive-dot {
    height: 10.39px;
    width: 10.39px;
    border-radius: 100%;
    background-color: #D9D9D9;
    opacity: 0.5;
}

.about-item-position {
    font-family: 'Random Grotesque Standard Book StandardBook';
    color: var(--white);
    font-size: 20px;
}

.dark-pos {
    color: #000;
}

.about-item-text {
    font-size: 25px;
    line-height: 31px;
    color: var(--white);
    letter-spacing: 0.3px;
    font-family: 'Random Grotesque Standard Book StandardBook';
}

.about-item-text span {
    font-weight: 600;
    font-family: 'Random Grotesque Standard Semibold StandardSemibold';
}

.wiba-cards {
    display: flex;
    /* align-items: center; */
    justify-content: center;
    gap: 25px 18.9px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.con-ab {
    max-width: 1470px;
}

.wiba-card {
    background: linear-gradient(90deg, #102343 0%, #274a85 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    width: 468px;

    padding: 32px 25px 25px 25px;
}

.wiba-card-top {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 16px;
}

.wiba-card-title {
    color: var(--white);
    font-weight: 600;
    font-size: 41px;
    font-family: 'Random Grotesque Standard Semibold StandardSemibold';
}

.wiba-card-num {
    width: 41.2px;
    height: 41.2px;
    background-color: #edeef7;

    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
}

.wiba-card-num span {
    color: #102343;
    opacity: 0.7;
    font-size: 20px;
}

.wiba-card-text {
    margin-bottom: 18px;
    color: var(--white);
    font-size: 23px;
    line-height: 113%;
    font-family: 'Random Grotesque Standard Book StandardBook';
}

.news-card .wiba-card-bottom {
    position: absolute;
    bottom: 14px;
}

.wiba-card-bottom {
    display: flex;
    align-items: center;
    text-decoration: none;
   
}

.wiba-card-button__text {
    background-color: var(--white);
    padding: 13px 47px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 20px;
    color: var(--blue-dark);
    font-family: 'Random Grotesque Standard Semibold StandardSemibold';
}

.wiba-card-button__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    border-radius: 100%;

    width: 47.6px;
    height: 47.6px;
}

.wiba-card-button__arrow img {
    width: 12px;
}


/* news */

.news {
    background-color: var(--blue-dark);
    border-radius: 43px 43px 0px 0px;
    padding: 47px 0px 79px 0px;
}

.day-light {
    border-color: #6c788e;
    color: #ffffff93;
}

.news-title {
    margin-bottom: 47px;
    font-weight: 400;
    font-size: 72px;
    line-height: 107%;
    text-align: center;
    color: #fff;
    font-family: 'Random Grotesque Standard Book StandardBook';
}

.news-title span {
    font-weight: 600;
    font-family: 'Random Grotesque Standard Semibold StandardSemibold';
}

.news-cards-scroll {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 25px;
}

.news-card {
    flex: 1 1;
    /* height: 613px; */
    width: 30%;

    background-color: var(--white);
    padding: 15px 15px 27px 15px;
    border-radius: 0px 17px 17px 17px;

    position: relative;
}

.news-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 32.1px;
    object-position: 3% 21%;
}

.news-card-title {
    font-weight: 600;
    font-family: 'Random Grotesque Standard Semibold StandardSemibold';
    font-size: 38px;
    color: var(--blue-dark);
    margin-top: 5px;
    margin-bottom: 5px;
}

.news-back {
    border-radius: 20px;
    margin-bottom: 20px;
    width: 100%;
    object-fit: cover;
}

.news-text {
    background-color: var(--white);
    padding: 16px;
    border-radius: 10px;

    font-size: 24px;
    font-weight: 500;

    margin-bottom: 10px;
}

.news-card-text {
    font-weight: 400;
    font-size: 22px;
    line-height: 123%;
    opacity: 0.7;
    color: var(--blue-dark);
    margin-bottom: 49px;
    font-family: 'Random Grotesque Standard Book StandardBook';
}

.blue-button .wiba-card-button__text, 
.blue-button .wiba-card-button__arrow {
    background-color: var(--blue-dark);
    color: var(--white);
}

.news-card-topik p {
    background-color: var(--blue-dark);
    color: var(--white);
    padding: 3px 8px;
    border-radius: 30px;
    font-size: 14px;
    font-family: 'Random Grotesque Standard Book StandardBook';
    width: 73.2px;
}

.news-card-topik {
    background-color: var(--white);
    padding: 6px 8px 5px 6px;
    border-radius: 17px 17px 0px 0px;
    position: absolute;
    width: fit-content;
    z-index: 5;
}

.news-card-top {
    position: absolute;
    top: -27px;
    left: 0;
}

.white-angle {
    /* background-color: #102343; */
    width: 22px;
    height: 22px;
    position: absolute;
    left: 87px;
    top: 13px;
    border-radius: 8px;
    z-index: 4;
}

.white-angle::before {
    content: "";
    background-color: #ffffff;
    width: 14px;
    height: 14px;
    position: absolute;
    left: 0px;
    top: 0px;
    border-radius: 0px;
    z-index: 5;
}

.white-angle::after {
    content: "";
    background-color: #102343;
    width: 14px;
    height: 14px;
    position: absolute;
    left: 0px;
    top: 0px;
    border-radius: 0px 0px 0px 12px;
    z-index: 9;
}

/* comp */

.comp {
    padding: 60px 0px 69px 0px;
}

.companyes-img {
    width: 90%;
    margin-bottom: 58px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
    display: flex
;
}

.companyes-mobile-img {
    width: 100%;
    margin-bottom: 20px;
    display: none;
}

.galery-title {
    margin-bottom: 38px;
    text-align: center;
    font-family: 'Random Grotesque Standard Book StandardBook';
    font-weight: 400;
    font-size: 77px;
    line-height: 107%;
    color: var(--blue-dark);
}

.galery-title span {
    font-weight: 600;
    font-family: 'Random Grotesque Standard Semibold StandardSemibold';
}

.galery-cards {
    overflow-x: scroll;
    margin-bottom: 40px;
}

.galery-cards::-webkit-scrollbar-thumb {
    background-image: var(--blue-gradient) !important;
    border-radius: 10px !important;
    cursor: pointer;
}

.galery-cards::-webkit-scrollbar {
    width: 5px;               /* ширина scrollbar */
    cursor: pointer;
}

/* .galery-cards::-webkit-scrollbar-track {
    background: var(--blue-gradient);
} */

.galery-scroll {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 27px;
    width: 100%;
    padding-bottom: 20px;
}

.galery-photo {
    border-radius: 18px;
    width: 377px;
    height: 433px;
    object-fit: cover;
}

.galery-button {
    display: flex;
    margin-right: auto;
    margin-left: auto;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.galery-button-text {
    padding: 25px 77px;
    border-radius: 230px;
    background-color: var(--blue-dark);
    color: var(--white);
    font-weight: 600;
    font-size: 45px;
    font-family: 'Random Grotesque Standard Semibold StandardSemibold';
}

.galery-button-arrow {
    background-color: var(--blue-dark);
    border-radius: 100%;
    width: 98.8px;
    height: 98.8px;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* awards */

.awards {
    background-color: var(--white);
    border-radius: 43px 43px 0px 0px;
    padding: 40px 0px 53px 0px;
}

.awards-top {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.swiper-button-prev,
.swiper-button-next {
    position: static !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    bottom: auto !important;
    margin-top: 0 !important; 

    width: 84px !important;
    height: 84px !important;
}

.awards-item {
    border-radius: 20px;
    background-color: #EDEEF7;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}

.awards-item img {
    width: 100%;
    height: 274px;
    object-fit: cover;
    margin-bottom: 10px;
    border-radius: 20px 20px 0px 0px;
}

.awards-item-title {
    padding: 0px 20px 10px 20px;
    font-weight: 600;
    font-size: 22px;
    color: var(--blue-dark);
    font-family: 'Random Grotesque Standard Semibold StandardSemibold';
    width: 100%;
}

.awards-item-text {
    font-weight: 400;
    font-size: 18px;
    line-height: 123%;
    color: var(--blue-dark);
    padding: 0px 20px 34px 20px;

    font-family: 'Random Grotesque Standard Book StandardBook';
}

.awards-item-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    margin-bottom: 17px;
}

.awards-item-dot__active {
    width: 8.23px;
    height: 8.23px;
    border-radius: 100%;
    background-color: var(--blue-dark);
}

.awards-item-dot__passive {
    background-color: #bcc9e1;
    width: 8.23px;
    height: 8.23px;
    border-radius: 100%;
}


/* footer */

.footer {
    background-image: url(../images/ZwbCt73vJZba.jpg);
    background-size: cover;
    background-position: center;
    padding: 130px 0px;
}

.footer-form {
    width: 80%;
    background-color: #F5F8FF;
    border-radius: 26px;
    text-align: center;
    margin-right: auto;
    margin-left: auto;
    padding-bottom: 40px;
}

.footer-title {
    margin-bottom: 43px;
    font-weight: 400;
    font-family: 'Random Grotesque Standard Book StandardBook';
    font-size: 61px;
    line-height: 96%;
    text-align: center;
    color: var(--blue-dark);
    padding: 33px;
}

.footer-title span {
    font-weight: 600;
    font-family: 'Random Grotesque Standard Semibold StandardSemibold';
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px 23px;
    width: 100%;

    padding: 0px 80px;
    margin-bottom: 43px;
}

.footer-input {
    position: relative;
    width: 48%;
}

.footer-input img {
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);

    width: 26px;
    height: 26px;
}

.footer-input input {
    width: 100%;
    padding: 28px 28px 28px 62px;
    border-radius: 100px;
    background-color: var(--white);
    border: none;
    outline: none;
    font-weight: 400;
    font-size: 20px;
    font-family: 'Random Grotesque Standard Book StandardBook';
    color: var(--blue-dark);
}

.footer-input:last-of-type input {
    padding: 28px;
}

.footer .galery-button {
    /* padding-bottom: 58px; */
    background-color: transparent;
    border: none;
    cursor: pointer;
}

/* footer 2 */

footer {
    background-color: #0D1D38;
    padding: 43px;
    border-radius: 43px 43px 0px 0px;
    margin-top: -43px;
}

.foot-inner {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.foot-left-img {
    width: 140px;
    margin-bottom: 15px;
}

.foot-links {
    display: flex;
    align-items: center;
    gap: 7px;

    margin-bottom: 133px;
}

.foot-links a img {
    width: 25px;
    height: 25px;
}

.foot-privacy {
    opacity: 0.6;
    font-weight: 400;
    font-size: 12px;
    line-height: 118%;
    color: var(--white);
    font-family: 'Random Grotesque Standard Book StandardBook';
}

.foot-center {
    background-color: #102343;
    border-radius: 11px;
    display: flex;

    padding: 12px 26px;
    justify-content: space-between;
}

.foot-center-block {
    display: flex;
    flex-direction: column;
    /* gap: 7px; */
    justify-content: space-between;
}

.foot-center-block h2 {
    font-weight: 600;
    font-size: 21px;
    color: #fff;

    font-family: 'Random Grotesque Standard Semibold StandardSemibold';
}

.foot-center-block a {
    text-decoration: none;
    opacity: 0.8;
    color: var(--white);
    font-size: 19px;

    font-family: 'Random Grotesque Standard Book StandardBook';
}

.foot-center-block:first-child {
    margin-right: 23px;
}

.foot-center-block:last-child {
    margin-left: 23px;
}

.foot-center img {
    height: 250px;
}

.foot-left-img-none {
    display: none;
}

.foot-rigtht h2 {
    margin-bottom: 10px;
    font-family: 'Random Grotesque Standard Book StandardBook';
    font-weight: 600;
    font-size: 24px;
    color: #fff;
}

.foot-rigtht p {
    opacity: 0.8;
    font-weight: 400;
    font-size: 24px;
    line-height: 122%;
    color: #fff;
    margin-bottom: 20px;

    font-family: 'Random Grotesque Standard Book StandardBook';
}

.foot-sub {
    position: relative;
    display: flex;
    align-items: center;
}

.foot-sub img {
    width: 21px;
    height: 21px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 21px;
}

.foot-sub input {
    padding: 13px 13px 13px 50px;
    border-radius: 100px;
    border: none;
    outline: none;
    background-color: var(--white);
    font-weight: 400;
    width: 100%;
    font-size: 25px;
    color: #102343;
    font-family: 'Random Grotesque Standard Book StandardBook';
}

.foot-sub button {
    height: 100%;
    background-color: #AB9C7F;
    border-radius: 100px;
    padding: 13px 60px;
    color: var(--white);
    font-size: 19px;
    font-weight: 400;
    font-family: 'Random Grotesque Standard Book StandardBook';
    border: none;
    outline: none;

    cursor: pointer;
    right: 0;
    position: absolute;
}

/* tablo */

.tablo {
    margin-top: 122px;
}

#n1 {
    margin-top: 122px;
}

.tablo-inner {
    background-color: #fff;
    border-radius: 43px;
    padding: 51px 65px;
    
    margin-bottom: 74px;
    margin-top: 114px;
}

.disp-none {
    display: none !important;
}

.success-form,
.success-sub {
    color: #000000;
    font-size: 29px;
    font-family: 'Random Grotesque Standard Book StandardBook';
    padding-top: 10px;
}

.success-sub {
    color: #fff;
    font-size: 15px;
    position: absolute;
    top: 56px;
    right: 40px;
}

.tablo-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-bottom: 30px;
    border-bottom: 1px solid #c8c8c8;
    margin-bottom: 37px;
}

.tablo-inner-left {
    color: #1b3259;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 36px;
    font-family: 'Random Grotesque Standard Book StandardBook';
}

.tablo-inner-left a {
    color: #a1a4a8;
    text-transform: lowercase;
    text-decoration: none;
}

.tablo-inner-right {
    font-weight: 400;
    font-size: 32px;
    line-height: 120%;
    text-align: right;
    color: #a1a4a8;
    font-family: 'Random Grotesque Standard Book StandardBook';
}

.tablo-inner-title {
    margin-bottom: 17px;
    font-weight: 400;
    font-size: 56px;
    line-height: 113%;
    color: #081427;
    font-family: 'Random Grotesque Standard Book StandardBook';
}

.tablo-inner-title span {
    font-weight: 600;
    font-family: 'Random Grotesque Standard Semibold StandardSemibold';
}

.tablo-inner-text {
    margin-bottom: 28px;
    font-family: 'Random Grotesque Standard Book StandardBook';
    font-weight: 400;
    font-size: 32px;
    line-height: 120%;
    color: #081427;
}

.tablo-inner-text span {
    font-weight: 600;
    font-family: 'Random Grotesque Standard Semibold StandardSemibold';
}

.tablo-inner-photo__big {
    width: 100%;
    object-fit: cover;
    border-radius: 23px;
    margin-bottom: 20px;
}

.tablo-inner-faces {
    margin-bottom: 20px;
    display: flex;
    gap: 13px 14px;
    flex-wrap: wrap;
}

.tablo-inner-face {
    padding: 11px 18px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #edeef7;
}

.tablo-inner-face img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.tablo-inner-face h3 {
    font-weight: 400;
    font-size: 28px;
    line-height: 120%;
    color: #081427;
    font-family: 'Random Grotesque Standard Book StandardBook';
}

.tablo-inner-photo__gradient {
    height: 500px;
    width: 100%;
    border-radius: 23px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    margin-bottom: 18px;
}

.tablo-inner-photo__gradient-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: end;
    padding: 25px 25px 28px 25px;
    height: 100%;
    border-radius: 23px;
    width: 100%;
    background: linear-gradient(180deg, rgba(37, 37, 37, 0) 0%, #000 100%);
}

.tablo-inner-photo__gradient-wrapper p {
    font-size: 25px;
    line-height: 31px;
    color: var(--white);
    letter-spacing: 0.3px;
    font-family: 'Random Grotesque Standard Book StandardBook';
}

.tablo-inner-photo__gradient-wrapper p span {
    font-weight: 600;
    font-family: 'Random Grotesque Standard Semibold StandardSemibold';
}

.tablo-quote {
    display: flex;
    gap: 22px;
    justify-content: space-between;

    padding-top: 25px;
    border-top: 1px solid #c8c8c8;

    margin-bottom: 33px;
}

.tablo-quote-person {
    object-fit: cover;
    border-radius: 23px;
    width: 50%;
    /* height: 500px; */
    
}

.quote-left {
    width: 50%;
    height: fit-content;
}

.quote-left h2 {
    margin-bottom: 12px;
    font-weight: 400;
    font-size: 30px;
    line-height: 122%;
    color: #081427;
    font-family: 'Random Grotesque Standard Book StandardBook';
}

.quote-left h2 span {
    font-family: 'Random Grotesque Standard Semibold StandardSemibold';
    font-weight: 600;
}

.quote-block {
    background: #edeef7;
    padding: 26px;
    border-radius: 15px;

    font-weight: 400;
    font-size: 30px;
    line-height: 115%;
    color: #081427;
    font-family: 'Random Grotesque Standard Book StandardBook';
}

.quote-block img {
    width: 20px;
}

.quote-right {
    width: 50%;
    border-radius: 23px;
    background-position: center;
    background-size: cover;
}

.tablo-inner-title a {
    color: #081427;
    text-decoration: none;
}

.tablo-inner-text a {
    text-decoration: none;
    color: inherit;
}