body {
    -webkit-animation-name: fadeIn;
    -webkit-animation-duration: 1s;
    animation-name: fadeIn;
    animation-duration: 1s;
    font-family: 'Montserrat', sans-serif;
    color: #000;
    font-size: 17px;
    font-weight: 400;
    line-height: 26px;
    --main-color: #cbab4c;
    --second-color: #0b3494;
    --third-color: #1040ae;
    --fourth-color: #e9b321;
    padding-top: 110px;
}
body.home {
    padding-top: 0;
}
* {
    outline: none;
}
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.marg-top {
    margin-top: 60px;
}
.marg-top-small {
    margin-top: 30px;
}
.marg-top-big {
    margin-top: 100px;
}
.marg-bottom {
    margin-bottom: 60px;
}
.absolute-link {
    position: relative;
}
.absolute-link .absolute-link__item {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 9;
}
.position-relative {
    position: relative;
}
.section-heading {
    font-size: 36px;
    line-height: 42px;
    font-weight: 400;
    color: #000;
    padding-left: 30px;
    position: relative;
    font-weight: 900;
    text-transform: uppercase;
}
.section-heading:before {
    content: '';
    height: 100%;
    width: 6px;
    background-color: var(--main-color);
    position: absolute;
    top: 0;
    left: 0;
}
.section-heading--bigger {
    font-size: 42px;
}
.page-heading {
    font-size: 60px;
    line-height: 62px;
    font-weight: 900;
    color: #fff;
    padding-left: 30px;
    position: relative;
    font-weight: 900;
    text-transform: uppercase;
    padding-left: 30px;
    padding-bottom: 5px;
    padding-top: 5px;
    margin: 0;
}
.page-heading span {
    font-size: initial;
    font-weight: 500;
    display: block;
    letter-spacing: 2px;
    line-height: initial;
}
.page-heading:before {
    content: '';
    height: 100%;
    width: 6px;
    background-color: var(--main-color);
    position: absolute;
    top: 0;
    left: 0;
}
.flex-wrapper {
    display: flex;
    flex-wrap: wrap;
}
.wrapper {
    padding-left: 12vw;
    padding-right: 12vw;
}
.text-justify {
    text-align: justify;
}
.page-content {
    font-size: 20px;
    line-height: 30px;
}
.slick-lightbox .slick-arrow {
    position: absolute;
    top: 50%;
    border: none;
    background-color: transparent;
    font-size: 0;
    color: transparent;
    background-image: url(../assets/arrow-down.svg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    width: 40px;
    height: 40px;
    z-index: 9;
    cursor: pointer;
}
.slick-lightbox .slick-next {
    right: 30px;
    transform: translateY(-50%) rotate(-90deg);
}
.slick-lightbox .slick-prev {
    left: 30px;
    transform: translateY(-50%) rotate(90deg);
}

.cbtn {
    border-radius: 24px;
    background-color: var(--main-color);
    color: #fff;
    display: inline-block;
    font-weight: 700;
    padding: 8px 45px;
    text-align: center;
    letter-spacing: 1px;
}
.cbtn:hover {
    background-color: var(--second-color);
}
/* @ @ HEADER @ @ */

/* menu button start */
.nav-icon {
    width: 33px;
    height: 23px;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    z-index: 999999;
    position: relative;
    display: none;
    margin-left: 10px;
}
.nav-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #000;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}
body.home .nav-icon span {
    background-color: #fff;
}
body.menuopened .nav-icon span {
    background: #000;
}
.nav-icon span:nth-child(1) {
    top: 0px;
}
.nav-icon span:nth-child(2),
.nav-icon span:nth-child(3) {
    top: 10px;
}
.nav-icon span:nth-child(4) {
    top: 20px;
}
.nav-icon.open span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
}
.nav-icon.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.nav-icon.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
.nav-icon.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
}
/* menu button end */
.header {
    padding-left: 10px;
    padding-right: 10px;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    transition: .3s;
}
body.scrolled .header {
    padding-top: 10px;
    padding-bottom: 10px;
    box-shadow: 0px 0px 6px rgba(144,144,144, .4);
}
body:not(.home) .header {
    background-color: #fff;
}
body.home .header {
    background-color: transparent;
}
body.home .header__logo img {
    filter: brightness(0) invert(1);
}
.header__logo {
    width: 150px;
}
.header__logo img {
    width: 150px;
    transition: .3s;
}
body.scrolled .header__logo img {
    width: 130px;
}
.header__items {
    flex: 1;
}
.header__top {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    color: #000;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    text-transform: uppercase;
}
.header__top a span {
    font-weight: 700;
    display: inline-block;
    margin-right: 10px;
}
body.home .header__top  {
    color: #fff;
}
/* menu start */
.header__menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.header__menu>div>ul {
    display: flex;
    list-style: none;
    padding: 10px 0;
    margin: 0;
}
.header__menu>div>ul>li {
    margin-left: 40px;
    position: relative;
    padding-bottom: 5px;
}
.header__menu>div>ul>li>a {
    text-transform: uppercase;
    font-weight: 500;
    padding-bottom: 2px;
    position: relative;
}
.header__menu>div>ul>li>a:after {
    content: '';
    width: 0;
    height: 1px;
    background-color: #000;
    transition: .3s;
    position: absolute;
    left: 0;
    top: 100%;
    display: inline-block;
}
body.home .header__menu>div>ul>li>a:after {
    background-color: #fff;
}
.header__menu>div>ul>li>a:hover:after {
    width: 100%;
} 
.header__menu>div>ul>li>a {
    color: #000;
}
body .header__menu>div>ul>li.current-page-ancestor>a,
body .header__menu>div>ul>li.current-menu-item>a {
    color: var(--main-color);
}
body .header__menu>div>ul>li>ul>li.current-menu-item>a {
    text-shadow: 0px 0px 1px rgba(0, 0, 0, 1);
}
body .header__menu>div>ul>li.current-page-ancestor>a:after,
body .header__menu>div>ul>li.current-menu-item>a:after {
    width: 100%;
    background-color: var(--main-color);
}
body.home .header__menu>div>ul>li>a {
    color: #fff;
}

.header__menu>div>ul>li>ul ul {
    display: none !important;
}
/* menu end */
/* @ @ HEADER END @ @ */

/* @ @ BANER START @ @ */
.baner-wrapper {
    position: relative;
    width: 100%;
}
.baner {
    position: relative;
    width: 100%;
}
.baner__socials {
    position: absolute;
    bottom: 60px;
    right: 12vw;
    z-index: 9;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.baner__socials a,
.baner__socials button {
    margin: 5px 0;
    padding: 0;
    cursor: pointer;
    display: inline-block;
}
.baner__socials button {
    border: none;
    font-size: 0;
    background-color: transparent;
    margin-bottom: 20px;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
}
@keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.2);
    }
    100% {
      transform: scale(1);
    }
}
.baner__socials button svg {
    width: 36px;
    height: auto;
}
.baner__socials a svg {
    filter: brightness(0) invert(1);
}
.baner__item {
    display: flex !important;
    align-items: center;
    height: 100vh;
    width: 100%;
    min-height: 600px;
    background-color: #000;
    position: relative;
    padding: 0 15px;
}
.baner__item:before {
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    background-image: var(--background);
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
    background-size: cover;
}
.baner__content {
    opacity: 0;
    position: relative;
    color: #fff;
    padding: 120px 0 60px 0;
    transition: opacity 0.3s ease-in-out;
}
.baner__content.show {
    opacity: 1;
}
.baner__title {
    font-size: 84px;
    line-height: 94px;
    font-weight: 400;
    margin-bottom: 0;
    text-transform: uppercase;
}
.baner__title strong {
    font-weight: 800;
}
.baner__txt {
    font-weight: 700;
    font-size: 20px;
}
.baner__btn {
    display: inline-block;
    border: 2px solid var(--main-color);
    color: #fff;
    text-transform: uppercase;
    font-size: 20px;
    line-height: 31px;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    margin-top: 20px;
    border-radius: 26px;
    padding: 6px 20px;
    transition: .3s;
}
.baner__btn:hover {
    background-color: var(--main-color);
}
.baner .slick-dots {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0;
    bottom: 60px;
    left: 50%;
    transform: translateY(-50%);
    z-index: 9;
}
.slider-counter {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    color: #fff;
    font-size: 22px;
    opacity: .5;
}
.slider-counter span {
    position: relative;
    font-size: 32px;
    top: 10px;
    font-weight: 700;
    margin-right: 2px;
}
/* @ @ BANER END @ @ */
/* @ @ HERO START @ @ */
.hero {
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 80px;
    display: flex;
    align-items: center;
    position: relative;
    background-color: #000;
}
.hero:before {
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    background-image: var(--herobg);
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
    background-size: cover;
    /* background-attachment: fixed; */
}
/* @ @ HERO END @ @ */
/* @ @ CHESS START @ @ */
.chess {
    display: flex;
    flex-wrap: wrap;
}
.chess:nth-child(even) {
    flex-direction: row-reverse;
}
.chess__txt {
    text-align: justify;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.chess .cbtn {
    margin-top: 40px;
}
.chess__img {
    padding: 0;
}
.chess__img img {
    width: 100%;
}
/* @ @ CHESS END @ @ */
/* @ @ LISTNUMBERS START @ @ */
.listnumbers__content {
    padding: 15px 15px 30px 10px;
    background-color: #f7f7f7;
    display: flex;
    flex-wrap: wrap;
}
.listnumbers__txt {
    max-width: 60%;
    flex: 0 0 60%;
    padding-top: 10px;
    padding-left: 10px;
}
.listnumbers__items {
    padding-right: 60px;
}
.listnumbers__item {
    display: flex;
    align-items: flex-start;
    margin: 30px 0;
}
.listnumbers__nr {
    display: inline-block;
    font-size: 94px;
    line-height: 78px;
    color: #000;
    opacity: .15;
    font-weight: 900;
    width: 150px;
}
.listnumbers__item p {
    margin-top: 0;
    margin-bottom: 0;
}
.listnumbers__item p strong {
    font-weight: 900;
}
.listnumbers__item>div {
    flex: 1;
}
.listnumbers__img {
    max-width: 40%;
    flex: 0 0 40%;
}
.listnumbers__img img {
    width: 100%;
}
.listnumbers__items .cbtn {
    margin-top: 40px;
    margin-left: 40px;
}
/* @ @ LISTNUMBERS END @ @ */
/* @ @ BOXES START @ @ */
.boxes__items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 10px;
}
.boxes__item {
    max-width: calc(33.333% - 15px);
    flex: 0 0 calc(33.333% - 15px);
    background-color: var(--third-color);
    color: #fff;
    padding: 20px;
}
.boxes__item figure {
    height: 115px;
    margin-bottom: 20px;
}
.boxes__item figure img {
    height: 100%;
    width: auto;
    filter: brightness(0) invert(1);
}
.boxes__name {
    font-weight: 900;
    font-size: 18px;
    line-height: 24px;
    margin: 10px 0;
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
    min-height: 60px;
    display: flex;
    align-items: center;
}
.boxes__name:before {
    content: '';
    height: 100%;
    width: 6px;
    background-color: var(--main-color);
    position: absolute;
    top: 0;
    left: 0;
}
/* @ @ BOXES END @ @ */
/* @ @ NR START @ @ */
.nr-wrapper {
    margin-top: 30px;
    background-image: url(../assets/nr.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding-top: 20px;
    padding-bottom: 60px;
}
.nr__left {
    max-width: 50%;
    flex: 0 0 50%;
    padding-right: 40px;
}
.nr__right {
    max-width: 50%;
    flex: 0 0 50%;
    padding-left: 40px;
}
.nr__bg {
    display: inline-block;
    position: absolute;
    top: 70px;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: -1;
}
.nr__left .nr__item:nth-child(odd) .nr__bg {
    background-color: var(--second-color);
    border-top-left-radius: 230%;
}
.nr__left .nr__item:nth-child(even) .nr__bg {
    background-color: var(--main-color);
    border-top-right-radius: 230%;
}
.nr__right .nr__item:nth-child(odd) .nr__bg {
    background-color: var(--main-color);
    border-top-left-radius: 230%;
}
.nr__right .nr__item:nth-child(even) .nr__bg {
    background-color: var(--second-color);
    border-top-right-radius: 230%;
}
.nr__item {
    border: 7px solid #fff;
    position: relative;
    border-radius: 66px;
    box-shadow: 0px 0px 13px rgba(144,144,144, .7);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.nr__item>div {
    overflow: hidden;
    position: relative;
    padding: 20px 30px;
    border-radius: 60px;
}
.nr__item:before {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 73px;
    border-style: solid;
    border-width: 16px 16px 0 16px;
    border-color: #0b3494 transparent transparent transparent;
    z-index: 2;
}
.nr__item:after {
    content: "";
    position: absolute;
    bottom: -23px;
    left: 70px;
    border-style: solid;
    border-width: 19px 19px 0 19px;
    border-color: #fff transparent transparent transparent;
    z-index: 1;
}
.nr__left .nr__item:nth-child(odd) {
    background-color: var(--third-color);
}
.nr__left .nr__item:nth-child(even) {
    background-color: var(--fourth-color);
    text-align: right;
}
.nr__left .nr__item:nth-child(even):before {
    border-color: #cbab4c transparent transparent transparent;
    right: 73px;
    left: initial;
}
.nr__left .nr__item:nth-child(even):after {
    right: 70px;
    left: initial;
}
.nr__right .nr__item:nth-child(even) {
    background-color: var(--third-color);
    text-align: right;
}
.nr__right .nr__item:nth-child(odd) {
    background-color: var(--fourth-color);
}
.nr__right .nr__item:nth-child(odd):before {
    border-color: #cbab4c transparent transparent transparent;
    left: 73px;
    right: initial;
}
.nr__right .nr__item:nth-child(even):before {
    right: 73px;
    left: initial;
}
.nr__right .nr__item:nth-child(even):after {
    right: 70px;
    left: initial;
}
.nr__right .nr__item:nth-child(even):last-child:after,
.nr__right .nr__item:nth-child(even):last-child::before {
    display: none !important;
}
.nr-wrapper .nr__item:not(:first-child) {
    margin-top: -20px;
}
.nr__number {
    color: #fff;
    font-weight: 900;
    font-size: 62px;
    line-height: 62px;
    display: block;
}
.nr__name {
    color: #fff;
    font-weight: 900;
    font-size: 32px;
    line-height: 40px;
}
.nr__txt {
    color: #fff;
}
/* @ @ NR END @ @ */
/* @ @ CERT START @ @ */
.cert__items {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.cert__items li {
    max-width: 20%;
    flex: 0 0 20%;
    padding: 10px;
}
.cert__items li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* @ @ CERT END @ @ */
/* @ @ OPINIONS START @ @ */
.ops__items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.ops__item {
    padding: 20px;
}
.ops__item-wrapper {
    height: 100%;
    width: 100%;
    border: 2px solid var(--main-color);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0px 0px 13px rgba(144,144,144, .3);
}
.ops__item-wrapper p {
    font-style: italic;
}
.ops__name {
    font-size: 12px;
    line-height: 14px;
    display: block;
    text-align: right;
    margin-top: 20px;
    font-weight: 600;
}
/* @ @ OPINIONS END @ @ */
/* @ @ LOGOS START @ @ */
.logos__item {
    padding: 20px;
    text-align: center;
}
.baner-txt {
    overflow: hidden;
}
.baner-txt__item {
    background-color: var(--second-color);
    color: #fff;
    font-size: 24px;
    line-height: 34px;
    text-align: center;
    padding: 20px;
}
/* @ @ LOGOS END @ @ */
/* @ @ REALIZATIONS START @ @ */
.real__cats {
    display: flex;
}
.real__cats button {
    text-align: center;
    margin: 10px 20px 10px 0;
    padding: 8px 15px;
    border: 2px solid var(--second-color);
    background-color: transparent;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--second-color);
    cursor: pointer;
    transition: .3s;
}
.real__cats button.active,
.real__cats button:hover {
    color: #fff;
    border-color: var(--main-color);
    background-color: var(--main-color);
}
.real__item {
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
}
.real__title {
    color: var(--main-color);
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
    margin: 20px 0;
}
.real__img {
    max-width: 25%;
    flex: 0 0 25%;
    padding: 15px;
    position: relative;
}
.real__name {
    position: absolute;
    bottom: 30px;
    font-size: 16px;
    line-height: 20px;
    color: #fff;
    font-weight: 700;
    left: 50%;
    transform: translateX(-50%);
    transition: .3s;
    opacity: 0;
    z-index: 1;
}
.real__img:hover .real__name {
    opacity: 1;
}
.real__img img {
    width: 100%;
    transition: .3s;
    height: 350px;
    object-fit: cover;
}
.real__img:hover img {
    filter: brightness(50%);
}
/* @ @ REALIZATIONS END @ @ */
/* @ @ INFO START @ @ */
.info2,
.info1 {
    background-color: #f7f7f7;
    padding: 15px 15px 15px 15px;
}
.info1__icon {
    display: flex;
    flex-wrap: wrap;
}
.info__txt {
    padding-right: 80px;
    max-width: 50%;
    flex: 0 0 50%;
    padding-top: 20px;
}
.info__txt-content {
    padding-left: 30px;
}
.info__txt .cbtn {
    margin-top: 10px;
    margin-bottom: 30px;
    margin-left: 30px;
}
.info1__list {
    position: relative;
    max-width: 50%;
    flex: 0 0 50%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.info1__list>figure {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.info1__list>figure:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #0b3494;
    opacity: .8;
    display: inline-block;
}
.info1__list--second>figure:before {
    background-color: #cbab4c;
}
.info4__list>figure:before {
    display: none !important;
}
.info1__list--third>figure::before {
    display: none !important;
}
.info1__list>figure>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.info1__icon {
    max-width: 50%;
    flex: 0 0 50%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    color: #fff;
}
.info1__icon figure {
    height: 120px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.info1__icon figure img {
    height: 100%;
    width: auto;
    filter: brightness(0) invert(1);
}
.info1__icon-subtitle {
    display: block;
    text-align: center;
    font-size: 13px;
    line-height: 17px;
    margin: 5px 0;
}
.info1__icon-title {
    display: block;
    text-align: center;
    font-size: 40px;
    line-height: 40px;
    font-weight: 900;
}
.info1__icon-txt {
    display: block;
    text-align: center;
    font-size: 30px;
    line-height: 30px;
}

.info2__list {
    padding: 20px 15px;
    align-items: initial;
}
.info2__item {
    max-width: 50%;
    flex: 0 0 50%;
    padding: 15px 15px 15px 25px;
    position: relative;
    color: #fff;
    display: flex;
    align-items: center;
}
.info2__item:nth-child(even) {
    border-right: 1px solid #fff;
}
.info2__item:before {
    content: '';
    width: 85%;
    background-color: #fff;
    height: 1px;
    position: absolute;
    bottom: 0;
}
.info2__item:nth-child(even):before {
    right: -15px;
}
.info2__item:nth-child(odd):before {
    left: -25px;
}
.info2__item:last-child:before,
.info2__item:nth-last-child(2):before {
    display: none !important;
}

.info2__item-nr {
    font-weight: 700;
    font-size: 84px;
    line-height: 84px;
    display: block;
    width: 90px;
}
.info2__item-txt {
    font-weight: 500;
    display: block;
    flex: 1;
}

.info3 {
    background-color: #f7f7f7;
    padding: 0 0 0 15px;
}
.info3 .info__txt {
    padding-top: 30px;
}
.info3__list {
    background-color: var(--second-color);
    color: #fff;
    padding: 30px 30px 30px 60px;
    max-width: 50%;
    flex: 0 0 50%;
    display: flex;
    align-items: center;
}
.info3__list ul {
    padding: 0;
}

.baner-small {
    text-align: center;
}
.baner-small img {
    width: 100%;
}
/* @ @ INFO END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @ FOOTER START @ @ */
.footer {
    overflow: hidden;
    margin-top: 60px;
    background-color: #f7f7f7;
    padding-top: 40px;
    padding-bottom: 40px;
    border-bottom: 4px solid var(--main-color);
}
.footer__links {
    display: flex;
    flex-direction: column;
}
.footer__links a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-weight: 400;
    margin: 15px 0;
    font-weight: 400;
}
.footer__links a svg {
    margin-right: 20px;
}
.footer__links a.footer__phone svg {
    position: relative;
    left: 3px;
}
.footer__links a.footer__address svg {
    position: relative;
    left: 2px;
}

.footer__bottom,
.footer__socials {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.footer__socials {
    margin-bottom: 10px;
    margin-right: 20px;
    margin-top: 10px;
}
.footer__socials a {
    margin-right: 15px;
}
.footer__bottom-txt {
    font-weight: 400;
}
.footer__bottom-txt p {
    margin-top: 0;
    margin-bottom: 0;
}

.footer__map iframe {
    width: 100%;
    height: 100%;
    min-height: 350px;
}
/* @ @ FOOTER END @ @ */

/* @ @ MEDIA START @ @  */
@media(min-width: 2600px) {
    .wrapper {
        padding-left: 200px;
        padding-right: 200px;
        margin-left: auto;
        margin-right: auto;
        max-width: 2600px;
    }

    .baner__socials {
        right: 200px;
    }
}
@media(max-width: 1440px) {
    .wrapper {
        padding-left: 8vw;
        padding-right: 8vw;
    }

    .baner__socials {
        right: 8vw;
    }
    .baner__title {
        font-size: 64px;
        line-height: 74px;
    }

    .real__img {
        max-width: 33.333%;
        flex: 0 0 33.333%;
    }
}
@media(max-width: 1380px) {
    .header__menu>div>ul>li {
        margin-left: 20px;
    }

    .listnumbers__items {
        padding-right: 30px;
    }

    .nr__left {
        padding-right: 20px;
    }
    .nr__right {
        padding-left: 20px;
    }
}
@media(min-width: 1201px) {
    body.scrolled .header {
        padding-bottom: 0 !important;
    }

    .header__menu>div>ul>li>ul {
        list-style: none;
        margin: 0;
        padding: 4px 0;
        background-color: rgba(255, 255, 255, .97);
        position: absolute;
        top: 100%;
        left: 0;
        width: 200px;
        display: none;
        box-shadow: 0px 0px 3px rgba(144,144,144, .3);
    }
    .header__menu>div>ul>li:hover>ul {
        display: block;
    }
    .header__menu>div>ul>li>ul>li>a {
        display: inline-block;
        padding: 6px 15px;
        font-size: 14px;
        line-height: 18px;
    }
    .header__menu>div>ul>li>ul>li>a:hover {
        text-shadow: 0px 0px 1px rgba(0, 0, 0, 1);
    }
}
@media(max-width: 1200px) {
    .nav-icon {
        display: block;
        margin-left: 20px;
    }
    .header__items {
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }
    .header__menu {
        position: fixed;
        background-color: rgba(214, 214, 216, .95);
        top: 0;
        right: -400px;
        height: 100%;
        max-width: 100%;
        width: 330px;
        overflow: auto;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 40px 40px 40px 40px;
        transition: .5s;
    }
    .menuopened .header__menu {
        right: 0;
    }
    .header__menu>div>ul {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 0;
    }
    .header__menu>div>ul>li {
        margin: 5px 0;
        padding: 0;
    }
    body.home .header__menu>div>ul>li>a {
        color: #000;
        font-size: 18px;
    }
    body.home .header__menu>div>ul>li>a:after {
        background-color: #000;
    }
    .header__menu>div>ul>li>ul {
        list-style: none;
        padding-left: 20px;
    }
    .header__menu>div>ul>li>ul>li>a {
        font-size: 14px;
    }
    .header__menu>div>ul>li>ul>li>a:hover {
        text-shadow: 0px 0px 1px rgba(0, 0, 0, 1);
    }

    .boxes__item {
        max-width: calc(50% - 10px);
        flex:  0 0 calc(50% - 10px);
    }

    .info1__icon {
        padding: 15px;
    }
    .info1__icon-title {
        font-size: 34px;
        line-height: 34px;
    }
    .info1__icon-txt {
        font-size: 24px;
        line-height: 24px;
    }

    .real__img img {
        height: 300px;
    }
}
@media(min-width: 993px) {
    .chess:nth-child(odd) .chess__txt {
        padding-right: 50px;
    }
    .chess:nth-child(even) .chess__txt {
        align-items: flex-end;
        padding-left: 50px;
    }
    .chess__img figure {
        height: 100%;
    }
    .chess__img img {
        height: 100%;
        object-fit: cover;
    }

    .listnumbers__img figure {
        height: 100%;
    }
    .listnumbers__img img {
        height: 100%;
        object-fit: cover;
    }

    .nr__left .nr__item:last-child:before {
        left: initial;
        right: -22px;
        bottom: initial;
        top: 50%;
        transform: translateY(-50%) rotate(-90deg);
        border-color: #e9b321 transparent transparent transparent;
    }
    .nr__left .nr__item:last-child:after {
        left: initial;
        right: -31px;
        bottom: initial;
        top: 50%;
        transform: translateY(-50%) rotate(-90deg);
    }
    .nr__right .nr__item:first-child:after {
        transform: translateY(-50%) rotate(-90deg);
        left: -10px;
        top: 50%;
        bottom: initial;
    }
    .nr__right .nr__item:first-child:before  {
        display: none !important;
    }
}
@media(max-width: 992px) {
    .section-heading {
        font-size: 32px;
        line-height: 38px;
    }
    .section-heading--bigger {
        font-size: 38px;
    }
    .page-heading {
        font-size: 42px;
        line-height: 48px;
    }

    body.scrolled .header__logo img {
        width: 90px;
    }

    .baner__item:before {
        background-position: 65%;
    }

    .baner__title {
        font-size: 44px;
        line-height: 54px;
    }

    .chess .cbtn {
        margin-top: 20px;
    }
    .chess__img {
        margin-top: 30px;
    }

    .listnumbers__content {
        padding: 10px;
    }
    .listnumbers__txt {
        max-width: 100%;
        flex: 0 0 100%;
        padding: 10px;
    }
    .listnumbers__img {
        max-width: 100%;
        flex: 0 0 100%;
        margin-top: 30px;
    }

    .nr__left {
        padding-right: 0;
        max-width: 100%;
        flex: 0 0 100%;
    }
    .nr__right {
        padding-left: 0;
        max-width: 100%;
        flex: 0 0 100%;
        margin-top: -20px;
    }
    .nr__item {
        max-width: 100%;
        flex: 0 0 100%;
    }
    .nr__right .nr__item:nth-child(even) {
        background-color: var(--fourth-color);
        text-align: right;
    }
    .nr__right .nr__item:nth-child(odd) {
        background-color: var(--third-color);
    }
    .nr__right .nr__item:nth-child(odd) .nr__bg {
        background-color: var(--second-color);
    }
    .nr__right .nr__item:nth-child(even) .nr__bg {
        background-color: var(--main-color);
    }
    .nr__right .nr__item:nth-child(odd):before {
        border-color: #0b3494 transparent transparent transparent;
    }
    .nr__right .nr__item:nth-child(even):before {
        border-color: #cbab4c transparent transparent transparent;
    }

    .info__txt {
        padding-right: 0;
        max-width: 100%;
        flex: 0 0 100%;
    }
    .info1__list {
        max-width: 100%;
        flex: 0 0 100%;
    }
    .info1__list--third>figure {
        position: initial;
    }
    .info3 {
        padding-left: 0;
    }
    .info3 .section-heading {
        margin-left: 15px;
    }
    .info3 .info__txt-content {
        padding-left: 45px;
    }
    .info3__list {
        max-width: 100%;
        flex: 0 0 100%;
    }

    .cert__items li {
        max-width: 33.333%;
        flex: 0 0 33.333%;
        padding: 5px;
    }

    .real__img img {
        height: 240px;
    }

    .footer {
        margin-top: 30px;
    }
    .footer__map {
        margin-top: 30px;
    }
}
@media(max-width: 767px) {
    .page-content,
    body {
        font-size: 14px;
        line-height: 24px;
    }
    .marg-top-big {
        margin-top: 60px;
    }
    .section-heading {
        font-size: 26px;
        line-height: 32px;
    }
    .section-heading--bigger {
        font-size: 32px;
    }
    .page-heading {
        font-size: 28px;
        line-height: 34px;
    }
    .wrapper {
        padding-left: 5px;
        padding-right: 5px;
    }
    .slick-lightbox .slick-next {
        right: 5px;
    }
    .slick-lightbox .slick-prev {
        left: 5px;
    }

    .baner__socials {
        right: 15px;
    }
    .baner__title {
        font-size: 30px;
        line-height: 38px;
    }
    .baner__txt {
        font-size: 16px;
    }
    .baner__btn {
        font-size: 12px;
        line-height: 19px;
    }

    .hero {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .listnumbers__nr {
        font-size: 80px;
        line-height: 60px;
        width: 120px;
    }
    .listnumbers__items .cbtn {
        margin-top: 20px;
        margin-left: 0;
    }

    .boxes__items {
        gap: 0;
    }
    .boxes__item {
        margin: 10px 0;
        max-width: 100%;
        flex: 0 0 100%;
    }
    .boxes__item figure {
        height: 80px;
    }

    .nr__number {
        font-size: 32px;
        line-height: 32px;
    }
    .nr__name {
        font-size: 20px;
        line-height: 20px;
        margin: 10px 0;
    }

    .logos__item {
        padding: 15px;
    }
    .baner-txt__item {
        font-size: 18px;
        line-height: 24px;
    }

    .info2__item-nr {
        font-size: 60px;
        line-height: 60px;
        width: 60px;
    }

    .real__img {
        max-width: 50%;
        flex: 0 0 50%;
        padding: 5px;
    }
    .real__img img {
        height: 200px;
    }

    
}
@media(max-width: 500px) {
    body {
        padding-top: 80px;
    }
    .header__top a span {
        display: none;
    }
    .header__logo img {
        width: 100px;
    }

    .listnumbers__item {
        flex-wrap: wrap;
    }
    .listnumbers__nr {
        width: 100%;
        font-size: 40px;
        line-height: 30px;
        margin-bottom: 10px;
    }

    .info1__icon {
        max-width: 100%;
        flex: 0 0 100%;
    }
    .info1__icon-title {
        font-size: 24px;
        line-height: 24px;
    }
    .info1__icon-txt {
        font-size: 20px;
        line-height: 20px;
    }
    .info2__item {
        max-width: 100%;
        flex: 0 0 100%;
        border: none !important;
        padding-left: 5px;
        padding-right: 15px;
    }
    .info2__item:before {
        content: '';
        width: 85%;
        background-color: #fff;
        height: 1px;
        position: absolute;
        bottom: 0;
        right: -15px !important;
        left: 25px !important;
    }
    .info2__item:nth-last-child(2):before {
        display: inline-block !important;
    }
}
/* @ @ MEDIA END @ @  */