html {
    font-size: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
    list-style: none;
    list-style-type: none;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

:root {
    --main: #C58762;
    --grey: #556968;
    --black: #2E2E2E;
    --white: #FFFFFF;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--grey);
    background: var(--white);
    min-height:100vh;
    margin:0;
    display:flex;
    flex-direction:column;
}

h1,h2,h3,h4,h5,h6 {
    color: var(--black);
    font-family: 'Darker Grotesque', sans-serif;
}

body.scrolling {
    overflow-y: hidden;
}

a,
button {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
    text-decoration: none;
}

@media only screen and (max-width: 768px) {
    a,
    button {
        cursor: default !important;
        border: none;
        outline: none;
    }
}

img,
video {
    display: block;
    max-width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
}

.container {
    max-width: 1280px;
    width: 100%;
    height: auto;
    padding: 0 30px;
    margin: 0 auto;
}

@media only screen and (max-width: 768px) {
    .container {
        padding: 0 1rem;
        margin: 0 auto;
    }
}

.brand {
    font-family: inherit;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: inherit;
    border: none;
    outline: none;
    color: #C58762;
    text-transform: uppercase;
    text-rendering: optimizeLegibility;
}

.header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    z-index: 999;
    border: none;
    outline: none;
    background: #ffffff;
    -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.header .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2rem;
    max-width: 100%;
    height: auto;
    padding: 0.75rem 0;
}

.header .navbar {
    max-width: 100%;
    height: auto;
}

.header .menu > .menu-item {
    position: relative;
    display: inline-block;
    margin-right: 60px;
}

.header .menu > .menu-item:last-child {
    margin-right: 0;
}

.header .menu > .menu-item > a {
    display: block;
    font-family: inherit;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    border: none;
    outline: none;
    color: var(--grey);
    text-rendering: optimizeLegibility;
    -webkit-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.header .menu > .menu-item > a .expand {
    position: relative;
    display: inline-block;
    height: 0.75rem;
    width: 0.75rem;
    margin-left: 0.35rem;
    border: none;
    outline: none;
    pointer-events: none;
}

.header .menu > .menu-item > a .expand:before, .header .menu > .menu-item > a .expand:after {
    position: absolute;
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
    content: '';
    left: 50%;
    top: 50%;
    width: 100%;
    height: 2px;
    background: #121212;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.header .menu > .menu-item:hover > a {
    color: var(--main);
}

.header .menu > .menu-item:hover > a .expand::before, .header .menu > .menu-item:hover > a .expand::after {
    color: var(--main);
}

.header .menu > .menu-item > a .expand::after {
    -webkit-transform: translate(-50%, -50%) rotate(-90deg);
    -ms-transform: translate(-50%, -50%) rotate(-90deg);
    transform: translate(-50%, -50%) rotate(-90deg);
}

.header .menu > .menu-item > .sub-menu > .menu-item > a:hover {
    color: var(--main);
}

.header .menu > .menu-item > .sub-menu {
    position: absolute;
    left: -1rem;
    top: 100%;
    width: 13rem;
    height: auto;
    padding: 0.75rem 0;
    border: none;
    outline: none;
    opacity: 0;
    visibility: hidden;
    border-top: 3px solid var(--main);
    background: #ffffff;
    -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    -webkit-transform: translateY(1rem);
    -ms-transform: translateY(1rem);
    transform: translateY(1rem);
    -webkit-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.header .menu > .menu-item > .sub-menu > .menu-item {
    display: block;
}

.header .menu > .menu-item > .sub-menu > .menu-item > a {
    display: block;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 400;
    line-height: inherit;
    padding: 0.5rem 1.25rem;
    color: #121212;
    text-rendering: optimizeLegibility;
    -webkit-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.header .opened-menu {
    position: relative;
    display: none;
    cursor: pointer;
    width: 2rem;
    height: 1rem;
    border: none;
    outline: none;
    opacity: 0;
    visibility: hidden;
    background: none;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.header .opened-menu span {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    border: none;
    outline: none;
    opacity: 1;
    border-radius: 0.25rem;
    background: #121212;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

.header .opened-menu span:nth-child(1) {
    top: 0;
}

.header .opened-menu span:nth-child(2), .header .opened-menu span:nth-child(3) {
    top: 0.5rem;
}

.header .opened-menu span:nth-child(4) {
    top: 1rem;
}

.header .closed-menu {
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    outline: none;
    background: none;
}

.header .closed-menu img.closed-icon {
    display: block;
    width: 1rem;
    height: auto;
}

.header .overlay {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    background: rgba(0, 0, 0, 0.6);
    -webkit-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

@media only screen and (min-width: 993px) {
    .header .menu > .menu-item-has-children:hover > .sub-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
    .header .menu > .menu-item-has-children:hover > a .expand::after {
        -webkit-transform: translate(-50%, -50%) rotate(0deg);
        -ms-transform: translate(-50%, -50%) rotate(0deg);
        transform: translate(-50%, -50%) rotate(0deg);
    }
}

@media only screen and (max-width: 992px) {
    .header .overlay.active {
        display: block;
        opacity: 1;
        visibility: visible;
    }
    .header .navbar {
        position: fixed;
        top: 0;
        left: -18rem;
        width: 18rem;
        height: 100%;
        padding: 1rem 0;
        z-index: 999;
        opacity: 0;
        overflow-y: auto;
        visibility: hidden;
        background: #ffffff;
        -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        -webkit-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        transition: all 0.5s ease;
    }
    .header .navbar.active {
        left: 0rem;
        opacity: 1;
        visibility: visible;
    }
    .header .navbar::-webkit-scrollbar {
        width: 5px;
    }
    .header .navbar::-webkit-scrollbar-thumb {
        border-radius: 1rem;
        background: #e6e6e6;
        -webkit-box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.12);
        box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.12);
    }
    .header .menu {
        width: 100%;
        height: auto;
        margin-top: 3.5rem;
    }
    .header .menu > .menu-item {
        display: block;
        margin: 0;
    }
    .header .menu > .menu-item-has-children > a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .header .menu > .menu-item > a {
        padding: 0.75rem 1rem;
        color: #121212;
        border-bottom: 1px solid #f2f2f2;
    }
    .header .menu > .menu-item:first-child > a {
        border-top: 1px solid #f2f2f2;
    }
    .header .menu > .menu-item > a .expand::before, .header .menu > .menu-item > a .expand::after {
        background: #121212;
    }
    .header .menu > .menu-item-has-children.active > a .expand:after {
        -webkit-transform: translate(-50%, -50%) rotate(0deg);
        -ms-transform: translate(-50%, -50%) rotate(0deg);
        transform: translate(-50%, -50%) rotate(0deg);
    }
    .header .menu > .menu-item > .sub-menu {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        max-height: 0;
        padding: 0px;
        border: none;
        outline: none;
        opacity: 1;
        overflow: hidden;
        visibility: visible;
        background: transparent;
        -webkit-box-shadow: none;
        box-shadow: none;
        -webkit-transform: translateY(0px);
        -ms-transform: translateY(0px);
        transform: translateY(0px);
    }
    .header .menu > .menu-item > .sub-menu > .menu-item > a {
        padding: 0.75rem 2rem;
        color: #121212;
        border-bottom: 1px solid #f2f2f2;
    }
    .header .opened-menu {
        display: block;
        opacity: 1;
        visibility: visible;
    }
    .header .closed-menu {
        position: absolute;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        top: 1rem;
        right: 0.5rem;
    }
}

.main {
    display: block;
    max-width: 100%;
    height: auto;
}

.whitespace {
    height: 78px;
}

.intro {
    height: 100vh;
    max-height: 700px;
    background-repeat: no-repeat;
    background-position: top right;
    background-size: contain;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0, 0.1);
    margin-bottom: 150px;
}

.introsm {
    max-height: 240px;
    height: 100vh;
    background-repeat: no-repeat;
    background-position: top right;
    background-size: contain;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0, 0.1);
    margin-bottom: 50px;
}

.intro__wrapper {
    position: relative;
    height: 100vh;
    max-height: 700px;
}

.intro__wrapper:after {
    position: absolute;
    content: "";
    height: 100vh;
    max-height: 700px;
    width: 100vw;
    right: 47%;
    top: 0;
    background-color: var(--white);
    z-index: 1;
    clip-path: polygon(100% 0, 0 0%, 85% 200%);
}

.intro__content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    max-width: 515px;
    width: 100%;
}

.introsm__wrapper {
    position: relative;
    height: 100vh;
    max-height: 240px;
}

.introsm__wrapper:after {
    position: absolute;
    content: "";
    height: 100vh;
    max-height: 240px;
    width: 100vw;
    right: 65%;
    top: 0;
    background-color: var(--white);
    z-index: 1;
    clip-path: polygon(100% 0, 0 0%, 85% 200%);
}

.introsm__content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    max-width: 515px;
    width: 100%;
}

.intro__title {
    font-size: 42px;
    font-weight: 700;
    line-height: 45px;
    color: var(--black);
    margin-bottom: 20px;
}

.introsm__title {
    font-size: 34px;
    font-weight: 600;
    line-height: 40px;
    color: var(--black);
}

.intro__text {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--grey);
    margin-bottom: 20px;
    max-width: 415px;
}

.intro__link {
    background-color: var(--main);
    border-radius: 64px;
    display: inline-block;
    text-decoration: none;
    color: var(--white);
    padding: 18px 46px;
    font-size: 16px;
    font-weight: 500;
}

.intro__link-wrapper,
.offer__item-link {
    display: flex;
    align-items: center;
}

.intro__link-wrapper img,
.offer__item .offer__item-link img {
    max-width: 14px;
    max-height: 12px;
    margin-left: 10px;
    margin-bottom: 0px
}

.offer__item-link {
    justify-content: center;
    margin: 16px auto 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--main);
    max-width: 137px;
}

.about__left {
    max-width: 426px;
    width: 100%;
}

.about__left img {
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    object-fit: cover;
    height: 100%;
}

.about__right {
    max-width: 770px;
    width: 100%;
    padding: 20px;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: baseline;
    justify-content: center;
}

.about__wrapper {
    display: flex;
    align-items: stretch;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0, 0.1);
}

.about__right-content h2 {
    font-size: 34px;
    font-weight: 600;
    line-height: 40px;
    color: var(--black);
    margin-bottom: 20px;
}

.about__right-content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--grey);
}

.about__right-content {
    margin-bottom: 20px;
}

.about {
    margin-bottom: 100px;
}

.offer__title {
    font-size: 34px;
    font-weight: 600;
    line-height: 40px;
    color: var(--black);
    text-align: center;
    margin-bottom: 50px;
}

.offer__item {
    background-color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 16px;
    border-radius: 20px;
    text-align: center;
    color: var(--grey);
    display: flex;
    flex-direction: column;
}

.offer__item img {
    max-width: 140px;
    width: 100%;
    margin: 0 auto 8px;
    max-height: 80px;
}

.offer__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 40px;
}

.offer__item-title {
    font-size: 28px;
    font-weight: 600;
    line-height: 30px;
    text-align: center;
    color: var(--grey);
    margin-bottom: 16px;
}

.offer__item-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
    color: var(--grey);
    flex: 1;
}

.offer {
    margin-bottom: 100px;
}

.ourslider__title {
    font-size: 34px;
    font-weight: 600;
    line-height: 40px;
    color: var(--black);
    margin-bottom: 50px;
}

.ourslider__items .owl-stage-outer {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 20px;
    padding-left: 10px;
    padding-right: 10px;
}

.container-slider {
    max-width: 1160px;
    width: 100%;
    margin: 0 auto;
}

.way__item-wrapper > img {
    max-width: 100%;
    height: 230px;
    max-height: 100%;
    object-fit: cover;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
}

.ourslider__item {
    box-shadow: 0 4px 15px rgba(0,0,0, 0.1);
    background-color: var(--white);
    border-radius: 20px;
    max-width: 260px;
    width: 100%;
}

.way__item-content {
    padding: 16px;
}

.way__item-content h3 {
    font-size: 28px;
    font-weight: 600;
    line-height: 40px;
    color: var(--black);
    margin-bottom: 8px;
}

.way__item-content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--grey);
    margin-bottom: 8px;
}

.more-button img {
    max-width: 14px;
}

.more-button {
    display: flex;
    align-items: center;
}

.more-button span {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--main);
    margin-right: 16px;
}

.more-button {
    color: var(--main);
}

.ourslider__items .owl-prev {
    position: absolute;
    left: -35px;
    top: 47%;
    transform: translate(50%, 0px);
    border: 2px solid var(--grey) !important;
    border-radius: 50% !important;
    width: 24px;
    height: 24px;
    margin: 0;
}

.ourslider__items .owl-next {
    position: absolute;
    right: -20px;
    top: 47%;
    transform: translate(50%, 0px);
    border: 2px solid var(--grey) !important;
    border-radius: 50% !important;
    width: 24px;
    height: 24px;
    margin: 0!important;
}

.ourslider__items .owl-prev i,
.ourslider__items .owl-next i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    font-weight: 900;
    color: var(--grey);
}

.ourslider__items .owl-prev:hover i,
.ourslider__items .owl-next:hover i {
    color: var(--white);
}

.ourslider__items .owl-prev:hover,
.ourslider__items .owl-next:hover {
    background: var(--grey) !important;
}

.ourslider__items.owl-theme .owl-nav [class*=owl-] {
    margin: 0!important;
}

.ourslider {
    margin-bottom: 80px;
}

.numbers__title {
    font-size: 34px;
    font-weight: 600;
    line-height: 40px;
    color: var(--grey);
    text-align: center;
    margin-bottom: 50px;
}

.numbers__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    grid-gap: 75px;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.count,
.numbers__item-span {
    font-size: 44px;
    font-weight: 700;
    line-height: 50px;
    font-family: 'Darker Grotesque', sans-serif;
}

.numbers__item-span {
    color: var(--main);
}

.numbers__item-header {
    display: flex;
    text-align: center;
    justify-content: center;
    margin-bottom: 16px;
}

.numbers__item-content {
    font-size: 24px;
    font-weight: 600;
    line-height: 34px;
    color: var(--grey);
    text-align: center;
}

.numbers {
    margin-bottom: 100px;
}

.visit__left h2 {
    font-size: 34px;
    font-weight: 600;
    line-height: 40px;
    color: var(--black);
    margin-bottom: 20px;
}

.visit__left h3 {
    font-size: 30px;
    font-weight: 600;
    line-height: 36px;
    color: var(--black);
    margin-bottom: 20px;
}

.visit__left h4 {
    font-size: 28px;
    font-weight: 600;
    line-height: 35px;
    color: var(--black);
    margin-bottom: 20px;
}

.visit__left h5 {
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
    color: var(--black);
    margin-bottom: 18px;
}

.visit__left h6 {
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
    color: var(--black);
    margin-bottom: 15px;
}

.visit__left p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--grey);
    margin-bottom: 8px;
}

.visit__left {
    max-width: 602px;
    width: 100%;
    margin-right: 16px;
}

.visit__left li {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--grey);
    margin-bottom: 20px;
    position: relative;
    padding-left: 36px;
}

.visit__left li:last-child {
    margin-bottom: 0;
}

.visit__left li:before {
    content: '';
    position: absolute;
    top: 4px;
    left: 0;
    background: var(--main);
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

.visit__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.visit__right {
    max-width: 600px;
    width: 100%;
}

.visit {
    margin-bottom: 100px;
}

.show__items {
    margin: 0 auto;
    max-width: 1440px;
    width: 100%;
    position: relative;
    padding: 0 40px;
}

.show {
    margin-bottom: 100px;
}

.show__items .owl-prev {
    position: absolute;
    left: -30px;
    top: 40%;
    transform: translate(50%, 0px);
    border: 2px solid #2E2E2E !important;
    border-radius: 50% !important;
    width: 32px;
    height: 32px;
    margin: 0;
    transition: all .3s ease;
}

.show__items .owl-next {
    position: absolute;
    right: 0px;
    top: 40%;
    transform: translate(50%, 0px);
    border: 2px solid #2E2E2E !important;
    border-radius: 50% !important;
    width: 32px;
    height: 32px;
    margin: 0;
    transition: all .3s ease;
}

.show__items .owl-next:hover,
.show__items .owl-prev:hover {
    background: #2E2E2E !important;
    transition: all .3s ease;
}

.show__items .owl-next:hover i,
.show__items .owl-prev:hover i {
    color: var(--grey);
    transition: all .3s ease;
}

.show__items .owl-prev i,
.show__items .owl-next i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #2E2E2E;
    font-size: 24px;
    transition: all .3s ease;
}

.footer {
    background-color: var(--grey);
    color: var(--white);
}

.footer__wrapper {
    display: flex;
    justify-content: space-between;
    padding: 40px 0;
}

.footer__left {
    max-width: 75px;
    width: 100%;
}

.footer__left img {
    filter: brightness(0) invert(1);
}

.footer__padding {
    border-right: 1px solid rgba(255,255,255, 0.3);
    padding: 0 60px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.footer__center-left p {
    margin-bottom: 20px;
}

.footer__center-right p {
    margin-bottom: 10px;
}

.footer__center-right a,
.footer__right a {
    color: var(--white);
    text-decoration: none;
    transition: all .3s ease;
}

.footer__center-right a:hover,
.footer__right a:hover  {
    color: var(--main);
    transition: all .3s ease;
}

.footer__right li {
    margin-bottom: 10px;
}

.footer__right li:last-child {
    margin-bottom: 0;
}

.footer__social ul {
    display: flex;
}

.footer__social ul li {
    margin-right: 20px;
}

.footer__social {
    padding-left: 75px;
}

.services__content h3 {
    font-size: 28px;
    font-weight: 600;
    line-height: 40px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--black);
}

.services__content {
    max-width: 640px;
    width: 100%;
    margin: 0 auto;
    color: var(--black);
    text-align: center;
}

.services__content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--black);
}

.services {
    margin-bottom: 50px;
}

.cat,
.sf-field-post_type li {
    color: var(--white);
}

.cat {
    border-right: 1px solid var(--white);
}

.cat:first-child {
    padding-right: 20px;
}

.cat:nth-child(2) {
    padding: 0 20px;
}

.cat:last-child {
    border: none;
    padding-left: 20px;
}

.cat label,
.sf-field-post_type label {
    width: fit-content;
    cursor: pointer;
    padding-left: 0!important;
    color: var(--white);
}

.cat label span,
.sf-field-post_type li {
    text-align: center;
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--white);
}

.cat label input,
.sf-field-post_type li input {
    position: absolute;
    display: none;
    color: var(--grey);
}

.cat label input + span{
    color: var(--white);
}


.cat input:checked + span {
    color: #ffffff;
    text-shadow: 0 0  6px rgba(0, 0, 0, 0.8);
}

.sf-field-post_type ul {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.action input:checked + span{
    background-color: #3176AE;
}

.items__wrapper {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    background-color: var(--main);
    max-width: fit-content;
    padding: 16px 24px;
    border-radius: 56px;
    margin-bottom: 50px;
}

.items__inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 40px;
    max-width: 980px;
    width: 100%;
    justify-content: center;
    margin: 0 auto 40px;
}

.items__item {
    background-color: var(--white);
    box-shadow: 0 4px 15px rgba(0,0,0, 0.1);
    border-radius: 20px;
}

.items__item img {
    object-fit: cover;
    max-height: 80px;
    max-width: 100%;
    width: 100%;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
}

.items__item-content {
    padding: 20px 20px 60px;
    text-align: center;
}

.items__item-content h4 {
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    text-align: center;
    color: var(--grey);
    margin-bottom: 20px;
}

.items__item a {
    text-decoration: none;
    color: var(--grey);
}

.items__item-content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--grey);
}

.items {
    margin-bottom: 50px;
}

.items__full {
    background-color: var(--main);
    border-radius: 20px;
    max-width: 980px;
    margin: 0 auto;
}

.items__full-wrapper {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.items__full-title {
    font-size: 34px;
    font-weight: 600;
    line-height: 40px;
    color: var(--white);
    text-align: center;
    margin-bottom: 20px;
}

/*.items__element:last-child {*/
/*    grid-column: span 2;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*}*/

.items__full-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--white);
    text-align: center;
    margin-bottom: 20px;
}

.items__full-link {
    display: flex;
    background-color: var(--white);
    box-shadow: 0 1px 15px rgba(0,0,0, 0.1);
    border-radius: 43px;
    max-width: fit-content;
    padding: 18px 46px;
    color: var(--grey);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    justify-content: center;
    margin: 0 auto;
}

.items__full-link img {
    max-width: 14px;
    object-fit: contain;
    margin-left: 14px;
}

.special__left {
    max-width: 600px;
    width: 100%;
    margin-right: 20px;
}

.special__title {
    font-size: 34px;
    font-weight: 600;
    line-height: 40px;
    color: var(--black);
    margin-bottom: 50px;
}

.special__left-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--grey);
    margin-bottom: 20px;
}

.accordion__item {
    margin-bottom: 20px;
}

.accordion__item:last-child {
    margin-bottom: 0px;
}

.accordion__item {
    box-shadow: 0 4px 15px rgba(0,0,0, 0.15);
    border-radius: 16px;
    transition: all .3s ease;
}

.accordion__item .accordion__title {
    position: relative;
    display: block;
    padding: 20px;;
    color: var(--grey);
    font-size: 16px;
    text-decoration: none;
    -webkit-transition: background-color 0.2s;
    transition: background-color 0.2s;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all .3s ease;
}
.accordion__item:hover {
    background-color: var(--main);
    transition: all 0.5s ease-out;
    color: var(--white);
}

.accordion__item:hover .accordion__title {
    color: var(--white);
}

.accordion__title.accordion-active {
    color: var(--white);
}

.accordion__item:hover .accordion__arrow {
    filter: brightness(0) invert(1);
    transition: all .3s ease;
}

.accordion__arrow {
    transition: all .3s ease;
}

.accordion__item.item-active {
    background-color: var(--main);
    transition: all .3s ease;
}
.accordion__item .accordion__rotate {
    transform: rotate(180deg);
    filter: brightness(0) invert(1);
    transition: all .3s ease;
}
.accordion__item .accordion__content {
    font-size: 16px;
    display: none;
    border-bottom-right-radius: 16px;
    border-bottom-left-radius: 16px;
    color: var(--white);
    padding: 0 20px 20px;
}

.special__wrapper {
    display: flex;
    justify-content: space-between;
}

.special__right {
    max-width: 600px;
    width: 100%;
}

.special__right img {
    object-fit: contain;
}

.special {
    margin-bottom: 100px;
}

.contact__title {
    font-size: 34px;
    font-weight: 600;
    line-height: 40px;
    color: var(--grey);
    text-align: center;
    margin-bottom: 50px;
}

.contact__left {
    max-width: 504px;
    width: 100%;
    margin-right: 20px;
}

.form__input {
    width: 100%;
    max-width: 100%;
    border: 1px solid var(--main);
    border-radius: 16px;
    outline: none;
    padding: 16px;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 15px rgba(0,0,0, 0.1);
}

.form__textarea {
    width: 100%;
    max-width: 100%;
    border: 1px solid var(--main);
    border-radius: 16px;
    outline: none;
    padding: 16px;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 15px rgba(0,0,0, 0.1);
    min-height: 200px;
    resize: none;
}

.form__input::placeholder,
.form__textarea::placeholder {
    color: var(--main);
}

.form__wrapper {
    margin-bottom: 20px;
}

.form-check {
    cursor: pointer;
}

.form-check input[type="checkbox"] {
    width: 100%;
    appearance: none;
    max-width: 18px;
    height: 18px;
    border: 1px solid var(--main);
    background-clip: content-box;
    padding: 1px;
    margin-right: 14px;
    position: relative;
    z-index: 900;
    cursor: pointer;
}

.form-check input[type="checkbox"]:checked {
    background-color: var(--main);
}

.check-label {
    font-size: 13px;
    line-height: 16px;
    display: flex;
}

.form-check {
    margin-bottom: 20px;
    cursor: pointer;
}

.form-check:last-child {
    margin-bottom: 16px;
}

.form-check__span {
    color: #000;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    cursor: pointer;
}

.form-check__span a {
    display: inline;
    text-decoration: none;
    color: #757cc5;
}

.form-check__span span {
    color: #d80e3d;
}

.comment-form-cookies-consent-label {
    display: flex;
}

.form-send {
    max-width: 100%;
    width: 100%;
    background-color: var(--main);
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0,0,0, 0.1);
    display: block;
    text-align: center;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid var(--main);
    cursor: pointer;
}

.contact__right {
    max-width: 490px;
    width: 100%;
}

.contact__right iframe {
    box-shadow: 0 4px 20px rgba(0,0,0, 0.15);
    border-radius: 16px;
}

.contact__wrapper {
    display: flex;
    justify-content: center;
}

.contact {
    margin-bottom: 100px;
}

.price__items {
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
}

.price__title {
    font-size: 28px;
    font-weight: 600;
    line-height: 40px;
    color: var(--black);
    margin-bottom: 50px;
}

.price__inner {
    max-width: 810px;
    width: 100%;
    margin: 0 auto;
}

.price__option {
    box-shadow: 0 4px 15px rgba(0,0,0, 0.1);
    display: flex;
    justify-content: space-between;
    background-color: var(--white);
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 20px;
}

.price__option:last-child {
    margin-bottom: 0;
}

.price__option-left {
    max-width: 700px;
    width: 100%;
    margin-right: 20px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--black);
}

.price__option-right {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--grey);
    max-width: 120px;
    width: 100%;
    text-align: right;
}

.price__item {
    margin-bottom: 50px;
}

.price__item:last-child {
    margin-bottom: 0;
}

.price {
    margin-bottom: 100px;
    margin-top: 100px;
}

.margintop {
    margin-top: 100px;
}

.margintop h3 {
    margin-bottom: 50px;
}

.margintop p {
    color: var(--grey);
}

.margintop .services__content {
    max-width: 810px;
    width: 100%;
}

.team__items {
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
}

.team__title {
    font-size: 28px;
    font-weight: 600;
    line-height: 40px;
    color: var(--black);
    margin-bottom: 50px;
}

.team__option {
    box-shadow: 0 4px 15px rgba(0,0,0, 0.1);
    background-color: var(--white);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.team__options-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    padding: 20px;
}

.team__options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
    max-width: 820px;
    width: 100%;
    margin: 0 auto;
}

.team__options-content img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin: 0 auto 20px;
}

.team__options-name {
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--main);
    margin-bottom: 8px;
}

.team__options-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 25px;
    color: var(--grey);
    text-align: center;
}

.team__item {
    margin-bottom: 50px;
}

.team__item:last-child {
    margin-bottom: 0;
}

.team {
    margin-bottom: 100px;
}

.citems__wrapper {
    max-width: 945px;
    width: 100%;
    margin: 0 auto;
}

.citems__items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 80px;
}

.citems__item-header {
    width: 100px;
    height: 100px;
    border: 3px solid var(--main);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 4px 200px rgba(0,0,0, 0.15);
    background-color: var(--white);
    margin-bottom: 16px;
}

.citems__item-header img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.citems__item {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.citems__item-content {
    text-align: center;
}

.citems__item-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--main);
    margin-bottom: 4px;
    text-align: center;
}

.citems__item-info,
.citems__item-info p,
.citems__item-info a {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
    color: var(--grey);
    text-decoration: none;
}

.citems__item-info a {
    transition: all .3s ease;
}

.citems__item-info a:hover {
    color: var(--main);
    transition: all .3s ease;
}

.citems {
    margin-bottom: 100px;
}

.introsmall__image {
    display: none;
}

.accordion__title-text {
    margin-right: 10px;
}

@media (max-width: 1500px) {
    .introsm {
        background-size: cover;
    }
}

@media (max-width: 1350px) {
    .footer__wrapper {
        justify-content: center;
    }
    .footer__padding {
        padding: 0 20px;
    }
    .footer__social {
        padding-left: 20px;
    }
}

@media (max-width: 1250px) {
    .ourslider__items .owl-prev {
        bottom: -35px;
        left: 0;
        top: unset
    }
    .ourslider__items .owl-next {
        bottom: -35px;
        right: 15px;
        top: unset;
    }
    .visit__wrapper {
        align-items: center;
    }
}

@media (max-width: 1050px) {
    .intro {
        background-size: cover;
    }
    .intro__content {
        max-width: 450px;
    }
}

@media (max-width: 992px) {
    .footer__wrapper {
        flex-wrap: wrap;
    }
    .footer__social {
        width: 100%;
        padding-left: 0;
    }
    .show__items .owl-prev {
        left: -30px;
    }
    .show__items .owl-next {
        right: 0px;
    }
    .items__inner {
        grid-gap: 20px;
    }
    .citems__items {
        grid-gap: 10px;
    }
}

@media (max-width: 850px) {
    .footer__wrapper {
        flex-direction: column;
    }
    .footer__padding {
        border-right: 0;
        margin-bottom: 20px;
        padding: 0;
    }
    .footer__left {
        margin-bottom: 20px;
    }
    .footer__center-left p {
        margin-bottom: 0;
    }
    .footer__center-right {
        margin-bottom: 10px;
    }
}

@media (max-width: 767px) {
    .ourslider__item {
        max-width: 360px;
    }
    .intro {
        background-image: none!important;
        height: 100%;
        max-height: unset;
        box-shadow: none;
        margin-bottom: 50px;
    }
    .introsmall__image {
        display: block;
        margin-bottom: 20px;
    }
    .intro__content {
        position: unset;
        transform: none;
    }
    .intro__wrapper:after {
        display: none;
    }
    .intro__wrapper {
        height: 100%;
        max-height: unset;
    }
    .intro__content {
        max-width: 100%;
    }
    .intro__text {
        max-width: 100%;
    }
    .intro__title {
        font-size: 35px;
        line-height: 40px;
    }
    .about__wrapper {
        flex-direction: column;
        border-radius: 20px;
    }
    .about__left {
        max-width: 100%;
    }
    .about__left img {
        width: 100%;
        border-top-right-radius: 20px;
        border-bottom-left-radius: 0px;
    }
    .about__right {
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
    }
    .about__right-content h2 {
        font-size: 25px;
        line-height: 35px;
    }
    .about {
        margin-bottom: 50px;
    }
    .offer__title {
        font-size: 25px;
        line-height: 40px;
        margin-bottom: 30px;
    }
    .offer__items {
        grid-template-columns: repeat(2, 1fr);
    }
    .offer__item-title {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .numbers__items {
        grid-gap: 20px;
    }
    .numbers__item-content {
        font-size: 22px;
        line-height: 30px;
    }
    .numbers__title {
        font-size: 25px;
        margin-bottom: 30px;
    }
    .count, .numbers__item-span {
        font-size: 35px;
        line-height: 40px;
    }
    .numbers__item-header {
        margin-bottom: 10px;
    }
    .numbers {
        margin-bottom: 50px;
    }
    .visit__wrapper {
        flex-direction: column;
        align-items: center;
    }
    .visit__left h2 {
        font-size: 25px;
        line-height: 35px;
        margin-bottom: 10px;
    }
    .visit__left {
        max-width: 100%;
        margin-right: 0;
    }
    .visit {
        margin-bottom: 50px;
    }
    .show__items .owl-prev,
    .show__items .owl-next {
        top: 40%;
        width: 40px;
        height: 40px;
    }
    .show__items .owl-prev i, .show__items .owl-next i {
        font-size: 18px;
    }
    .show {
        margin-bottom: 0px;
    }
    .offer {
        margin-bottom: 50px;
    }
    .ourslider__title {
        font-size: 25px;
        line-height: 35px;
        margin-bottom: 30px;
    }
    .ourslider .owl-nav {
        display: none;
    }
    .ourslider__item {
        max-width: 100%;
    }
    .ourslider .owl-stage {
        padding-left: 0!important;
    }
    .way__item-content h3 {
        font-size: 22px;
        line-height: 30px;
    }
    .items__inner {
        grid-template-columns: repeat(2, 1fr);
    }
    .items__full-title {
        font-size: 25px;
        margin-bottom: 15px;
    }
    .special__wrapper {
        flex-direction: column;
        align-items: center;
    }
    .special__left {
        max-width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }
    .special__title {
        font-size: 25px;
        margin-bottom: 30px;
    }
    .special {
        margin-bottom: 50px;
    }
    .contact__title {
        font-size: 25px;
        margin-bottom: 30px;
    }
    .contact__wrapper {
        flex-direction: column;
    }
    .contact__left {
        max-width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }
    .contact__right {
        max-width: 100%;
        height: 350px;
    }
    .contact {
        margin-bottom: 50px;
    }
    .price {
        margin-bottom: 50px;
        margin-top: 50px;
    }
    .margintop {
        margin-top: 50px;
    }
    .margintop h3 {
        margin-bottom: 30px;
    }
    .team__options {
        grid-template-columns: repeat(3, 1fr);
    }
    .team {
        margin-bottom: 50px;
    }
    .citems__items {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px;
    }
    .citems {
        margin-bottom: 50px;
    }
}

@media (max-width: 576px) {
    .footer__wrapper {
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 20px 0;
    }
    .footer__social {
        display: flex;
        justify-content: center;
    }
    .footer__social ul li:last-child {
        margin-right: 0;
    }
    .intro__title {
        font-size: 22px;
        font-weight: 700;
        line-height: 30px;
        margin-bottom: 8px;
    }
    .intro__text {
        font-size: 14px;
        line-height: 21px;
        margin-bottom: 8px;
    }
    .intro__link {
        width: 100%;
        padding: 10px;
        display: flex;
        justify-content: center;
    }
    .intro {
        margin-bottom: 20px;
    }
    .about__right {
        padding: 16px;
    }
    .about__right-content h2 {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 8px;
    }
    .about__right-content p {
        font-size: 14px;
        line-height: 21px;
    }
    .about__right-content {
        margin-bottom: 8px;
    }
    .about {
        margin-bottom: 20px;
    }
    .offer__title {
        font-size: 20px;
        line-height: 40px;
        margin-bottom: 20px;
    }
    .offer__items {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 20px;
    }
    .offer__item-text {
        font-size: 14px;
        line-height: 21px;
    }
    .numbers__items {
        grid-template-columns: repeat(1, 1fr);
    }
    .numbers__title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    .count, .numbers__item-span {
        font-size: 35px;
        line-height: 30px;
    }
    .numbers {
        margin-bottom: 20px;
    }
    .visit__left h2 {
        text-align: center;
        font-size: 20px;
    }
    .visit__left p,
    .visit__left li {
        font-size: 14px;
        line-height: 21px;
    }
    .visit__left li {
        padding-left: 20px;
        margin-bottom: 10px;
    }
    .visit__left li:before {
        width: 12px;
        height: 12px;
    }
    .visit {
        margin-bottom: 20px;
    }
    .show__items .owl-prev {
        left: -10px;
    }
    .show__items .owl-next {
        right: 30px;
    }
    .show {
        margin-bottom: 20px;
    }
    .offer {
        margin-bottom: 20px;
    }
    .way__item-content p {
        font-size: 14px;
        line-height: 21px;
    }
    .ourslider {
        margin-bottom: 20px;
    }
    .ourslider__title {
        text-align: center;
        font-size: 20px;
        line-height: 25px;
        margin-bottom: 20px;
    }
    .way__item-content h3 {
        font-size: 18px;
        line-height: 28px;
    }
    .introsm {
        max-height: 70px;
    }
    .introsm__wrapper,
    .introsm__wrapper:after {
        max-height: 70px;
    }
    .introsm__title {
        font-size: 20px;
        line-height: 30px;
    }
    .introsm {
        margin-bottom: 20px;
    }
    .services__content h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .services__content p {
        font-size: 14px;
        line-height: 20px;
    }
    .services {
        margin-bottom: 20px;
    }
    .items__wrapper {
        padding: 8px 24px;
    }
    .cat label span, .sf-field-post_type li {
        font-size: 14px;
    }
    .items__inner {
        grid-template-columns: repeat(1, 1fr);
    }
    .items__element:last-child {
        grid-column: unset;
    }
    .items__wrapper {
        margin-bottom: 20px;
    }
    .items__item-content {
        padding: 20px 20px 30px;
    }
    .items__item-content p {
        font-size: 14px;
        line-height: 21px;
    }
    .items__item-content h4 {
        margin-bottom: 8px;
    }
    .items__full-wrapper {
        padding: 43px 20px;
    }
    .items__full-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    .items__full-text {
        font-size: 14px;
        line-height: 21px;
    }
    .items__full-link {
        max-width: 100%;
        width: 100%;
        padding: 10px 20px;
    }
    .items {
        margin-bottom: 20px;
    }
    .special__title {
        font-size: 20px;
        margin-bottom: 20px;
        text-align: center;
    }
    .special__left-text {
        font-size: 14px;
        line-height: 21px;
    }
    .accordion__item .accordion__title {
        font-size: 14px;
    }
    .accordion__item .accordion__content {
        font-size: 14px;
        line-height: 21px;
    }
    .special {
        margin-bottom: 20px;
    }
    .contact {
        margin-bottom: 20px;
    }
    .contact__title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    .price {
        margin-bottom: 20px;
        margin-top: 20px;
    }
    .price__title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    .price__option {
        padding: 16px;
    }
    .price__option-left {
        font-size: 14px;
    }
    .price__option-right {
        font-size: 14px;
    }
    .price__item {
        margin-bottom: 20px;
    }
    .margintop {
        margin-top: 20px;
    }
    .team__options {
        grid-template-columns: repeat(2, 1fr);
    }
    .team__options-content {
        padding: 16px;
    }
    .team__options-content img {
        width: 120px;
        height: 120px;
        margin: 0 auto 8px;
    }
    .team__options-name {
        font-size: 14px;
        line-height: 21px;
    }
    .team__options-text {
        font-size: 13px;
        line-height: 20px;
    }
    .team__title {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 20px;
        text-align: center;
    }
    .team__item {
        margin-bottom: 20px;
    }
    .team {
        margin-bottom: 20px;
    }
    .citems__items {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 20px;
    }
    .citems {
        margin-bottom: 20px;
    }
}

@media (max-width: 375px) {
    .cat:first-child {
        padding-right: 10px;
    }
    .cat:nth-child(2) {
        padding: 0 10px;
    }
    .cat:last-child {
        padding-left: 10px;
    }
}

.wpcf7-list-item {
    margin: 0;
    margin-right: 10px;
}

/* Style the tab */
.tab {
    overflow: hidden;
}

/* Style the buttons inside the tab */
.tab button {
    float: left;
    border: none;
    border-right: 1px solid var(--white);
    outline: none;
    cursor: pointer;
    transition: 0.3s;
}

.tablinks {
    padding-right: 20px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--white);
}

.tab button:last-child {
    border-right: none;
}

.tablinks:nth-child(2),
.tablinks:nth-child(3),
.tablinks:nth-child(4) {
    padding-left: 20px;
}

.tablinks:last-child {
    padding-left: 20px;
    padding-right: 0;
}

/* Change background color of buttons on hover */
.tab button:hover {
    /*background-color: #ddd;*/
}

/* Create an active/current tablink class */
.tab button.active {
    font-weight: 700;
}

/* Style the tab content */
/*.tabcontent {*/
/*    display: none;*/
/*    -webkit-animation: fadeEffect 1s;*/
/*    animation: fadeEffect 1s;*/
/*}*/

/* Fade in tabs */
@-webkit-keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
}

@keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
}

@media (max-width: 450px) {
    .tablinks {
        padding-right: 10px;
        font-size: 14px;
    }
    .tablinks:nth-child(2),
    .tablinks:nth-child(3),
    .tablinks:nth-child(4) {
        padding-left: 10px;
    }

    .tablinks:last-child {
        padding-left: 10px;
        padding-right: 0;
    }
}

@media (max-width: 360px) {
    .tablinks {
        padding-right: 7px;
        font-size: 12px;
    }
}

.nav-down {
    transition: all .3s ease;
}

.nav-up {
    top: -85px;
    transition: all .3s ease;
}

.post-navigation {
    display: none;
}

.footer {
    margin-top:auto;

}

.main {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

article.uslugi {
    padding: 100px 0;
}

.itemlr-left h2 {
    font-size: 34px;
    font-weight: 600;
    line-height: 40px;
    color: var(--black);
    margin-bottom: 20px;
}

.itemlr-left p,
.itemlr-left li {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--grey);
}

.itemlr-left {
    max-width: 583px;
    width: 100%;
    margin-right: 32px;
}

.itemlr-right {
    max-width: 602px;
    width: 100%;
}

.itemlr-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.itemlr-item {
    margin-bottom: 100px;
}

.itemlr-item:nth-child(even) .itemlr-left {
    order: 1;
    margin-right: 0;
    margin-left: 32px;
}

.itemlr-left li {
    position: relative;
    padding-left: 15px;
}

.itemlr-left li:before {
    content: '';
    position: absolute;
    top: 9px;
    left: 0;
    background: var(--grey);
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.simpletext li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 50px;
}

.simpletext li:before {
    content: '';
    position: absolute;
    top: 4px;
    left: 0;
    background: var(--main);
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

.defaultpage {
    padding: 100px 0;
}

.defaultpage h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 45px;
    color: var(--black);
    margin-bottom: 20px;
}

.defaultpage h2 {
    font-size: 34px;
    font-weight: 700;
    line-height: 40px;
    color: var(--black);
    margin-bottom: 20px;
}

.defaultpage h3 {
    font-size: 30px;
    font-weight: 700;
    line-height: 36px;
    color: var(--black);
    margin-bottom: 18px;
}

.defaultpage h4 {
    font-size: 26px;
    font-weight: 700;
    line-height: 32px;
    color: var(--black);
    margin-bottom: 15px;
}

.defaultpage h5 {
    font-size: 22px;
    font-weight: 700;
    line-height: 28px;
    color: var(--black);
    margin-bottom: 14px;
}

.defaultpage h6 {
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    color: var(--black);
    margin-bottom: 12px;
}

.defaultpage p {
    font-size: 16px;
    color: var(--grey);
}

.defaultpage li {
    position: relative;
    padding-left: 15px;
}

.defaultpage li:before {
    content: '';
    position: absolute;
    top: 9px;
    left: 0;
    background: var(--grey);
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

@media (max-width: 767px) {
    .defaultpage {
        padding: 50px 0;
    }
    .defaultpage h1 {
        font-size: 24px;
        line-height: 32px;
    }

    .defaultpage h2,
    .defaultpage h3,
    .defaultpage h4,
    .defaultpage h5,
    .defaultpage h6 {
        font-size: 20px;
        line-height: 28px;
    }
    .defaultpage p,
    .defaultpage li {
        font-size: 14px;
        line-height: 21px;
    }
    .defaultpage li {
        padding-left: 20px;
        margin-bottom: 10px;
    }
    .itemlr-wrapper {
        flex-direction: column;
    }
    .itemlr-left {
        max-width: 100%;
        margin-right: 0;
        margin-bottom: 16px;
    }
    .itemlr-left h2 {
        font-size: 20px;
        line-height: 28px;
    }
    .itemlr-left p,
    .itemlr-left li {
        font-size: 14px;
        line-height: 21px;
    }
    .itemlr-item:nth-child(even) .itemlr-left {
        margin-left: 0;
        order: 0;
    }
    .itemlr-item {
        margin-bottom: 16px;
    }
    .simpletext p,
    .simpletext li {
        font-size: 14px;
        line-height: 21px;
        margin-bottom: 16px;
    }
}

.show .owl-theme .owl-nav {
    margin-top: 0;
}

.items__item a {
	cursor: unset;
}

.parking-title {
	font-size: 34px;
	font-weight: 600;
	line-height: 40px;
	color: var(--grey);
	text-align: center;
	margin-bottom: 100px;
}

.parking-items {
	display: flex;
	justify-content: center;
	margin-bottom: 100px;
}

.parking-item {
	max-width: 490px;
	width: 100%;
	margin-right: 100px;
	border-radius: 20px;
}

.parking-item:last-child {
	margin-right: 0;
}

.parking-item iframe {
	border-radius: 20px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 992px) {
	.parking-item {
		margin-right: 30px;
	}
}

@media (max-width: 767px) {
	    .parking-title {
        	font-size: 25px;
        	margin-bottom: 30px;
    	}
	    .parking-items {
		flex-direction: column;	
		margin-bottom: 50px;
	}
	    .parking-item {
		margin-right: 0px;
		margin-bottom: 30px;
		max-width: 100%;
	}
  	    .parking-item:last-child {	
		margin-bottom: 0;
	}
}

@media (max-width: 600px) {
	    .show__items .owl-next {
        	right: 10px;
    }
}

@media (max-width: 600px) {
	    .show__items .owl-prev {
        	left: -30px;
    }
}