@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;600;900&display=swap');

body {
    font-family: 'Lato', sans-serif;
    font-size: 17px;
    line-height: 2;
    font-weight: 400;
    letter-spacing: 0em;
    background-color: #000000;
    margin: 0;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

h1 {
    margin-top: 0px;
    margin-bottom: 0px;
}

h2 {
    margin-top: 0px;
    margin-bottom: 0px;
}

a {
    text-decoration: none;
    color: #d0d9dd;
}

p {
    margin: 0;
}

.page-wrapper {
    position: relative;
    overflow: visible;
    width: 100%;
    background-color: black;
}

/***** Intro ****/
.intro {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: end;
    min-height: 100vh;
}

.inner-text {
    padding: 120px 0 70px 0;
}

.container {
    width: 100%;
    max-width: 1900px;
    margin: 0 auto;
    position: relative;
    padding: 0 50px;
}

.home-man {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 1900px;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: -1;
    transition: opacity 0.3s ease;
    margin-top: 50px;
}

.home-man img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-top: 650px;
    padding-bottom: 100px;
}

@media (max-width: 1200px) {
    .home-intro {
        padding-top: 630px;
    }
}

@media (max-width: 900px) {
    .inner-text {
        padding: 120px 0 40px 0;
    }
    .container {
        padding: 0 35px;
    }
}

@media (max-width: 600px) {
    .home-man {
        height: 80vh;
        margin-top: 50px;
    }
    .inner-text {
        padding: 70px 0 10px 0;
    }
    .container {
        padding: 0 20px;
    }
    .home-intro {
        padding-top: 550px;
        padding-bottom: 70px;
    }
}

/******************************* Header ***************************/
.header {
    width: 100%;
    max-width: 100%;
    position: absolute;
    z-index: 1111111;
    top: 0;
    left: 0;
    right: 0;
    transition: all 0.3s;
}

.header.fixed {
    padding: 10px 0;
    background: black;
    box-shadow: 0 3px 20px 2px rgb(255 255 255 / 16%);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    transform: translate3d(0, 0, 0);
    transition: all 0.3s;
}

.header.active {
    background-color: #4ecca3;
}

.header__inner {
    max-width: 1900px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    padding: 20px 50px;

}

.header__logo {
    display: flex;
    flex-direction: row;
    width: 200px;
}

.logo-img {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50px;
    height: auto;
    margin-right: 10px;
}

.logo-txt {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 15px;
    font-weight: 600;
    color: #8ea0a9;
    line-height: 1;
}

/* Nav */
.nav {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
}

.nav__link {
    display: inline-block;
    vertical-align: top;
    margin: 0 15px;
    position: relative;
    color: #8ea0a9;
    text-decoration: none;
    transition: color .1s linear;
}

.nav__link:after {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background-color: #91bdd6;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1;
    transition: opacity .1s linear;
}

.nav__link:hover {
    color: #91bdd6;
}

.nav__link:hover:after,
.nav__link.active:after {
    opacity: 1;
}

.nav__link.active {
    color: #91bdd6;
}

/* Nav toggle */
.nav-toggle {
    width: 30px;
    padding: 0;
    display: none;
    font-size: 0;
    color: transparent;
    border: 0;
    background: none;
    cursor: pointer;
    position: absolute;
    right: 20px;
    z-index: 1;
}

.nav-toggle:focus {
    outline: 0;
}

.nav-toggle__item {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #fff;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    transition: background .2s linear;
}

.nav-toggle.active .nav-toggle__item {
    background: none;
}

.nav-toggle__item:before,
.nav-toggle__item:after {
    content: "";
    width: 100%;
    height: 3px;
    background-color: #fff;
    position: absolute;
    left: 0;
    z-index: 1;
    transition: transform .2s linear;
}

.nav-toggle__item:before {
    top: -8px;
}

.nav-toggle__item:after {
    bottom: -8px;
}

.nav-toggle.active .nav-toggle__item:before {
    transform-origin: left top;
    transform: rotate(45deg) translate3d(0px, -3px, 0)
}

.nav-toggle.active .nav-toggle__item:after {
    transform-origin: left bottom;
    transform: rotate(-45deg) translate3d(0px, 3px, 0);
}

@media (max-width: 1400px) {
    .nav {
        font-size: 11px;
    }

    .logo-img {
        width: 40px;
    }

    .logo-txt {
        font-size: 12px;
    }
}

@media (max-width: 1300px) {
    .header__inner {
        padding: 20px 20px;
    }
    .nav {
        font-size: 10px;
    }
}

@media (max-width: 1024px) {
    .header {
        padding: 10px 0;
    }
    .header__logo {
    }
    .nav__link {
        margin: 0 12px;
    }
}

@media (max-width: 950px) {
    .header {
        padding: 10px 0;
    }
    .header.fixed{
        padding: 0;
    }
    .header__logo {
        font-size: 30px;
        margin-bottom: 0;
    }
    .nav {
        background-size: cover;
        display: none;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: black;
        padding: 40px 20px;
        font-size: 12px;
    }
    .nav.active {
        display: block;
        z-index: 1000;
        box-shadow: 0px 12px 20px 0px rgb(255 255 255 / 16%);
    }
    .nav__link {
        display: block;
        margin: 0;
        padding: 15px 20px;
        color: #eae7e7;
        letter-spacing: 1px;
        font-weight: bold;
    }
    .nav-toggle {
        display: block;
    }
}

/*** Headline ****/
.text {
    font-size: 8vw;
    font-weight: 800;
    letter-spacing: -.01em;
    line-height: 100%;
    margin: 0;
    width: 100%;
    color: rgba(51, 110, 138, 0.3);
    background: linear-gradient(to right, #b6b6b6, #b6b6b6) no-repeat;
    -webkit-background-clip: text;
    background-clip: text;
    background-size: 0%;
    transition: background-size cubic-bezier(.1, .5, .5, 1) 0.5s;

    /*border-bottom: 1px solid #1e607a61;*/

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

.text-size-h1 {
    font-size: 4.5em;
    line-height: 1;
    font-weight: 600;
    color: #8ea0a9;
}

.page-padding {
    width: 100%;
    padding: 4em;
}

.page-padding.is-home-content {
    display: flex;
    min-height: calc(100vh - 90px);
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    grid-column-gap: 2em;
    grid-row-gap: 2em;
}

.home-content_section {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    background-color: #101e26;
    color: #b7c3ca;
}

.home-content_visual {
    position: relative;
    width: 50%;
}

.home-content_text-wrap {
    width: 50%;
}

.home-content_heading {
    max-width: 6em;
}

.home-content_p {
    max-width: 30em;
    font-size: 18px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    margin-bottom: 30px;
}

.home-content_p:last-child {
    margin-bottom: 0;
}

.content-top-space{
    padding-top: 100px;
}

.home-content_image {
    position: absolute;
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: 0%;
    width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: cover;
}

.home-scroll_section {
    display: grid;
    grid-auto-columns: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-columns: 50% 50%;
    grid-template-rows: auto;
    background-color: #000000;
    color: #8ea0a9;
}

.home-scroll_visual {
    display: flex;
    height: 100vh;
    justify-content: center;
    align-items: center;
}

.home-scroll_visual.page-padding {
    position: sticky;
    top: 0px;
}

.home-scroll_img-wrap {
    width: 30em;
    height: 40em;
    max-height: 100%;
    max-width: 100%;
}

.home-scroll_img-list {
    position: relative;
    width: 100%;
    height: 100%;
}

.home-scroll_img-item {
    position: absolute;
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: 0%;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 300ms ease;
}

.home-scroll_img-item.is-active {
    opacity: 1;
}

.home-scroll_img {
    width: 100%;
    height: 100%;
    border-radius: 2em;
    -o-object-fit: cover;
    object-fit: cover;
}

.home-scroll_content.page-padding {
    padding-top: 30vh;
    padding-bottom: 30vh;
}

.home-scroll_text-wrap {
    max-width: 30em;
}

.home-scroll_text-item {
    display: flex;
    padding-top: 3em;
    padding-bottom: 3em;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    grid-column-gap: 1.25em;
    grid-row-gap: 1.25em;
    opacity: 0.2;
    transition: opacity 300ms ease;
}

.home-scroll_text-item.is-active {
    opacity: 1;
}

.home-scroll_photo {
    display: none;
}

.project-btn {
    display: block;
    width: fit-content;
    text-decoration: none;
    padding: 15px 50px;
    border-radius: 30px;
    line-height: 1;
    margin-top: 30px;
    font-size: 15px;
}

.btn-dark {
    border: 1px solid black;
    color: black;
}

.btn-light {
    border: 1px solid #91bdd6;
    color: #91bdd6;
    transition: all 0.5s;
}

.btn-light:hover {
    background-color: #91bdd6;
    color: #101e26;
}

@media (max-width: 1500px) {
    .text-size-h1 {
        font-size: 4em;
    }
    .home-content_p {
        font-size: 16px;
    }
}

@media (max-width: 1200px) {
    .text-size-h1 {
        font-size: 3em;
    }
    .home-content_p {
        font-size: 15px;
    }
    .project-btn {
        font-size: 14px;
    }
}

@media (max-width: 1050px) {
    .page-padding.is-home-content {
        min-height: 70vh;
    }
}

@media (max-width: 991px) {
    .page-padding {
        padding-right: 2em;
        padding-left: 2em;
    }
    .page-padding.is-home-content {
        min-height: auto;
        padding-top: 5em;
        padding-bottom: 5em;
    }
    .home-content_section {
        flex-direction: column-reverse;
        justify-content: flex-start;
        align-items: stretch;
    }
    .home-content_visual {
        width: 100%;
        height: 90vw;
    }
    .home-content_text-wrap {
        width: 100%;
    }
    .home-scroll_section {
        display: block;
    }
    .home-scroll_visual.page-padding {
        display: none;
    }
    .home-scroll_content.page-padding {
        padding-top: 0em;
        padding-bottom: 3em;
    }
    .home-scroll_text-wrap {
        margin-right: auto;
        margin-left: auto;
    }
    .home-scroll_text-item {
        opacity: 1;
    }
    .home-scroll_photo {
        display: block;
        width: 100%;
        height: 30em;
        border-radius: 1em;
        object-fit: cover;
    }
}

@media screen and (max-width: 800px) {
    .content-top-space {
        padding-top: 30px;
    }
}

@media screen and (max-width: 600px) {
    .page-padding {
        padding-right: 1.5em;
        padding-left: 1.5em;
    }
    .home-content_section {
        flex-direction: column;
    }
    .home-content_visual {
        height: 120vw;
    }
    .home-scroll_content.page-padding {
        padding-top: 1em;
        padding-bottom: 5em;
    }
    .page-padding.is-home-content {
        padding-top: 60px;
        padding-bottom: 70px;
    }
    .page-padding.is-home-content.mob-home-about {
        padding-top: 10px;
    }
    .home-scroll_text-item {
        padding-top: 2em;
        padding-bottom: 2em;
    }
    .home-scroll_text-item:last-child {
        padding-bottom: 0;
    }
    .m-why .home-scroll_photo{
        height: 23em;
        width: 70%;
        margin: 0 auto;
    }
    .text {
        font-size: 11vw;
    }
    .text-size-h1 {
        font-size: 2.5em;
        margin-top: 15px;
    }
    .home-content_p {
        font-size: 14px;
    }
}

.grid-col {
    grid-column-start: span 1;
    grid-column-end: span 1;
    grid-row-start: span 1;
    grid-row-end: span 1;
}

/****** Logos */
.logos {
    padding: 0px 0 150px 0;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.logo-box {
    width: 200px;
    padding: 30px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-box img {
    max-width: 100%;
    height: auto;
    display: block;
    opacity: .5;
    transition: opacity .3s;
}

.logo-box:hover img {
    opacity: 1;
}

@media (max-width: 1200px) {
    .logos {
        padding: 0 50px 150px 50px;
    }
    .logo-box {
        width: 160px;
    }
}

@media (max-width: 900px) {
    .logos {
        padding: 0 50px 120px 50px;
    }
    .logo-box {
        width: 130px;
    }
}

@media (max-width: 600px) {
    .logos {
        padding: 40px 20px 40px 20px;
    }
    .logo-box {
        width: 110px;
    }
    .logo-box img{
        opacity: 1;
    }
}

/**** FAQ ***/
.faq {
    padding-bottom: 120px;
}

.faq-content {
    max-width: 70%;
    margin: 0 0 0 auto;
    margin-top: 100px;
}

.faq-question {
    padding: 10px 0;
    margin-bottom: 5px;
    border-radius: 20px;
    background-color: #8c9da6;
    position: relative;
    transition: all 0.3s;
}

.faq-question:hover {
    background-color: #b7c6ce;
}

.faq-question:last-child {
    margin-bottom: 0;
}

.panel-title {
    font-size: 18px;
    width: 100%;
    position: relative;
    margin: 0;
    padding: 20px 90px 20px 30px;
    display: block;
    cursor: pointer;
    font-weight: 600;
    line-height: 1.3;
    z-index: 111;
}

.panel-content {
    font-size: 16px;
    font-weight: normal;
    padding: 0 14px;
    margin: 0 40px 0 40px;
    height: 0;
    overflow: hidden;
    z-index: -1;
    position: relative;
    opacity: 0;
    -webkit-transition: .4s ease;
    -moz-transition: .4s ease;
    -o-transition: .4s ease;
    transition: .4s ease;
    line-height: 2;
}

.panel:checked ~ .panel-content {
    height: auto;
    opacity: 1;
    padding: 15px 15px 30px 15px;
    z-index: 1;
}

.plus {
    position: absolute;
    right: 30px;
    top: 40px;
    transform: translateY(-50%);
    font-weight: bold;
    z-index: 5;
    font-size: 42px;
    line-height: 100%;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
}

.panel:checked ~ .plus {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.panel {
    display: none;
}

@media (max-width: 1500px) {
    .panel-title {
        font-size: 17px;
    }

    .panel-content {
        font-size: 15px;
    }
}

@media (max-width: 1200px) {
    .panel-title {
        font-size: 15px;
    }
    .faq-content {
        margin-bottom: 50px;
    }
}

@media (max-width: 900px) {
    .faq-content {
        max-width: 100%;
    }
    .faq-content {
        margin-top: 50px;
    }
}

@media (max-width: 600px) {
    .faq {
        padding-top: 0;
        padding-bottom: 50px;
    }
    .panel-content {
        font-size: 14px;
        margin: 0 20px 0 20px;
    }
    .plus {
        right: 20px;
        font-size: 35px;
    }
    .panel-title {
        padding: 20px 60px 20px 20px;
    }
    .faq-question {
        border-radius: 10px;
    }
}


/****** Service Page *******/
.service-inner{
    background-color: #101e26;
    position: relative;
    min-height: 100vh;
}

.service-inner-img {
    position: absolute;
    width: 50%;
    height: 100%;
    top: 0;
    right: 0;
}

.service-inner-img img {
    width: 100%;
    height: 100%;      /* растягиваем по высоте */
    object-fit: cover; /* чтобы не искажалось */
    display: block;    /* убираем лишние отступы от inline-img */
}

.service-inner-one {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: 300px 30px 70px 0;
    min-height: 100vh;
}

.service-inner-one h1{
    font-size: 6em;
    max-width: 6em;
    line-height: 1;
    font-weight: 600;
    color: #8ea0a9;
}

.service-h2{
     font-size: 60px;
     color: #8ea0a9;
     margin: 50px 0;
     line-height: 1.3;
     max-width: 700px;
}

.cards-one{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 30px;
}

.cards-one-item{
    width: 32%;
    margin-bottom: 2%;
    display: flex;
    flex-direction: column;
}

.cards-one-item-img{
    width: 100%;
    height: 700px;
}

.cards-one-item-img img{
    width: 100%;
    height: 100%;      /* растягиваем по высоте */
    object-fit: cover; /* чтобы не искажалось */
    display: block;    /* убираем лишние отступы от inline-img */
    border-radius: 20px;
}

.cards-one-item-txt{
    margin-top: 30px;
    margin-bottom: 20px;
}

.cards-one-item-txt h2{
    color: #8ea0a9;
    font-size: 25px;
    margin-bottom: 10px;
}

.cards-one-item-txt p{
    color: #8ea0a9;
    font-size: 18px;
    line-height: 1.5;
}

.service-single{
    padding-top: 250px;
}

/**** Service section 2*/
.slider__inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 100%;
}

.slider__item2 {
    display: flex;
    flex-direction: column;
    width: calc(33% - 15px);
    margin: 15px 0;
    padding: 100px 50px;
    border-radius: 20px;
    border: 1px solid #8ea0a952;
    transition: all 0.3s;
}

.slider__item2:hover {
    background-color: #0a141a;
}

.slider__num2 {
    display: flex!important;
    flex-direction: column;
    justify-content: center;
    width: 70px;
    height: 70px;
}

.slider__num2 img{
    max-width: 100%;
    height: auto;
    opacity: 0.7;
}

.slider__text2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    text-decoration: none;
}

.slider__text2 p {
    width: fit-content;
    font-size: 20px;
    line-height: 1.5;
    font-weight: 400;
    color: #8ea0a9;
    margin: 0;
    margin-top: 20px;
}

.service-bg-box{
    min-height: 600px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 20px;
    padding: 0 150px 0 0;
    margin-bottom: 15px;
    background-position: 100% 50%;;
    background-size: cover;
}

@media (max-width: 1400px) {
    .cards-one-item-img{
        height: 600px;
    }
    .service-bg-box {
        min-height: 500px;
    }
    .slider__num2 {
        width: 60px;
        height: 60px;
    }
    .slider__item2 {
        padding: 70px 50px;
    }
}

@media (max-width: 1200px) {
    .service-bg-box {
        min-height: 400px;
    }
    .cards-one-item {
        width: 48%;
    }
    .service-h2 {
        font-size: 50px;
    }
    .cards-one-item-txt h2 {
        font-size: 22px;
    }
    .cards-one-item-txt p {
        font-size: 17px;
    }
    .slider__text2 p {
        font-size: 17px;
    }
}

@media (max-width: 1100px) and (min-height: 900px) {
    .service-inner-img {
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 1100px) {
    .slider__item2 {
        width: calc(50% - 15px);
        margin: 15px 0;
        border-radius: 15px;
    }
    .cards-one-item-img{
        width: 100%;
        height: 550px;
    }
}

@media (max-width: 900px) {
    .service-inner-one h1 {
        font-size: 4.5em;
    }
    .service-h2 {
        font-size: 40px;
        text-shadow: 2px 2px 13px #000000;
    }
    .cards-one-item-img {
        height: 400px;
    }
    .cards-one-item-txt {
        margin-top: 20px;
    }
    .cards-one-item-txt p {
        font-size: 16px;
    }
    .service-inner-one {width: 100%;}
}

@media (max-width: 600px) {
    .service-inner-img {width: 100%;height: 75%;}
    .cards-one-item {width: 100%;margin: 0 0 50px 0;}
    .cards-one-item:last-child {margin: 0;}
    .mob-t-50{margin-top: 50px;}

    .service-inner-one h1 {font-size: 3em;}

    .service-bg-box {min-height: 300px;padding: 0 80px 0 0px;background-position: 85% 50%;margin-bottom: 50px;}

    .service-h2 {font-size: 30px;}
    .slider__item2 {width: 100%;padding: 50px 30px; margin: 0 0 20px 0;}
    .slider__item2:last-child {margin:0;}
    .slider__num2 {width: 50px;height: 50px;}
    .slider__num2 img {opacity: 1;}
    .slider__text2 p {font-size: 15px;}

    .service-single{padding-top: 150px;}
}



/****** About Us *******/
.about-us{
    padding: 150px 0;
    position: relative;
}

.about-us-box{
    width: 70%;
    margin-bottom: 100px;
}

.about-us-box h2{
    color: #8ea0a9;
    font-size: 60px;
    margin: 50px 0;
    line-height: 1.3;
}

.about-us-box p{
    color: #8ea0a9;
    font-size: 25px;
    margin-bottom: 30px;
}

.about-us-box p:last-child {
    margin-bottom: 0;
}

.timeline-box{
    display: flex;
    justify-content: center;
    gap:200px;
    align-items:flex-start;      /* важно для sticky */
    position:relative;
    padding:80px 0;              /* отступы секции */
}
.timeline-box-img{
    width: 450px;
    position:sticky;
    top:150px;                   /* подберите под высоту хедера */
    align-self:flex-start;       /* чтобы sticky работал корректно */
}
.timeline-box-img img{
    width:100%;
    height:auto;
    display:block;
    object-fit:cover;
}

.timeline-container {
    display: flex;
    justify-content: center;
    padding-bottom: 70px;
    padding-top: 70px;
}
.timeline-container .vertical-scrollable-timeline {
    width: 600px;
    list-style-type: none;
    position: relative;
    padding: 0;
}
.timeline-container .vertical-scrollable-timeline .list-progress {
    width: 8px;
    height: 100%;
    background-color: #0f212a;
    position: absolute;
    left: 18px;
    top: 0;
    overflow: hidden;
}
.timeline-container .vertical-scrollable-timeline .list-progress .inner {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 100%;
    background-color: #c5c3cb;
    width: 100%;
}
.timeline-container .vertical-scrollable-timeline li {
    position: relative;
    padding: 0 0 0 100px;
}
.timeline-container .vertical-scrollable-timeline li:last-child {
    margin-bottom: 0;
}
.timeline-container .vertical-scrollable-timeline li h2 {
    font-size: 25px;
    line-height: 1;
    margin-bottom: 20px;
    font-weight: 600;
    color: #8ea0a9;
}
.timeline-container .vertical-scrollable-timeline li p {
    line-height: 1.5;
    color: #8ea0a9;
    font-size: 20px;
    margin-bottom: 20px;
}
.p-l-30{
    padding-left: 30px;
    margin-bottom: 20px;
    margin-top: 25px;
}
.li-p-b-50{
    padding-bottom: 50px;
}
.mark-text {
    background-color: #8ea0a9;
    color: #10232c;
    padding: 2px;
    font-weight: bold;
}
.timeline-container .vertical-scrollable-timeline li p:last-child {
    margin-bottom: 0;
}
.timeline-container .vertical-scrollable-timeline li .icon-holder {
    position: absolute;
    left: 0;
    top: 0;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #c5c3cb;
    border-radius: 50%;
    z-index: 1;
    transition: 0.4s all;
}
.timeline-container .vertical-scrollable-timeline li .icon-holder i {
    font-size: 25px;
    color: #fff;
}
.timeline-container .vertical-scrollable-timeline li::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 8px;
    background-color: transparent;
    left: 48px;
    z-index: 0;
}
.timeline-container .vertical-scrollable-timeline li.active .icon-holder {
    background-color: #0f212a;
}

@media (max-width: 1600px) {
    .about-us-box p {font-size: 22px;}
    .timeline-box-img {width: 400px;}
}

@media (max-width: 1400px) {
    .about-us-box p {font-size: 20px;}
    .timeline-box-img {width: 370px;}
    .timeline-container .vertical-scrollable-timeline li p {font-size: 18px;}
}

@media (max-width: 1200px) {
    .about-us {padding: 50px 0 100px 0;}
    .about-us-box h2 {font-size: 50px;}
    .about-us-box p {font-size: 18px;}
    .timeline-container .vertical-scrollable-timeline li p {font-size: 16px;}
    .timeline-box {gap: 150px;}
    .timeline-container .vertical-scrollable-timeline li .icon-holder {width: 30px;height: 30px;}
    .timeline-container .vertical-scrollable-timeline .list-progress {width: 4px;left: 13.5px;}
    .timeline-container .vertical-scrollable-timeline li {padding: 0 0 0 80px;}
}

@media (max-width: 1100px) {
    .about-us {padding: 0;}
    .about-us-box p {font-size: 18px;}
    .timeline-box {gap: 120px;}
    .timeline-container .vertical-scrollable-timeline li p {font-size: 15px;}
    .timeline-container .vertical-scrollable-timeline {width: 500px;}
}

@media (max-width: 900px) {
    .about-us-box {width: 90%;    }
    .about-us-box h2 {font-size: 40px;margin-bottom: 30px;}
    .about-us-box p {font-size: 17px;}
    .timeline-container .vertical-scrollable-timeline li p {font-size: 16px;}
    .timeline-box {gap: 80px;}
    .timeline-container .vertical-scrollable-timeline {width: 430px;}
}

@media (max-width: 800px) {
    .about-us-box {width: 100%;margin-bottom: 70px;}
    .about-us-box p {font-size: 16px;}
    .timeline-box-img img {max-width: 400px;margin: 0 auto;}
    .timeline-container .vertical-scrollable-timeline li .icon-holder {width: 30px;height: 30px;}
    .timeline-container .vertical-scrollable-timeline .list-progress {width: 4px;left: 13.5px;}
    .timeline-container .vertical-scrollable-timeline li {padding: 0 0 0 60px;}
    .timeline-container .vertical-scrollable-timeline li p {font-size: 15px;}
    .timeline-box{flex-direction:column;padding: 0;gap: 10px;}
    .timeline-box-img,.timeline-container{width:100%;}
    .timeline-box-img{position:static; top:auto; margin-bottom:24px;}
}

@media (max-width: 600px){
    .about-us-box {width: 100%;}
    .about-us-box h2 {font-size: 30px;margin-bottom: 30px;}
    .about-us-box p {font-size: 15px;}
    .timeline-box-img img {
        max-width: 250px;
    }
    .timeline-container .vertical-scrollable-timeline li h2 {
        font-size: 20px;
    }
    .timeline-container {
        padding-bottom: 30px;
    }
    .timeline-container .vertical-scrollable-timeline li .icon-holder {
        width: 23px;
        height: 23px;
    }
    .timeline-container .vertical-scrollable-timeline .list-progress {
        width: 3px;
        left: 10px;
    }
    .timeline-container .vertical-scrollable-timeline li {
        padding: 0 0 0 50px;
    }
    .timeline-container .vertical-scrollable-timeline li p {
        font-size: 15px;
    }

    .timeline-box{
        flex-direction:column;
        padding: 0;
        gap: 10px;
    }
    .timeline-box-img,
    .timeline-container{width:100%;}
    .timeline-box-img{position:static; top:auto; margin-bottom:24px;}
}


/***************** Contact ****************/
.contact{
    padding: 120px 0;
}

.contact-box{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 100px;
}

.contact-form-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 48%;
    min-width: 700px;
    padding: 50px;
    border-radius: 5px;
    box-shadow: rgb(100 100 111 / 35%) 0px 7px 29px 4px;
}

.form-box {
    margin-top: 100px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact-info{
    width: 35%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-map-frame{
    width: 100%;
    height: 700px;
    border-radius: 4px;
    border: 1px solid #aeaeae;
}

.form {
    width: 49%;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 200;
    color: #8ea0a9;
    text-decoration: none;
    outline: none;
    background-color: #101010;
    padding: 20px 20px;
    height: 70px;
    margin-bottom: 20px;
    font-family: 'Lato', sans-serif;
}

.message{
    width: 100%;
    height: auto;
}

.form::-webkit-input-placeholder,
.form:-ms-input-placeholder,
.form:-moz-placeholder,
.form::-moz-placeholder {
    font-weight: 100;
    color: #8ea0a9;
    font-family: 'Lato', sans-serif;
}

.form-cta{
    position: relative;
    display: block;
    width: 100%;
    font-size: 15px;
    font-weight: 600;
    color: #000000;
    padding: 30px 50px;
    background-color: #8ea0a9;
    border: 1px solid #274f62;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Lato', sans-serif;
    line-height: 1;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 4px;
}

.form-cta:hover{
    color: #8ea0a9;
    background-color: #274f62;
}

#error-msg{
    color: red;
    margin: 0 auto 10px auto;
}

@media (max-width: 1500px) {
    .form {
        font-size: 16px;
    }
    .contact-form-box {
        padding: 40px;
        min-width: 600px;
    }
    .contact-map-frame{
        height: 600px;
     }
}

@media (max-width: 1100px) {
    .contact {
        padding: 50px 0 100px 0;
    }
    .contact-box {
        flex-direction: column;
    }
    .contact-info {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
    .contact-form-box {
        width: 100%;
        min-width: 100%;
        margin: 0 auto;
    }
    .contact-map-frame {
        height: 500px;
    }
}

@media (max-width: 600px) {
    .contact {
        padding: 0 0 100px 0;
    }
    .contact-box {
        flex-direction: column;
    }
    .contact-info {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
    .contact-form-box {
        padding: 50px 20px;
    }
    .contact-map-frame {
        height: 400px;
    }
    .form {
        width: 100%;
        height: 60px;
    }
    .form-box {
        margin-top: 50px;
    }
    .message {
        height: auto;
    }
    .form-cta {
        font-size: 13px;
    }
}

/************************ Footer ***/
.footer {
    position: relative;
    width: 100%;
    padding: 150px 0 50px 0;
    background-color: #101e26;
}

.footer-box {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-box-logo {
    width: 45%;
    display: flex;
    flex-direction: column;
}

.footer-box-links {
    width: 35%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.footer-box-links-one, .footer-box-links-two {
    width: fit-content;
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    flex-direction: row;
    width: fit-content;
    margin-bottom: 50px;
}

.footer-logo-img {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100px;
    height: auto;
    margin-right: 20px;
}

.footer-logo-txt {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 28px;
    font-weight: 600;
    color: #8ea0a9;
    line-height: 1;
}

.footer-text {
    font-size: 35px;
    line-height: 1.3;
    font-weight: 700;
    color: #274f62;
    margin-bottom: 20px;
    max-width: 500px;
}

.footer-info {
    list-style: none;
    padding: 0 0 20px 0;
}

.footer-info li {
    font-size: 18px;
    line-height: 1.6;
    font-weight: 100;
    margin-bottom: 20px;
    text-decoration: none;
    color: #d0d9dd;
}

.footer-info li:last-child {
    margin-bottom: 5px;
}

.footer-link {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: end; /* стрелка прижата к низу */
    color: #91bdd6;
    text-decoration: none;
    font-size: 18px;
    padding: 12px 0;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ccc;
}

.footer-link span.arrow {
    padding-left: 30px;
}

.copyright {
    text-align: center;
    font-size: 1em;
    line-height: 1.2;
    font-weight: 100;
    color: #d0d9dd;
    padding: 150px 0 50px 0;
}

.ty-page{
    width: 100%;
    height: 100vh;

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

.ty-page-box {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;

}

.ty-page-box h1{
    font-size: 60px;
    color: #8ea0a9;
    margin-top: 30px;
    font-weight: bold;
}

.ty-page-box p{
    font-size: 20px;
    color: #8ea0a9;
    margin-top: 30px;
}

@media (max-width: 1500px) {
    .footer-logo-img {
        width: 70px;
        margin-right: 15px;
    }
    .footer-logo-txt {
        font-size: 24px;
    }
    .footer-text {
        font-size: 30px;
    }
    .footer-info li {
        font-size: 16px;
    }
    .footer {
        padding: 120px 0 50px 0;
    }
    .copyright {
        font-size: 0.8rem;
    }
    .footer-link {
        font-size: 16px;
    }
}

@media (max-width: 1200px) {
    .footer-box-links {
        width: 40%;
    }
    .footer-info li {
        font-size: 14px;
    }
}

@media (max-width: 1100px) {
    .footer-link {
        font-size: 14px;
    }
}

@media (max-width: 900px) {
    .footer-box-logo {
        width: 100%;
    }
    .footer-box-links {
        width: 100%;
        flex-direction: column;
        justify-content: end;
    }
    .footer-box-links-one, .footer-box-links-two {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 600px) {
    body{
        font-size: 14px;
    }
    .footer-text {
        font-size: 25px;
    }
    .footer {
        padding: 70px 0 0 0;
    }
    .footer-logo-img {
        width: 60px;
        margin-right: 12px;
    }
    .footer-logo-txt {
        font-size: 18px;
    }
    .copyright {
        font-size: 0.6rem;
        padding: 100px 0 70px 0;
    }
    .hide-m{
        display: none;
    }
}

