/* -----------------------------------------FRONT PAGE REDESIGN STYLES START----------------------------------- */

html, body {
    height: 100%;
    margin: 0;
    scroll-behavior: smooth;
}

.container {
    margin: 0 auto;
    width: 90%;
}

body.lock {
    overflow: hidden;
    height: 100%;
    width: 100%;
    position: fixed;
}


/* HEADER START */

.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.05);
}

.header:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 10;
}

.header__body {
    position: relative;
    display: flex;
    justify-content: space-between;
    height: 80px;
    align-items: center;
}

.header__logo {
    flex-basis: 60px;
    z-index: 11;
}

.header__logo img {
    display: block;
    max-width: 100%;
}

.header__list {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.header__list li {
    padding-left: 40px;
    position: relative;
    z-index: 10;
}

.header__list li a {
    font-weight: 600;
    font-size: 18px;
    line-height: 27px;
    color: #091726;
    text-transform: capitalize;
    text-decoration: none;
    font-family: 'Poppins';
    position: relative;
}

.header__list li a:after {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 0%;
    content: '.';
    color: transparent;
    background: #091726;
    height: 1px;
}

.header__list li a:hover:after {
    width: 100%;
    z-index: -10;
    animation: fill 1s forwards;
    -webkit-animation: fill 1s forwards;
    -moz-animation: fill 1s forwards;
    opacity: 1;
}



@-webkit-keyframes fill {
    0% {
      width: 0%;
      height: 1px;
    }
    50% {
      width: 100%;
    }
    100% {
      width: 100%;
    }
  }

.header__burger {
    display: none;
}

@media(max-width: 767px) {

    .header__burger {
        display: block;
        position: relative;
        width: 30px;
        height: 20px;
        z-index: 11;
    }

    .header__burger:before,
    .header__burger:after {
        content: '';
        background-color: #091726;
        position: absolute;
        width: 100%;
        height: 2px;
        left: 0;
        transition: all .3s ease;
    }

    .header__burger:before {
        top: 0;
    }

    .header__burger:after {
        bottom: 0;
    }

    .header__burger.active:before {
        transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        top: 9px;
    }

    .header__burger.active:after {
        transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        bottom: 9px
    }

    .header__burger span {
        position: absolute;
        background-color: #091726;
        left: 0;
        width: 100%;
        height: 2px;
        top: 9px;
        transition: all .3s ease;
    }

    .header__burger.active span {
        transform: scale(0);
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
    }

    .header__menu {
        position: fixed;
        top: -120%;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: #F8F8F8;
        padding: 100px 20px 20px 20px ;
        transition: all 0.8s ease;
    }

    .header__menu.active {
        top: 0;
    }

    .header__list {
        display: block;
    }

    .header__list li {
        padding: 0;
        margin: 0 0 20px 0;
    }
}


/* HEADER END */


/* section fullscreen */

.mb-30 {
    margin-bottom: 30px;
}

.zi-3 {
    z-index: 3;
}

.wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin-top: 80px;
}

section.fullscreen {
    /* background-image: url(images/new-design/first-screen__bg.jpg); */
    background: #fff;
    min-height: calc(100vh - 80px);
    display: flex;
    background-repeat: no-repeat;
    background-size: cover;
    background-position-y: top;
}

.fullscreen__info {
    flex-basis: 48.572%;
}

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

.fullscreen__visual {
    flex-basis: 48.572%;
    display: block;
    text-align: center;
}

.fullscreen__visual-img {
    max-width: 100%;
}

.fullscreen__body {
    flex: 1 1 auto;
    /* max-width: 680px; */
    min-height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    align-items: self-start;
    justify-content: center;
}

.title {
    font-family: 'Poppins';
    font-weight: 800;
    font-size: 100px;
    line-height: 150px;
    margin: 0;
    padding: 0;
    color: #091726;
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
    opacity: 0;
    transition: .8s;
    transform: translate(0, 30px);
    -webkit-transform: translate(0, 30px);
    -moz-transform: translate(0, 30px);
}

.title:before {
    position: absolute;
    top: 200px;
    left: 225px;
    content: '';
    background-image: url(images/new-design/title-brush.svg);
    width: 400px;
    height: 116px;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
}

.first-screen__subtitle {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 36px;
    color: #4E5965;
    margin-bottom: 40px;
    opacity: 0;
    transition: .8s;
    transform: translate(0, 30px);
    -webkit-transform: translate(0, 30px);
    -moz-transform: translate(0, 30px);
}

.first-screen__btn {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 27px;
    display: inline-block;
    color: #FFFFFF;
    background-color: #015BBB;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
    border-radius: 50px;
    padding: 12px 89px;
    text-decoration: none;
    transition: .3s ease-in;
    opacity: 0;
    transition: .8s;
    transform: translate(0, 30px);
    -webkit-transform: translate(0, 30px);
    -moz-transform: translate(0, 30px);
}

/* -- */

/* about-section  */

.about-section {
    padding: 160px 0 120px;
}

.h2-title {
    font-family: 'Poppins';
    font-weight: 800;
    font-size: 60px;
    line-height: 90px;
    color: #091726;
    position: relative;
    margin: 0;
    padding: 0;
    z-index: 2;
}

.h2-title:before {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    background-image: url(images/new-design/h2-title-brush.svg);
    width: 415px;
    height: 120px;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}

.about-section__title.h2-title:before,
.advantages-section__title.h2-title::before,
.contact-section__title.h2-title:before {
    left: 142px;
}

.about-section__block {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.about-section__info-block {
    flex-basis: 41.6%;
}

.about-section__text,
.advantages-section__text {
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    color: #4E5965;
}

.about-section__title {
    margin-bottom: 20px;
}

.about-section__info-block {
    margin: auto 0;
}

.about-section__visual-block {
    margin: auto 0;
    flex-basis: 50%;
    position: relative;
}

.about-section__video {
    position: absolute;
    top: -40px;
    right: 0;
    filter: drop-shadow(0px 0px 30px rgba(9, 23, 38, 0.1));
    border-radius: 20px;
    max-width: 100%;
    display: block;
}

.about-section__img {
    border-radius: 20px;
    max-width: 100%;
    display: block;
}

/* -- */

/* business forum video section */

section.business-forum {
    padding: 0 0 120px;
}
.business-forum__h2-title {
    max-width: 920px;
    margin: 0 auto 76px;
    text-align: center;
}
.business-forum__h2-title.h2-title::before {
    top: auto;
    left: auto;
    right: 0;
    bottom: 0;
}
.business-forum__video-wrapper video {
    max-height: 790px;
    border-radius: 20px;
    cursor: pointer;
}
.bf__video-descr-bold {
    color: var(--Black, #091726);
    text-align: center;
    font-family: Poppins;
    font-size: 24px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    margin: 40px 0 0;
}

/* -- */

/* business forum gallery section */

section.bf-gallery-sec {
    background-color: #F8F8F8;
    padding: 120px 0 0 0;
}
.bf-gallery__info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
}
.bf-gallery__info-title {
    color: var(--Black, #091726);
    font-family: Poppins;
    font-size: 40px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    flex-basis: 40%;
    margin: 0;
}
.bf-gallery__info-text {
    color: var(--Independence, #4E5965);
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
    flex-basis: 40%;
}
.bf-gallery__wrapper {
    display: flex;
    justify-content: space-between;
    max-width: 100%;
}
.bf-gallery__img-block {
    flex-basis: 25%;
}
.bf-gallery__img-block img {
    display: block;
    width: 100%;
    max-width: 100%;
}

/* -- */

/* telegram link section */

section.telegram-link-sctn {
    padding: 80px 0 120px;
    text-align: center;
}
.telegram-link-sctn__text {
    color: var(--Black, #091726);
    text-align: center;
    font-family: Poppins;
    font-size: 24px;
    font-weight: 400;
    line-height: normal;
    margin: 0 0 40px;
}
.telegram-link-sctn__link {
    border-radius: 50px;
    background: #039BE5;
    box-shadow: 0px 30px 40px -20px rgba(3, 155, 229, 0.40);
    padding: 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--White, #FFF);
    font-family: Poppins;
    font-size: 18px;
    font-weight: 700;
    line-height: normal;
    text-decoration: none;
    width: 440px;
    justify-content: center;
}

/* -- */

/* services-section */

section.services-section {
    background-color: #F8F8F8;
    padding: 120px 0 80px;
}

.services-section__block {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.services-section__item {
    flex-basis: 31.429%;
    text-align: center;
    background: #FFFFFF;
    box-shadow: 0px 0px 30px rgba(9, 23, 38, 0.03);
    border-radius: 20px;
    padding: 80px 40px;
    box-sizing: border-box;
    margin-bottom: 40px;
    transition: .8s;
}

/* .services-section__item:hover {
    box-shadow: 0px 0px 30px rgba(9, 23, 38, 0.3);
} */

.services-section__item-name {
    font-family: 'Poppins';
    font-weight: 800;
    font-size: 40px;
    line-height: 60px;
    text-align: center;
    color: #091726;
    margin: 20px 0;
    padding: 0;
}

.services-section__title.h2-title {
    display: inline-block;
    margin-bottom: 110px;
}

.services-section__title.h2-title:before {
    left: 58px;
}

.services-section__title-wrapper {
    text-align: center;
}

.services-section__item-text {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    text-align: center;
    color: #4E5965;
}

/* -- */

/* advantages-section */

section.advantages-section {
    background-color: #fff;
    padding: 120px 0;
}

.advantages-section__block {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.advantages-section__info-block {
    flex-basis: 41.6%;
    margin: auto 0;
}

.advantages-section__visual-block {
    flex-basis: 50%;
    display: flex;
    justify-content: space-between;
}

.advantages-section__title.h2-title {
    margin-bottom: 20px;
}

.advantages-section__item {
    box-shadow: 0px 0px 30px rgba(9, 23, 38, 0.05);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: .8s;
}

.advantages-section__item:hover {
    box-shadow: 0px 0px 30px rgba(9, 23, 38, 0.3);
}

.advantages-section__visual-block-left {
    flex-basis: 45.715%;
}

.advantages-section__visual-block-right {
    flex-basis: 45.715%;
}

.advantages-section__item-1 {
    background: #015BBB;
    margin-bottom: 40px;
}

.advantages-section__item-3 {
    margin: 40px 0;
}

.advantages-section__item-4 {
    background: #FED501;
}

.advantages-section__item-1-title {
    font-family: 'Poppins';
    font-weight: 800;
    font-size: 24px;
    line-height: 36px;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.advantages-section__item-1-text {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #FFFFFF;
}

.advantages-section__item-bg {
    position: absolute;
    bottom: -40px;
    right: -40px;
}

.advantages-section__item-3-title {
    font-family: 'Poppins';
    font-weight: 800;
    font-size: 24px;
    line-height: 36px;
    text-align: center;
    color: #015BBB;
    margin-bottom: 20px;
}

.advantages-section__item-3-text {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #4E5965;
}

.advantages-section__item-2-title {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 800;
    font-size: 24px;
    line-height: 36px;
    text-align: center;
    color: #015BBB;
    margin-bottom: 20px;
}

.advantages-section__item-2-text {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #4E5965;
}

.advantages-section__item-4-title {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 800;
    font-size: 24px;
    line-height: 36px;
    text-align: center;
    color: #091726;
    margin-bottom: 20px;
}

.advantages-section__item-4-text {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #091726;
}

/* -- */

/* numbers-section */

section.numbers-section {
    background: #015BBB;
    padding: 120px 0;
}

.numbers-section__block {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.numbers-section__item {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 40px;
    flex-basis: 31.429%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

.numbers-section__item-num {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 800;
    font-size: 60px;
    line-height: 90px;
    color: #015BBB;
}

.numbers-section__item-text {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    color: #4E5965;
    margin-left: 20px;
}

.numbers-section__item-num span {
    font-size: 40px;
    line-height: 60px;
}

/* -- */


/* projects-section */

section.projects-section {
    background: #FFFFFF;
    padding: 120px 0;
}

.projects-section__title.h2-title {
    display: inline-block;
    margin-bottom: 70px;
}

.projects-section__info-block {
    text-align: center;
}

.projects-section__info-text {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    text-align: center;
    color: #4E5965;
    max-width: 904px;
    margin: 0 auto 80px;
}

.projects-section__items-block {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.projects-section__item {
    background: #FFFFFF;
    box-shadow: 0px 0px 30px rgba(9, 23, 38, 0.05);
    border-radius: 20px;
    flex-basis: 31.429%;
    padding: 62px 40px 40px;
    box-sizing: border-box;
    transition: .8s;
    position: relative;
    overflow: hidden;
}

.projects-section__item-logo {
    text-align: center;
    margin-bottom: 102px;
    transition: .8s;
}

.projects-section__item-name {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 800;
    font-size: 24px;
    line-height: 36px;
    color: #091726;
}

.projects-section__item-info {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #4E5965;
}

.projects-section__item-content {
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    transition: .8s;
}

.projects-section__item {
    max-height: 470px;
    height: 470px;
}

.projects-section__item-name {
    margin-bottom: 20px;
}

.projects-section__item-info {
    opacity: 0;
    transition: .8s;
}

.projects-section__item:hover .projects-section__item-content {
    transform: translate(0, -33%);
    -webkit-transform: translate(0, -33%);
    -moz-transform: translate(0, -33%);
}

.projects-section__item:hover .projects-section__item-logo {
    margin-bottom: 40px;
}

.projects-section__item:hover .projects-section__item-info {
    opacity: 1;
}

/* -- */


/* partners-section */

section.partners-section {
    background: #091726;
    padding: 120px 0;
}

.partners-section__title {
    color: #fff;
    display: inline-block;
    margin-bottom: 110px;
}

.partners-section__title-wrapper {
    text-align: center;
}

.partners-section__title.h2-title:before {
    content: '';
    background-image: url(images/new-design/blue-brush.svg);
    width: 415px;
    height: 120px;
    right: -180px;
    left: auto;
}

.partners-section__items-block {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.partners-section__item {
    font-family: 'Poppins';
    font-weight: 800;
    font-size: 40px;
    line-height: 60px;
    text-align: center;
    color: #4E5965;
    flex-basis: 22.858%;
    transition: .8s;
    margin: auto;
}

.partners-section__item:hover {
    color: #FED501;
}

.partners-section__item img {
    max-width: 100%;
    transition: .8s;
}

.partners-section__item:hover img {
    transform: scale(1.1);
}

/* -- */

/* team-section */

section.team-section {
    padding: 120px 0 0 0;
    background-color: #fff;
}

.team-section__title {
    display: inline-block;
    margin-bottom: 40px;
}

.team-section__title-wrapper {
    text-align: center;
}

.team-section__title.h2-title:before {
    left: -45px;
}

.team-section__items-block {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.team-section__item {
    text-align: center;
    flex-basis: 24%;
}

.team-section__item-img img {
    max-width: 100%;
    display: block;
    border-radius: 50%;
    margin: auto;
    width: 175px;
}

.team-section__item-title {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 800;
    font-size: 18px;
    line-height: 27px;
    text-align: center;
    color: #091726;
    margin-bottom: 10px;
}

.team-section__item-img {
    margin-bottom: 20px;
}

.team-section__item-subtitle {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #4E5965;
}

/* -- */

/* contacts-section */

section.contact-section {
    padding: 120px 0 100px;
}

.contact-section__title-wrapper {
    text-align: center;
}

.contact-section__title {
    display: inline-block;
    margin-bottom: 80px;
}

.contact-section__items-block {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.contact-section__item {
    flex-basis: 19.286%;
    padding: 40px 20px 72px;
    box-sizing: border-box;
    background: #FFFFFF;
    box-shadow: 0px 0px 30px rgba(9, 23, 38, 0.05);
    border-radius: 20px;
    text-align: center;
    transition: .8s;
}

.contact-section__item:hover {
    box-shadow: 0px 0px 30px rgba(9, 23, 38, 0.3);
}

.contact-section__item-img {
    margin-bottom: 40px;
}

.contact-section__item-info a {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #000000;
    text-decoration: none;
}

.contact-section__item-img svg {
    display: block;
    margin: auto;
}

/* -- */


/* footer */

footer.footer {
    background: #091726;
    padding: 40px 0;
}

.footer__copy {
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #4E5965;
    text-align: center;
}

.footer__copy a {
    color: #4E5965;
}

/* -- */

/* ANIMATIONS */

.h2-title.animated {
    opacity: 0;
    transition: .8s;
    transform: translate(0, 50px);
    -webkit-transform: translate(0, 50px);
    -moz-transform: translate(0, 50px);
}

.h2-title.animated.start-animation {
    opacity: 1;
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
}

.title.animated {
    opacity: 1;
    transition-delay: .5s;
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
}

.first-screen__subtitle.animated {
    opacity: 1;
    transition-delay: 1s;
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
}

.first-screen__btn.animated {
    opacity: 1;
    transition-delay: 1.5s;
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
}

@media(min-width: 768px) {
    .services-section__item.animated {
        opacity: 0;
        transform: scale(0);
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
    }
    
    .services-section__item.animated.start-animation:nth-child(1) {
        opacity: 1;
        transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
    }
    
    .services-section__item.animated.start-animation:nth-child(2) {
        opacity: 1;
        transition-delay: .4s;
        transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
    }
    
    .services-section__item.animated.start-animation:nth-child(3) {
        opacity: 1;
        transition-delay: .8s;
        transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
    }
    
    .services-section__item.animated.start-animation:nth-child(4) {
        opacity: 1;
        transition-delay: .4s;
        transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
    }
    
    .services-section__item.animated.start-animation:nth-child(5) {
        opacity: 1;
        transition-delay: .8s;
        transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
    }
    
    .services-section__item.animated.start-animation:nth-child(6) {
        opacity: 1;
        transition-delay: 1.2s;
        transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
    }
}

.numbers-section__item.animated {
    transform: scale(0);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    transition: .8s;
}

.numbers-section__item.animated.start-animation:nth-child(1) {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
}

.numbers-section__item.animated.start-animation:nth-child(2) {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transition-delay: .5s;
}

.numbers-section__item.animated.start-animation:nth-child(3) {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transition-delay: 1s;
}

@media(max-width: 767px) {
    .numbers-section__item.animated.start-animation:nth-child(2) {
        transition-delay: 0s;
    }
    
    .numbers-section__item.animated.start-animation:nth-child(3) {
        transition-delay: 0s;
    }
}




/* -- */



/* ADAPTIVE */

@media(min-width: 768px) {
    .container {
        max-width: 720px;
        padding: 0;
    }
}

@media(min-width: 992px) {
    .container {
        max-width: 960px;
        padding: 0;
    }
}

@media(min-width: 1200px) {
    .container {
        max-width: 1170px;
        padding: 0;
    }
}

@media(min-width: 1440px) {
    .container {
        max-width: 1400px;
        padding: 0;
    }
}

@media(max-width: 1440px) {
    .business-forum__video-wrapper {
        text-align: center;
    }
    .business-forum__video-wrapper video {
        max-height: 600px;
        width: auto;
    }
    .about-section__title.h2-title:before {
        left: 60px;
    }
}

@media(max-width: 1439px) {
    /* section fullscreen */

    .first-screen__block {
        padding-top: 80px;
    }

    .fullscreen__visual-img {
        max-width: 80%;
    }

    .title {
        font-size: 65px;
        line-height: 140%;
    }

    .title:before {
        top: 70px;
        left: 150px;
    }

    .first-screen {
        background-size: cover;
    }

    /* -- */

    /* about-section */

    .about-section__img {
        max-width: 90%;
    }

    .about-section__video {
        top: -60px;
    }

    /* -- */

    /* services-section */

    .services-section__item {
        padding: 50px 25px;
    }

    .services-section__item-name {
        font-size: 30px;
        line-height: 140%;
    }

    /* -- */

    /* advantages-section */

    .advantages-section__item {
        padding: 25px 25px;
    }

    /* -- */

    /* numbers-section */

    .numbers-section__item {
        padding: 30px;
    }
    
    /*  */


    /* contact-section */



    /* -- */

}

@media(max-width: 1199px){
    .h2-title {
        font-size: 45px;
        line-height: 140%;
    }

    .h2-title:before {
        width: 300px;
        height: 90px;
    }
    .about-section__title.h2-title:before,
    .advantages-section__title.h2-title::before,
    .contact-section__title.h2-title:before {
        left: 65px;
    }

    .about-section {
        padding: 120px 0 80px;
    }

    .about-section__video {
        max-width: 50%;
    }

    .about-section__text,
    .advantages-section__text,
    .services-section__item-text,
    .numbers-section__item-text,
    .projects-section__info-text {
        font-size: 16px;
        line-height: 140%;
    }

    .mb-30 {
        margin-bottom: 20px;
    }

    /* section fullscreen */

    .title:before {
        top: 105px;
        left: 143px;
        width: 350px;
        height: 105px;
    }

    .fullscreen__visual-img {
        max-width: 90%;
    }

    /* -- */

    /* business forum video section */

    .business-forum__video-wrapper video {
        width: 100%;
    }

    /* -- */

    /* services-section */

    .services-section__item {
        padding: 30px 15px;
    }

    section.services-section {
        padding: 80px 0 40px;
    }

    .services-section__title.h2-title {
        margin-bottom: 80px;
    }

    /* -- */

    /* advantages-section */

    section.advantages-section {
        padding: 80px 0;
    }

    .advantages-section__item {
        padding: 20px 20px;
    }

    .advantages-section__item-1-title,
    .advantages-section__item-2-title,
    .advantages-section__item-3-title,
    .advantages-section__item-4-title {
        font-size: 20px;
        line-height: 140%;
    }

    .advantages-section__item-1-text,
    .advantages-section__item-2-text,
    .advantages-section__item-3-text,
    .advantages-section__item-4-text {
        font-size: 14px;
        line-height: 140%;
    }

    /* -- */

    /* numbers-section */

    section.numbers-section {
        padding: 80px 0;
    }

    .numbers-section__item-num {
        font-size: 50px;
        line-height: 140%;
    }

    /* -- */

    /* projects-section */

    section.projects-section {
        padding: 80px 0;
    }

    .projects-section__item {
        height: 380px;
        padding: 30px;
    }

    .projects-section__item-logo {
        margin-bottom: 80px;
    }

    .projects-section__item-logo svg {
        width: 120px;
    }

    .projects-section__item:hover .projects-section__item-logo {
        margin-bottom: 0px;
    }

    .projects-section__item-info {
        font-size: 14px;
        line-height: 140%;
    }

    /* -- */

    /* partners-section */

    section.partners-section {
        padding: 80px 0;
    }

    .partners-section__title.h2-title:before {
        width: 300px;
        height: 90px;
        right: -65px;
    }

    .partners-section__title {
        margin-bottom: 80px;
    }

    .partners-section__item {
        font-size: 30px;
        line-height: 140%;
    }

    .partners-section__item img {
        width: 60%;
    }

    /* -- */

    /* team-section */

    section.team-section {
        padding: 80px 0 0 0;
    }

    .team-section__title {
        margin-bottom: 80px;
    }

    /* -- */

    /* contact-section */

    section.contact-section {
        padding: 80px 0 40px;
    }

    .contact-section__item {
        flex-basis: 22%;
        padding: 40px 20px;
        margin-bottom: 40px;
    }

    /* -- */
}

@media(max-width: 991px) {

    .about-section__title.h2-title,
    .services-section__title.h2-title,
    .advantages-section__title.h2-title,
    .numbers-section__title.h2-title,
    .projects-section__title.h2-title,
    .partners-section__title.h2-title,
    .team-section__title.h2-title,
    .contact-section__title.h2-title {
        display: block;
        text-align: center;
        margin-bottom: 50px;
    }

    .about-section__title.h2-title::before,
    .services-section__title.h2-title::before,
    .advantages-section__title.h2-title::before,
    .numbers-section__title.h2-title::before,
    .projects-section__title.h2-title::before,
    .partners-section__title.h2-title::before,
    .team-section__title.h2-title::before,
    .contact-section__title.h2-title::before {
        width: 300px;
        height: 75px;
        left: auto;
        right: 50px;
    }

    /* fullscreen */

    section.fullscreen {
        background-position-x: center;
        background-image: url(images/new-design/first-screen__bg.jpg);
        background-color: transparent;
    }

    .fullscreen__body {
        max-width: 450px;
    }

    .fullscreen__info {
        flex-basis: 100%;
    }

    .fullscreen__visual {
        display: none;
    }

    .title,
    .first-screen__subtitle {
        color: #fff;
    }

    .title:before {
        width: 300px;
        height: 75px;
        top: 125px;
    }

    .first-screen__subtitle br {
        display: none;
    }

    /*  */

    /* about-section */

    .about-section {
        padding-top: 80px;
    }
    .about-section__block {
        flex-direction: column-reverse;
    }
    .about-section__info-block {
        flex-basis: 100%;
    }
    .about-section__visual-block {
        flex-basis: 100%;
        margin-top: 100px;
    }
    .about-section__img {
        max-width: 70%;
        margin: auto;
    }
    .about-section__video {
        max-width: 40%;
        right: 40px;
    }

    /* -- */

    /* business forum video section 991 */
    
    section.business-forum {
        padding: 0 0 80px;
    }

    /* -- */

    /* business forum gallery section 991 */

    section.bf-gallery-sec {
        padding: 80px 0 0;
    }
    .bf-gallery__info {
        flex-direction: column;
        margin-bottom: 40px;
    }
    .bf-gallery__info-title {
        font-size: 32px;
        text-align: center;
        margin-bottom: 24px;
    }
    .bf-gallery__wrapper {
        flex-wrap: wrap;
    }
    .bf-gallery__img-block {
        flex-basis: 50%;
    }

    /* -- */

    /* services-section */

    .services-section__item {
        flex-basis: 48%;
    }

    /* advantages-section */

    .advantages-section__info-block {
        flex-basis: 100%;
    }
    .advantages-section__visual-block {
        flex-basis: 100%;
    }
    .advantages-section__item-1 {
        margin-top: 40px;
    }
    .advantages-section__visual-block {
        flex-basis: 100%;
        flex-direction: column;
    }
    .advantages-section__visual-block-left,
    .advantages-section__visual-block-right {
        flex-basis: 100%;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .advantages-section__visual-block-left {
        margin: 40px 0;
    }
    .advantages-section__item {
        flex-basis: 48%;
        box-sizing: border-box;
        margin: 0;
    }
    .advantages-section__item-4-title br {
        display: none;
    }

    /* -- */

    /* numbers-section__item */

    .numbers-section__item {
        flex-direction: column;
    }
    .numbers-section__item-text {
        margin: 0;
        text-align: center;
    }

    /* -- */

    /* projects-section */

    .projects-section__item {
        flex-basis: 100%;
        height: auto;
        margin-bottom: 40px;
    }
    .projects-section__item-logo svg {
        height: 100px;
    }
    .projects-section__item-info {
        opacity: 1;
    }
    .projects-section__item:hover .projects-section__item-content {
        transform: translate(0, 0);
        -webkit-transform: translate(0, 0);
        -moz-transform: translate(0, 0);
    }
    .projects-section__item-logo,
    .projects-section__item:hover .projects-section__item-logo {
        margin-bottom: 20px;
    }
    section.projects-section {
        padding-bottom: 40px;
    }

    /* -- */

    /* team-section */

    .team-section__items-block {
        justify-content: space-between;
    }
    .team-section__item {
        flex-basis: 48%;
        margin-bottom: 15px;
    }

    /* -- */

    /* contact-section */

    .contact-section__item {
        flex-basis: 43%;
    }

    /* -- */


}

@media(max-width: 767px) {

    .about-section__title.h2-title,
    .services-section__title.h2-title,
    .advantages-section__title.h2-title,
    .numbers-section__title.h2-title,
    .projects-section__title.h2-title,
    .partners-section__title.h2-title,
    .team-section__title.h2-title,
    .contact-section__title.h2-title {
        display: block;
        text-align: center;
        font-size: 36px;
        margin-bottom: 30px;
    }

    .about-section__title.h2-title::before,
    .services-section__title.h2-title::before,
    .advantages-section__title.h2-title::before,
    .numbers-section__title.h2-title::before,
    .projects-section__title.h2-title::before,
    .partners-section__title.h2-title::before,
    .team-section__title.h2-title::before,
    .contact-section__title.h2-title::before {
        width: 200px;
        height: 60px;
        left: auto;
        right: 0;
    }
    


    /* fullscreen */

    section.fullscreen {
        background-position: inherit;
    }
    .fullscreen__body {
        align-items: center;
    }
    .title {
        font-size: 45px;
    }
    .title:before {
        width: 200px;
        height: 60px;
        top: 85px;
        left: 100px;
    }
    .first-screen__subtitle {
        font-size: 20px;
    }

    /* -- */

    /* about-section */

    .about-section {
        padding: 40px 0;
    }

    .about-section__visual-block {
        margin-top: 30px;
    }

    .about-section__img {
        max-width: 100%;
        margin: 0 auto 30px;
    }

    .about-section__video {
        position: initial;
        max-width: 100%;
        margin: auto;
        width: 100%;
    }

    /* -- */

    /* business forum video section 767 */
    
    section.business-forum {
        padding: 0 0 40px;
    }
    .business-forum__h2-title.h2-title {
        font-size: 27px;
        margin-bottom: 30px;
    }
    .bf__video-descr-bold {
        margin: 20px 0 0;
        font-size: 16px;
    }
    .bf__video-descr-bold br {
        display: none;
    }
    .business-forum__video-wrapper video {
        height: 270px;
        object-fit: cover;
    }

    /* -- */

    /* business forum gallery section 767 */

    section.bf-gallery-sec {
        padding: 40px 0 0;
    }
    .bf-gallery__info-title {
        font-size: 26px;
    }
    .bf-gallery__info-text {
        font-size: 16px;
    }

    /* -- */

    /* telegram link section */

    section.telegram-link-sctn {
        padding: 40px 0;
    }
    .telegram-link-sctn__text {
        font-size: 16px;
    }
    .telegram-link-sctn__link {
        width: 250px;
        padding: 15px 30px;
    }

    /* -- */

    /* services-section */

    section.services-section {
        padding: 40px 0 10px;
    }

    .services-section__item {
        flex-basis: 100%;
        margin-bottom: 30px;
    }

    /* -- */

    /* advantages-section */

    section.advantages-section {
        padding: 40px 0 10px;
    }

    .advantages-section__visual-block-left {
        margin: 30px 0 0 0;
    }

    .advantages-section__item {
        flex-basis: 100%;
        margin-bottom: 30px;
    }

    .advantages-section__visual-block-right {
        flex-direction: column-reverse;
        flex-wrap: nowrap;
    }

    /* -- */

    /* numbers-section */

    section.numbers-section {
        padding: 40px 0 10px;
    }

    .numbers-section__item {
        flex-basis: 100%;
        margin-bottom: 30px;
        padding: 20px;
        text-align: center;
    }

    .numbers-section__item-text br {
        display: none;
    }

    /* -- */

    /* projects-section */

    section.projects-section {
        padding: 40px 0 10px;
    }

    .projects-section__info-text {
        margin-bottom: 30px;
    }

    .projects-section__item {
        margin-bottom: 30px;
        padding: 30px;
    }

    /* -- */

    /* partners-section */

    section.partners-section {
        padding: 40px 0 10px;
    }

    .partners-section__item {
        flex-basis: 48%;
        margin-bottom: 30px;
    }

    /* -- */

    /* team-section */

    section.team-section {
        padding: 40px 0 0 0;
    }

    .team-section__item {
        margin-bottom: 30px;
    }

    .team-section__item-title {
        font-size: 15px;
        margin-bottom: 5px;
    }

    .team-section__item-subtitle {
        font-size: 14px;
    }

    .team-section__item-img img {
        width: 140px;
    }

    /* -- */

    /* contact-section */

    section.contact-section {
        padding: 40px 0 10px;
    }

    .contact-section__item {
        flex-basis: 100%;
        padding: 30px 15px;
    }

    /* -- */
}

@media(max-width: 360px) {
    .team-section__item-title {
        font-size: 13px;
    }

    .team-section__item-subtitle {
        font-size: 11px;
    }
}