/* @font-face {
    font-family: boldFont;
    src: url(../fonts/Stolzl-Bold.woff2);
}
@font-face {
    font-family: mediumFont;
    src: url(../fonts/Stolzl-Medium.woff2);
}
@font-face {
    font-family: lightFont;
    src: url(../fonts/Stolzl-Light.woff2);
}
@font-face {
    font-family: regularFont;
    src: url(../fonts/Stolzl-Regular.woff2);
} */
body {
    -webkit-animation-name: fadeIn;
    -webkit-animation-duration: 1s;
    animation-name: fadeIn;
    animation-duration: 1s;
    /* font-family: lightFont, sans-serif; */
    font-family: "stolzl", sans-serif;
    font-weight: 300;
    color: var(--second-color);
    font-size: 16px;
    font-weight: 300;
    line-height: 26px;
    --main-color: #023d80;
    --second-color: #6D6D6D;
}
body:not(.home) {
    padding-top: 160px;
}
* {
    outline: none;
}
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
h1,h2,h3,h4,h5,h6 {
    /* font-family: boldFont, sans-serif; */
    font-family: "stolzl", sans-serif;
    font-weight: 700;
}
.marg-top {
    margin-top: 60px;
}
.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;
}
.text-center {
    text-align: center;
}
.position-relative {
    position: relative;
}
.section-heading {
    font-size: 40px;
    line-height: 59px;
    /* font-family: boldFont, sans-serif; */
    font-family: "stolzl", sans-serif;
    font-weight: 700;
    color: var(--main-color);
    position: relative;
    padding-bottom: 30px;
    margin-bottom: 30px;
}
.section-heading:after {
    content: '';
    display: inline-block;
    background-color: #E6262A;
    max-width: 100%;
    width: 160px;
    height: 3px;
    position: absolute;
    left: 0;
    bottom: 0;
}
.section-heading.section-heading--center:after {
    left: 50%;
    transform: translateX(-50%);
}
.section-heading--white {
    color: #fff;
}
.section-subtitle {
    font-size: 20px;
    /* font-family: boldFont, sans-serif; */
    font-family: "stolzl", sans-serif;
    font-weight: 700;
    color: var(--main-color);
    margin-top: -5px;
}
.page-heading {
    font-size: 24px;
    line-height: 48px;
    font-weight: 400;
    color: #000;
    margin-bottom: 60px;
}

.c-list ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
}
.c-list ul li {
    text-transform: uppercase;
    padding-left: 40px;
    /* font-family: boldFont, sans-serif; */
    font-family: "stolzl", sans-serif;
    font-weight: 700;
    position: relative;
    margin: 20px 0;
}
.c-list ul li:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    width: 25px;
    height: 25px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-image: url(../assets/check.svg);
}
/* @ @ 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: 30px;
}
.nav-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--main-color);
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}
.menuopened .nav-icon span,
body.home:not(.scrolled) .nav-icon span {
    background: #fff;
}
.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 {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    padding-top: 35px;
    padding-bottom: 35px;
    position: fixed;
    background-color: transparent;
    transition: .3s;
}
body:not(.home) .header {
    box-shadow: 0px 9px 73px #00000005;
    background-color: #fff;
}
.scrolled .header {
    padding-top: 15px;
    padding-bottom: 15px;
    background-color: #fff;
}
.header__logo img {
    transition: .3s;
    width: 210px;
}
.scrolled .header__logo img  {
    width: 160px;
}
body.home .header__logo img {
    filter: brightness(0) invert(1);
}
body.home.scrolled .header__logo img {
    filter: none;
}
.header__items {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.header__icons {
    display: flex;
    align-items: center;
    margin-left: 50px;
    padding-left: 50px;
    padding-top: 3px;
    padding-bottom: 3px;
    border-left: 1px solid var(--main-color);
}
body.home .header__icons {
    border-left: 1px solid #fff;
}
body.home.scrolled .header__icons {
    border-left: 1px solid var(--main-color);
}
.header__icons a {
    display: flex;
    align-items: center;
}
body.home.scrolled .header__icons svg path,
.header__icons svg path {
    fill: var(--main-color);
}
body.home .header__icons svg path {
    fill: #fff;
}

.search-btn {
    border: none;
    background-color: transparent;
    padding: 0;
    margin: 0;
    margin-left: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
}
.header__search {
    position: absolute;
    top: 100%;
    right: 60px;
    display: none;
    background-color: #fff;
    padding: 5px;
}
.search-results__title {
    /* font-family: regularFont, sans-serif; */
    font-family: "stolzl", sans-serif;
    font-weight: 400;
    color: var(--main-color);
}
.header__search svg path {
    fill: var(--main-color) !important;
}
#searchform {
    display: flex;
    align-items: center;
}
#searchform input {
    border: 1px solid var(--main-color);
    /* font-family: lightFont, sans-serif; */
    font-family: "stolzl", sans-serif;
    font-weight: 300;
    padding: 5px;
}
#searchform button {
    border: none;
    background-color: transparent;
    /* font-family: lightFont, sans-serif; */
    font-family: "stolzl", sans-serif;
    font-weight: 300;
    font-size: 0;
    cursor: pointer;
    color: transparent;
}
/* menu start */
.header__menu>div>ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.header__menu>div>ul>li {
    margin-left: 60px;
}
.header__menu>div>ul>li>a {
    padding-bottom: 3px;
    display: inline-block;
    text-align: center;
    color: var(--main-color);
    /* font-family: boldFont, sans-serif; */
    font-family: "stolzl", sans-serif;
    font-weight: 700;
    position: relative;
}
body.home:not(.scrolled) .header__menu>div>ul>li>a {
    color: #fff;
}
.header__menu>div>ul>li>a:after {
    content: '';
    width: 0;
    height: 1px;
    display: inline-block;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: .3s;
    background-color: var(--main-color);
}
body.home:not(.scrolled) .header__menu>div>ul>li>a:after {
    background-color: #fff;
}
.header__menu>div>ul>li>a:hover:after {
    width: 100%;
}
.header__menu ul ul {
    display: none;
}

/* menu end */
/* @ @ HEADER END @ @ */

/* @ @ BANER START @ @ */
.baner {
    background-color: var(--main-color);
    overflow: hidden;
    position: relative;
}
.baner>svg {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.baner .pattern {
    opacity: .07;
    position: absolute;
    top: -260px;
    right: -20vw;
    z-index: 1;
    min-height: calc(100% + 260px);
    animation: rotate 120s linear infinite;
}

@keyframes rotate {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
}
.baner__slick {
    max-width: 100%;
}
.baner__item {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: var(--main-color);
    height: 100vh !important;
    max-height: 1100px !important;
    min-height: 560px !important;
    width: 100%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    position: relative;
}
.baner__item.slick-active {
    background-blend-mode: multiply;
}
.baner__item:before {
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: var(--background);
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
    background-size: cover;
}
.baner__title {
    font-size: 80px;
    line-height: 96px;
    padding-top: 30px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    position: relative;
    z-index: 9;
}
.baner .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    border: none;
    color: transparent;
    width: 40px;
    height: 40px;
    z-index: 91;
    background-image: url(../assets/arrow.svg);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}
.baner .slick-next {
    right: 3vw;
    transform: translateY(-50%) rotate(180deg);
}
.baner .slick-prev {
    left: 3vw;
}
.baner .slick-dots {
    position: absolute;
    bottom: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 50%;
    transform: translateX(-50%);
    list-style: none;
    z-index: 9;
    margin: 0;
    padding: 0;
}
.baner .slick-dots li {
    border-radius: 50%;
    border: 1px solid #fff;
    width: 26px;
    height: 26px;
    position: relative;
    transition: .3s;
    cursor: pointer;
    margin: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
/* .baner .slick-dots li:before {
    content: '';
    background-color: #fff;
    display: inline-block;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: .3s;
} */
.baner .slick-dots li.slick-active {
    /* width: 42px;
    height: 42px; */
    transform: scale(1.7);
}
.baner .slick-dots li.slick-active:before {
    opacity: 1;
}
.baner .slick-dots li button {
    font-size: 0;
    color: transparent;
    cursor: pointer;
    border: none;
    background-color: #fff;
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    opacity: 0;
    transition: .3s;
    padding: 0;
    transform: scale(.7);
}
.baner .slick-dots li.slick-active button {
    opacity: 1;
}
/* @ @ BANER END @ @ */
/* @ @ INFO START @ @ */
.info {
    padding-top: 200px;
    padding-bottom: 200px;
    overflow: hidden;
    position: relative;
}
.info .pattern {
    opacity: .4;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    z-index: 1;
    min-height: 120%;
    max-height: 110%;
}
.info .container {
    position: relative;
    z-index: 9;
}
.info header h2 {
    max-width: 100%;
    width: 730px;
    margin: 0 auto;
}
.info .c-list {
    display: flex;
    justify-content: center;
}
.info .c-list ul {
    align-items: center;
    margin-top: 30px;
    max-width: 100%;
    width: 450px;
}
.info .c-list li {
    padding: 0;
    display: flex;
    text-align: center;
    justify-content: center;
}
.info .c-list li svg {
    margin-right: 20px;
    position: relative;
    top: 2px;
    min-width: 25px;
    min-height: 25px;
}
.info .c-list li::before {
    display: none;
}
/* @ @ INFO END @ @ */
/* @ @ BOXES ICOn START @ @ */
.boxes {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding-top: 140px;
    padding-bottom: 140px;
    background-blend-mode: multiply;
    position: relative;
    background-color: var(--main-color);
}
.boxes:before {
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: var(--boxesbackground);
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
    background-size: cover;
}
.boxes__item {
    margin-top: 30px;
}
.boxes__item-wrapper {
    padding: 20px 15px;
    background-color: rgba(2, 49, 103, 0.65);
    width: 100%;
    height: 100%;
}
.boxes__item figure {
    height: 45px;
    margin-top: 10px;
    margin-bottom: 20px;
}
.boxes__item figure img {
    width: auto;
    height: 45px;
}
.boxes__item-title {
    color: #fff;
    /* font-family: boldFont, sans-serif; */
    font-family: "stolzl", sans-serif;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 10px;
}
.boxes__item-txt {
    color: #fff;
    margin-top: 0;
    font-family: "stolzl", sans-serif;
    line-height: 29px;
    font-weight: 300;
}
/* @ @ BOXES ICON END @ @ */
/* @ @ CTA START @ @ */
.page-template-template-contact .cta {
    display: none;
}
.cta {
    margin-top: 60px;
    background-color: #F3F3F3;
    padding-top: 60px;
    padding-bottom: 60px;
    overflow: hidden;
    position: relative;
}
.cta--bg {
    position: relative;
    background-color: var(--main-color);
}
.cta--bg:before {
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: var(--backgroundfooter);
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
    background-size: cover;
}
.cta .pattern {
    filter: brightness(95%);
    position: absolute;
    top: 50%;
    right: -10%;
    transform: translateY(-50%);
    z-index: 1;
    width: 60%;
}
.cta .container {
    position: relative;
    z-index: 9;
}
.cta .section-heading {
    margin-bottom: 10px;
    padding-bottom: 10px;
}
.cta__link {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.cta__btn {
    padding: 25px 40px;
    background-color: var(--main-color);
    color: #fff;
    /* font-family: boldFont, sans-serif; */
    font-family: "stolzl", sans-serif;
    font-weight: 700;
    text-align: center;
    border: 1px solid var(--main-color);
}
.cta__btn:hover {
    background-color: transparent;
    color: var(--main-color);
}
.cta--bg,
.cta--bg .section-heading{
    color: #fff;
}
.cta--bg .section-heading:after {
    left: 100px;
}
.cta--bg .cta__btn {
    background-color: transparent;
    border: 2px solid #fff;
}
.cta--bg .cta__btn:hover {
    background-color: #fff;
    color: var(--main-color);
}
/* @ @ CTA END @ @ */
/* @ @ OFFER START @ @ */
.offer-item {
    padding-top: 70px;
    padding-bottom: 70px;
    margin-top: 30px;
    position: relative;
    background-color: var(--main-color);
}
.container {
    position: relative;
    z-index: 99;
}
.offer-item:before {
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: var(--backgroundthumb);
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
    background-size: cover;
}
.offer-item__title h2 {
    padding: 0;
    margin: 20px 0 20px 0;
}
.offer-item__title h2:after{
    display: none;
}
.offer-item__link {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.offer-item__btn {
    padding: 20px 40px;
    background-color: transparent;
    color: #fff;
    /* font-family: boldFont, sans-serif; */
    font-family: "stolzl", sans-serif;
    font-weight: 700;
    text-align: center;
    border: 2px solid #fff;
}
.offer-item__btn:hover {
    background-color: #fff;
    color: var(--main-color);
    border-color: var(--main-color);
}
/* @ @ OFFER END @ @ */
/* @ @ DOWNLOADS START @ @ */
.files {
    margin-left: 15px;
    margin-right: 15px;
    width: 100%;
    border-bottom: 1px solid #707070;
    padding: 15px 0;
}
.files:last-child {
    border: none;
}
.files__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* font-family: mediumFont, sans-serif; */
    font-family: "stolzl", sans-serif;
    font-weight: 500;
    font-size: 18px;
    margin: 10px 0;
}
.files__btn {
    border: 1px solid #707070;
    padding: 7px 25px;
    font-size: 14px;
    transition: .3s;
    margin-left: 15px;
}
.files__item:hover {
    color: var(--main-color);
}
.files__item:hover .files__btn {
    background-color: var(--main-color);
    color: #fff;
    border-color: var(--main-color);
}
/* @ @ DOWNLOADS END @ @ */
/* @ @ ABOUT START @ @ */
.c-baner {
    background-color: var(--main-color);
    padding-top: 180px;
    padding-bottom: 120px;
    position: relative;
}
.c-baner:before {
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: var(--backgroundabout1);
    background-repeat: no-repeat;
    background-position: center;
    background-blend-mode: multiply;
    background-size: cover;
}
.c-baner__txt {
    color: #fff;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100%;
    width: 725px;
}

.c-info {
    padding-top: 80px;
    padding-bottom: 80px;
    overflow: hidden;
    position: relative;
}
.c-info .pattern {
    opacity: .4;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
    z-index: 1;
    max-height: 95%;
}
.c-info .container {
    position: relative;
    z-index: 9;
}
.c-info__txt {
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100%;
    width: 805px;
}
.c-info__txt--top {
    margin-bottom: 30px;
}
.c-info__txt--bottom {
    margin-top: 30px;
}
.c-info__items {
    display: flex;
    flex-wrap: wrap;
}
.c-info__item {
    margin: 30px 0;
}
.c-info__item figure {
    height: 45px;
    margin-top: 10px;
    margin-bottom: 20px;
}
.c-info__item figure img {
    width: auto;
    height: 45px;
}
.c-info__item-title {
    color: var(--main-color);
    /* font-family: boldFont, sans-serif; */
    font-family: "stolzl", sans-serif;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 10px;
}
.c-info__item-txt {
    color: var(--main-color);
    margin-top: 0;
    line-height: 29px;
}
.d-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.d-list ul li {
    padding-left: 15px;
    position: relative;
}
.d-list ul li:before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--main-color);
    position: absolute;
    top: 9px;
    left: 0;
}

.c-bg {
    background-color: var(--main-color);
    padding-top: 60px;
    padding-bottom: 60px;
    color: #fff;
    position: relative;
}
.c-bg:before {
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: var(--backgroundabout2);
    background-repeat: no-repeat;
    background-position: center;
    background-blend-mode: multiply;
    background-size: cover;
}
.c-bg__items {
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100%;
    margin-top: 20px;
    width: 805px;
}
.c-bg__item {
    margin: 5px 0;
    padding-top: 5px;
    padding-bottom: 10px;
    position: relative;
}
.c-bg__item:after {
    content: '';
    display: inline-block;
    background-color: #E6262A;
    max-width: 100%;
    width: 70px;
    height: 3px;
    position: absolute;
    left: 15px;
    bottom: 0;
}
.c-bg__item:last-child:after {
    display: none;
}
.c-bg__title {
    color: #fff;
    font-size: 20px;
    line-height: 30px;
    max-width: 100%;
    width: 555px;
    margin-left: auto;
    margin-right: auto;
}
.c-bg__item p {
    margin: 0;
}
.c-bg__item p span.c-bg__name {
    /* font-family: boldFont, sans-serif; */
    font-family: "stolzl", sans-serif;
    font-weight: 700;
    font-size: 18px;
}
/* @ @ ABOUT END @ @ */
/* @ @ OFFER SUBPAGES START @ @ */
.s-wrapper {
    position: relative;
    overflow: hidden;
}
.s-top {
    padding-bottom: 60px;
}
.s-wrapper .pattern {
    opacity: .4;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
    z-index: 1;
    max-height: 105%;
}
.s-wrapper .container {
    position: relative;
    z-index: 9;
}
.s-top__txt {
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100%;
    margin-top: 20px;
    width: 700px;
    /* text-align: center; */
}
.s-top__list {
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100%;
    margin-top: 20px;
    width: 800px;
    margin-top: 30px;
}
.s-top__list-title {
    text-align: center;
    color: var(--main-color);
    /* font-family: boldFont, sans-serif; */
    font-family: "stolzl", sans-serif;
    font-weight: 700;
    padding-bottom: 10px;
}
.s-top__item {
    display: flex;
    margin: 20px 0;
}
.s-top__item-counter {
    border: 1px solid var(--main-color);
    border-radius: 50%;
    min-width: 24px;
    min-height: 24px;
    width: 24px;
    height: 24px;
    display: block;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--main-color);
    padding-left: 3px;
    margin-right: 15px;
}
.s-top__item-txt {
    margin: 0;
}
.s-boxes {
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #F3F3F3;
}
.s-boxes__items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.s-boxes__item {
    padding: 20px 15px;
    min-width: 280px;
    max-width: 385px;
}
.s-boxes__item-wrapper {
    padding: 20px 10px;
    background-color: #fff;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0px 3px 6px #00000029;
}
.s-boxes__item figure {
    height: 45px;
    margin-top: 10px;
    margin-bottom: 20px;
}
.s-boxes__item figure img {
    width: auto;
    height: 45px;
}
.s-boxes__item-title {
    color: var(--main-color);
    /* font-family: boldFont, sans-serif; */
    font-family: "stolzl", sans-serif;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 10px;
}
.s-boxes__item-txt {
    color: var(--main-color);
    margin-top: 0;
    line-height: 29px;
    text-align: center;
}

.list {
    overflow: hidden;
    position: relative;
    background-color: var(--main-color);
}
.list:before {
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: var(--backgroundlist);
    background-repeat: no-repeat;
    background-position: center;
    background-blend-mode: multiply;
    background-size: cover;
}
.list__title {
    max-width: 66.666%;
    flex: 0 0 66.666%;
    padding-top: 80px;
    padding-bottom: 40px;
    padding-left: 80px;
}
.list__item {
    max-width: 33.333%;
    flex: 0 0 33.333%;
    padding: 60px 40px 40px 40px;
    position: relative;
}
.list__item:nth-child(2) {
    background-color: #023D80;
}
.list__item:nth-child(4) {
    background-color: #062F5D;
}
.list__item:nth-child(5) {
    background-color: #fff;
}
.list__item:nth-child(5):before {
    content: '';
    width: 50vw;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background-color: #fff;
}
.list__item figure {
    height: 40px;
    margin-top: 10px;
    position: relative;
    margin-bottom: 20px;
}
.list__item figure img {
    position: relative;
    width: auto;
    height: 40px;
}
.list__item-title {
    color: #fff;
    /* font-family: boldFont, sans-serif; */
    font-family: "stolzl", sans-serif;
    font-weight: 700;
    position: relative;
    font-size: 16px;
    margin-bottom: 10px;
}
.list__item-txt {
    color: #fff;
    margin-top: 0;
    position: relative;
    line-height: 29px;
}
.list__item:nth-child(5) .list__item-title,
.list__item:nth-child(5) .list__item-txt {
    color: var(--main-color);
}
/* @ @ OFFER SUBPAGES END @ @ */
/* @ @ CONTACT START @ @ */
.cont__items {
    justify-content: center;
}
.cont__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 30px;
}
.cont__item figure {
    height: 40px;
    margin-top: 10px;
    position: relative;
    margin-bottom: 20px;
}
.cont__item figure img {
    position: relative;
    width: auto;
    height: 40px;
}
.cont__item-title {
    /* font-family: boldFont, sans-serif; */
    font-family: "stolzl", sans-serif;
    font-weight: 700;
    color: var(--main-color);
    font-size: 16px;
    display: block;
    text-align: center;
}
.cont__item-txt {
    margin: 0;
}
.cont__item-txt p {
    margin-bottom: 0;
}

.cf-form {
    position: relative;
    overflow: hidden;
    padding-top: 120px;
    padding-bottom: 40px;
}
.cf-form .pattern {
    opacity: .4;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
    z-index: 1;
    max-height: 105%;
}
.cf-form .container {
    position: relative;
    z-index: 9;
}
.cf {
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100%;
    margin-top: 20px;
    width: 800px;
    margin-top: 30px;
}
.cf__input-wrapper {
    display: flex;
    flex-wrap: wrap;
}
.cf__input-wrapper label:nth-child(odd) {
    margin-right: 1%;
}
.cf__input-wrapper label:nth-child(even) {
    margin-left: 1%;
}
.cf label br {
    display: none;
}
.cf__input-title {
    color: var(--main-color);
    /* font-family: regularFont, sans-serif; */
    font-family: "stolzl", sans-serif;
    font-weight: 400;
}
.cf label {
    margin-bottom: 20px;
    display: inline-block;
}
.cf__input-wrapper label {
    width: 49%;
}
.cf textarea, .cf__input-wrapper input {
    width: 100%;
    background: transparent;
    /* font-family: lightFont, sans-serif; */
    font-family: "stolzl", sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    color: #1C1C1C;
    padding: 2px 15px;
    border: 1px solid var(--main-color);
    outline: none;
    resize: none;
}
.cf form p {
    margin-top: 0;
    margin-bottom: 0;
    display: flex;
    flex-wrap: wrap;
}
.textarea-label {
    width: 100%;
}
.cf .wpcf7-acceptance {
    /* font-family: lightFont, sans-serif; */
    font-family: "stolzl", sans-serif;
    font-weight: 300;
    font-size: 12px;
    line-height: 14px;
    color: #9C9C9C;
}
.cf .wpcf7-acceptance .wpcf7-list-item {
    margin-left: 0;
}
.cf .wpcf7-acceptance label {
    padding-left: 35px;
    position: relative;
    display: block;
}
.cf .wpcf7-acceptance label:before {
    content: '';
    width: 20px;
    height: 20px;
    background-color: transparent;
    border: 1px solid var(--main-color);
    border-radius: 0;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
}
.cf .wpcf7-acceptance.active label:before {
    border: none;
}
.cf .wpcf7-acceptance input {
    position: absolute;
    visibility: hidden;
    z-index: -1;
}
.cf .wpcf7-acceptance.active label:after {
    content: '';
    width: 20px;
    height: 20px;
    border: none;
    border-radius: 0;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    text-align: center;
    line-height: 17px;
    font-size: 15px;
    padding-left: 1px;
    background-image: url(../assets/check.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}
.wpcf7-not-valid-tip {
    /* font-family: regularFont, sans-serif; */
    font-family: "stolzl", sans-serif;
    font-weight: 400;
    font-size: 14px;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    border-color: #E6262A !important;
    /* font-family: regularFont, sans-serif; */
    font-family: "stolzl", sans-serif;
    font-weight: 400;
    font-size: 14px;
}
.wpcf7 form.sent .wpcf7-response-output {
    border-color: var(--main-color) !important;
    /* font-family: regularFont, sans-serif; */
    font-family: "stolzl", sans-serif;
    font-weight: 400;
    font-size: 14px;
}
.cf input[type='submit'] {
    transition: .3s;
    /* font-family: mediumFont, sans-serif; */
    font-family: "stolzl", sans-serif;
    font-weight: 500;
    background-color: var(--main-color);
    border: 2px solid var(--main-color);
    color: #fff;
    padding: 15px 35px;
    border-radius: 0;
    font-size: 16px;
    cursor: pointer;
    text-transform: uppercase;
}
.cf input[type='submit']:hover {
    color: var(--main-color);
    background-color: transparent;
}

.map {
    position: relative;
    width: 100%;
    margin-top: 120px;
}
#cmap1 {
    width: 100%;
    height: 600px;
}

.map .leaflet-tile-pane {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}
/* @ @ CONTACT END @ @ */
/* @ @  START @ @ */

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

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

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

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

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

/* @ @  END @ @ */
/* @ @ FOOTER START @ @ */
.footer {
    background-color: #fff;
    padding-top: 40px;
    margin-top: 40px;
    padding-left: 15px;
    padding-right: 15px;
}
.footer__logo {
    display: flex;
    align-items: center;
    width: calc(100% - 260px);
}
.footer__logo p {
    padding-left: 60px;
    color: var(--second-color);
    padding-right: 120px;
    font-size: 13px;
    line-height: 30px;
}
.footer__logo img {
    width: 230px;
}
.footer__contact {
    width: 260px;
    padding-top: 10px;
}
.footer__title {
    font-size: 15px;
    /* font-family: boldFont; */
    font-family: "stolzl", sans-serif;
    font-weight: 700;
    color: var(--main-color);
    display: block;
    margin-bottom: 15px;
}
.footer__contact-item {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}
.footer__contact-item svg {
    position: relative;
    top: -2px;
    margin-right: 40px;
}
.footer__contact-item p {
    font-size: 13px;
    line-height: 20px;
    margin-bottom: 15px;
    margin-top: 0;
}
.footer__menu {
    margin-top: 30px;
    border-top: 1px solid rgba(112, 112, 112, .17);
    padding: 40px 0 30px 0;
    width: 100%;
}
.footer__menu {
    display: flex;
    justify-content: space-between;
}
.footer__menu p {
    font-size: 12px;
    font-weight: 300;
}
.footer__menu p a {
    text-decoration: underline;
}
.footer__menu>div>ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}
.footer__menu>div>ul>li {
    margin: 10px 30px 0 0;
}
.footer__menu>div>ul>li>a {
    font-size: 15px;
    /* font-family: boldFont; */
    font-family: "stolzl", sans-serif;
    font-weight: 700;
    color: var(--main-color);
    padding-bottom: 3px;
    position: relative;
}
.footer__menu>div>ul>li>a:after {
    content: '';
    width: 0;
    height: 1px;
    display: inline-block;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: .3s;
    background-color: var(--main-color);
}
.footer__menu>div>ul>li>a:hover:after {
    width: 100%;
}
.footer__menu ul ul {
    display: none;
}
/* @ @ FOOTER END @ @ */

/* @ @ MEDIA START @ @  */
@media(min-width: 2100px) {
   
}
@media(max-width: 1500px) {
   
}
@media(max-width: 1440px) {
    .header__icons {
        padding-left: 30px;
        margin-left: 30px;
    }
    .search-btn {
        margin-left: 30px;
    }
    .header__menu>div>ul>li {
        margin-left: 30px;
    }

    .baner__title {
        font-size: 66px;
        line-height: 78px;
    }
}
@media(max-width: 1280px) {
    .baner__title {
        font-size: 56px;
        line-height: 68px;
    }
}
@media(max-width: 1200px) {
  
}
@media(max-width: 1070px) {
    
}
@media(min-width: 993px) {
 
}
@media(max-width: 992px) {
    body:not(.home) {
        padding-top: 110px;
    }
    .nav-icon {
        display: block;
    }
    .header {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .header__icons {
        width: 100%;
        justify-content: flex-end;
        border: none !important;
        padding-left: 15px;
    }
    .header__menu {
        position: fixed;
        top: 0;
        left: -150vw;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: var(--main-color);
        align-items: flex-start;
        justify-content: flex-start;
        padding: 40px;
        z-index: 99;
        transition: .5s;
    }
    .menuopened .header__menu {
        left: 0;
    }
    .menuopened .header__menu>div>ul>li>a {
        color: #fff;
    }
    .header__menu>div>ul {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }
    .header__menu>div>ul>li {
        margin: 10px 0;
    }
    .header__menu>div>ul>li>a {
        font-size: 22px;
    }

    .baner .slick-dots {
        bottom: 100px;
    }
    .baner>svg {
        height: auto;
        width: 30px;
    }

    .cta__link {
        justify-content: flex-start;
    }

    .footer__contact,
    .footer__logo {
        width: 100%;
    }
    .footer__logo p {
        padding-right: 0;
    }

    .offer-item__link {
        justify-content: flex-start;
    }
    .offer-item__btn {
        padding: 15px 25px;
        margin-top: 20px;
    }

    .files__item {
        font-size: 16px;
    }

    .s-boxes__item {
        width: 50%;
    }

    .list__title {
        max-width: 100%;
        flex: 0 0 100%;
    }
    .list__item {
        max-width: 50%;
        flex: 0 0 50%;
    }

    .cf-form  {
        padding-top: 60px;
    }
    .footer__menu {
        flex-wrap: wrap;
        flex-direction: column;
    }
    .footer__menu>p {
        width: 100%;
        margin-top: 30px;
    }
}
@media(max-width: 767px) {
    .marg-top-big {
        margin-top: 60px;
    }
    .section-heading {
        font-size: 27px;
        line-height: 37px;
    }

    .header__logo img {
        transition: .3s;
        width: 120px;
    }
    .scrolled .header__logo img  {
        width: 70px;
    }

    .baner__title {
        font-size: 42px;
        line-height: 56px;
    }

    .info {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .boxes {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .cta__btn {
        padding: 15px 25px;
    }
    .cta--bg .section-heading:after {
        left: 0;
    }

    .footer__logo {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .footer__logo p {
        padding-left: 0;
        margin-top: 20px;
    }

    .c-baner {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .c-info__item {
        margin: 10px 0;
    }

    .s-boxes__item {
        width: 100%;
    }

    .list__item {
        max-width: 100%;
        flex: 0 0 100%;
    }

    #cmap1 {
        height: 400px;
    }
    
}

@media(max-width: 500px) {
    .baner__title {
        font-size: 34px;
        line-height: 40px;
    }

    .files__item {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }
    .files__btn {
        margin: 15px 0 0 0;
    }
}
/* @ @ MEDIA END @ @  */