html, body {
    font-size: 17px;
    line-height: 29px;
}
body {
    -webkit-animation-name: fadeIn;
    -webkit-animation-duration: 1s;
    animation-name: fadeIn;
    animation-duration: 1s;
    font-family: 'Poppins', sans-serif;
    color: var(--txt-color);
    font-weight: 400;
    background-color: #fff;
    padding-top: 220px;
    --txt-color: #000;
    --main-color: #0F0F0F;
    --bg-color: #F4F4F4;
}
* {
    outline: none;
}
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@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: 12vw;
    padding-right: 12vw;
}
.flex-wrapper {
	display: flex;
	flex-wrap: wrap;
}
.padds {
    padding-left: 10px;
    padding-right: 10px;
}
.padd-top {
    padding-top: 120px;
}
.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%;
}
.absolute-link {
    position: relative;
}
.absolute-link .absolute-link__item {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 9;
}

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

.logoicon {
    position: absolute;
    width: 500px;
    max-width: 35%;
    z-index: 1;
    opacity: .02;
    animation: fadeInOut 15s infinite;
}
.logoicon svg {
    width: 100%;
    height: auto;
}
@keyframes fadeInOut {
    0% {
      opacity: 0.02;
    }
    25% {
        opacity: 0.12;
    }
    50% {
        opacity: 0.02;
    }
    75% {
        opacity: 0.12;
    }
    100% {
        opacity: 0.02;
    }
}
  

.slick-dots {
    margin: 20px 0 0 0;
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
}
.slick-dots li {
    margin: 3px;
}
.slick-dots li button {
    border-radius: 50%;
    cursor: pointer;
    background-color: #fff;
    padding: 0;
    margin: 0;
    width: 14px;
    height: 14px;
    transition: .3s;
    color: transparent;
    border: none;
    font-size: 0;
    border: 2px solid var(--txt-color);
}
.slick-dots li.slick-active button {
    background-color: var(--txt-color);
}

.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;
}


#breadcrumbs {
    font-size: .8rem;
    text-transform: uppercase;
    padding-top: 0;
    margin-top: 0;
}
#breadcrumbs .sep {
    display: inline-block;
    font-size: .6rem;
    margin: 0 5px;
}

.hero {
    position: relative;
    padding-top: 30px;
    overflow-x: clip;
}
.hero>svg {
    position: absolute;
    top: 0;
    right: 10%;
    z-index: 1;
    filter: brightness(0);
    opacity: .02;
    width: 30%;
    height: auto;
    animation: zoom 15s ease-in-out infinite;
    
    -ms-animation: zoom 15s ease-in-out infinite;
    -webkit-animation: zoom 15s ease-in-out infinite;
    -moz-animation: zoom 15s ease-in-out infinite;
}

@-webkit-keyframes zoom {
    0% {
      -webkit-transform-origin: center center;
      -moz-transform-origin: center center;
      -ms-transform-origin: center center;
      -o-transform-origin: center center;
      transform-origin: center center;
      transform: scale(1.0);
      -ms-transform: scale(1.0);
      
      -webkit-transform: scale(1.0);
      
      -o-transform: scale(1.0);
      
      -moz-transform: scale(1.0);
    }
    50% {
      transform: scale(1.05);
      -ms-transform: scale(1.05);
      
      -webkit-transform: scale(1.05);
      
      -o-transform: scale(1.05);
      
      -moz-transform: scale(1.05);
    }
    100% {
        transform: scale(1.0);
        -ms-transform: scale(1.0);
        
        -webkit-transform: scale(1.0);
        
        -o-transform: scale(1.0);
        
        -moz-transform: scale(1.0);
      }
}
.hero header {
    position: relative;
    z-index: 3;
}
.subtitle {
    font-size: clamp(22px, 2vw, 30px);
    line-height: 130%;
    display: block;
    font-weight: 600;
}
.section-heading {
    font-size: clamp(28px, 3vw, 45px);
    line-height: 130%;
    font-weight: 700;
    color: var(--txt-color);
    margin-bottom: 30px;
    letter-spacing: 4.5px;
}
.section-heading--small {
    font-size: clamp(22px, 2.4vw, 30px);
    line-height: 130%;
    font-weight: 700;
    color: var(--txt-color);
    margin-bottom: 0;
    letter-spacing: 3.5px;
}
.page-heading {
    font-size: clamp(28px, 3vw, 45px);
    line-height: 130%;
    font-weight: 700;
    color: var(--txt-color);
    margin-bottom: 30px;
    letter-spacing: 4.5px;
}
.section-heading strong,
.page-heading strong {
    font-weight: 700;
}
.heading-line {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.heading-line.heading-line--left {
    justify-content: flex-start;
}
.heading-line__item {
    position: relative;
    padding: 5px 0 5px 80px;
    display: flex;
    align-items: flex-start;
}
.heading-line__item:before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    height: 100%;
    width: 1px;
    background-color: var(--txt-color);
}
.heading-line__item>svg {
    position: absolute;
    height: auto;
    width: 40px;
    left: 0;
    top: clamp(5px, .7vw, 12px);
    animation: rotate 15s linear infinite;
}
.section-heading--small>svg {
    top: 5px;
}
@keyframes rotate {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
}
.heading-short {
    max-width: 100%;
    padding: 0 15px;
    width: 710px;
    margin-left: auto;
    margin-right: auto;
    font-size: .9rem;
    line-height: 140%;
}
.section-subtitle {
    font-size: clamp(28px, 3vw, 45px);
    line-height: 130%;
    font-weight: 700;
    color: var(--txt-color);
    margin-bottom: 30px;
    letter-spacing: 4.5px;
}
.shorttxt {
    margin-left: auto;
    margin-right: auto;
    font-size: .9rem;
    line-height: 180%;
    max-width: 100%;
    padding: 0 15px;
    width: 1000px;
}

.boldtitle__heading {
    padding-left: 30px;
    position: relative;
    font-weight: 400;
    font-size: clamp(18px, 2vw, 26px);
    letter-spacing: 3px;
}
.boldtitle__heading:before {
    content: '';
    border-radius: 50%;
    width: 8px;
    height: 8px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    border: 2px solid var(--txt-color);
}
.boldtitle__heading span {
    font-weight: 700;
    font-size: clamp(28px, 3vw, 50px);
}

.logosolo {
    text-align: center;
}
.logosolo svg {
    height: auto;
    width: 640px;
    max-width: 60%;
}

.searchsidetitle {
    display: block;
    font-size: .8rem;
    margin-bottom: 10px;
}
.searchside form {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}
.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: transparent;
    cursor: pointer;
    transition: .3s;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}
.searchside form button:hover {
    background-color: var(--main-color);
}
.searchside form button svg {
    width: 17px;
    height: auto;
    transition: .3s;
}
.searchside form button:hover svg {
    filter: brightness(0) invert(1);
}


.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: 100px;
    height: 100px;
    padding: 0;
    box-shadow: 0px 3px 10px -6px rgba(66, 68, 90, 1);
    transition: .3s;
}
.play-cbtn.loaded {
    transform: translate(-50%, -50%) scale(1);
}
.play-cbtn span {
    background-color: rgba(143, 176, 176, .6);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 9;
    transition: .3s;
}
.play-cbtn:hover span {
    background-color: #363636;
}
.play-cbtn svg {
    width: 55%;
    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(143, 176, 176, .53);
    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;
    height: 500px;
}
.video-close {
    position: absolute;
    top: 100px;
    right: 60px;
    border: none;
    background-color: transparent;
    font-size: 42px;
    font-weight: 600;
    z-index: 9;
    color: var(--main-color);
    cursor: pointer;
}

.boxshadow {
    background-color: #fff;
    position: relative;
}
.boxshadow:before {
    content: '';
    width: 100%;
    height: 30px;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    display: inline-block;
    box-shadow: 0px 0px 18px -6px rgba(0,0,0, 0.5);
    border-radius: 50%;
}

.pos-rel {
    position: relative;
    z-index: 4;
}


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

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

.cbtn {
    display: inline-block;
    padding: 15px 25px;
    background-color: var(--txt-color);
    border: 1px solid var(--txt-color);
    color: #fff;
    transition: .3s;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    border-radius: 0;
    text-align: center;
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 120%;
}
.cbtn--small {
    padding: 10px 25px;
}
.cbtn--border {
    background-color: #fff;
    color: var(--txt-color)
}
.cbtn--second {
    background-color: #fff;
    color: var(--txt-color);
    border-color: #fff;
}
.cbtn--reverse {
    background-color: var(--txt-color);
    color: #fff;
    border-color: #fff;
}
.cbtn:hover {
    color: var(--txt-color);
    background-color: #fff;
}
.cbtn--second:hover,
.cbtn--border:hover {
    color: #fff;
    background-color: var(--txt-color);
}

.btn-circle {
    display: inline-block;
    border-bottom: 2px solid var(--txt-color);
    padding-left: 30px;
    font-size: .9rem;
    font-weight: 700;
    position: relative;
}
.btn-circle:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    transition: .3s;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: 2px solid var(--txt-color);
}
.btn-circle:hover:before {
    background-color: var(--txt-color);
}
.btn-circle:hover {
    letter-spacing: 2px;
}
/* @ @ HEADER @ @ */

/* menu button start */
.nav-icon {
    width: 33px;
    height: 23px;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    z-index: 999999;
    position: relative;
    display: none;
    margin-left: 10px;
}
.nav-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #000;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}
.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 {
    z-index: 9999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transition: .3s;
}
.scrolled .header {
    background-color: #fff;
    box-shadow: 0px 0px 6px rgba(144,144,144, .3);
}
.header__logo {
    max-width: 140px;
    flex: 0 0 140px;
    transition: .3s;
    display: block;
}
.header__logo img {
    transition: .3s;
}
.header__logo-mobile {
    display: none;
}
.scrolled .header__logo img {
    width: 100px;
}
.header__top {
    justify-content: space-between;
    align-items: center;
    font-size: .8rem;
}
.header__btns {
    display: flex;
    align-items: center;
}
.header__btns a {
    padding: 15px 25px 10px 25px;
    margin-right: 20px;
    border-bottom: 2px solid var(--txt-color);
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 100%;
    font-size: .8rem;
    border-left: 2px solid transparent;
    border-right: 2px solid transparent;
}
.header__btns a.active {
    background-color: var(--txt-color);
    color: #fff;
}
.header__btns a:hover {
    border-left-color:  var(--txt-color);
    border-right-color:  var(--txt-color);
}
.header__contact-item {
    display: inline-block;
    margin-left: 30px;
    font-weight: 700;
}
.header__items {
    padding-top: 30px;
    padding-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: .3s;
}
.scrolled .header__items {
    padding-top: 20px;
    padding-bottom: 20px;
}
.header__mobile-items {
    display: none;
}

.header-search {
    cursor: pointer;
    background-color: transparent;
    border: none;
    margin: 0 20px;
}
.header-search svg {
    height: auto;
    width: 20px;
}
.header__mobile-btns {
    display: none;
}
/* menu start */

.header__menu {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
}
.header__menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.header__menu>div>ul {
    display: flex;
    justify-content: flex-end;
}
.header__menu>div>ul>li {
    margin-left: clamp(5px, 1.2vw, 30px);
}
.header__menu>div>ul>li>a {
    font-size: 14px;
    text-transform: uppercase;
    text-align: center;
    padding-bottom: 1px;
    position: relative;
    display: inline-block;
    line-height: 125%;
    font-weight: 500;
    letter-spacing: 1.4px;
}
.header__menu>div>ul>li>a:after {
    content: '';
    width: 0;
    height: 1px;
    position: absolute;
    top: 99.99%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--txt-color);
    transition: .3s;
}
.header__menu>div>ul>li.current-menu-item>a,
.header__menu>div>ul>li>a:hover {
    color: var(--txt-color);
}
.header__menu>div>ul>li.current-menu-item>a:after,
.header__menu>div>ul>li>a:hover:after {
    width: 80%;
}
.header__menu ul ul {
    display: none;
}
.header__socials,
.header__logo-mobile {
    display: none;
}
/* menu end */
/* @ @ HEADER 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;
    max-width: 100%;
}
.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 {
    overflow-x: clip;
}
.baner__item {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 100vh;
    min-height: 500px;
    max-height: 1100px;
    display: flex;
    align-items: center;
    position: relative;
}
.baner__icon {
    width: 340px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    right: 60px;
    transform: translateY(-50%);
    max-width: 30%;
}
.baner__icon:before {
    content: '';
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 140%;
    border-radius: 50%;
    background-color: rgba(255,255,255, .9);
    filter: blur(50px);
}
.baner__icon svg {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 3;
}
.baner__content {
    max-width: 100%;
    width: 600px;
    background-color: #fff;
    padding: 60px 120px 0 0;
}
.baner__content h1 {
    font-size: clamp(30px, 2.4vw, 42px);
    line-height: 140%;
    letter-spacing: 4px;
    font-weight: 700;
    margin-bottom: 20px;
}
.baner__content .cbtn {
    margin-top: 20px;
}
/* @ @ BANER END @ @ */
/* @ @ DESC START @ @ */
.desc {
    overflow-x: clip;
}
.desc__content {
    padding-top: 60px;
}
.desc__txt {
    padding-left: 80px;
    padding-right: 80px;
}
.desc__img {
    text-align: center;
    position: relative;
}
.desc__img>svg {
    width: 70px;
    height: auto;
    position: absolute;
    animation: rotate 15s linear infinite;
    right: 10vw;
    top: 8%;
}
.desc__link {
    position: relative;
    padding-top: 60px;
    margin-top: 120px;
    padding-left: 80px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}
.desc__link.desc__link--right {
    justify-content: flex-end;
}
.desc__link:before {
    content: '';
    height: 2px;
    width: calc(100% - 160px);
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--txt-color);
}
/* @ @ DESC END @ @ */
/* @ @ BOXES START @ @ */
.boxes {
    position: relative;
}
.boxes .logoicon {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
.boxes__items {
    justify-content: center;
}
.boxes__item {
    max-width: 20%;
    flex: 0 0 20%;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    transition: .5s;
}
.boxes__item:before {
    content: '';
    background-color: var(--bg-color);
    width: 0;
    height: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: .5s;
    z-index: 1;
}
.boxes__item:hover:before {
    width: 100%;
    height: calc(100% + 20px);
    border-radius: 0;
    transform: translate(-50%, -50%);
}
.boxes__item>* {
    position: relative;
    z-index: 3;
}
.boxes__subtitle {
    text-align: center;
    display: block;
    margin-bottom: 30px;
    font-size: .9rem;
}
.boxes__title {
    font-size: clamp(24px, 3vw, 40px);
    font-weight: 700;
    line-height: 100%;
    padding: 20px 0;
    border-right: 2px solid var(--txt-color);
    width: 100%;
    letter-spacing: 2px;
}
.boxes__link {
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: 30px;
}
.boxes__link-full {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 4;
}
/* @ @ BOXES END @ @ */
/* @ @ OFFERBOX START @ @ */
.offerbox {
    overflow-x: clip;
}
.offerbox__item {
    padding: 0 40px;
}
.offerbox__item>div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    height: 100%;
    padding-bottom: 30px;
    position: relative;
    border-bottom: 2px solid var(--txt-color);
}
.offerbox__item>div:before {
    content: '';
    background-color: var(--bg-color);
    width: 0;
    height: 0;
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    transition: .5s;
    z-index: 1;
}
.offerbox__item>div:hover:before {
    width: 100%;
    height: calc(100% + 20px);
}
.offerbox__item>div>a {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 5;
}
.offerbox__title {
    display: block;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 1.4rem;
    margin-bottom: 20px;
}
.offerbox__subtitle {
    margin-top: auto;
    display: block;
}
/* @ @ OFFERBOX END @ @ */
/* @ @ INFO START @ @ */
.info {
    overflow-x: clip;
}
.info__img {
    text-align: center;
}
.info__content {
    display: flex;
    align-items: center;
    justify-content: center;
}
.info__txt {
    font-size: .9rem;
}
.info__txt .cbtn {
    margin: 20px 0;
}
.info__txt-title {
    font-weight: 700;
}
/* @ @ INFO END @ @ */
/* @ @ OPINIONS START @ @ */
.opinions {
    padding-top: clamp(120px, 10vw, 200px);
    padding-bottom: clamp(120px, 10vw, 200px);
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    background-attachment: fixed;
    overflow-x: clip;
}
.opinions__items {
    justify-content: flex-end;
}
.opinions__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    margin: 40px;
}
.opinions__item:before {
    content: '';
    background-color: #fff;
    width: 240px;
    height: 240px;
    opacity: 0.83;
    filter: blur(50px);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}
.opinions__item>* {
    position: relative;
    z-index: 4;
}
.opinions__item figure img {
    height: 50px;
    width: auto;
}
.opinions__rate {
    font-size: 2rem;
    text-align: center;
    margin: 20px 0;
    display: block;
}
.opinions__stars svg {
    height: auto;
    width: 15px;
}
.opinions__stars svg path {
    fill: var(--main-color);
}
.opinions__stars span:not(.active) svg path {
    fill: #a1a1a1;
}
.opinions__txt {
    font-size: .9rem;
    text-align: center;
    display: block;
}

.ops__items {
    margin-top: 30px;
}
.ops__item {
    padding: 0 20px;
}
.ops__item>div {
    position: relative;
    padding-left: 30px;
    padding-top: 1px;
}
.ops__item>div:before {
    content: '"';
    font-weight: 900;
    font-size: 42px;
    line-height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.ops__txt {
    font-size: .86rem;
    line-height: 140%;
    font-weight: 500;
    font-style: italic;
    margin-bottom: 15px;
}
.ops__sign {
    display: block;
    text-align: right;
    font-size: .85rem;
    margin-top: auto;
    font-weight: 700;
}
/* @ @ OPINIONS END @ @ */
/* @ @ ZONES START @ @ */
.zones {
    overflow: hidden;
    background-color: var(--bg-color);
    padding-top: 60px;
    padding-bottom: 60px;
    position: relative;
}
.zones>svg {
    height: auto;
    width: 75%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    filter: brightness(0) invert(1);
}

.zones__btns {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}
.zones__btns button {
    margin: 10px;
}
.zones__btns button:hover {
    background-color: var(--bg-color) !important;
    color: var(--txt-color) !important;
    border-color: var(--txt-color) !important;
}

.zones__item {
    display: flex;
    justify-content: center;
}
.zones__item>div {
    display: flex;
    justify-content: center;
}
.zones__item img {
    width: 160px;
}
.zones__item ul {
    list-style: none;
    padding: 30px 0 0 20px;
    margin: 0;
}
.zones__item ul li {
    position: relative;
    padding-left: 20px;
    margin: 4px 0;
}
.zones__item ul li:before {
    content: '';
    width: 9px;
    height: 9px;
    border: 2px solid var(--txt-color);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: .3s;
}
.zones__item ul li.active:before,
.zones__item ul li:hover:before {
    background-color: var(--txt-color);
}
.zones__item ul li button {
    display: block;
    width: 200px;
    text-align: right;
    font-weight: 700;
    background-color: transparent;
    border: none;
    font-size: 1rem;
    border-radius: none;
    font-family: 'Poppins', sans-serif;
    padding: 1px 0;
    margin: 0 0;
    cursor: pointer;
    position: relative;
    letter-spacing: 1px;
    max-width: 100%;
}
.zones__item ul li button:after {
    content: '';
    height: 2px;
    width: 100%;
    position: absolute;
    right: 0;
    transition: .3s;
    top: 99%;
    background-color: var(--txt-color);
}
.zones__item ul li.active button:after,
.zones__item ul li button:hover:after {
    width: 80%;
}

.zones-man {
    display: none;
}

.treats {
    position: fixed;
    z-index: 9999;
    top: 0;
    right: -450px;
    background-color: var(--bg-color);
    overflow: auto;
    height: 100%;
    width: 400px;
    max-width: 100%;
    padding: 60px 40px 40px 40px;
    box-shadow: 0px 0px 6px rgba(144,144,144, .3);
    transition: .3s;
}
.filtersopened .treats {
    right: 0;
}

.treats__close {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    font-weight: 700;
    padding: 0;
    margin: 0;
    border: none;
    background-color: transparent;
    cursor: pointer;
}

.treats__cat,
.treats__item {
    display: none;
}

.treats__cat h3 {
    font-weight: 700;
    font-size: 1.4rem;
    text-align: center;
    letter-spacing: 2px;
}
.treats__cat>div>span {
    display: block;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 10px;
}
.treats__cat li {
    font-size: .9rem;
}
.treats__cat li:before {
    transition: .3s;
}
.treats__cat li:hover:before {
    background-color: var(--txt-color);
}

/* @ @ ZONES END @ @ */
/* @ @ CATS START @ @ */
.cats__items {
    justify-content: center;
}
.cats__item {
    padding: 20px;
}
.cats__item>div {
    width: 100%;
    background-color: var(--bg-color);
    padding: 30px;
}
.cats__item button {
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    background-color: transparent;
    border: none;
    color: var(--txt-color);
    padding: 0 0 20px 0;
    border-bottom: 1px solid var(--txt-color);
    width: 100%;
    text-align: left;
    text-transform: lowercase;
    cursor: pointer;
    transition: .3s;
}
.cats__item button:hover {
    color: #929292;
}
.cats__item ul {
    display: none;
    font-size: .9rem;
    font-weight: 500;
    line-height: 140%;
}
.cats__item ul li:before {
    top: 6px !important;   
}
.cats__item ul li a {
    position: relative;
}
.cats__item ul li a:before {
    content: '';
    width: 0;
    height: 1px;
    background-color: var(--txt-color);
    position: absolute;
    left: 50%;
    top: 99%;
    transform: translateX(-50%);
    transition: .3s;
}
.cats__item ul li a:hover:before {
    width: 100%;
}
/* @ @ CATS END @ @ */
/* @ @ TEAM START @ @ */
.team__items {
    justify-content: center;
}
.team__items-top {
    justify-content: center;
}
.team__item {
    margin-top: 60px;
    padding: 0 30px;
}
.team__item--popup {
    cursor: pointer;
}
.team__item>div {
    border-bottom: 2px solid var(--txt-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-bottom: 20px;
}
.team__item img {
    width: 100%;
    aspect-ratio: 6/10;
    object-fit: cover;
    transition: .3s;
}
.team__item--popup:hover .team__img img {
    filter: grayscale(100%);
}
.team__name {
    text-align: center;
    font-weight: 600;
    font-size: 1.3rem;
    margin-top: 20px;
    display: block;
}
.team__spec {
    display: block;
    text-align: center;
    margin-top: 5px;
    font-size: .8rem;
    line-height: 140%;
}


.team__box {
    display: none;
    padding-top: 120px;
    padding-right: 220px;
    padding-bottom: 80px;
    padding-left: 220px;
    position: fixed;
    width: 90%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, .8);
    color: #fff;
    max-height: 83%;
    overflow: auto;
    z-index: 9999;
}
.team__box-info {
    text-align: left;
    color: #fff;
    max-width: 300px;
    flex: 0 0 300px;
}
.team__box img {
    width: 100%;
    aspect-ratio: 3/5;
    object-fit: cover;
    margin-bottom: 20px;
}
.team__box-txt .team__name {
    color: #fff;
    text-align: left;
    font-weight: 600;
}
.team__box-txt .team__spec {
    color: #fff;
    text-align: left;
    font-size: .9rem;
    line-height: 1.6rem;
    margin-bottom: 0;
}
.team__box-txt {
    max-width: calc(100% - 360px);
    flex: 0 0 calc(100% - 360px);
    padding-left: 120px;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    text-align: left;
}
.team__box-close {
    font-weight: 300;
    font-size: 30px;
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    padding: 0;
    margin: 0;
    background-color: transparent;
    border: none;
    cursor: pointer;
}
/* @ @ TEAM END @ @ */
/* @ @ EF START @ @ */
.ef {
    padding-top: 80px;
    padding-bottom: 60px;
    background-color: var(--bg-color);
    position: relative;
}
.ef>svg {
    height: auto;
    width: 75%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    filter: brightness(0) invert(1);
}
.ef__items {
    position: relative;
    z-index: 4;
    padding-left: clamp(15px, 12vw, 260px);
    padding-right: clamp(15px, 12vw, 220px);
}
.ef__item {
    padding: 20px 60px;
}
.ef__txt {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.ef__img figure {
    display: block;
    overflow: hidden;
    border: 1px solid var(--second-color);
    padding: 3px;
}
.ef__img img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: .3s;
}
.ef__img a:hover img {
    filter: brightness(65%);
    transform: scale(1.01);
}
.ef__name {
    display: block;
    font-weight: 600;
    margin-top: 15px;
    transition: .3s;
}
.ef__img a:hover .ef__name {
    color: var(--second-color);
}
/* @ @ EF END @ @ */
/* @ @ PRESS START @ @ */
.press__title {
    display: block;
    margin-bottom: 30px;
    width: 100%;
    font-size: 1.1rem;
    text-align: center;
}
.press__logos {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
}
.press__logos-wrapper {
    display: flex;
    justify-content: center;
}
.press__logos .press__gallery-items a {
    margin-top: 60px;
    display: block;
}
.press__gallery {
    text-align: center;
}
.press__gallery-items {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.press__gallery-items a:not(.press__gallery-img) {
    opacity: 0;
    position: absolute;
}
.press__gallery-img {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 10px;
    overflow: hidden;
    display: block;
}
.press__gallery-img img {
    transition: .3s;
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}
.press__gallery-img:hover img {
    filter: brightness(65%);
}
.press__download {
    margin-top: auto;
}
/* @ @ PRESS 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 @ @ */
/* @ @ BANERLINKS START @ @ */
.banerlinks {
    padding-top: clamp(120px, 10vw, 220px);
    padding-bottom: 120px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    background-attachment: fixed;
    overflow-x: clip;
}
.banerlinks__txt {
    position: relative;
    padding-left: 60px;
    padding-right: 60px;
    font-size: .86rem;
    line-height: 140%;
    font-weight: 500;
}
.banerlinks__txt:before {
    content: '';
    display: inline-block;
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, .6);
    filter: blur(50px);
}
.banerlinks__txt:after {
    content: '';
    width: 2px;
    height: 50%;
    background-color: var(--txt-color);
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}
.banerlinks__txt>* {
    position: relative;
    z-index: 4;
}
.banerlinks__items {
    background-color: #fff;
    padding: 20px;
}
.banerlinks__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    padding: 15px;
}
.banerlinks__item img {
    width: 100%;
    aspect-ratio: 7/8;
    object-fit: cover;
}
.banerlinks__item span {
    position: absolute;
    text-align: center;
    display: block;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 30px);
    font-weight: 700;
    letter-spacing: 2px;
    background-color: #fff;
    font-size: .8rem;
    padding: 2px;
}
.banerlinks__item  .cbtn {
    width: 100%;
    margin-top: 10px;
}
/* @ @ BANERLINKS END @ @ */
/* @ @ INSTAGRAM START @ @ */
.insta {
    overflow: hidden;
    position: relative;
}
.insta>svg {
    position: absolute;
    left: 50%;
    top: 18%;
    transform: translateX( -50%);
    z-index: 1;
    height: auto;
    width: 640px;
    max-width: 60%;
}
.insta>*:not(svg) {
    position: relative;
    z-index: 3;
}
.insta__subtitle {
    display: block;
    font-weight: 700;
    font-size: 1.2rem;
}
.insta__items {
    padding-top: clamp(60px, 10vw, 180px);
}
.insta__items img {
    padding: 30px;
    max-width: 25%;
    flex: 0 0 25%;
    aspect-ratio: 1/1;
    object-fit: cover;
}
/* @ @ INSTAGRAM END @ @ */
/* @ @  START @ @ */
.faq__items {
    max-width: 100%;
    width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.faq__item {
    border-bottom: 2px solid var(--txt-color);
}
.faq__question {
    font-size: 1.1rem;
    transition: .3s;
    cursor: pointer;
    padding: 20px 0;
    font-weight: 400;
    margin: 0;
    position: relative;
}
.faq__question:after {
    content: '';
    width: 16px;
    height: 16px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    background-image: url(../assets/arrow.svg);
    transition: .3s;
}
.faq__item.active .faq__question:after {
    transform: translateY(-50%) rotate(90deg);
}
.faq__item.active .faq__question {
    padding-left: 40px;
    font-weight: 700;
}
.faq__answer {
    display: none;
    background-color: var(--bg-color);
    margin-bottom: 30px;
    padding: 20px 40px;
}
/* @ @  END @ @ */
/* @ @ TXTBANER START @ @ */
.txtbaner {
    overflow-x: clip;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding-top: 120px;
}
.txtbaner header {
    padding-left: 80px;
}
.txtbaner__item {
    background-color: rgba(255,255,255, .8);
    padding: 50px 50px 50px 50px;
    max-width: 100%;
    width: 1300px;
    margin-left: auto;
    margin-right: auto;
}
.txtbaner__col {
    padding: 0 80px;
}
.txtbaner__phone {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 40px;
    font-weight: 700;
}
.txtbaner__phone:hover {
    opacity: .5;
}
.txtbaner__phone svg {
    margin-right: 20px;
    height: auto;
    width: 30px;
}
/* @ @ TXTBANER END @ @ */
/* @ @ TXTIMG START @ @ */
.txtimg__content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
/* @ @ TXTIMG END @ @ */
/* @ @ IMGTXT START @ @ */
.imgtxt {
    overflow-x: clip;
}
.imgtxt__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.imgtxt__txt {
    padding-left: 80px;
}
.imgtxt__txt .cbtn {
    margin-top: 15px;
}
.imgtxt__img img {
    width: 450px;
}
/* @ @ IMGTXT END @ @ */
/* @ @ BLOGPOSTS START @ @ */
.blogposts__items {
    position: relative;
    z-index: 3;
    overflow-x: clip;
}
.blogposts__item {
    padding: 40px 50px;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
    z-index: 3;
}
.blogposts__item:nth-child(even) {
    background-color: var(--bg-color);
}
.bloglist__items .blogposts__item:nth-child(even) {
    background-color: transparent !important;
}
.blogposts__img {
    overflow: hidden;
    margin-bottom: 20px;
}
.blogposts__img img {
    aspect-ratio: 1/1;
    width: 100%;
    object-fit: cover;
    transition: .3s;
}
.blogposts__img:hover img {
    transform: scale(1.05);
    filter: brightness(65%);
}
.blogposts__date {
    display: inline-block;
    font-size: .9rem;
    font-weight: 700;
    color: #fff;
    background-color: var(--txt-color);
    word-spacing: 2px;
    padding: 4px 15px;
    margin-bottom: 5px;
}
.blogposts__title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.blogposts__title:hover a {
    color: var(--main-color);
}
.blogposts__item p {
    font-size: .85rem;
    line-height: 140%;
    margin-bottom: 20px;
    margin-top: 0;
}
.blogposts__item .btn-circle {
    margin-top: auto;
}


.pagination>div {
    align-items: center;
    display: flex;
    justify-content: center;
}
.pagination .page-numbers {
    margin: 0 7px;
    padding: 1px 3px;
    line-height: 100%;
}
.pagination .page-numbers.current {
    font-weight: 900;
    padding-top: 2px;
    color: var(--main-color);
    border-bottom: 2px solid var(--main-color);
}

.singlepost {
    position: relative;
    padding-top: 30px;
    z-index: 9;
}
.singlepost__img {
    position: relative;
    display: flex;
    justify-content: center;
}
.singlepost__img img {
    width: 400px;
}
.singlepost__content {
    margin-left: auto;
    margin-right: auto;
    width: 1200px;
    flex: 0 0 1200px;
    position: relative;
    z-index: 3;
}
/* @ @ BLOGPOSTS END @ @ */
/* @ @ OFFER SINGLE START @ @ */
.offer__sidebar {
    max-width: 450px;
    flex: 0 0 450px;
    padding-left: 80px;
    padding-top: 30px;
}
.offer__search {
    margin-bottom: 60px;
}
.offer__sidebar-title {
    padding: 0;
    margin: 0;
    border: none;
    font-family: 'Poppins', sans-serif;
    background-color: transparent;
    font-size: 1.2rem;
    font-weight: 400;
    display: block;
    color: var(--main-color);
}
.offer__sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.offer__sidebar>ul>li {
    font-size: 1.1rem;
    margin: 20px 0 0 0;
    cursor: pointer;
}
.offer__sidebar>ul>li>span {
    position: relative;
    display: block;
    transition: .3s;
    border-bottom: 1px solid var(--second-color);
    padding: 15px 0 15px 50px;
    font-weight: 700;
    font-size: .9rem;
}
.offer__sidebar>ul>li>span:before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    background-image: url(../assets/arrow.svg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    transition: .3s;
    width: 13px;
    height: 13px;
    left: 15px;
}
.offer__sidebar>ul>li.active>span:before {
    transform: translateY(-50%) rotate(-90deg);
}
.offer__sidebar>ul>li.active>span {
    background-color: var(--bg-color);
}
.offer__sidebar>ul>li>ul {
    display: none;
    padding-bottom: 20px;
    padding-left: 20px;
}
.offer__sidebar>ul>li>ul>li {
    position: relative;
    padding-left: 30px;
    font-size: 1rem;
    margin-top: 15px;
}
.offer__sidebar>ul>li>ul>li:before {
    content: '';
    border-radius: 50%;
    width: 8px;
    height: 8px;
    border: 2px solid var(--txt-color);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.offer__sidebar>ul>li>ul>li a {
    display: block;
    font-size: .9rem;
}
.offer__sidebar>ul>li>ul>li.active>a {
    font-weight: 700;
}


.offer {
    padding-right: 7vw;
    position: relative;
    z-index: 9;
}
.offer__content {
    max-width: calc(100% - 500px);
    flex: 0 0 calc(100% - 500px);
    padding-left: 80px;
    padding-top: 50px;
}
.offer__content header {
    position: relative;
    z-index: 4;
}
.offer__content h1 {
    padding-left: 30px;
    font-weight: 600;
    font-size: clamp(30px, 2vw, 40px);
}
.offer__content h1>span {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    margin-bottom: 10px;
    color: var(--txt-color);
    font-size: .9rem;
    display: block;
    line-height: 100%;
}
.txtsidebar .offer__content .section-mid {
    margin-bottom: 5px !important;
}
.txtsidebar .offer__content header {
    margin-bottom: 30px;
}
.offer__nav {
    list-style: none;
    padding: 10px;
    margin: 0 0 20px 0;
    position: relative;
    z-index: 3;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: var(--bg-color);
}
.offer__nav li {
    padding: 5px 30px;
    font-weight: 500;
    font-size: 1.1rem;
    margin: 5px 0;
    cursor: pointer;
    transition: .3s;
    position: relative;
    letter-spacing: 1.4px;
    border-right: 1px solid var(--txt-color);
}
.offer__nav li:hover {
    text-shadow: 0px 0px 1px rgba(0, 0, 0, 1);
}
.offer__nav li:last-child {
    border: none;
}

.offer__item {
    padding-top: 40px;
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 40px;
    position: relative;
}
.offer__item>img {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    z-index: 1;
    filter: brightness(0) invert(1);
}
.offer__title {
    position: relative;
    z-index: 9;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    padding-left: 15px;
    border-left: 2px solid var(--txt-color);
}
.offer__txt {
    position: relative;
    z-index: 9;
}
.offer__item .gallery {
    padding: 0 40px;
}
.offer__item .gallery-item {
    padding: 20px;
}
.offer__item .gallery-item a {
    overflow: hidden;
    display: block;
}
.offer__item .gallery img {
    border: none !important;
    aspect-ratio: 1/1;
    object-fit: cover;
    width: 100%;
    transition: .3s;
}
.offer__item .gallery-item:hover img {
    filter: brightness(65%);
    transform: scale(1.1);
}
.offer__boxes {
    justify-content: center;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    width: 1000px;
}
.offer__box {
    margin-top: 20px;
    padding: 0 10px;
}
.offer__box>div {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: flex-start;
    height: 100%;
    align-items: center;
    width: 100%;
    padding: 30px 20px;
    border: 2px solid var(--txt-color);
}
.offer__box-name {
    font-size: .9rem;
    display: block;
    margin-bottom: 10px;
    line-height: 110%;
}
.offer__box-txt {
    font-size: 1rem;
    display: block;
    font-weight: 700;
    margin-top: auto;
}
.offer__box .cbtn {
    background-color: transparent;
    margin-top: auto;
    color: var(--second-color)
}
.offer__box .cbtn:hover {
    background-color: var(--main-color);
    color: #fff;
    border-color: var(--main-color);
}
.offer__item ul:not(.slick-dots) {
    list-style: none;
    margin: 0;
    padding: 0 0 0 20px;
}
.clist ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.clist ul li,
.offer__item ul:not(.slick-dots) li {
    position: relative;
    padding-left: 30px;
    margin: 10px 0;
}
.clist ul li:before,
.offer__item ul:not(.slick-dots) li:before {
    content: '';
    height: 8px;
    width: 8px;
    border-radius: 50%;
    border: 2px solid var(--txt-color);
    position: absolute;
    left: 0;
    top: 9px;
}
.offer__slider-slick {
    padding: 0 60px;
}
.offer__slider-item {
    padding: 10px;
}
.offer__slider-item img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}
.offer__slider-name {
    display: block;
    margin-top: 20px;
}
.offer__slider .slick-arrow {
    position: absolute;
    border: none;
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    background-image: url(../assets/arrow.svg);
    background-color: transparent;
    cursor: pointer;
    z-index: 4;
    padding: 0;
    font-size: 0;
    color: transparent;
    transition: .3s;
    top: 50%;
    transform: translateY(-50%);
}
.offer__slider .slick-next {
    right: 0;
}
.offer__slider .slick-prev {
    left: 0;
    transform: translateY(-50%) rotate(180deg);
}
.offer__team img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}
.offer__team-name {
    text-align: center;
    font-size: 1.2rem;
    display: block;
    margin-top: 30px;
    font-weight: 600;
}
.offer__team-txt {
    text-align: center;
    font-size: .9rem;
    display: block;
    line-height: 130%;
}
.offer__links a {
    margin: 5px;
    background-color: #fff;
    padding: 20px 30px 20px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 1px solid var(--main-color);
    position: relative;
    font-weight: 500;
    font-size: .9rem;
}
.offer__links a:before {
    content: '';
    border-radius: 50%;
    background-color: var(--second-color);
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    transition: .3s;
}
.offer__links a:hover {
    color: #fff;
    background-color: var(--main-color);
}
.offer__cols>div {
    padding: 10px;
}
.offer__cols>div>div {
    width: 100%;
    height: 100%;
    border: 1px solid var(--second-color);
    padding: 10px 20px 10px 20px;
}

.offer__quote {
    margin-top: 20px;
    background-color: var(--bg-color);
    max-width: 100%;
    width: 860px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 60px;
    padding-bottom: 40px;
    padding-right: clamp(15px, 10vw, 140px);
    padding-left: clamp(15px, 10vw, 150px);
    font-size: .9rem;
    position: relative;
    font-weight: 500;
}
.offer__quote strong {
    font-weight: 700;
}
.offer__quote>div {
    position: relative;
    padding-left: 40px;
    padding-top: 10px;
}
.offer__quote>div:before {
    content: '"';
    font-weight: 900;
    font-size: 70px;
    line-height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
/* @ @ OFFER SINGLE END @ @ */

/* @ @ APPOINTMENT START @ @ */
.appointment {
    position: relative;
}
.appointment__item {
    max-width: 100%;
    width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 3;
    padding-bottom: 40px;
    border-bottom: 2px solid var(--txt-color);
}
.appointment__txt {
    padding-top: 60px;
}
.appointment__contact {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: 60px;
}
.appointment__contact a {
    display: flex;
    align-items: center;
    font-weight: 600;
    margin: 6px 0;
}
.appointment__contact a:hover {
    color: var(--second-color);
}
.appointment__contact a svg {
    height: auto;
    width: 20px;
    margin-right: 20px;
}
.appointment__links {
    padding-left: 40px;
}
.appointment__links a {
    margin: 20px 10px 0 0;
    max-width: 100%;
    min-width: 120px;
}

/* @ @ APPOINTMENT END @ @ */
/* @ @ APPOINTMENT 2 START @ @ */
.appoint {
    position: relative;
    overflow-x: clip;
}
.appoint:before {
    content: '';
    width: 85%;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    background-color: var(--txt-color);
}
.appoint__img {
    text-align: center;
}
.appoint__content {
    display: flex;
    justify-content: center;
    align-items: center;
}
.appoint__content>div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 600px;
    max-width: 100%;
    background-color: var(--bg-color);
    padding: 60px 40px 60px 40px;
}
.appoint__txt {
    font-size: .9rem;
    padding-left: 100px;
    margin-top: 20px;
}
.appoint__txt .cbtn {
    margin-top: 80px;
}
/* @ @ APPOINTMENT 2 END @ @ */
/* @ @ FOOTER START @ @ */

.footer {
    position: relative;
    z-index: 4;
    margin-top: 120px;
}
body.home .footer {
    margin-top: 0;
}
.footer__top {
    background-color: var(--main-color);
    padding-top: 40px;
    padding-bottom: 60px;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.footer__top>svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75%;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: .02;
    
    animation: move 15s ease-in-out infinite;
    
    -ms-animation: move 15s ease-in-out infinite;
    -webkit-animation: move 15s ease-in-out infinite;
    -moz-animation: move 15s ease-in-out infinite;
}

@-webkit-keyframes move {
    0% {
      -webkit-transform-origin: center center;
      -moz-transform-origin: center center;
      -ms-transform-origin: center center;
      -o-transform-origin: center center;
      transform-origin: center center;
      transform: translate(-50%, -50%) scale(1.0);
      -ms-transform: translate(-50%, -50%) scale(1.0);
      
      -webkit-transform: translate(-50%, -50%) scale(1.0);
      
      -o-transform: translate(-50%, -50%) scale(1.0);
      
      -moz-transform: translate(-50%, -50%) scale(1.0);
    }
    50% {
      transform: translate(-50%, -50%) scale(1.05);
      -ms-transform: translate(-50%, -50%) scale(1.05);
      
      -webkit-transform: translate(-50%, -50%) scale(1.05);
      
      -o-transform: translate(-50%, -50%) scale(1.05);
      
      -moz-transform: translate(-50%, -50%) scale(1.05);
    }
    100% {
        transform: translate(-50%, -50%) scale(1.0);
        -ms-transform: translate(-50%, -50%) scale(1.0);
        
        -webkit-transform: translate(-50%, -50%) scale(1.0);
        
        -o-transform: translate(-50%, -50%) scale(1.0);
        
        -moz-transform: translate(-50%, -50%) scale(1.0);
      }
}
.footer__top>*:not(svg) {
    position: relative;
    z-index: 4;
}
.footer__top a:not(.cbtn):hover {
    color: var(--second-color)
}
.footer__title {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer__txt {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 80px;
}
.footer__txt p {
    margin-top: 0;
}
.footer__txt>a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 10px 0;
    line-height: 120%;
}
.footer__txt a:hover {
    opacity: .5;
}
.footer__txt svg {
    filter: brightness(0) invert(1);
    margin-right: 15px;
    height: auto;
    width: 15px;
    height: 16px;
}
.footer__address {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.footer__logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
.footer__logo>img {
    margin-bottom: 70px;
    filter: brightness(0) invert(1);
    width: 200px;
}
.footer__logo .cbtn {
    margin: 10px 0;
    max-width: 100%;
}
.footer__socials {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
}
.footer__socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 7px;
}
.footer__socials a img {
    filter: brightness(0) invert(1);
    width: 20px;
    height: 20px;
    transition: .3s;
}
.footer__socials a:hover img {
    transform: scale(1.1);
    opacity: .7;
} 

.footer__menu {
    padding-top: 80px;
    justify-content: space-between;
}
.footer__menu>div {
    padding: 0 10px;
}
.footer__menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    font-weight: 300;
}
.footer__menu ul ul {
    display: none;
}
.footer__menu a:hover {
    opacity: .5;
}
.footer__menu-top {
    text-transform: uppercase;
}
.footer__menu-top li {
    line-height: 120%;
    margin-bottom: 8px;
}
.footer__menu-top li a {
    font-weight: 600;
    letter-spacing: 1px;
    font-size: .9rem;
}
.footer__menu-bottom li {
    font-size: .9rem;
    margin: 2px 0;
}
.footer__menu-bottom {
    display: flex;
    justify-content: flex-end;
}

.footer__bottom {
    padding-top: 20px;
    padding-bottom: 20px;
    color: #929292;
    font-size: 14px;
    line-height: 22px;
}
.footer__policy {
    margin: 10px 0;
    display: flex;
    align-items: center;
}
.footer__policy span {
    display: inline-block;
    margin: 0 5px;
}
.footer__copy {
    text-align: center;
    display: flex;
    align-items: center;
    margin: 10px 0;
    justify-content: center;
}
.footer__copy span {
    display: inline-block;
    margin-left: 3px;
}
.footer__built {
    margin: 10px 0;
}
.footer__built p {
    margin: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.footer__built p a {
    text-decoration: underline;
    display: inline-block;
    margin-left: 15px;
}
.footer__built p a img {
    margin-left: 20px;
}
/* @ @ 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: 1770px) {
    .desc__img>svg  {
        right: 8vw;
    }
}
@media(max-width: 1600px) {
    .offer {
        padding-right: 4vw;
    }
    .offer__sidebar {
        max-width: 360px;
        padding-left: 20px;
        flex: 0 0 360px;
    }
    .offer__content {
        max-width: calc(100% - 360px);
        flex: 0 0 calc(100% - 360px);
    }
    .offer__item .gallery {
        padding: 0;
    }
    .offer__item .gallery-item {
        padding: 15px;
    }

    .team__name {
        font-size: 1.1rem;
    }
    .team__box {
        padding-top: 60px;
        padding-bottom: 60px;
        padding-right: 80px;
        padding-left: 12vw;
    }
}
@media(min-width: 1441px) {
    .boxes__item:nth-child(5n) .boxes__title,
    .boxes__item:last-child .boxes__title{
        border: none;
    }
}
@media(max-width: 1440px) {
    .wrapper {
        padding-left: 4vw;
        padding-right: 4vw;
    }
    .wrapper-big {
        padding-right: 6vw;
        padding-left: 6vw;
    }

    .header__menu>div>ul>li>a {
        font-size: 13px;
    }

    .desc__img>svg  {
        right: 7vw;
    }
    
    .boxes__item {
        max-width: 33.333%;
        flex: 0 0 33.333%;
    }

    .offerbox__item {
        padding: 0 15px;
    }
    .offerbox__title {
        font-size: 1.2rem;
    }
    .offerbox__subtitle {
        font-size: .9rem;
    }

    
    .team__box  {
        padding: 40px;
    }
    .team__box-txt {
        font-size: 14px;
        font-weight: 300;
        padding-left: 60px;
    }
 
}
@media(max-width: 1380px) {
    .offer {
        padding-right: 40px;
    }
    .offer__sidebar {
        max-width: 300px;
        flex: 0 0 300px;
        padding-left: 20px;
    }
    .offer__content {
        max-width: calc(100% - 300px);
        flex: 0 0 calc(100% - 300px);
    }
}
@media(max-width: 1280px) {
    .heading-line__item>svg {
        top: clamp(5px, 0.5vw, 12px);
    }

    .ef__items {
        padding-left: 60px;
        padding-right: 60px;
    }
}
@media(max-width: 1200px) {
    body {
        padding-top: 170px;
    }
    .nav-icon {
        display: block;
    }
    .header__logo-mobile {
        order: 0;
        width: 100px;
        display: inline-block;
        margin-bottom: 10px;
    }
    .header__top {
        display: none;
    }
    .header__menu {
        order: 0;
        position: fixed;
        top: 0;
        right: -500px;
        width: 400px;
        max-width: 100%;
        padding: 30px 40px 40px 30px;
        background-color: #fff;
        box-shadow: 0px 0px 3px rgba(144,144,144,.3);
        justify-content: flex-start;
        align-items: flex-start;
        flex-direction: column;
        flex-wrap: nowrap;
        height: 100%;
        overflow: auto;
        flex: initial;
        transition: .5s;
    }
    .menuopened .header__menu {
        right: 0;
    }
    .header__menu>div>ul {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }
    .header__menu>div>ul>li {
        margin: 1px 0;
    }
    .header__menu .header-search {
        display: none;
    }
    .header__menu .cbtn {
        margin-top: 10px;
        font-size: 12px;
    }
    .header__items {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .scrolled .header__items {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .header__mobile-btns {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        flex: 1;
    }
    .header__mobile-btns button {
        margin-right: 10px;
    }
    .header__mobile-btns button svg path {
        fill: var(--second-color);
    }
    .header__top .header-search {
        display: none;
    }
    .header__socials {
        order: 3;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: flex-start;
        margin-top: 5px;
        border-top: 1px solid var(--second-color);
        width: 100%;
        padding-top: 10px;
    }
    .header__socials a {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 10px 10px;
    }
    .header__socials a img {
        filter: brightness(0);
        height: 20px;
        width: auto;
    }
    .header__mobile-items {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        font-size: .9rem;
        line-height: 118%;
    }
    .header__mobile-items>div {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        margin-top: 10px;
    }
    .header__mobile-items>div a {
        margin: 5px 0;
    }
    .header__btns a {
        padding: 10px 15px;
    }

    .cats__item {
        padding: 10px;
    }

    .appoint__content>div {
        padding: 30px;
    }

    
    .offer {
        padding: 0;
    }
    .offer__sidebar {
        max-width: 100%;
        flex: 0 0 100%;
        padding: 0;
        margin-bottom: 30px;
    }
    .offer__sidebar>ul {
        display: none;
    }
    .offer__sidebar-title {
        background-color: var(--txt-color);
        border: none;
        color: #fff;
        text-align: center;
        width: 180px;
        padding: 6px;
        font-size: .9rem;
        margin-left: 30px;
    }
    .offer__sidebar>ul {
        padding: 0 10px;
    }
    .offer__sidebar>ul>li {
        font-size: 1rem;
    }
    .offer__content .section-heading {
        text-align: center;
        padding: 0;
    }
    .offer__nav {
        justify-content: center;
    }
    .offer__nav li {
        border: none !important;
        padding: 10px 10px 10px 10px;
        font-size: 1rem;
    }
    .offer__nav li:before {
        left: 8px;
    }
    .offer__content {
        max-width: 100%;
        flex: 0 0 100%;
        padding: 0 5px;
    }
    .offer__content>header {
        padding: 0;
        margin: 0;
        justify-content: center;
        text-align: center;
    }
    .offer__item {
        padding: 30px 20px 20px 20px;
    }
    .offer__item ul:not(.slick-dots) {
        padding-left: 0;
    }
    .offer__sidebar .searchside {
        display: none;
    }
    .offer__boxes {
        padding: 0;
    }
    .offer__box {
        padding: 0 5px;
        margin-top: 20px;
    }

    .team__item {
        padding: 0 10px;
    }

    
    .footer__top>div {
        max-width: 100%;
        flex: 0 0 100%;
    }
    .footer__logo {
        order: 0;
        margin-bottom: 40px;
    }
    .footer__logo>img {
        margin-bottom: 40px;
    }
    .footer__txt {
        order: 1;
        margin-bottom: 40px;
        text-align: center;
        align-items: center;
        padding-top: 0;
        padding-right: 30px;
    }
    .footer__txt>a {
        margin: 5px 0;
    }
    .footer__menu {
        order: 2;
        justify-content: center;
        padding-top: 0;
    }
    .footer__menu-bottom {
        margin-top: 30px;
    }
    .footer__menu>div {
        display: flex;
        justify-content: center;
        text-align: center;
        font-size: 1rem !important;
    }
    .footer__menu>div ul li {
        margin: 4px 0 !important;
    }
  
}
@media(max-width: 1070px) {
    
}
@media(min-width: 993px) {
    .txtimg__content {
        padding-right: 80px;
    }
    .imgtxt {
        padding-top: 80px;
    }

    .cats__items  {
        margin-top: 40px;
    }
}
@media(max-width: 992px) {
    body {
        padding-top: 160px;
    }
    html, body {
        font-size: 15px;
        line-height: 24px;
    }
    .wrap,
    .wrapper-big,
    .wrapper-small,
    .wrapper {
        padding-left: 10px;
        padding-right: 10px;
    }

    .clist ul li:before, .offer__item ul:not(.slick-dots) li:before {
        top: 5px;
    }

    .video-embed iframe {
        height: 400px;
    }

    .baner__content {
        padding: 30px 20px;
        text-align: center;
        max-width: 70%;
    }
    .baner__icon {
        max-width: 20%;
        right: 20px;
    }

    .desc__content {
        padding-top: 0;
        padding-right: 10px;
    }
    .desc .heading-line.heading-line--left {
        justify-content: center;
    }
    .desc__txt {
        text-align: center;
    }
    .desc__link {
        padding: 0;
        padding-top: 40px;
        margin-top: 40px;
        justify-content: center !important;
    }
    .desc__link:before {
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
    }
    .desc__img {
        margin-top: 40px;
    }
    .desc__img>svg {
        display: none;
    }

    .info__img {
        margin-top: 10px !important;
    }
    .info__txt {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }
    .info__txt .cbtn {
        margin-left: auto;
        margin-right: auto;
    }
    .info__txt-title {
        width: 100%;
        text-align: center;
        margin: 0;
    }

    .txtbaner {
        padding-top: 60px;
    }
    .txtbaner header {
        padding: 0;
        text-align: center;
    }
    .txtbaner header .subtitle {
        margin-bottom: 10px;
    }
    .txtbaner__item  {
        padding: 20px 20px;
    }
    .txtbaner__col {
        padding: 0;
        margin: 10px;
    }
    .txtbaner__phone {
        margin: 10px 0;
    }

    .txtimg--top {
        margin-top: 20px !important;
    }
    .txtimg__img {
        text-align: center;
        margin-top: 40px;
    }
    
    .imgtxt__content {
        align-items: center;
        margin-top: 30px;
    }
    .imgtxt .heading-line.heading-line--left {
        justify-content: center;
        text-align: center;
    }
    .imgtxt__txt {
        text-align: center;
        padding: 0;
    }

    
    .insta__subtitle {
        font-size: 1rem;
    }
    .insta>img {
        width: 200vw;
        max-width: initial;
    }
    .insta__items img {
        padding: 5px;
    }

    .banerlinks__items {
        background-color: rgba(255,255,255, .7);
    }
    .banerlinks {
        padding-top: 60px;
        padding-bottom: 40px;
    }
    
    .team__box-info {
        max-width: 100%;
        flex: 0 0 100%;
        display: flex;
        justify-content: center;
    }
    .team__box-info img {
        width: 140px;
    }
    .team__box-txt {
        max-width: 100%;
        flex: 0 0 100%;
        padding: 0;
        font-size: 12px;
    }
    .team__box-txt .team__name {
        text-align: center;
        margin-top: 0;
    }
    .team__box-txt .team__spec {
        text-align: center;
    }

    .press__items {
        margin-top: 10px !important;
    }
    .press__gallery {
        margin-top: 40px;
    }
    .press__download {
        margin-top: 40px;
    }

    .appointment__txt {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        justify-content: center;
        padding-top: 0;
    }
    .appointment__links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 20px;
        padding: 0;
    }
    .appointment__links a {
        margin: 10px;
    }
    .appointment__contact {
        padding: 0;
        align-items: center;
    }
    .appointment__contact a {
        justify-content: center;
        padding-right: 10px;
    }
    .appointment__img {
        margin-top: 40px;
        display: flex;
        justify-content: center;
    }
    .appointment__img img {
        width: 300px;
    }

    .footer__policy {
        justify-content: center;
        text-align: center;
    }
    .footer__built {
        display: flex;
        justify-content: center;
    }
    .footer__built p {
        justify-content: center;
    }
}
@media(min-width: 768px) and (max-width: 1440px) {
    .boxes__item:nth-child(3n) .boxes__title,
    .boxes__item:last-child .boxes__title{
        border: none;
    }
}
@media(max-width: 767px) {
    html, body {
        font-size: 14px;
        line-height: 22px;
    }
    body {
        padding-top: 100px;
    }
    .marg-top-biggest {
        margin-top: 100px;
    }
    .marg-top {
        margin-top: 40px;
    }
    .marg-top-big {
        margin-top: 60px;
    }
    .padd-top {
        padding-top: 60px;
    }
    .section-heading,
    .section-heading--small {
        letter-spacing: 2px;
    }

    .video-close {
        right: 0;
    }
    .video-embed__item {
        padding: 20px 40px;
    }
    .video-embed iframe {
        height: 300px;
    }

    #breadcrumbs {
        font-size: 11px;
        line-height: 18px;
    }

    .pop-search__close {
        right: 20px !important;
        top: 30px !important;
    }
    .pop-search form input {
        font-size: 1rem;
    }

    .heading-line__item {
        padding: 4px 0 4px 50px;
    }
    .heading-line__item:before {
        left: 40px;
    }
    .heading-line__item>svg {
        width: 26px;
        top: 10px;
    }
    .section-heading,
    .page-heading {
        letter-spacing: 2px;
        font-size: 24px;
    }
    .heading-line__item>svg {
        top: 7px;
    }

    .header__items {
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .header__logo {
        max-width: 80px;
        flex: 0 0 80px;
    }
    .scrolled .header__logo {
        max-width: 60px;
        flex: 0 0 60px;
    }

    .baner__content {
        max-width: 100%;
        width: 100%;
        background-color: rgba(255,255,255, .85);
    }
    .baner__icon {
        display: none;
    }

    .desc {
        margin-top: 0;
    }
    .desc__txt {
        padding: 0 0;
    }

    .boxes__item {
        max-width: 50%;
        flex: 0 0 50%;
    }
    .boxes__item:last-child .boxes__title,
    .boxes__item:nth-child(even) .boxes__title {
        border: none;
    }
    .boxes__subtitle {
        margin-bottom: 10px;
    }
    .boxes__title {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .boxes__link {
        font-size: .8rem;
        margin-top: 10px;
    }

    .offerbox__item {
        padding: 0 30px;
    }
    .offerbox__item>div {
        padding-bottom: 15px;
    }
    .offerbox__title {
        margin-bottom: 10px;
    }

    .zones {
        padding-top: 40px;
    }
    .zones header p {
        margin-top: 20px;
    }

    .opinions {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .opinions__items {
        justify-content: center;
    }
    
    .cats__item ul li:before {
        top: 4px !important;   
    }

    .appoint__content>div {
        padding: 30px 10px;
    }
    .appoint__txt {
        padding: 0 10px;
    }
    .appoint__txt .cbtn {
        margin-top: 20px;
    }

    .faq__item.active  .faq__question {
        padding-left: 20px;
    }
    .faq__question:after {
        right: 0;
        width: 12px;
        height: 12px;
    }
    .faq__answer {
        padding: 10px 20px;
    }

    .offer__boxes {
        margin-bottom: 20px;
    }
    .offer__box>div {
        padding: 15px;
    }
    .offer__item {
        padding: 0 10px;
        margin-top: 30px;
    }
    .offer__title {
        margin-bottom: 20px;
        letter-spacing: 1.5px;
        font-size: 1.3rem;
    }
    .offer__quote {
        padding: 20px;
    }

    .blogposts {
        margin-top: 0 !important;
    }
    .blogposts__item {
        margin-bottom: 0;
        padding-left: 20px;
        padding-right: 20px;
    }


    .footer__menu-top li a {
        font-size: 1rem;
    }
    .footer__built p a,
    .footer__built p {
        display: flex;
        align-items: center;
        flex-direction: column;

    }
    .footer__built p a  {
        margin-left: 0;
    }
    .footer__built p a img {
        margin-left: 0;
        margin-top: 10px;
    }
    
}
@media(max-width: 500px) {
    .zones__item ul {
        padding-left: 0;
    }
    .zones__item ul li button {
        width: 120px;
    }

    .pricing__mobile li {
        border: none !important;
    }

    .ef {
        padding-top: 60px;
    }
    .ef__items {
        padding: 0;
        margin-top: 0;
    }
    .ef__item {
        padding: 0 15px;
        margin-top: 30px;
    }
    .ef__txt {
        margin-top: 0;
        text-align: center;
    }
}
/* @ @ MEDIA END @ @  */