body, html {
    font-size: 18px;
    line-height: 30px;
}
body {
    -webkit-animation-name: fadeIn;
    -webkit-animation-duration: 1s;
    animation-name: fadeIn;
    animation-duration: 1s;
    font-family: var(--font-main);
    color: var(--txt-color);
    font-weight: 300;
    --txt-color: #000;
    --color-main: #eaeaea;
    --color-second: #F5F5F5;
    --font-main: 'Poppins', sans-serif;
}
* {
    outline: none;
}
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
body.filtersopened,
body.videoopened {
    overflow: hidden;
}
body.home {
    padding-top: 140px;
}
body button,
body input,
body textarea {
    font-family: var(--font-main);
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
main {
    position: relative;
}
.wrapper-small {
    padding-left: 6vw;
    padding-right: 6vw;
}
.wrapper {
    padding-left: 9vw;
    padding-right: 9vw;
}
.wrapper-big {
    padding-left: 11vw;
    padding-right: 11vw;
}
.flex-wrapper {
	display: flex;
	flex-wrap: wrap;
}
.padds {
    padding-left: 10px;
    padding-right: 10px;
}
.padd-top {
    padding-top: 60px;
}
.padd-bottom {
    padding-bottom: clamp(0px, 6vw, 160px);
}
.marg-top-small {
    margin-top: 30px;
}
.marg-top {
    margin-top: 60px;
}
.marg-top-big {
    margin-top: 100px;
}
.marg-top-biggest {
    margin-top: 160px;
}
.marg-bottom {
    margin-bottom: 60px;
}
.w-100 {
    width: 100%;
}

.color-white {
    color: #fff !important;
}
.font-light {
    font-weight: 200 !important;
}


.slick-dots {
    margin: 20px 0 0 0;
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
}
.slick-dots li {
    margin: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.slick-dots li button {
    border-radius: 0;
    cursor: pointer;
    background-color: #000;
    padding: 0;
    margin: 0;
    width: 12px;
    border: 1px solid #000;
    height: 12px;
    transition: .3s;
    color: transparent;
    font-size: 0;
}
.slick-dots li.slick-active button {
    background-color: #fff;
}

.slick-lightbox .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    font-size: 0;
    color: transparent;
    background-color: #fff;
    width: 34px;
    height: 34px;
    background-repeat: no-repeat;
    background-size: 12px;
    background-position: center;
    background-image: url(../assets/arrow.svg);
    cursor: pointer;
    z-index: 4;
}
.slick-lightbox .slick-prev {
    transform: translateY(-50%) rotate(180deg);
    left: 20px;
}
.slick-lightbox .slick-next {
    right: 20px;
}
.slick-lightbox-slick-caption {
    margin-top: 10px;
    display: inline-block;
}

.bottom-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.bottom-links a {
    margin: 5px 10px 5px 10px;
}

.searchside form {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
}
.searchside form input {
    flex: 1;
    height: 50px;
    font-size: .9rem;
    padding: 20px;
    border: 1px solid #000;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: var(--txt-color);
}
.searchside form input::placeholder {
    color: var(--txt-color);
}
.searchside form button {
    height: 50px;
    width: 50px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0;
    border: none;
    background-color: var(--txt-color);
    cursor: pointer;
    transition: .3s;
}
.searchside form button:hover {
    background-color: #707070;
}
.searchside form button svg {
    filter: brightness(0) invert(1);
    width: 17px;
    height: auto;
}

.breads {
    margin: 20px 0 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.breads p {
    margin: 0;
    font-size: .75rem;
    line-height: 100%;
    font-weight: 200;
    text-transform: uppercase;
}
.breads .sep {
    display: inline-block;
    margin: 0 4px;
}
.breads__phone {
    font-weight: 300;
    font-size: .85rem;
    line-height: 100%;
}
.breads__phone span {
    font-weight: 700;
    display: inline-block;
    margin-left: 15px;
}


.play-cbtn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: none;
    font-size: 0;
    cursor: pointer;
    color: transparent;
    background-color: transparent;
    z-index: 9;
    width: 60px;
    height: 60px;
    padding: 0;
    transition: .3s;
    border-radius: 50%;
    animation: pulse 1.5s infinite ease-in-out;
}
@keyframes pulse {
    0% {
            width: 60px;
            height: 60px;
    }
    50% {
        width: 65px;
        height: 65px;
    }
    100% {
            width: 60px;
            height: 60px;
    }
}
.play-cbtn.loaded {
    transform: translate(-50%, -50%) scale(1);
}
.play-cbtn span {
    background-color: transparent;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 9;
    transition: .3s;
}
.play-cbtn svg {
    width: 100%;
    height: auto;
}
.play-btn:not(.paused) {
    opacity: 0;
}
.play-btn.paused {
    opacity: 1;
}

.video-embed video {
    padding: 60px;
    max-height: 100%;
    max-width: 90%;
}
.video-embed {
    z-index: 99999;
    background-color:rgba(0, 0, 0, .8);
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.video-spinner-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.video-spinner,
.video-spinner:after {
  border-radius: 50%;
  width: 100px;
  height: 100px;
}
.video-spinner {
  display: block;
  font-size: 10px;
  text-indent: -9999em;
  border-top: 1.1em solid rgba(59, 49, 39, 0.5);
  border-right: 1.1em solid rgba(59, 49, 39, 0.5);
  border-bottom: 1.1em solid rgba(59, 49, 39, 0.5);
  border-left: 1.1em solid rgba(37, 30, 24, .5);
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}
@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.video-embed.open {
    display: flex;
}
.video-embed__item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 20px;
}
.video-embed iframe {
    max-width: 100%;
    width: 1100px;
    aspect-ratio: 16/9;
    max-height: 90%;
    height: auto;
}
.video-close {
    position: absolute;
    top: 100px;
    right: 60px;
    border: none;
    background-color: transparent;
    font-size: 42px;
    font-weight: 600;
    z-index: 9;
    color: var(--color-second);
    cursor: pointer;
}

.posrel {
    position: relative;
    z-index: 4;
}
.heading-center {
    display: flex;
    justify-content: center;
    align-items: center;
}
.sectiontitle {
    position: relative;
}
.sectiontitle__sign {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 90%;
    filter: brightness(0);
    opacity: .04;
    z-index: 1;
}
.sectiontitle .section-heading {
    text-transform: uppercase;
}
.section-heading {
    display: block;
    font-size: clamp(29px, 3vw, 60px);
    line-height: 100%;
    font-weight: 600;
    color: var(--txt-color);
    margin-bottom: 40px;
    position: relative;
    padding-top: 20px;
}

.section-heading--white {
    color: #fff;
}
.section-heading:before {
    content: '';
    height: 1px;
    width: 65px;
    max-width: 90%;
    background-color: #000;
    position: absolute;
    top: 0;
    left: 0;
}
.section-heading--white:before {
    background-color: #fff;
}
.section-heading-mid {
    display: block;
    font-size: clamp(24px, 2vw, 35px);
    line-height: 100%;
    font-weight: 600;
    color: var(--txt-color);
    margin-bottom: 30px;
    position: relative;
    padding-top: 20px;
}
.section-heading-mid:before {
    content: '';
    height: 1px;
    width: 65px;
    max-width: 90%;
    background-color: #000;
    position: absolute;
    top: 0;
    left: 0;
}
.section-heading-small {
    display: block;
    font-size: clamp(20px, 1.5vw, 30px);
    line-height: 100%;
    font-weight: 600;
    color: var(--txt-color);
    margin-bottom: 30px;
    position: relative;
    padding-top: 20px;
}
.section-heading-small:before {
    content: '';
    height: 1px;
    width: 65px;
    max-width: 90%;
    background-color: #000;
    position: absolute;
    top: 0;
    left: 0;
}
.section-normal {
    display: block;
    font-size: clamp(26px, 2.7vw, 50px);
    line-height: 120%;
    font-weight: 600;
    color: var(--txt-color);
    margin-bottom: 30px;
    position: relative;
}
.page-heading {
    font-size: 42px;
    line-height: 140%;
    font-weight: 500;
    color: var(--txt-color);
    margin-bottom: 30px;
}
.section-custom {
    display: block;
    font-size: clamp(22px, 2.2vw, 40px);
    line-height: 120%;
    font-weight: 700;
    color: var(--txt-color);
    margin-bottom: 30px;
    position: relative;
}

.pagetitle {
    position: relative;
}
.pagetitle__sign {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    filter: brightness(0);
    opacity: .04;
    z-index: 1;
}
.pagetitle__item {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: flex-start;   
}
.pagetitle__heading {
    font-size: clamp(28px, 3vw, 50px);
    line-height: 100%;
    font-weight: 300;
}
.pagetitle__heading span {
    display: block;
    font-size: 130%;
    line-height: 100%;
    font-weight: 600;
    margin-top: 15px;
}

.text-center {
    text-align: center;
}

.error-wrapper {
    margin-top: 120px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.readmore {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: max-content;
    max-width: 100%;
    font-weight: 600;
}
.readmore:hover {
    color: #707070;
}
.readmore svg {
    transform: rotate(-90deg);
    margin-right: 10px;
    height: auto;
    width: 17px;
    transition: .3s;
}
.readmore:hover svg {
    transform: rotate(-450deg);
}

.cbtn {
    display: inline-block;
    padding: 12px 30px;
    color: #000;
    transition: .3s;
    cursor: pointer;
    background-color: #fff;
    border-radius: 40px 0 40px 0;
    font-size: .8rem;
    font-weight: 600;
    line-height: 110%;
    font-family: var(--font-main);
    border: 1px solid #000;
}
.cbtn--white {
    color: #fff;
    border-color: #fff;
    background-color: transparent;
}
.cbtn--second {
    color: #fff;
    background-color: var(--txt-color);
}
.cbtn--transparent {
    background-color: transparent;
}
.cbtn:hover {
    color: #fff;
    background-color: var(--txt-color);
    border-color: var(--txt-color);
}
.cbtn--second:hover {
    background-color: #fff;
    color: #000;
}
/* @ @ 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;
    background-color: transparent;
    border: none;
}
.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;
}
.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;
    background-color: #fff;
    padding-top: 15px;
    padding-bottom: 10px;
    width: 100%;
    z-index: 999;
    transition: .3s;
}
body.scrolled .header {
    padding-top: 10px;
    border-bottom: 1px solid #eaeaea;
}
body.filtersopened .header,
body.videoopened .header {
    opacity: 0;
    z-index: 4;
}
body:not(.home):not(.scrolled) .header {
    top: -160px;
}

.scrolled .header:before {
    bottom: -20px;
    width: 350px;
}

.header__top {
    align-items: center;
}
.header__top-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.header__btns {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header-search {
    padding: 0;
    border: none;
    margin: 0 0 0 30px;
    width: 30px;
    background-color: transparent;
    cursor: pointer;
}
.header-search svg {
    width: 100%;
    height: auto;
}

/* menu start */

.header__menu {
    max-width: calc(50% - 40px);
    flex: 0 0 calc(50% - 40px);
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.header__menu--left {
    padding-right: 60px;
}
.header__menu--right {
    justify-content: flex-start;
    padding-left: 60px;
}
.header__menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.header__menu>div>ul {
    display: flex;
    align-items: center;
}
.header__menu--left>div>ul>li {
    margin-right: clamp(10px, 2vw, 60px);
}
.header__menu--right>div>ul>li {
    margin-left: clamp(10px, 2vw, 60px);
}
.header__menu>div>ul>li>a {
    display: block;
    text-align: center;
    font-size: .95rem;
    line-height: 120%;
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
    color: #000;
}
.header__menu>div>ul>li>a:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #000;
    transition: .3s;
}
.header__menu>div>ul>li>a:hover:after {
    width: 100%;
}
.header__menu>div>ul>li.current-menu-item>a:after {
    width: 100%;
}
.header__menu ul ul {
    display: none;
}
/* menu end */
.hero {
    position: relative;
    padding-top: 15px;
    background-color: transparent;
}
.hero>svg {
    position: absolute;
    left: 50%;
    height: 85%;
    bottom: 30px;
    transform: translateX(-50%);
    filter: brightness(0) invert(1);
    opacity: .2;
    z-index: 2;
    width: auto;
    max-width: 90%;
    object-fit: contain;
}
.hero--img {
    position: relative;
    padding-bottom: clamp(60px, 20vw, 340px);
}
.hero--img>img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    object-fit: cover;
}
.hero__wrapper {
    border-bottom: 1px solid #000;
    padding-bottom: 20px;
}
.header__logo--desktop {
    max-width: 80px;
    flex: 0 0 80px;
    padding: 0;
    position: relative;
    top: -40px;
    margin-bottom: -40px;
    text-align: center;
    transition: .3s;
}
.header__logo--desktop img {
    transition: .3s;
    width: 100%;
}
.scrolled .header__logo--desktop img {
    width: 60px;
}
.header__socials,
.header__mobile-logo,
.header__mobile,
.header__logo-mobile,
.header__menu-mobile {
    display: none;
}
/* @ @ HEADER END @ @ */
/* @ @ HERO START @ @ */

.hero__top {
    align-items: center;
}
.hero__top-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.hero__btns {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hero-search {
    padding: 0;
    border: none;
    margin: 0 0 0 30px;
    width: 30px;
    background-color: transparent;
    cursor: pointer;
}
.hero-search svg {
    width: 100%;
    height: auto;
}

/* menu start */
.hero__menu {
    max-width: calc(50% - 40px);
    flex: 0 0 calc(50% - 40px);
    display: flex;
    align-items: center;
}
.hero__menu--left {
    padding-right: 60px;
    justify-content: flex-end;
}
.hero__menu--right {
    justify-content: flex-start;
    padding-left: 60px;
}
.hero__menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.hero__menu>div>ul {
    display: flex;
    align-items: center;
}
.hero__menu--left>div>ul>li {
    margin-right: clamp(10px, 2vw, 60px);
}
.hero__menu--right>div>ul>li {
    margin-left: clamp(10px, 2vw, 60px);
}
.hero__menu>div>ul>li>a {
    display: block;
    text-align: center;
    font-size: .95rem;
    line-height: 120%;
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
    color: #000;
}
.hero__menu>div>ul>li>a:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #000;
    transition: .3s;
}
.hero__menu>div>ul>li>a:hover:after {
    width: 100%;
}
.hero__menu>div>ul>li.current-menu-item>a:after {
    width: 100%;
}
.hero__menu ul ul {
    display: none;
}

.hero__logo {
    max-width: 80px;
    flex: 0 0 80px;
    padding: 0;
    position: relative;
    top: -40px;
    margin-bottom: -40px;
    text-align: center;
    transition: .3s;
}
.hero__logo img {
    transition: .3s;
    width: 100%;
}
.scrolled .hero__logo img {
    width: 60px;
}
.hero__socials,
.hero__mobile-logo,
.hero__mobile,
.hero__logo-mobile,
.hero__menu-mobile {
    display: none;
}
/* @ @ HERO END @ @ */
/* @ @ SEARCH POP START @ @ */
.pop-search {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999999;
    display: none;
    background-color: rgba(255,255,255, .95);
    padding: 20px;
}
.pop-search>div {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.pop-search form {
    display: flex;
    align-items: center;
}
.pop-search form input {
    width: 400px;
    background-color: transparent;
    font-size: 1.4rem;
    padding: 20px 15px;
    font-family: 'Poppins', sans-serif;
    border: none;
    border-bottom: 1px solid var(--txt-color);
    color: var(--txt-color);
    max-width: calc(100% - 45px);
}
.pop-search form input::placeholder {
    color: var(--txt-color);
    font-weight: 300;
}
.pop-search button {
    cursor: pointer;
    background-color: transparent;
    border: none;
    margin-left: 15px;
    width: 30px;
    height: 30px;
}
.pop-search__close {
    position: absolute;
    top: 120px;
    right: 120px;
    font-weight: 300;
    font-size: 42px;
    cursor: pointer;
    background-color: transparent;
    border: none;
}

.search-results__item {
    margin-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eaeaea;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    line-height: 125%;
}
.search-results__title {
    font-weight: 500;
}
.search-results__link {
    font-size: .8rem;
}
/* @ @ SEARCH POP END @ @ */
/* @ @ BANER START @ @ */
.baner {
    position: relative;
}
.baner__wrapper {
    height: 110vh;
    min-height: 900px;
    position: relative;
    z-index: 3;
}
.baner__wrapper>img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
    z-index: 1;
}
.baner__wrapper:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(0deg,rgba(0, 0, 0, .7) 0%, rgba(0, 0, 0, .01) 55%);
}
.baner__tablet-mobile,
.baner__mobile,
.baner__tablet {
    display: none !important;
}
.baner__wrapper>svg {
    position: absolute;
    left: 12vw;
    top: 120px;
    filter: brightness(0) invert(1);
    opacity: .2;
    width: 250px;
    max-width: 20%;
    height: auto;
    z-index: 2;
}
.baner__content {
    padding-top: 100px;
    margin-left: auto;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}
.baner__title {
    font-size: clamp(24px, 8vw, 120px);
    line-height: 90%;
    color: #fff;
    margin: 0 0 30px 0;
    font-weight: 200;
}
.baner__title strong {
    font-weight: 400;
}
.baner__txt {
    display: block;
    font-size: clamp(.95rem, 2vw, 30px);
    line-height: 100%;
    font-weight: 200;
    color: #fff;
    max-width: 100%;
    padding-left: 5px;
    width: 560px;
    margin-bottom: 25px;
}

.baner .slick-dots {
    margin: 0;
    position: absolute;
    z-index: 99;
    top: 24%;
    left: 6vw;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column
}
.baner .slick-dots li {
    margin: 0 0 15px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.baner .slick-dots li button {
    background-color: transparent;
    width: 18px;
    border: 1px solid #000;
    height: 18px;
}
.baner .slick-dots li.slick-active button {
    background-color: #000;
}

.baner__btns {
    z-index: 4;
    gap: 15px;
    position: absolute;
    bottom: clamp(60px, 13vw, 360px);
    left: -100px;
}
.baner__btn {
    border: 1px solid #fff;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 15px;
    font-weight: 500;
    transition: .3s;
    min-width: 200px;
}
.baner__btn:hover {
    border-color: #000;
}
.baner__btn-title {
    display: block;
    font-weight: 200;
    margin-bottom: 10px;
    font-size: .9rem;
}
.baner__btn button {
    font-size: .9rem;
    line-height: 140%;
    font-weight: 500;
    color: #fff;
    padding: 0;
    margin: 0;
    cursor: pointer;
    border: none;
    background-color: transparent;
    text-align: left;
}
/* @ @ BANER END @ @ */
/* @ @  START @ @ */

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

/* @ @  END @ @ */
/* @ @ OFFERBOXES START @ @ */
.offerboxes {
    position: relative;
    padding-top: 40px;
}
.offerboxes:before {
    content: '';
    width: 66%;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    background-color: var(--color-second);
}
.offerboxes__item {
    margin-bottom: 40px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
.offerboxes__heading {
    position: relative;
    width: 100%;
}
.offerboxes__heading:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(0deg,rgba(0, 0, 0, .7) 0%, rgba(0, 0, 0, .01) 55%);
}
.offerboxes__heading img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 5/7;
    position: relative;
    z-index: 1;
}
.offerboxes__title {
    color: #fff;
    font-weight: 500;
    font-size: 1.2rem;
    line-height: 110%;
    margin: 0;
    z-index: 3;
    position: absolute;
    bottom: 20px;
    left: 20px;
}

.offerboxes__txt {
    font-weight: 200;
    font-size: .85rem;
    line-height: 150%;
    display: block;
    margin-top: 20px;
    margin-bottom: 40px;
    text-align: justify;
}

.offerboxes__link {
    margin-top: auto;
}
.offerboxes__link:not(:hover) {
    background-color: transparent;
}
/* @ @ OFFERBOXES END @ @ */
/* @ @ OPS START @ @ */
.ops {
    padding-top: 80px;
    padding-bottom: 80px;
    position: relative;
    padding-right: 20vw;
}
.ops>img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(55%);
}
.ops__subtitle {
    margin-top: 40px;
    color: #fff;
    position: relative;
    font-weight: 500;
    font-size: clamp(22px, 2vw, 30px);
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.ops__subtitle p {
    position: relative;
    padding-left: 80px;
}
.ops__subtitle p:before {
    content: '';
    width: 50px;
    height: 1px;
    background-color: #fff;
    position: absolute;
    top: 10px;
    left: 0;
}

.ops__item {
    padding-top: 40px;
    padding-left: 60px;
    padding-right: 60px;
    position: relative;
    color: #fff;
}
.ops__item>svg {
    position: absolute;
    filter: brightness(0) invert(1);
    left: 0;
    top: 0;
    height: auto;
    width: 40px;
}
.ops__txt {
    display: block;
    font-weight: 200;
    text-align: justify;
    font-size: .9rem;
    line-height: 140%;
}
.ops__sign {
    display: block;
    text-align: right;
    font-size: 1.1rem;
}
/* @ @ OPS END @ @ */
/* @ @ TEAMSLIDER START @ @ */
.teamslider .slick-track {
    display: flex !important;
}
.teamslider .slick-slide {
    height: inherit !important;
}
.teamslider__item {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0 15px;
}
.teamslider__img {
    display: block;
    width: 100%;
    overflow: hidden;
}
.teamslider__img img {
    aspect-ratio: 5/7;
    width: 100%;
    object-fit: cover;
    transition: .3s;
}
.teamslider__img:hover img {
    transform: scale(1.05);
}
.teamslider__name {
    display: block;
    margin: 20px 0 5px 0;
    font-weight: 400;
    font-size: 1.1rem;
    line-height: 120%;
}
.teamslider__short {
    font-size: .85rem;
    line-height: 100%;
    font-weight: 200;
    display: block;
    text-align: justify;
}

.teamslider .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    font-size: 0;
    color: transparent;
    background-color: transparent;
    border: 1px solid #000;
    width: 65px;
    height: 45px;
    background-repeat: no-repeat;
    background-size: 13px;
    background-position: center;
    background-image: url(../assets/arrow.svg);
    cursor: pointer;
    transition: .3s;
    z-index: 4;
}
.teamslider .slick-arrow:hover {
    background-color: #fff;
}
.teamslider .slick-prev {
    transform: translateY(-50%) rotate(180deg);
    left: -35px;
}
.teamslider .slick-next {
    right: -35px;
}
/* @ @ TEAMSLIDER END @ @ */
/* @ @ BOXES START @ @ */
.boxes {
    padding-top: 120px;
    position: relative;
}
.boxes__sign {
    position: absolute;
    left: 50%;
    top: -80px;
    transform: translateX(-50%);
    width: 90%;
    filter: brightness(0);
    opacity: .04;
    z-index: 1;
}
.boxes__items {
    gap: 20px 20px;
    position: relative;
    padding-top: 40px;
    padding-bottom: clamp(40px, 6vw, 120px);
}
.boxes__items:before {
    content: '';
    background-color: var(--color-second);
    display: inline-block;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    height: 100%;
}
.boxes__item {
    flex: 1;
    border-left: 1px solid #fff;
    border-bottom: 1px solid #fff;
    text-align: justify;
    padding: 30px;
}
.boxes__txt {
    font-size: .85rem;
    line-height: 140%;
    font-weight: 200;

}
/* @ @ BOXES END @ @ */
/* @ @ INFOBOXES START @ @ */
.infoboxes {
    overflow-x: clip;
}
.infoboxes__items {
    gap: 20px 60px;
}
.infoboxes__item {
    max-width: calc(50% - 30px);
    flex: 0 0 calc(50% - 30px);
    padding-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
.infoboxes__txt {
    font-weight: 200;
    font-size: .8rem;
    line-height: 130%;
    text-align: justify;
    margin-top: 0;
    margin-bottom: 40px;
}
.infoboxes__link {
    margin: auto auto 0 auto;
}
.infoboxes__hours {
    padding-top: 50px;
    padding-left: 60px;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
.infoboxes__hours>img {
    position: absolute;
    right: -4vw;
    top: -6vw;
}
.infoboxes__hours-wrapper {
    padding: 10px 80px 20px 30px;
    border-bottom-right-radius: 60px;
    background-color: rgba(255, 255, 255, .5);
}
.infoboxes__hours-item {
    display: block;
    font-weight: 600;
    font-size: .75rem;
}
/* @ @ INFOBOXES END @ @ */
/* @ @  START @ @ */

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

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

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

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

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

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

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

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

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

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

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

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

/* @ @  END @ @ */
/* @ @ IMGTXT START @ @ */
.imgtxt__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16/11;
}
.imgtxt__content {

}
.imgtxt__title {
    display: block;
    font-size: clamp(22px, 2.3vw, 50px);
    line-height: 140%;
    font-weight: 600;
    color: var(--txt-color);
    margin-bottom: 30px;
    position: relative;
}
.imgtxt__txt {
    text-align: justify;
}
.imgtxt__txt a {
    text-decoration: underline;
}
/* @ @ IMGTXT END @ @ */
/* @ @ POINTSLIST START @ @ */
.pointslist__heading {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    width: 1000px;
    padding: 0 15px;
}
.poinstlist__heading .h2 {
    margin-bottom: 0;
}
.pointslist__top-txt {
    font-weight: 200;
    margin: 10px 0 0 0;
    text-align: justify;
}
.pointslist__items {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
.pointslist__items-wrapper {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    width: 1200px;
    background-color: var(--color-second);
    padding: 60px 15px;
}
.pointslist__items-wrapper div {
    max-width: 100%;
    width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
.pointslist__item {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}
.pointslist__item:not(:last-child) {
    margin-bottom: 15px;
}
.pointslist__item-counter {
    width: 35px;
    height: 35px;
    min-width: 35px;
    min-height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: 500;
    font-size: 1.05rem;
    color: #fff;
    margin-right: 20px;
    background-color: #000;
    border-radius: 50%;
}
.pointslist__item-txt {
    text-align: justify;
    font-weight: 400;
    padding-top: 2px;
}
.pointslist__item-txt * {
    margin: 0;
}
.pointslist__item-txt a {
    text-decoration: underline;
}
/* @ @ POINTSLIST END @ @ */
/* @ @ LISTTXT START @ @ */
.listtxt {
    justify-content: flex-start;
    align-items: flex-start;
}
.listtxt__item {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
.listtxt__item:not(:first-child) {
    margin-top: 20px;
}
.listtxt__item-wrapper {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    width: 1200px;
    padding: 10px 15px;
}
.listtxt__item:nth-child(even) .listtxt__item-wrapper{
    background-color: var(--color-second);
    padding: 40px 15px;
}
.listtxt__item-wrapper div {
    max-width: 100%;
    width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
.listtxt__title {
    margin-bottom: 10px !important;
}
.listtxt__txt {
    font-weight: 200;
    text-align: justify;
}
.listtxt__txt * {
    margin: 0;
}
/* @ @ LISTTXT END @ @ */
/* @ @ TITLEIMG START @ @ */
.titleimg__wrapper {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    width: 1230px;
}
.titleimg__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.titleimg__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.titleimg__txt {
    text-align: justify;
    font-weight: 600;
    max-width: 100%;
    width: 490px;
    margin-bottom: clamp(15px, 4vw, 80px);
}
/* @ @ TITLEIMG END @ @ */
/* @ @ VIDEOPOSTS START @ @ */
.videoposts__item-wrapper {
    width: 100%;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
.videoposts__item:nth-child(odd) .videoposts__item-wrapper {
    background-color: var(--color-second);
}
.videoposts__img {
    width: 100%;
    display: block;
    position: relative;
}
.videoposts__img img {
    width: 100%;
    aspect-ratio: 5/6;
    object-fit: cover;
}
.videoposts__title {
    margin: 20px 0 10px 0;
    font-size: clamp(18px, 1.5vw, 26px);
    line-height: 110%;
    font-weight: 600;
}
.videoposts__title a:hover {
    color: #707070;
}
.videoposts__excerpt {
    margin: 0 0 20px 0;
    font-size: .9rem;
    line-height: 140%;
    font-weight: 200;
    text-align: justify;
}
.videoposts__date {
    display: block;
    margin-bottom: 20px;
}
.videoposts__item .readmore {
    margin-top: auto;
}


.pagination>div {
    align-items: center;
    display: flex;
    justify-content: center;
}
.pagination .page-numbers {
    margin: 0 3px;
    padding: 5px;
    font-size: 1.2rem;
    line-height: 130%;
    text-align: center;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
}
.pagination .page-numbers.current {
    font-weight: 700;    
}

.postsvideo__sidetxt {
    text-align: justify;
}
.postsvideo__img {
    position: relative;
}
.postsvideo__img img {
    width: 100%;
    aspect-ratio: 5/6;
    object-fit: cover;
}
.postsvideo__info {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.postsvideo__info div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    max-width: 100%;
    width: 700px;
}
.postsvideo__info a {
    font-weight: 600;
    text-decoration: underline;
}
.postsvideo__excerpt {
    text-align: justify;
}
.postsvideo__content {
    text-align: justify;
}
/* @ @ VIDEOPOSTS END @ @ */
/* @ @ SIDEBAR START @ @ */
.sidebar {
    width: 500px;
    max-width: 100%;
}
.sidebarbtn {
    display: none;
}
.sidebar__close {
    display: none;
}
.sidebar__search {
    padding-left: calc(6vw + 15px);
    width: 100%;
    margin-bottom: 40px;
    position: relative;
}
.sidebar__search input {
    font-size: 1rem;
    width: 100%;
    color: #000;
    padding: 10px 20px;
    border: 1px solid rgba(0,0,0, .3);
    font-weight: 300;
    background-color: transparent;
    border-radius: 0;
    transition: .3s;
}
.sidebar__search button {
    border: none;
    padding: 0;
    width: 22px;
    height: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    cursor: pointer;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}
.sidebar__search button svg {
    width: 100%;
    height: auto;
}
.sidebar__wrapper {
    padding: 60px 40px 40px 6vw;
    background-color: var(--color-second);
}
.sidebar__wrapper--crew li.active a {
    font-weight: 600;
}
.sidebar-col {
    padding-left: 80px;
    flex: 0 0 calc(100% - 500px);
    max-width: calc(100% - 500px);
}
.sidebar__title {
    display: block;
    font-size: 1.5rem;
    line-height: 110%;
    margin-bottom: 30px;
    padding-left: 15px;
    font-weight: 700;
}
.sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sidebar ul li:not(:last-child) {
    margin-bottom: 15px;
}
.sidebar ul li a {
    display: block;
    padding: 10px 20px 10px 10px;
    border-left: 1px solid #000;
    border-bottom: 1px solid #000;
}
.sidebar .sidebar__wrapper--offer ul li a {
    padding-right: 40px;
}
.sidebar ul li a:hover {
    font-weight: 600;
}
.sidebar ul .sidebar__children {
    padding: 10px 0 10px 15px;
}
.sidebar ul .sidebar__children:not(.active) {
    display: none;
}
.sidebar .active--font {
    font-weight: 600 !important;
}
.sidebar .active.active--font>ul {
    display: block;
}
.sidebar ul .sidebar__parent.active--font ~ .sidebar__children {
    display: block;
}
.sidebar ul .sidebar__children a {
    border-left: none;
    font-size: .9rem;
    line-height: 120%;
    display: inline-block;
    border-bottom: none;
    margin-top: 10px;
}
/* @ @ SIDEBAR END @ @ */
/* @ @ SFORM START @ @ */
.sform {
    padding-right: 2vw;
}
.sform__img {
    position: relative;
}
.sform__img img {
    width: 100%;
    position: relative;
    z-index: 2;
    height: 100%;
    object-fit: cover;
}
.sform__img svg {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: clamp(15px, 5vw, 90px);
    z-index: 3;
    width: 220px;
    height: auto;
    filter: brightness(0) invert(1);
    height: auto;
    max-width: 40%;
}
.sform__img-txt {
    display: block;
    color: #fff;
    position: absolute;
    top: 50%;
    right: clamp(10px, 2.5vw, 45px);
    transform: translateY(-50%) rotate(-90deg);
    z-index: 4;
    font-size: clamp(30px, 6vw, 120px);
    line-height: 100%;
    font-weight: 200;
}
.sform__img-txt strong {
    font-weight: 500;
}

.sform__item {
    padding-top: 20px;
    padding-right: clamp(10px, 5vw, 120px);
}
.sform__item form>p {
    margin: 0;
}
.sform__item input:not([type='file']):not([type='submit']):not([type='checkbox']),
.sform__item textarea {
    font-size: 1rem;
    width: 100%;
    color: #000;
    padding: 10px 20px;
    border: 1px solid rgba(0,0,0, .3);
    font-weight: 400;
    margin-top: 20px;
    font-weight: 200;
    resize: none;
    background-color: #fff;
    border-radius: 0;
    transition: .3s;
}
.sform__item input:not([type='file']):not([type='submit']):not([type='checkbox'])::placeholder,
.sform__item textarea::placeholder {
    font-family: var(--font-main);
    color: #000;
    font-weight: 200;
}
.sform__item input:not([type='file']):not([type='submit']):not([type='checkbox']):focus,
.sform__item textarea:focus {
    border-color: #000;
}
.sform-datetxt {
    display: block;
    margin-top: 10px;
}
.sform-datetxt {
    font-weight: 200;
    display: block;
}

.sform__item .wpcf7-acceptance .wpcf7-list-item {
    margin: 30px auto 0 auto;
    max-width: 100%;
    display: block;
    line-height: 140%;
    color: rgba(0,0,0, .7);
    font-weight: 300;
}
.sform__item .wpcf7-acceptance .wpcf7-list-item * {
    font-size: 13px !important;
}
.sform__item .wpcf7-acceptance .wpcf7-list-item a {
    font-weight: 400;
    text-decoration: underline;
}
.sform__item .wpcf7-acceptance label {
    padding-left: 35px !important;
    position: relative;
    display: block;
}
.sform__item .wpcf7-acceptance label:before {
    content: '';
    width: 20px;
    height: 20px;
    display: inline-block;
    position: absolute;
    left: 0;
    border-radius: 0%;
    top: 0;
    border: 1px solid #D7D7D7;
    background-color: #fff;
}
.sform__item .wpcf7-acceptance label.active:before {
    border-color: transparent;
}
.sform__item .wpcf7-acceptance label.active:after {
    content: '';
    width: 20px;
    height: 20px;
    border: 1px solid #D7D7D7;
    border-radius: 0%;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    background-image: url(../assets/check.svg);
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center;
}
.sform__item input[type="checkbox"] {
    position: absolute;
    visibility: hidden;
    z-index: -1;
}
.sform__item .wpcf7-not-valid-tip {
    font-size: 12px;
    font-weight: 500;
    text-align: right;
    margin-bottom: -20px;
}
.sform__item .wpcf7 form.invalid .wpcf7-response-output, .sform__item .wpcf7 form.unaccepted .wpcf7-response-output, .sform__item .wpcf7 form.payment-required .wpcf7-response-output {
    border-color: var(--color-main);
    font-size: 14px;
    line-height: 130%;
    text-align: center;
    margin-top: 10px !important;
}
.sform__item .wpcf7 form.sent .wpcf7-response-output {
    border-color: var(--txt-color);
    font-size: 14px;
    line-height: 130%;
    text-align: center;
    margin-top: 10px !important;
}
.sform .cbtn {
    display: block;
    margin-left: auto;
    margin-top: 30px;
}


.sform__item .rcaptcha a {
    font-size: 12px;
    line-height: 100%;
    font-weight: 300;
}
.sform__item .rcaptcha {
    font-size: 12px;
    line-height: 100%;
    font-weight: 300;
    display: block;
    width: 100%;
}
/* @ @ SFORM END @ @ */
/* @ @ FAQ START @ @ */
.faqlist {
    background-color: var(--color-second);
    padding-left: 0 !important;
}
.faqlist__img {
    padding-left: 0 !important;
}
.faqlist__img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.faqlist__items {
    flex: 1;
    padding-top: 80px;
    padding-bottom: 80px;
    padding-left: clamp(15px, 6vw, 160px);
}
.faqlist__box {
    padding: 0;
    padding-left: 20px;
    margin-top: 30px;
    position: relative;
}
.faqlist__box:after {
    content: '';
    height: 1px;
    width: 80%;
    background-color: #000;
    position: absolute;
    bottom: 0;
    left: 0;
}
.faqlist__box-title {
    border: none;
    padding: 20px 60px 20px 0;
    margin: 0;
    background-color: transparent;
    font-family: var(--font-main);
    font-size: 1rem;
    line-height: 120%;
    font-weight: 400;
    color: #000;
    transition: .3s;
    position: relative;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: .3s;
}
.faqlist__arrow {
    position: absolute;
    right: 20px;
    width: 25px;
    height: auto;
    top: 50%;
    transform: translateY(-50%);
    transition: .3s;
    padding-right: 5px;
    border-right: 1px solid #000;
}
.faqlist__arrow svg {
    width: 100%;
    height: auto;
    transition: .3s;
    position: relative;
}
.faqlist__box-title.active {
    font-weight: 600;
}
.faqlist__box-title.active svg {
    transform: translateY(-50%) rotate(180deg);
    top: 3px;
}
.faqlist__box-txt {
    font-size: .9rem;
    line-height: 150%;
    display: none;
    text-align: justify;
    padding-bottom: 20px;
    font-weight: 200;
    padding-right: 120px;
}
/* @ @ FAQ END @ @ */
/* @ @ FAQBANER START @ @ */
.faqbaner {
    background-repeat: no-repeat;
    padding-top: 80px;
    padding-bottom: 80px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.faqbaner__wrapper {
    max-width: 100%;
    width: 900px;
    padding: 0 10px;
    margin-right: auto;
    margin-left: auto;
}
.faqbaner__box {
    padding: 0;
    padding-left: 20px;
    margin-top: 30px;
    position: relative;
}
.faqbaner__box:after {
    content: '';
    height: 1px;
    width: 80%;
    background-color: #000;
    position: absolute;
    bottom: 0;
    left: 0;
}
.faqbaner__box-title {
    border: none;
    padding: 20px 60px 20px 0;
    margin: 0;
    background-color: transparent;
    font-family: var(--font-main);
    font-size: 1rem;
    line-height: 120%;
    font-weight: 400;
    color: #000;
    transition: .3s;
    position: relative;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: .3s;
}
.faqbaner__arrow {
    position: absolute;
    right: 20px;
    width: 25px;
    height: auto;
    top: 50%;
    transform: translateY(-50%);
    transition: .3s;
    padding-right: 5px;
    border-right: 1px solid #000;
}
.faqbaner__arrow svg {
    width: 100%;
    height: auto;
    transition: .3s;
    position: relative;
}
.faqbaner__box-title.active {
    font-weight: 600;
}
.faqbaner__box-title.active svg {
    transform: translateY(-50%) rotate(180deg);
    top: 3px;
}
.faqbaner__box-txt {
    font-size: .9rem;
    line-height: 150%;
    display: none;
    text-align: justify;
    padding-bottom: 20px;
    font-weight: 200;
    padding-right: 40px;
    max-width: 100%;
    width: 650px;
}
/* @ @ FAQBANER END @ @ */

/* @ @ FOOTER START @ @ */
.footer {
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
}
.footer>img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.footer__wrapper {
    padding: 60px clamp(15px, 5vw, 120px);
    background-color: rgba(0,0,0, .7);
}
.footer__logo {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.footer__logo img {
    width: 100px;
    filter: brightness(0) invert(1);
}

.footer__box {
    font-weight: 200;
    color: #fff;
}
.footer__box a:hover {
    color: #878787;
}
.footer__title {
    display: block;
    position: relative;
    padding-top: 10px;
    color: #fff;
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 100%;
    margin-bottom: 40px;
}
.footer__title:before {
    content: '';
    height: 1px;
    width: 65px;
    max-width: 90%;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
}
.footer__cont p {
    margin: 0 0 15px 0;
}
.footer__menu {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.footer__menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer__menu ul li {
    margin: 0 0 15px 0;
}

.footer__socials {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.footer__socials-items {
    display: flex;
    flex-wrap: wrap;
}
.footer__socials-items a {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 20px 10px 0;
}
.footer__socials-items a img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    transition: .3s;
}
.footer__socials-items a:hover img {
    filter: brightness(40%);
}

.footer__link {
    display: inline-block;
    margin-top: 40px;
}
.footer__link img {
    height: 30px;
    width: auto;
}

.footer__clogo {
    margin-top: 30px;
    width: 100px;
}

.footer__bottom {
    padding: 20px 0 0 60px;
    font-weight: 300;
    font-size: .85rem;
    line-height: 100%;
}
/* @ @ FOOTER END @ @ */

/* @ @ MEDIA START @ @  */
@media(min-width: 2400px) {
    main {
        max-width: 2400px;
        margin-left: auto;
        margin-right: auto;
    }
    .wrap {
        max-width: 2400px;
        margin-left: auto;
        margin-right: auto;
    }
    .wrapper {
        padding-left: 120px;
        padding-right: 120px;
        max-width: 2400px;
        margin-left: auto;
        margin-right: auto;
    }
    .wrapper-big {
        padding-left: 220px;
        padding-right: 220px;
        max-width: 2400px;
        margin-left: auto;
        margin-right: auto;
    }
    .wrapper-small {
        padding-left: 60px;
        padding-right: 60px;
        max-width: 2400px;
        margin-left: auto;
        margin-right: auto;
    }
}
@media(max-width: 1600px) {
    .sidebar {
        max-width: 400px;
        flex: 0 0 400px;
    }
    .sidebar-col {
        max-width: calc(100% - 400px);
        flex: 0 0 calc(100% - 400px);
        padding-left: 30px;
    }
    .sidebar ul li a {
        font-size: .85rem;
        line-height: 130%;
    }
}
@media(max-width: 1440px) {
    .wrapper {
        padding-left: 4vw;
        padding-right: 4vw;
    }
    .wrapper-big {
        padding-right: 6vw;
        padding-left: 6vw;
    }
    .marg-top-biggest {
        margin-top: 100px;
    }

    /*  */
    .hero__menu>div>ul>li>a,
    .header__menu>div>ul>li>a {
        font-size: .85rem;
    }
    /*  */
    .baner__btns {
        left: 0;
    }

    /*  */
    .offerboxes__item {
        padding: 0 15px;
    }
    /*  */
    .teamslider .slick-arrow  {
        width: 55px;
        height: 35px;
        background-size: 10px;
    }
    .teamslider .slick-prev {
        left: -20px;
    }
    .teamslider .slick-next {
        right: -20px;
    }
    /*  */
    .boxes__sign {
        top: 0;
    }
}
@media(max-width: 1380px) {
  
}
@media(max-width: 1280px) {
    .baner__tablet-mobile,
    .baner__tablet {
        display: inline-block !important;
    }
    .baner__desktop {
        display: none !important;
    }
}
@media(max-width: 1200px) {
    body.home {
        padding-top: 90px;
    }
    body:not(.home):not(.scrolled) .header {
        top: 0;
        background-color: transparent;
    }
    .header {
        padding-bottom: 10px;
        padding-top: 10px;
    }
    .header__wrapper {
        padding-left: 5px !important;
        padding-right: 5px !important;
    }
    .header__desktop-items {
        display: none !important;
    }
    .nav-icon,
    .header__logo-mobile,
    .header__menu-mobile {
        display: block;
    }
    .header__top {
        position: fixed;
        top: 0;
        right: -500px;
        width: 450px;
        max-width: 100%;
        flex: initial;
        z-index: 99;
        background-color: #fff;
        padding: 20px 40px 30px 30px;
        transition: .8s;
        height: 100%;
        overflow: auto;
        flex-direction: column;
        align-items: flex-start;
        border-left: 1px solid #eaeaea;
        justify-content: flex-start;
        flex-wrap: nowrap !important;
    }
    .menuopened .header__top {
        right: 0;
    }
    .header__menu-mobile {
        order: 1;
        width: 100%;
        max-width: initial !important;
        flex: initial !important;
    }
    .header__menu-mobile ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .header__menu-mobile li {
        margin-bottom: 8px;
    }
    .header__menu-mobile li a {
        display: inline-block;
        font-size: 1.1rem;
        line-height: 120%;
        color: #000;
        font-weight: 300;
    }
    .header__logo-mobile {
        margin-bottom: 10px;
        order: 0;
    }
    .header__logo-mobile img {
        width: 40px;
    }
    .header__top-right,
    .header__top-left {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        max-width: initial !important;
        flex: initial !important;
        width: 100%;
    }
    .header__top-right {
        order: 2;
        border-top: 1px solid rgba(129, 129, 129, .3);
        margin-top: 10px;
    }
    .header__top-right a {
        margin: 5px 0;
    }
    .header__mail {
        display: none !important;
    }
    .header__top-left {
        order: 3;
    }
    .header__top-right .cbtn {
        margin: 10px 0;
    }
    .header__phone>span {
        display: none;
    }
    .header__phone ul {
        list-style: none;
        padding: 0;
        margin: 20px 0 0 0;
    }
    .header__phone ul li a {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        color: #fff;
    }
    .header__phone ul li a span {
        display: inline-block;
        font-size: .65rem;
        line-height: 110%;
    }

    .header__mobile {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .header__logo--mobile img {
        transition: .3s;
        width: 50px;
    }
    .scrolled .header__logo--mobile img {
        width: 40px;
    }
    .header__mobile-logo {
        display: inline-block;
        margin-bottom: 20px;
        width: 60px;
    }
    .header__socials {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        margin-top: 10px;
        max-width: initial !important;
        flex: initial !important;
        order: 4;
    }
    .header__socials>span {
        display: block;
        color: #fff;
        font-size: .75rem;
    }
    .header__socials div {
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
    }
    .header__socials img {
        filter: brightness(0) invert(1);
    }

    .hero {
        padding-top: 90px;
        padding-left: 5px !important;
        padding-right: 5px !important;
    }
    .hero__wrapper {
        display: none;
    }

    /*  */
    .baner__wrapper {
        padding-right: 20px;
        height: 100vh;
    }

    /*  */
    .sidebar {
        max-width: 350px;
        flex: 0 0 350px;
    }
    .sidebar-col {
        max-width: calc(100% - 350px);
        flex: 0 0 calc(100% - 350px);
        padding-left: 30px;
    }

    /*  */
    .footer__wrapper {
        padding-top: 30px;
    }
    .footer__logo img {
        width: 70px;
    }
    .footer__title {
        font-size: 1.3rem;
    }
}
@media(min-width: 1071px) {
    .asidesidebar {
        padding-left: 0 !important;
    }
}
@media(max-width: 1070px) {
    .sidebarbtn {
        display: block;
        position: fixed;
        bottom: 10px;
        left: 10px;
        z-index: 999;
        font-size: 15px;
        line-height: 100%;
        background-color: #000;
        box-shadow: 0px 0px 12px rgba(0,0,0, .4);
        border: none;
        cursor: pointer;
        color: #fff;
        font-family: var(--font-main);
        font-weight: 500;
        letter-spacing: .5px;
        padding: 10px 15px;
    }
    .sidebar {
        position: fixed;
        background-color: #fff;
        top: 0;
        left: 0;
        width: 400px;
        left: -450px;
        opacity: 0;
        transition: .8s;
        max-width: 100%;
        z-index: 9999999;
        max-width: 100%;
        flex: initial;
        padding-top: 50px;
        height: 100%;
        overflow: auto;
    }
    .sidebaropened .sidebar {
        left: 0;
        opacity: 1;
    }
    .sidebar__close {
        display: inline-block;
        position: absolute;
        top: 5px;
        right: 5px;
        width: 30px;
        height: 30px;
        font-size: 1.5rem;
        line-height: 100%;
        padding: 0;
        background-color: transparent;
        cursor: pointer;
        border: none;
    }
    .sidebar__search {
        padding-left: 20px;
        padding-right: 20px;
        margin-bottom: 15px;
    }
    .sidebar__search input {
        padding: 10px 20px;
        font-size: .75rem;
        line-height: 120%;
    }
    .sidebar__search button {
        right: 25px;
        width: 18px;
        height: 18px;
    }
    .sidebar__wrapper {
        padding: 20px;
    }
    .sidebar-col {
        max-width: 100%;
        flex: 0 0 100%;
        padding-left: 0;
    }
}
@media(min-width: 993px) {
    .postsvideo__img {
        padding-right: 60px;
    }
    /*  */
    .imgtxt__txt {
        padding-right: clamp(15px, 5vw, 90px);
    }
    /*  */
    .titleimg__content {
        padding-left: clamp(15px, 5vw, 90px);
    }
}
@media(max-width: 992px) {
    body,html {
        font-size: 16px;
        line-height: 26px;
    }
    .wrap,
    .wrapper-big,
    .wrapper-small,
    .wrapper {
        padding-left: 10px;
        padding-right: 10px;
    }


    /*  */
    .baner {
        padding: 0;
    }
    .baner__wrapper {
        min-height: 700px;
        height: auto;
    }
    .baner__txt {
        width: 300px;
        font-size: 1.1rem;
        line-height: 100%;
    }
   
    /*  */
    .infoboxes {
        overflow: hidden;
    }
    .infoboxes__hours {
        padding-left: 0;
        margin-top: 30px;
    }
    .infoboxes__hours>img {
        opacity: .1;
        width: 95%;
        right: -40px;
        bottom: 0;
        top: initial;
        height: 100%;
        object-fit: cover;
    }

    /*  */
    .offerboxes__heading img {
        aspect-ratio: 1/1;
    }
    
    /*  */
    .postsvideo__info {
        margin-top: 30px;
    }
    
    /*  */
    .pointslist__items-wrapper {
        padding: 30px 15px;
    }
    .pointslist__item-counter {
        width: 30px;
        min-width: 30px;
        height: 30px;
        min-height: 30px;
        font-size: .9rem;
    }
    /*  */
    .titleimg__content {
        margin-top: 30px;
    }
    /*  */
    .sidebar__title {
        padding-left: 0;
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    .sidebar ul li a {
        padding: 5px;
    }

    /*  */
   
    /*  */
    .faqbaner {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    /*  */
    .footer {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .footer__wrapper {
        padding: 20px 20px 40px 20px;
    }
    .footer__logo {
        justify-content: flex-start;
    }
    .footer__menu {
        justify-content: flex-start;
    }
    .footer__socials {
        justify-content: flex-start;
    }
    .footer__link {
        margin-top: 25px;
    }
    .footer__link img {
        height: 20px;
    }

}
@media(max-width: 767px) {
    body,html {
        font-size: 15px;
        line-height: 24px;
    }
    body.home {
        padding-top: 75px;
    }
    .padd-top {
        padding-top: 30px;
    }
    .marg-top-biggest {
        margin-top: 100px;
    }
    .marg-top {
        margin-top: 40px;
    }
    .marg-top-biggest {
        margin-top: 60px;
    }
    .marg-top-big {
        margin-top: 60px;
    }
    .section-heading {
        margin-bottom: 20px;
    }
    .section-heading-mid {
        margin-bottom: 20px;
    }

    .video-close {
        right: 15px;
        top: 40px;
        font-size: 32px;
    }
    .video-embed__item {
        padding: 20px 10px;
    }

    .hero>svg {
        bottom: 10px;
    }

    /*  */
    .header__logo--mobile img {
        width: 40px;
    }
    .scrolled .header__logo--mobile img {
        width: 30px;
    }
    /*  */
    .hero {
        padding-top: 70px;
        padding-bottom: 80px;
    }
    .breads__phone {
        display: none;
    }

    /*  */
    .baner .slick-track {
        display: flex !important;
    }
    .baner .slick-slide {
        height: inherit !important;
    }
    .baner__wrapper {
        height: auto;
        min-height: initial;
        display: flex !important;
        justify-content: center;
        align-items: center;
        padding-bottom: 40px;
        padding-top: 40px;
    }
    .baner__desktop-tablet,
    .baner__tablet {
        display: none !important;
    }
    .baner__mobile {
        display: inline-block !important;
    }
    .baner__wrapper>svg {
        left: 50%;
        transform: translateX(-50%);
        top: 20px;
        width: 50px;
    }
    .baner__title {
        font-size: 24px;
        line-height: 120%;
        margin-bottom: 15px;
    }
    .baner .slick-dots {
        bottom: 15px;
        top: initial;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }
    .baner .slick-dots li {
        margin: 3px;
    }
    .baner .slick-dots li button {
        width: 10px;
        height: 10px;
    }
    .baner__content {
        text-align: center;
        align-items: center;
        justify-content: center;
        padding-top: 0;
        margin: 0;
    }
    .baner__btns {
        position: relative;
        top: initial;
        left: initial;
        bottom: initial;
        margin-top: 40px;
    }
    .baner__btn {
        color: #000;
        border-color: #000;
        width: 100%;
    }
    .baner__btn button {
        color: #000;
    }
    .baner .cbtn {
        padding: 12px 20px;
        font-size: .85rem;
    }

    /*  */
    .infoboxes__item {
        max-width: 100%;
        flex: 0 0 100%;
    }


    /*  */
    .offerboxes__txt {
        margin-bottom: 15px;
    }
    /*  */
    .boxes {
        padding-top: 60px;
    }
    .boxes__items {
        gap: 20px 0;
    }
    .boxes__items:before {
        left: 0;
        transform: none;
        width: 66%;
    }
    .boxes__item {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 15px;
    }
    /*  */
     .sform__item {
        padding-right: 0;
    }
    .sform__content {
        order: 1;
        margin-top: 30px;
    }
    .sform__item {
        padding-top: 0;
    }
    .sform__img {
        order: 0;
    }
    .sform__img img {
        height: auto;
        aspect-ratio: 16/9;
    }
    .sform__img svg {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        opacity: .2;
        object-fit: contain;
        max-height: 90%;
    }
    /*  */
    .faqlist__img {
        display: none;
    }
    .faqlist__items {
        padding: 30px 20px;
    }
    .faqlist__box {
        margin-top: 20px;
        padding-left: 5px;
    }
    .faqlist__box:after {
        width: 90%;
    }
    .faqlist__box:first-child {
        margin-top: 0;
    }
    .faqlist__box-title {
        padding-top: 15px;
        padding-bottom: 15px;
        padding-right: 30px;
    }
    .faqlist__arrow {
        width: 20px;
        right: 0;
    }
    .faqlist__box-txt {
        padding-right: 0;
    }
    .faqlist__box-txt * {
        margin-top: 0;
    }
    /*  */
    .faqbaner__box {
        margin-top: 20px;
        padding-left: 5px;
    }
    .faqbaner__box:after {
        width: 90%;
    }
    .faqbaner__box:first-child {
        margin-top: 0;
    }
    .faqbaner__box-title {
        padding-top: 15px;
        padding-bottom: 15px;
        padding-right: 30px;
    }
    .faqbaner__arrow {
        width: 20px;
        right: 0;
    }
    .faqbaner__box-txt {
        padding-right: 0;
    }
    .faqbaner__box-txt * {
        margin-top: 0;
    }
    /*  */

    .footer__clogo {
        width: 70px;
    }
    .footer__bottom {
        text-align: center;
        padding: 20px 15px 15px 15px;
    }

    
}
@media(max-width: 500px) {
    /*  */
    .slick-dots li button {
        width: 10px;
        height: 10px;
    }
    .slick-dots li {
        margin: 2px;
    }
    /*  */
    .hero {
        padding-bottom: 40px;
    }
    /*  */

    /*  */
    .ops {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .ops__subtitle {
        font-size: 1.2rem;
        margin-top: 0;
    }
    .ops__subtitle p {
        padding-left: 40px;
    }
    .ops__subtitle p:before {
        width: 20px;
    }
    .ops__items {
        margin-top: 0;
    }
    .ops__item {
        padding: 30px 15px 0 30px;
    }
    .ops__item>svg {
        width: 20px;
    }
    /*  */
    .teamslider__item {
        padding: 0 4px;
    }
    .teamslider__name {
        font-size: .9rem;
    }
    .teamslider__short {
        font-size: .6rem;
    }
    
}
/* @ @ MEDIA END @ @  */