@charset "UTF-8";


* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
}

body,
html {
    background: white;
    color: #333;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 16px;
    min-width: 320px;
    max-width: 100%;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.page-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    min-height: 100vh;
    max-width: 1920px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}

.container {
    max-width: 1140px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

a.header__logo img {
    width: 200px;
}

.tab-menu ul {
    display: flex;
}

.tab-menu {
    margin-bottom: 30px;
}

.tab-menu ul li a {
    color:#3fa159;
    margin-right:15px;
     border: 1px solid #3fa159;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    text-transform: uppercase;
    line-height: 0;
    width: 173px;
    height: 50px;
   
    -webkit-transition: color .2s linear, border .2s linear, background-color .2s linear;
    -o-transition: color .2s linear, border .2s linear, background-color .2s linear;
    transition: color .2s linear, border .2s linear, background-color .2s linear;
}

.tab-menu ul li.active a {
        background-color: #3fa159;
    color:white;
     border: 1px solid transparent;
}

@media only screen and (max-width: 1200px) {
    .container {
        max-width: 960px;
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media only screen and (max-width: 992px) {
    .container {
        max-width: 720px;
    }
}

@media only screen and (max-width: 768px) {
    .container {
        max-width: 540px;
    }
}

@media only screen and (max-width: 568px) {
    .container {
        max-width: 100%;
    }
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
ul,
ol,
li {
    padding: 0;
    margin: 0;
    font-family: 'IBM Plex Sans', sans-serif;
}

a {
    color: #333;
    text-decoration: none;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 400;
}

a:hover,
a:focus {
    text-decoration: none;
}

button {
    padding: 0;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: none;
    cursor: pointer;
}

button:focus {
    outline: none;
}

ul {
    list-style: none;
}

ol {
    list-style: decimal;
}

img.svg {
    display: none;
}


.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
    width: 100%;
    padding-right: var(--bs-gutter-x, 0.75rem);
    padding-left: var(--bs-gutter-x, 0.75rem);
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {

    .container-sm,
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {

    .container-md,
    .container-sm,
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {

    .container-lg,
    .container-md,
    .container-sm,
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {

    .container-xl,
    .container-lg,
    .container-md,
    .container-sm,
    .container {
        max-width: 1170px;
    }
}

@media (min-width: 1400px) {

    .container-xxl,
    .container-xl,
    .container-lg,
    .container-md,
    .container-sm,
    .container {
        max-width: 1320px;
    }
}

.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x) / -2);
    margin-left: calc(var(--bs-gutter-x) / -2);
}

.row > * {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) / 2);
    padding-left: calc(var(--bs-gutter-x) / 2);
    margin-top: var(--bs-gutter-y);
}

.col {
    flex: 1 0 0%;
}

.row-cols-auto > * {
    flex: 0 0 auto;
    width: auto;
}

.row-cols-1 > * {
    flex: 0 0 auto;
    width: 100%;
}

.row-cols-2 > * {
    flex: 0 0 auto;
    width: 50%;
}

.row-cols-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
}

.row-cols-4 > * {
    flex: 0 0 auto;
    width: 25%;
}

.row-cols-5 > * {
    flex: 0 0 auto;
    width: 20%;
}

.row-cols-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
}

.col-auto {
    flex: 0 0 auto;
    width: auto;
}

.col-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
}

.col-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
}

.col-3 {
    flex: 0 0 auto;
    width: 25%;
}

.col-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
}

.col-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
}

.col-6 {
    flex: 0 0 auto;
    width: 50%;
}

.col-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
}

.col-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
}

.col-9 {
    flex: 0 0 auto;
    width: 75%;
}

.col-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
}

.col-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
}

.col-12 {
    flex: 0 0 auto;
    width: 100%;
}

.offset-1 {
    margin-left: 8.3333333333%;
}

.offset-2 {
    margin-left: 16.6666666667%;
}

.offset-3 {
    margin-left: 25%;
}

.offset-4 {
    margin-left: 33.3333333333%;
}

.offset-5 {
    margin-left: 41.6666666667%;
}

.offset-6 {
    margin-left: 50%;
}

.offset-7 {
    margin-left: 58.3333333333%;
}

.offset-8 {
    margin-left: 66.6666666667%;
}

.offset-9 {
    margin-left: 75%;
}

.offset-10 {
    margin-left: 83.3333333333%;
}

.offset-11 {
    margin-left: 91.6666666667%;
}

.g-0,
.gx-0 {
    --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
    --bs-gutter-y: 0;
}

.g-1,
.gx-1 {
    --bs-gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
    --bs-gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
    --bs-gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
    --bs-gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
    --bs-gutter-x: 1rem;
}

.g-3,
.gy-3 {
    --bs-gutter-y: 1rem;
}

.g-4,
.gx-4 {
    --bs-gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
    --bs-gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
    --bs-gutter-x: 3rem;
}

.g-5,
.gy-5 {
    --bs-gutter-y: 3rem;
}

@media (min-width: 576px) {
    .col-sm {
        flex: 1 0 0%;
    }

    .row-cols-sm-auto > * {
        flex: 0 0 auto;
        width: auto;
    }

    .row-cols-sm-1 > * {
        flex: 0 0 auto;
        width: 100%;
    }

    .row-cols-sm-2 > * {
        flex: 0 0 auto;
        width: 50%;
    }

    .row-cols-sm-3 > * {
        flex: 0 0 auto;
        width: 33.3333333333%;
    }

    .row-cols-sm-4 > * {
        flex: 0 0 auto;
        width: 25%;
    }

    .row-cols-sm-5 > * {
        flex: 0 0 auto;
        width: 20%;
    }

    .row-cols-sm-6 > * {
        flex: 0 0 auto;
        width: 16.6666666667%;
    }

    .col-sm-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-sm-1 {
        flex: 0 0 auto;
        width: 8.3333333333%;
    }

    .col-sm-2 {
        flex: 0 0 auto;
        width: 16.6666666667%;
    }

    .col-sm-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-sm-4 {
        flex: 0 0 auto;
        width: 33.3333333333%;
    }

    .col-sm-5 {
        flex: 0 0 auto;
        width: 41.6666666667%;
    }

    .col-sm-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-sm-7 {
        flex: 0 0 auto;
        width: 58.3333333333%;
    }

    .col-sm-8 {
        flex: 0 0 auto;
        width: 66.6666666667%;
    }

    .col-sm-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-sm-10 {
        flex: 0 0 auto;
        width: 83.3333333333%;
    }

    .col-sm-11 {
        flex: 0 0 auto;
        width: 91.6666666667%;
    }

    .col-sm-12 {
        flex: 0 0 auto;
        width: 100%;
    }

    .offset-sm-0 {
        margin-left: 0;
    }

    .offset-sm-1 {
        margin-left: 8.3333333333%;
    }

    .offset-sm-2 {
        margin-left: 16.6666666667%;
    }

    .offset-sm-3 {
        margin-left: 25%;
    }

    .offset-sm-4 {
        margin-left: 33.3333333333%;
    }

    .offset-sm-5 {
        margin-left: 41.6666666667%;
    }

    .offset-sm-6 {
        margin-left: 50%;
    }

    .offset-sm-7 {
        margin-left: 58.3333333333%;
    }

    .offset-sm-8 {
        margin-left: 66.6666666667%;
    }

    .offset-sm-9 {
        margin-left: 75%;
    }

    .offset-sm-10 {
        margin-left: 83.3333333333%;
    }

    .offset-sm-11 {
        margin-left: 91.6666666667%;
    }

    .g-sm-0,
    .gx-sm-0 {
        --bs-gutter-x: 0;
    }

    .g-sm-0,
    .gy-sm-0 {
        --bs-gutter-y: 0;
    }

    .g-sm-1,
    .gx-sm-1 {
        --bs-gutter-x: 0.25rem;
    }

    .g-sm-1,
    .gy-sm-1 {
        --bs-gutter-y: 0.25rem;
    }

    .g-sm-2,
    .gx-sm-2 {
        --bs-gutter-x: 0.5rem;
    }

    .g-sm-2,
    .gy-sm-2 {
        --bs-gutter-y: 0.5rem;
    }

    .g-sm-3,
    .gx-sm-3 {
        --bs-gutter-x: 1rem;
    }

    .g-sm-3,
    .gy-sm-3 {
        --bs-gutter-y: 1rem;
    }

    .g-sm-4,
    .gx-sm-4 {
        --bs-gutter-x: 1.5rem;
    }

    .g-sm-4,
    .gy-sm-4 {
        --bs-gutter-y: 1.5rem;
    }

    .g-sm-5,
    .gx-sm-5 {
        --bs-gutter-x: 3rem;
    }

    .g-sm-5,
    .gy-sm-5 {
        --bs-gutter-y: 3rem;
    }
}

@media (min-width: 768px) {
    .col-md {
        flex: 1 0 0%;
    }

    .row-cols-md-auto > * {
        flex: 0 0 auto;
        width: auto;
    }

    .row-cols-md-1 > * {
        flex: 0 0 auto;
        width: 100%;
    }

    .row-cols-md-2 > * {
        flex: 0 0 auto;
        width: 50%;
    }

    .row-cols-md-3 > * {
        flex: 0 0 auto;
        width: 33.3333333333%;
    }

    .row-cols-md-4 > * {
        flex: 0 0 auto;
        width: 25%;
    }

    .row-cols-md-5 > * {
        flex: 0 0 auto;
        width: 20%;
    }

    .row-cols-md-6 > * {
        flex: 0 0 auto;
        width: 16.6666666667%;
    }

    .col-md-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-md-1 {
        flex: 0 0 auto;
        width: 8.3333333333%;
    }

    .col-md-2 {
        flex: 0 0 auto;
        width: 16.6666666667%;
    }

    .col-md-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-md-4 {
        flex: 0 0 auto;
        width: 33.3333333333%;
    }

    .col-md-5 {
        flex: 0 0 auto;
        width: 41.6666666667%;
    }

    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-md-7 {
        flex: 0 0 auto;
        width: 58.3333333333%;
    }

    .col-md-8 {
        flex: 0 0 auto;
        width: 66.6666666667%;
    }

    .col-md-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-md-10 {
        flex: 0 0 auto;
        width: 83.3333333333%;
    }

    .col-md-11 {
        flex: 0 0 auto;
        width: 91.6666666667%;
    }

    .col-md-12 {
        flex: 0 0 auto;
        width: 100%;
    }

    .offset-md-0 {
        margin-left: 0;
    }

    .offset-md-1 {
        margin-left: 8.3333333333%;
    }

    .offset-md-2 {
        margin-left: 16.6666666667%;
    }

    .offset-md-3 {
        margin-left: 25%;
    }

    .offset-md-4 {
        margin-left: 33.3333333333%;
    }

    .offset-md-5 {
        margin-left: 41.6666666667%;
    }

    .offset-md-6 {
        margin-left: 50%;
    }

    .offset-md-7 {
        margin-left: 58.3333333333%;
    }

    .offset-md-8 {
        margin-left: 66.6666666667%;
    }

    .offset-md-9 {
        margin-left: 75%;
    }

    .offset-md-10 {
        margin-left: 83.3333333333%;
    }

    .offset-md-11 {
        margin-left: 91.6666666667%;
    }

    .g-md-0,
    .gx-md-0 {
        --bs-gutter-x: 0;
    }

    .g-md-0,
    .gy-md-0 {
        --bs-gutter-y: 0;
    }

    .g-md-1,
    .gx-md-1 {
        --bs-gutter-x: 0.25rem;
    }

    .g-md-1,
    .gy-md-1 {
        --bs-gutter-y: 0.25rem;
    }

    .g-md-2,
    .gx-md-2 {
        --bs-gutter-x: 0.5rem;
    }

    .g-md-2,
    .gy-md-2 {
        --bs-gutter-y: 0.5rem;
    }

    .g-md-3,
    .gx-md-3 {
        --bs-gutter-x: 1rem;
    }

    .g-md-3,
    .gy-md-3 {
        --bs-gutter-y: 1rem;
    }

    .g-md-4,
    .gx-md-4 {
        --bs-gutter-x: 1.5rem;
    }

    .g-md-4,
    .gy-md-4 {
        --bs-gutter-y: 1.5rem;
    }

    .g-md-5,
    .gx-md-5 {
        --bs-gutter-x: 3rem;
    }

    .g-md-5,
    .gy-md-5 {
        --bs-gutter-y: 3rem;
    }
}

@media (min-width: 992px) {
    .col-lg {
        flex: 1 0 0%;
    }

    .row-cols-lg-auto > * {
        flex: 0 0 auto;
        width: auto;
    }

    .row-cols-lg-1 > * {
        flex: 0 0 auto;
        width: 100%;
    }

    .row-cols-lg-2 > * {
        flex: 0 0 auto;
        width: 50%;
    }

    .row-cols-lg-3 > * {
        flex: 0 0 auto;
        width: 33.3333333333%;
    }

    .row-cols-lg-4 > * {
        flex: 0 0 auto;
        width: 25%;
    }

    .row-cols-lg-5 > * {
        flex: 0 0 auto;
        width: 20%;
    }

    .row-cols-lg-6 > * {
        flex: 0 0 auto;
        width: 16.6666666667%;
    }

    .col-lg-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-lg-1 {
        flex: 0 0 auto;
        width: 8.3333333333%;
    }

    .col-lg-2 {
        flex: 0 0 auto;
        width: 16.6666666667%;
    }

    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.3333333333%;
    }

    .col-lg-5 {
        flex: 0 0 auto;
        width: 41.6666666667%;
    }

    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-lg-7 {
        flex: 0 0 auto;
        width: 58.3333333333%;
    }

    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.6666666667%;
    }

    .col-lg-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-lg-10 {
        flex: 0 0 auto;
        width: 83.3333333333%;
    }

    .col-lg-11 {
        flex: 0 0 auto;
        width: 91.6666666667%;
    }

    .col-lg-12 {
        flex: 0 0 auto;
        width: 100%;
    }

    .offset-lg-0 {
        margin-left: 0;
    }

    .offset-lg-1 {
        margin-left: 8.3333333333%;
    }

    .offset-lg-2 {
        margin-left: 16.6666666667%;
    }

    .offset-lg-3 {
        margin-left: 25%;
    }

    .offset-lg-4 {
        margin-left: 33.3333333333%;
    }

    .offset-lg-5 {
        margin-left: 41.6666666667%;
    }

    .offset-lg-6 {
        margin-left: 50%;
    }

    .offset-lg-7 {
        margin-left: 58.3333333333%;
    }

    .offset-lg-8 {
        margin-left: 66.6666666667%;
    }

    .offset-lg-9 {
        margin-left: 75%;
    }

    .offset-lg-10 {
        margin-left: 83.3333333333%;
    }

    .offset-lg-11 {
        margin-left: 91.6666666667%;
    }

    .g-lg-0,
    .gx-lg-0 {
        --bs-gutter-x: 0;
    }

    .g-lg-0,
    .gy-lg-0 {
        --bs-gutter-y: 0;
    }

    .g-lg-1,
    .gx-lg-1 {
        --bs-gutter-x: 0.25rem;
    }

    .g-lg-1,
    .gy-lg-1 {
        --bs-gutter-y: 0.25rem;
    }

    .g-lg-2,
    .gx-lg-2 {
        --bs-gutter-x: 0.5rem;
    }

    .g-lg-2,
    .gy-lg-2 {
        --bs-gutter-y: 0.5rem;
    }

    .g-lg-3,
    .gx-lg-3 {
        --bs-gutter-x: 1rem;
    }

    .g-lg-3,
    .gy-lg-3 {
        --bs-gutter-y: 1rem;
    }

    .g-lg-4,
    .gx-lg-4 {
        --bs-gutter-x: 1.5rem;
    }

    .g-lg-4,
    .gy-lg-4 {
        --bs-gutter-y: 1.5rem;
    }

    .g-lg-5,
    .gx-lg-5 {
        --bs-gutter-x: 3rem;
    }

    .g-lg-5,
    .gy-lg-5 {
        --bs-gutter-y: 3rem;
    }
}

@media (min-width: 1200px) {
    .col-xl {
        flex: 1 0 0%;
    }

    .row-cols-xl-auto > * {
        flex: 0 0 auto;
        width: auto;
    }

    .row-cols-xl-1 > * {
        flex: 0 0 auto;
        width: 100%;
    }

    .row-cols-xl-2 > * {
        flex: 0 0 auto;
        width: 50%;
    }

    .row-cols-xl-3 > * {
        flex: 0 0 auto;
        width: 33.3333333333%;
    }

    .row-cols-xl-4 > * {
        flex: 0 0 auto;
        width: 25%;
    }

    .row-cols-xl-5 > * {
        flex: 0 0 auto;
        width: 20%;
    }

    .row-cols-xl-6 > * {
        flex: 0 0 auto;
        width: 16.6666666667%;
    }

    .col-xl-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-xl-1 {
        flex: 0 0 auto;
        width: 8.3333333333%;
    }

    .col-xl-2 {
        flex: 0 0 auto;
        width: 16.6666666667%;
    }

    .col-xl-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-xl-4 {
        flex: 0 0 auto;
        width: 33.3333333333%;
    }

    .col-xl-5 {
        flex: 0 0 auto;
        width: 41.6666666667%;
    }

    .col-xl-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-xl-7 {
        flex: 0 0 auto;
        width: 58.3333333333%;
    }

    .col-xl-8 {
        flex: 0 0 auto;
        width: 66.6666666667%;
    }

    .col-xl-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-xl-10 {
        flex: 0 0 auto;
        width: 83.3333333333%;
    }

    .col-xl-11 {
        flex: 0 0 auto;
        width: 91.6666666667%;
    }

    .col-xl-12 {
        flex: 0 0 auto;
        width: 100%;
    }

    .offset-xl-0 {
        margin-left: 0;
    }

    .offset-xl-1 {
        margin-left: 8.3333333333%;
    }

    .offset-xl-2 {
        margin-left: 16.6666666667%;
    }

    .offset-xl-3 {
        margin-left: 25%;
    }

    .offset-xl-4 {
        margin-left: 33.3333333333%;
    }

    .offset-xl-5 {
        margin-left: 41.6666666667%;
    }

    .offset-xl-6 {
        margin-left: 50%;
    }

    .offset-xl-7 {
        margin-left: 58.3333333333%;
    }

    .offset-xl-8 {
        margin-left: 66.6666666667%;
    }

    .offset-xl-9 {
        margin-left: 75%;
    }

    .offset-xl-10 {
        margin-left: 83.3333333333%;
    }

    .offset-xl-11 {
        margin-left: 91.6666666667%;
    }

    .g-xl-0,
    .gx-xl-0 {
        --bs-gutter-x: 0;
    }

    .g-xl-0,
    .gy-xl-0 {
        --bs-gutter-y: 0;
    }

    .g-xl-1,
    .gx-xl-1 {
        --bs-gutter-x: 0.25rem;
    }

    .g-xl-1,
    .gy-xl-1 {
        --bs-gutter-y: 0.25rem;
    }

    .g-xl-2,
    .gx-xl-2 {
        --bs-gutter-x: 0.5rem;
    }

    .g-xl-2,
    .gy-xl-2 {
        --bs-gutter-y: 0.5rem;
    }

    .g-xl-3,
    .gx-xl-3 {
        --bs-gutter-x: 1rem;
    }

    .g-xl-3,
    .gy-xl-3 {
        --bs-gutter-y: 1rem;
    }

    .g-xl-4,
    .gx-xl-4 {
        --bs-gutter-x: 1.5rem;
    }

    .g-xl-4,
    .gy-xl-4 {
        --bs-gutter-y: 1.5rem;
    }

    .g-xl-5,
    .gx-xl-5 {
        --bs-gutter-x: 3rem;
    }

    .g-xl-5,
    .gy-xl-5 {
        --bs-gutter-y: 3rem;
    }
}

@media (min-width: 1400px) {
    .col-xxl {
        flex: 1 0 0%;
    }

    .row-cols-xxl-auto > * {
        flex: 0 0 auto;
        width: auto;
    }

    .row-cols-xxl-1 > * {
        flex: 0 0 auto;
        width: 100%;
    }

    .row-cols-xxl-2 > * {
        flex: 0 0 auto;
        width: 50%;
    }

    .row-cols-xxl-3 > * {
        flex: 0 0 auto;
        width: 33.3333333333%;
    }

    .row-cols-xxl-4 > * {
        flex: 0 0 auto;
        width: 25%;
    }

    .row-cols-xxl-5 > * {
        flex: 0 0 auto;
        width: 20%;
    }

    .row-cols-xxl-6 > * {
        flex: 0 0 auto;
        width: 16.6666666667%;
    }

    .col-xxl-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-xxl-1 {
        flex: 0 0 auto;
        width: 8.3333333333%;
    }

    .col-xxl-2 {
        flex: 0 0 auto;
        width: 16.6666666667%;
    }

    .col-xxl-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-xxl-4 {
        flex: 0 0 auto;
        width: 33.3333333333%;
    }

    .col-xxl-5 {
        flex: 0 0 auto;
        width: 41.6666666667%;
    }

    .col-xxl-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-xxl-7 {
        flex: 0 0 auto;
        width: 58.3333333333%;
    }

    .col-xxl-8 {
        flex: 0 0 auto;
        width: 66.6666666667%;
    }

    .col-xxl-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-xxl-10 {
        flex: 0 0 auto;
        width: 83.3333333333%;
    }

    .col-xxl-11 {
        flex: 0 0 auto;
        width: 91.6666666667%;
    }

    .col-xxl-12 {
        flex: 0 0 auto;
        width: 100%;
    }

    .offset-xxl-0 {
        margin-left: 0;
    }

    .offset-xxl-1 {
        margin-left: 8.3333333333%;
    }

    .offset-xxl-2 {
        margin-left: 16.6666666667%;
    }

    .offset-xxl-3 {
        margin-left: 25%;
    }

    .offset-xxl-4 {
        margin-left: 33.3333333333%;
    }

    .offset-xxl-5 {
        margin-left: 41.6666666667%;
    }

    .offset-xxl-6 {
        margin-left: 50%;
    }

    .offset-xxl-7 {
        margin-left: 58.3333333333%;
    }

    .offset-xxl-8 {
        margin-left: 66.6666666667%;
    }

    .offset-xxl-9 {
        margin-left: 75%;
    }

    .offset-xxl-10 {
        margin-left: 83.3333333333%;
    }

    .offset-xxl-11 {
        margin-left: 91.6666666667%;
    }

    .g-xxl-0,
    .gx-xxl-0 {
        --bs-gutter-x: 0;
    }

    .g-xxl-0,
    .gy-xxl-0 {
        --bs-gutter-y: 0;
    }

    .g-xxl-1,
    .gx-xxl-1 {
        --bs-gutter-x: 0.25rem;
    }

    .g-xxl-1,
    .gy-xxl-1 {
        --bs-gutter-y: 0.25rem;
    }

    .g-xxl-2,
    .gx-xxl-2 {
        --bs-gutter-x: 0.5rem;
    }

    .g-xxl-2,
    .gy-xxl-2 {
        --bs-gutter-y: 0.5rem;
    }

    .g-xxl-3,
    .gx-xxl-3 {
        --bs-gutter-x: 1rem;
    }

    .g-xxl-3,
    .gy-xxl-3 {
        --bs-gutter-y: 1rem;
    }

    .g-xxl-4,
    .gx-xxl-4 {
        --bs-gutter-x: 1.5rem;
    }

    .g-xxl-4,
    .gy-xxl-4 {
        --bs-gutter-y: 1.5rem;
    }

    .g-xxl-5,
    .gx-xxl-5 {
        --bs-gutter-x: 3rem;
    }

    .g-xxl-5,
    .gy-xxl-5 {
        --bs-gutter-y: 3rem;
    }
}

.swiper-button-next,
.swiper-button-prev {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    margin: 0;
    padding: 0;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    background: none;
    color: transparent;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    display: none;
}

.welcome__title {
    сщдщкЖидфсвлж text-transform: uppercase;
    font-weight: 500;
    font-size: 30px;
    text-transform: uppercase;
    margin-bottom: 30px;
    padding-bottom: 0;
    position: relative;
    margin-bottom: 40px;
    display: flex;
    width: auto;
    white-space: nowrap;
    width: auto;
    flex-basis: 70%;
    color: #361f1a;
}

.welcome__title span {
    color: #61c57c;
}

.welcome__title:after {
    content: "";
    left: 0;
    bottom: 0;
    height: 33px;
    background: url(../img/oleni.svg) no-repeat 0 0/100%;
    max-width: 500px;
    position: relative;
    width: 100%;
    display: inline-block;
    margin-left: 40px;
}

.welcome__text {
    max-width: 945px;
    width: 100%;
    color: #323232;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    line-height: 1.4;
    text-align: left;
    letter-spacing: 0;
    margin: 0 0 30px;
}

.pushy-submenu > a:after,
.pushy-submenu > button:after {
    background: url("../img/other/mobileClose.svg") no-repeat;
}

.pushy-submenu button {
    color: #fff;
}

label.error {
    display: none !important;
}

.error {
    border: 1px solid red !important;
}

.white-popup {
    position: relative;
    background: #FFF;
    padding: 50px 40px;
    width: auto;
    max-width: 560px;
    margin: 20px auto;
}

@media only screen and (max-width: 768px) {
    .white-popup {
        max-width: 430px;
    }
}

.white-popup__title {
    color: #1e1f1f;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3.6px;
    margin-bottom: 1.5em;
}

.white-popup__text {
    color: #1e1f1f;
    font-size: 13px;
    font-weight: 400;
    line-height: 21px;
    text-align: center;
    letter-spacing: 0.39px;
    margin: 0 auto 1.3em;
}

@media only screen and (max-width: 568px) {
    .white-popup__text {
        font-size: 12px;
    }
}

#callback {
    position: relative;
}

#callback .mfp-close {
    display: none;
}

#popup-form {
    max-width: 365px;
    width: 100%;
    margin: 0 auto;
}

#popup-form button {
    margin: 0 auto;
}

.close-btn {
    position: absolute;
    width: 19px;
    right: -30px;
    z-index: 100;
    top: 0;
    cursor: pointer;
    height: 19px;
}

.close-btn span {
    width: 100%;
    height: 1px;
    position: absolute;
    background-color: #fff;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(45deg);
    -ms-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
}

.close-btn span:last-child {
    -webkit-transform: translateY(-50%) rotate(-45deg);
    -ms-transform: translateY(-50%) rotate(-45deg);
    transform: translateY(-50%) rotate(-45deg);
}

@media only screen and (max-width: 568px) {
    .close-btn span {
        background-color: black;
    }
}

@media only screen and (max-width: 568px) {
    .close-btn {
        right: 5px;
        top: 5px;
    }
}

.burger {
    display: none;
    width: 30px;
    height: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    cursor: pointer;
    position: relative;
}

@media only screen and (max-width: 992px) {
    .burger {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.burger .icon-bar {
    -webkit-transition: 0.1s;
    -o-transition: 0.1s;
    transition: 0.1s;
    width: 100%;
    height: 2px;
    background-color: #fff;
}

.burger.active .icon-bar:nth-child(1),
.burger.active .icon-bar:nth-child(3) {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;
}

.burger.active .icon-bar:nth-child(2) {
    opacity: 0;
}

.burger.active .icon-bar:nth-child(1) {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
}

.burger.active .icon-bar:nth-child(3) {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    -ms-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
}

input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
    -webkit-appearance: none;
}

/* Для Firefox */
input[type=number] {
    -moz-appearance: textfield;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

.icon {
    display: inline-block;
    font-style: normal;
    content: ' ';
}

.ico {
    fill: currentColor;
}

.mfp-wrap {
    -webkit-overflow-scrolling: touch;
    -webkit-transform: translateZ(0);
}

html.mfp-helper {
    height: 100%;
}

html.mfp-helper body {
    overflow: hidden;
    height: 100%;
    -webkit-transform: translateZ(0);
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
    width: inherit;
    min-width: 33px;
}

.white-popup-block {
    max-width: 731px;
    width: 100%;
    padding: 20px 30px;
    text-align: left;
    margin: 40px auto;
    position: relative;
    border: 1px solid #e1e1e1;
    background-color: #ffffff;
}

.popup-buble .popup-dialog {
    opacity: 0;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
}

.popup-buble.mfp-ready .popup-dialog {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.popup-buble.mfp-removing .popup-dialog {
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 0;
}

.popup-buble.mfp-bg {
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.popup-buble.mfp-ready.mfp-bg {
    opacity: 1;
}

.popup-buble.mfp-removing.mfp-bg {
    opacity: 0;
}

.up_btn {
    position: fixed;
    border-radius: 50%;
    background-color: #082a3c;
    right: 20px;
    bottom: 20px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    z-index: 100;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    display: none;
}

.up_btn:after {
    position: absolute;
    content: '';
    display: block;
    top: 16px;
    left: 13px;
    width: 12px;
    height: 12px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
}

.footer {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 30px 0 40px;
    background: #f8f8f8;
    background-size: cover;
}

.footer__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media only screen and (max-width: 1200px) {
    .footer__inner {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 468px) {
    .footer__inner {
        grid-template-columns: 1fr;
    }
}

.footer__politics {
    /* max-width: 150px; */
    color: #ffffff;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 18px;
    text-align: left;
    font-style: normal;
}

@media only screen and (max-width: 1200px) {
    .footer__politics {
        display: none;
    }
}

.footer__politics a {
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
}

@media only screen and (max-width: 1200px) {
    .footer__left {
        grid-column-start: span 2;
    }
}

@media only screen and (max-width: 468px) {
    .footer__left {
        grid-column-start: span 1;
    }
}

.footer__logo {
    margin-bottom: 30px;
    display: block;
}

@media only screen and (max-width: 1200px) {
    .footer__logo {
        text-align: center;
    }

    .footer__logo img {
        width: 270px;
        height: auto;
    }
}

@media only screen and (max-width: 1200px) and (max-width: 768px) {
    .footer__logo img {
        height: auto;
        width: 230px;
    }
}

.footer__nav {
    font-size: 13px;
    font-style: normal;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.39px;
}

.footer__nav a {
    color: #000;
    font-size: 13px;
    font-weight: 500;
}

.footer__nav li {
    margin-bottom: 20px;
}

.footer__nav li:last-child {
    margin-bottom: 0;
}

@media only screen and (max-width: 1200px) {
    .footer__nav {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

@media only screen and (max-width: 468px) {
    .footer__nav {
        margin-bottom: 40px;
    }

    .footer__nav ul {
        width: 100%;
        text-align: center;
    }
}

.footer__contacts__title {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    font-style: normal;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.39px;
    margin-bottom: 1.77em;
}

.footer__contacts li {
    margin-bottom: 20px;
}

.footer__contacts li:last-child {
    margin-bottom: 0;
}

.footer__contacts svg {
    fill: #ffffff;
    max-width: 15px;
    height: 15px;
    margin-right: 10px;
}

.footer__contacts a {
    color: #ffffff;
    font-size: 16px;
    display: flex;
    align-items: center;
}

@media only screen and (max-width: 1200px) {
    .footer__contacts {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

@media only screen and (max-width: 1200px) {
    .footer__email {
        grid-column-start: span 2;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-top: 30px;
        margin-bottom: 10px;
    }
}

@media only screen and (max-width: 568px) {
    .footer__email {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

@media only screen and (max-width: 468px) {
    .footer__email {
        grid-column-start: span 1;
    }
}

.footer__email__title {
    color: #37201b;
    font-size: 18px;
    font-weight: 500;
    font-style: normal;
    letter-spacing: normal;
    text-align: left;
    text-transform: uppercase;
    line-height: normal;
    margin-bottom: .83em;
}

@media only screen and (max-width: 1200px) {
    .footer__email__title {
        margin-bottom: 0;
        margin-right: 20px;
    }
}

@media only screen and (max-width: 768px) {
    .footer__email__title {
        font-size: 16px;
    }
}

@media only screen and (max-width: 568px) {
    .footer__email__title {
        margin: 0 0 10px 0;
    }
}

.footer__form {
    position: relative;
    max-width: 340px;
}

.footer__input {
    border: 1px solid #61c57c;
    background-color: transparent;
    width: 100%;
    height: 50px;
    padding-left: 21px;
    padding-right: 66px;
    font-size: 16px;
    color: #000;
    display: block;
}

.footer__input::-webkit-input-placeholder {
    color: #ddd;
    font-family: "Releway", sans-serif;
    text-transform: uppercase;
    font-size: 16px;
}

.footer__input::-moz-placeholder {
    color: #ddd;
    font-family: "Releway", sans-serif;
    text-transform: uppercase;
    font-size: 16px;
}

.footer__input:-ms-input-placeholder {
    color: #fff;
    font-family: "Releway", sans-serif;
    text-transform: uppercase;
    font-size: 16px;
}

.footer__input::-ms-input-placeholder {
    color: #fff;
    font-family: "Releway", sans-serif;
    text-transform: uppercase;
    font-size: 16px;
}

.footer__input::placeholder {
    color: #9e9e9e;
    font-family: "Releway", sans-serif;
    text-transform: uppercase;
    font-size: 16px;
}

@media only screen and (max-width: 568px) {
    .footer__input {
        height: 46px;
    }
}

.footer__form-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #f8f8f8;
    width: 50px;
    height: 40px;
    position: absolute;
    right: 5px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.footer__form-btn svg {
    width: 21px;
    height: 16px;
    fill: #61c57c;
}

.footer__bottom-politics {
    display: none;
}

.footer__bottom-politics p {
    display: none;
}

@media only screen and (max-width: 1200px) {
    .footer__bottom-politics {
        display: block;
        grid-column-start: span 2;
    }

    .footer__bottom-politics p {
        display: block;
        max-width: 100%;
        text-align: center;
    }
}

@media only screen and (max-width: 468px) {
    .footer__bottom-politics {
        grid-column-start: span 1;
    }
}

body.pushy-open-right .menu-btn span:nth-child(2) {
    opacity: 0;
}

body.pushy-open-right .menu-btn span:nth-child(3),
body.pushy-open-right .menu-btn span:nth-child(1) {
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(-45deg);
    -ms-transform: translateY(-50%) rotate(-45deg);
    transform: translateY(-50%) rotate(-45deg);
}

body.pushy-open-right .menu-btn span:nth-child(1) {
    -webkit-transform: translateY(-50%) rotate(45deg);
    -ms-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
}

.header {
    position: fixed;
    top: 25px;
    left: 0;
    width: 100%;
    z-index: 20;
    background-color: transparent;
    -webkit-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
}

.header.scroll {
    top: 0;
    padding: 5px 0;
    background-color: rgba(0, 0, 0, 0.8);
}

.header__inner {
    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;
    width: 100%;
}

@media only screen and (max-width: 768px) {
    .header__logo img {
        height: auto;
        width: 230px;
    }
}

@media only screen and (max-width: 568px) {
    .header__logo img {
        width: 200px;
    }
}

@media only screen and (max-width: 1200px) {
    .header__nav {
        display: none;
    }
}

.header__list li {
    display: inline-block;
    margin-left: 45px;
}

.header__list li:first-child {
    margin-left: 0;
}

.header__list li a {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    font-style: normal;
    line-height: 1.5625 em;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.16px;
}

.header__search {
    width: 19px;
    height: 19px;
    margin-right: 33px;
}

.header__search svg {
    fill: #fff;
    width: 19px;
    height: 19px;
}

.header__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header__info .nice-select {
    background-color: transparent;
    color: #fff;
    border: none;
}

.header__info .nice-select:after {
    content: url("../img/header/down-arrow.png");
    width: 13px;
    height: 9px;
    top: 4px;
    right: 11px;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    border: none;
}

.header__info .nice-select .list {
    background-color: rgba(0, 0, 0, 0.6);
}

.header__info .nice-select .option:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

@media only screen and (max-width: 1200px) {
    .header__info {
        display: none;
    }
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
    background-color: rgba(0, 0, 0, 0.3);
}

.menu-btn {
    position: relative;
    width: 30px;
    height: 20px;
    display: none;
}

.menu-btn span {
    display: block;
    position: absolute;
    background-color: #fff;
    width: 100%;
    height: 2px;
}

.menu-btn span:nth-child(1) {
    top: 0%;
}

.menu-btn span:nth-child(2) {
    top: 50%;
}

.menu-btn span:nth-child(3) {
    top: 100%;
}

@media only screen and (max-width: 1200px) {
    .menu-btn {
        display: block;
    }
}

.mobile__list li a {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    font-style: normal;
    line-height: 1.5625 em;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.16px;
}

@media only screen and (max-width: 568px) {
    .mobile__list li a {
        font-size: 14px;
    }
}

.mobile__lan {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 15px 30px;
}

.mobile__lan a {
    font-weight: 500;
    padding: 0;
    color: #fff;
    font-size: 14px;
    margin-left: 10px;
}

.mobile__lan a.active {
    color: #61c57c;
}

.mobile__lan a:first-child {
    margin-left: 0;
}

.language-link.active {
    color: #61c57c !important;
}

.search_input {
    display: none;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    width: 445px;
}

.search_input input {
    padding: 15px 10px;
    border: none;
    font-size: 13px;
    max-width: 445px;
    width: 100%;
}

.search_input input::-webkit-input-placeholder {
    color: #414141;

    font-weight: 500;
    font-size: 13px;
}

.search_input input::-moz-placeholder {
    color: #111111;
 
    font-weight: 500;
    font-size: 13px;
}

.search_input input:-ms-input-placeholder {
    color: #434343;

    font-weight: 500;
    font-size: 13px;
}

.search_input input::-ms-input-placeholder {
    color: #505050;

    font-weight: 500;
    font-size: 13px;
}

.search_input input::placeholder {
    color: #505050;

    font-weight: 500;
    font-size: 13px;
}

.search_input svg {
   
    fill: #a3a3a3;
    width: 19px;
    height: 19px;
    z-index: 2;
}


.search_input button {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 10px;
    fill: #a3a3a3;
    width: 19px;
    height: 19px;
    z-index: 2;
}

.header__search {
    position: relative;
}

.header__search:hover .search_input {
    display: block;
}

.contact-us__intro-title2 {
    color: #ffffff;
    font-size: 50px;
    font-weight: 500;
    font-style: normal;
    line-height: 1.75em;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .9em;
    margin-bottom: .8em;
    text-align: center;
}

.contact-us__intro-title2 span {
    position: relative;
    display: inline-block;
    padding-bottom: 0.5em;
    max-width: 11.34em;
    white-space: nowrap;
    display: block;
    margin: 0 auto;
}

@media only screen and (max-width: 768px) {
    .contact-us__intro-title2 {
        font-size: 40px;
    }
}

@media only screen and (max-width: 568px) {
    .contact-us__intro-title2 {
        font-size: 30px;
    }
}

@media only screen and (max-width: 468px) {
    .contact-us__intro-title2 {
        font-size: 24px;
    }
}

@media only screen and (max-width: 360px) {
    .contact-us__intro-title2 {
        font-size: 16px;
    }
}

.about-us__about {
    padding-top: 30px;
    margin-bottom: 70px;
}

@media only screen and (max-width: 568px) {
    .about-us__about {
        margin-bottom: 40px;
    }
}

.about-us__about-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 100px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.about-us__about-item:last-child {
    margin-bottom: 0;
}

.about-us__about-item:first-child {
    margin-bottom: 150px;
}

@media only screen and (max-width: 768px) {
    .about-us__about-item:first-child {
        margin-bottom: 100px;
    }
}

.about-us__about-item:nth-child(2) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.about-us__about-item:nth-child(2) .about-us__about-title {
    text-align: right;
}

@media only screen and (max-width: 992px) {
    .about-us__about-item:nth-child(2) .about-us__about-title {
        text-align: left;
    }
}

.about-us__about-item:nth-child(2) .about-us__about-title:after {
    left: auto;
    right: 0;
}

@media only screen and (max-width: 992px) {
    .about-us__about-item:nth-child(2) .about-us__about-title:after {
        left: 0;
        right: auto;
    }
}

.about-us__about-item:nth-child(2) .about-us__about-item-content {
    text-align: right;
}

@media only screen and (max-width: 992px) {
    .about-us__about-item:nth-child(2) .about-us__about-item-content {
        text-align: left;
    }
}

.about-us__about-item:nth-child(2) .about-us__about-content {
    margin-left: 0px;
    margin-right: 20px;
}

@media only screen and (max-width: 992px) {
    .about-us__about-item:nth-child(2) .about-us__about-content {
        margin-right: 0;
        margin-top: 20px;
        text-align: left;
    }
}

@media only screen and (max-width: 992px) {
    .about-us__about-item:nth-child(2) {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

@media only screen and (max-width: 992px) {
    .about-us__about-item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.about-us__about-content {
    margin-left: 20px;
    max-width: 50%;
}

.about-us__about-content p {
    margin-bottom: 20px
}

.about-us__about-content ul li {
    list-style: disc;
    margin-left: 20px;
}

@media only screen and (max-width: 992px) {
    .about-us__about-content {
        max-width: 100%;
        margin-left: 0;
        margin-top: 20px;
    }
}

.about-us__about-item__img {
    position: relative;
    max-width: 560px;
    width: 100%;
}

.about-us__about-item__img img {
    display: block;
}

.about-us__about-item__img img:first-child {
    width: 100%;
    height: auto;
}

@media only screen and (max-width: 992px) {
    .about-us__about-item__img {
        margin: 0 auto;
        max-width: 400px;
        width: 100%;
    }
}

.about-us__about-small-img {
    position: absolute;
    right: -8%;
    bottom: -5%;
    border: 2px solid #61c57c;
}

@media only screen and (max-width: 1200px) {
    .about-us__about-small-img {
        width: 180px;
        height: auto;
        bottom: -16%;
    }
}

@media only screen and (max-width: 768px) {
    .about-us__about-small-img {
        bottom: 0;
        left: 0;
    }
}

section.about-page {
    padding: 50px 0;
}

section.about-page .title {}

.title {
    color: #404447;
    font-size: 18px;
    font-weight: 500;
    font-style: normal;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 3.6px;
    line-height: normal;
    position: relative;
    padding-bottom: 21px;
    margin-bottom: 40px;
}

.title:after {
    content: "";
    position: absolute;
    left: 0;
    width: 77px;
    height: 3px;
    background-color: #61c57c;
    bottom: 0;
}

section.about-page p {
    line-height: 1.5;
}

section.about-page .col-12 {
    padding-right: 40px;
}

section.about-page .col-12 + .col-12 {
    padding-left: 40px;
    padding-right: 0;
}

section.about-page img {
    border-radius: 11px;
}

section.about-page p {
    margin-bottom: 20px;
}

section.about-page p:last-child {
    margin-bottom: 0
}

.about-us__about-title {
    color: #404447;
    font-size: 18px;
    font-weight: 500;
    font-style: normal;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 3.6px;
    line-height: normal;
    position: relative;
    padding-bottom: 21px;
    margin-bottom: 40px;
}

.about-us__about-title:after {
    content: "";
    position: absolute;
    left: 0;
    width: 77px;
    height: 3px;
    background-color: #61c57c;
    bottom: 0;
}

.about-us__about-item-content {
    color: #000000;
    font-size: 16px;
    font-weight: 300;
    font-style: normal;
    line-height: 20px;
    text-align: left;
    letter-spacing: 0;
    line-height: 1.5;
}

.about-us__our-advantages-title {
    color: #404447;
    font-size: 18px;
    font-weight: 500;
    font-style: normal;
    text-align: left;
    text-transform: uppercase;
    padding-bottom: 1.2em;
    position: relative;
    margin-bottom: 2.2em;
}

.about-us__our-advantages-title:after {
    content: "";
    position: absolute;
    left: 0;
    width: 77px;
    height: 3px;
    background-color: #61c57c;
    bottom: 0;
}

.advantages__items_2 {
    grid-template-columns: repeat(3, 1fr) !important;
    margin-top: 30px;
}

.advantages__items_2 .advantages__icon {
    margin-bottom: 10px !important;
}

@media only screen and (max-width: 768px) {
    .advantages__items_2 {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media only screen and (max-width: 568px) {
    .advantages__items_2 {
        grid-template-columns: 1fr !important;
    }
}

.advantages__item-title2 {
    color: #404447;
    font-size: 13px;
    font-weight: 500;
    font-style: normal;
    text-align: center;
    letter-spacing: 0.39px;
    line-height: normal;
}

.about__us-welcome {
    padding-bottom: 100px !important;
}

@media only screen and (max-width: 568px) {
    .about__us-welcome {
        padding-bottom: 70px !important;
    }
}

.about__us-welcome .welcome__title {
    color: #fff;
}

.about__us-welcome .welcome__text {
    color: #fff;
}

.about__us-welcome-video {
    max-width: 560px;
    width: 100%;
    margin: 20px auto 0;
    position: relative;
}

.about__us-welcome-video img {
    display: block;
    width: 100%;
    height: auto;
}

.play__btn {
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    top: 50%;
}

.how-we-work {
    padding-top: 100px;
    margin-bottom: 120px;
}

@media only screen and (max-width: 568px) {
    .how-we-work {
        margin-bottom: 70px;
    }
}

.how-we-work__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

@media only screen and (max-width: 992px) {
    .how-we-work__steps {
        grid-template-columns: 1fr;
        row-gap: 90px;
    }
}

.how-we-work__step {
    position: relative;
}

.how-we-work__title {
    color: #404447;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.39px;
    margin-top: 20px;
    font-family: 'Releway';
}

.how-we-work__icon {
    background-color: #fff;
    border-radius: 50%;
    margin: 0 auto;
    width: 115px;
    height: 115px;
    -webkit-box-shadow: 0 5px 16px rgba(182, 175, 168, 0.45);
    box-shadow: 0 5px 16px rgba(182, 175, 168, 0.45);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.how-we-work__icon svg {
    width: 51px;
    height: 51px;
    fill: #61c57c;
}

.doubleLeftArrow {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-90%);
    -ms-transform: translateY(-90%);
    transform: translateY(-90%);
    right: 0;
    fill: #61c57c;
    width: 28px;
    height: 25px;
}

@media only screen and (max-width: 992px) {
    .doubleLeftArrow {
        left: 50%;
        bottom: -40px;
        top: auto;
        -webkit-transform: translateX(-50%) rotate(90deg);
        -ms-transform: translateX(-50%) rotate(90deg);
        transform: translateX(-50%) rotate(90deg);
    }
}

.blog__intro-title {
    color: #ffffff;
    font-size: 50px;
    font-weight: 500;
    font-style: normal;
    line-height: 1.75em;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .9em;
    margin-bottom: .8em;
}

.blog__intro-title span {
    position: relative;
    display: inline-block;
    padding-bottom: 0.5em;
    max-width: 5.38em;
}

@media only screen and (max-width: 568px) {
    .blog__intro-title {
        font-size: 40px;
    }
}

@media only screen and (max-width: 468px) {
    .blog__intro-title {
        font-size: 32px;
    }
}

@media only screen and (max-width: 360px) {
    .blog__intro-title {
        font-size: 28px;
    }
}

.blog__block {
    padding-top: 30px;
}

.blog__block-category {
    margin-bottom: 20px;
}

.blog__block-category a {
    color: #323232;
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    text-transform: uppercase;
    margin-right: 6px;
}

.blog__block-item__link {
    margin-bottom: 20px;
    overflow: hidden;
    display: block;
}

.blog__block-item__link img {
    height: auto;
    width: 100%;
}

.blog__block-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 30px;
    margin-bottom: 40px;
}

@media only screen and (max-width: 768px) {
    .blog__block-items {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 400px) {
    .blog__block-items {
        grid-template-columns: 1fr;
    }
}

.blog__block-item__content {
    color: #404447;
    font-size: 13px;
    font-weight: 500;
    font-style: normal;
    line-height: 20px;
    text-align: left;
    letter-spacing: 0.39px;
    padding-right: 18px;
    margin-bottom: 10px;
}

.blog__block-line {
    background-color: #e1e1e1;
    width: 100%;
    height: 1px;
    margin-bottom: 15px;
}

.blog__block-item__date {
    color: #acacac;
    font-weight: 400;
    text-align: right;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.54px;
    line-height: normal;
}

.blog__block-item__date span {
    font-size: 13px;
    letter-spacing: 0.48px;
}

.more__wrapper {
    text-align: center;
}

.more__wrapper a {
    color: #404447;
    font-size: 18px;
    font-weight: 500;
    font-style: normal;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 3.6px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.more__wrapper a svg {
    fill: black;
    width: 14px;
    height: 8px;
    margin-left: 9px;
}

.map {
    margin-bottom: -10px;
}

.contact-question {
    padding: 100px 0;
}

@media only screen and (max-width: 568px) {
    .contact-question {
        padding: 70px 0;
    }
}

.contact-question__information {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media only screen and (max-width: 992px) {
    .contact-question__information {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.contact-question__info {
    max-width: 547px;
    margin-right: 30px;
}

@media only screen and (max-width: 1200px) {
    .contact-question__info {
        max-width: 430px;
    }
}

@media only screen and (max-width: 992px) {
    .contact-question__info {
        max-width: 100%;
        margin-bottom: 30px;
    }
}

.contact-question__information-title {
    color: #404447;
    font-size: 18px;
    font-weight: 500;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 3.6px;
    margin-bottom: 2.2em;
}

.contact-question__text {
    color: #333333;
    font-size: 13px;
    font-weight: 300;
    font-style: normal;
    text-align: left;
    letter-spacing: 0.39px;
    line-height: normal;
    margin-bottom: 2.07em;
}

.contact-question__info-more {
    text-align: left !important;
}

.contact-question__answer {
    max-width: 760px;
    width: 100%;
    margin-bottom: 30px;
}

.contact-question__answer:last-child {
    margin-bottom: 0;
}

.contact-question__answer.open .contact-question__answer-title span:after {
    display: none;
}

@media only screen and (max-width: 992px) {
    .contact-question__answer {
        max-width: 100%;
    }
}

.contact-question__answer-title {
    position: relative;
    padding-left: 50px;
    color: #404447;
    font-size: 18px;
    font-weight: 500;
    text-align: left;
    text-transform: uppercase;
    cursor: pointer;
}

@media only screen and (max-width: 568px) {
    .contact-question__answer-title {
        font-size: 16px;
    }
}

.contact-question__answer-title span {
    width: 30px;
    height: 30px;
    background-color: #61c57c;
    display: block;
    position: absolute;
    left: 0;
    top: -4px;
}

.contact-question__answer-title span:after,
.contact-question__answer-title span:before {
    content: "";
    position: absolute;
    width: 17px;
    height: 1px;
    background-color: #fff;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.contact-question__answer-title span:after {
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
    -ms-transform: translate(-50%, -50%) rotate(90deg);
    transform: translate(-50%, -50%) rotate(90deg);
}

.contact-question__answer-text {
    font-size: 16px;
    margin-top: 10px;
    line-height: 1.5;
    padding-top: 30px;
}

.contacts-tours {
    padding: 100px 0 120px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.contacts-tours__intro {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    font-style: normal;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3.6px;
    margin-bottom: 2.7em;
}

.contacts-tour__text {
    color: #ffffff;
    font-size: 13px;
    font-weight: 400;
    text-align: center;
    letter-spacing: 0.39px;
    max-width: 928px;
    margin: 0 auto 2em;
    width: 100%;
}

.contacts-tours__btn {
    margin: 0 auto;
}

.contact-us {
    padding-top: 100px;
}

.contact-us__intro-title {
    color: #ffffff;
    font-size: 50px;
    font-weight: 500;
    font-style: normal;
    line-height: 1.75em;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .3em;
    margin-bottom: .8em;
}

.contact-us__intro-title span {
    position: relative;
    padding-bottom: 0.5em;
    display: block;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

@media only screen and (max-width: 768px) {
    .contact-us__intro-title {
        font-size: 2em;
    }
}

@media only screen and (max-width: 468px) {
    .contact-us__intro-title {
        font-size: 1.4em;
    }
}

.contact-us__title {
    color: #404447;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3.6px;
    margin-bottom: 50px;
}

.contact-us__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media only screen and (max-width: 568px) {
    .contact-us__content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.contact-us__contact a {
    margin-bottom: 10px;
}

#contact-us {
    width: 65%;
}

@media only screen and (max-width: 992px) {
    #contact-us {
        width: 50%;
    }
}

@media only screen and (max-width: 568px) {
    #contact-us {
        width: 100%;
        margin-top: 20px;
    }
}

.contact-us__contact-title {
    color: #404447;
    font-size: 18px;
    font-weight: 500;
    font-style: normal;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 3.6px;
    margin-bottom: 30px;
}

.contact-us__form-field input {
    width: 100%;
    color: #7a7a7a;
    font-size: 13px;
    font-weight: 500;
    font-style: normal;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.39px;
    border: none;
    border-bottom: 1px solid #8e8e8e;
    margin-bottom: 20px;
    padding-bottom: 10px;
}

.contact-us__form-field textarea {
    width: 100%;
    color: #7a7a7a;
    font-size: 13px;
    height:100px;
    font-weight: 500;
    font-style: normal;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.39px;
    border: none;
    border-bottom: 1px solid #8e8e8e;
    margin-bottom: 20px;
    padding-bottom: 10px;
}

.contact-us__form-field input::-webkit-input-placeholder {
    font-size: 13px;
    font-weight: 500;
    font-family: 'IBM Plex Sans', sans-serif;
}

.contact-us__form-field input::-moz-placeholder {
    font-size: 13px;
    font-weight: 500;
    font-family: 'IBM Plex Sans', sans-serif;
}

.contact-us__form-field input:-ms-input-placeholder {
    font-size: 13px;
    font-weight: 500;
    font-family: 'IBM Plex Sans', sans-serif;
}

.contact-us__form-field input::-ms-input-placeholder {
    font-size: 13px;
    font-weight: 500;
    font-family: 'IBM Plex Sans', sans-serif;
}

.contact-us__form-field input::placeholder {
    font-size: 13px;
    font-weight: 500;
    font-family: 'IBM Plex Sans', sans-serif;
}

button {
    margin-left: auto;
}

.blog__block-big__item {
    margin-bottom: 100px;
}

.blog__block-big__content p {
    color: #323232;
    font-size: 13px;
    font-weight: 300;
    font-style: normal;
    line-height: 25px;
    text-align: left;
    letter-spacing: 0.39px;
    margin-bottom: 20px;
}

.blog__block-big__content p:last-child {
    margin-bottom: 0;
}

.blog__block-big__content img {
    max-width: 100%;
    height: auto;
    max-height: 600px;
    margin-bottom: 30px;
}

.double-img {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 20px;
}

@media only screen and (max-width: 768px) {
    .double-img {
        grid-template-columns: 1fr;
    }
}

.other__blogs {
    margin-bottom: 100px;
}

.other__blogs-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 20px;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
}

@media only screen and (max-width: 992px) {
    .other__blogs-items {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 568px) {
    .other__blogs-items {
        grid-template-columns: 1fr;
    }
}

.other__blog-item {
    position: relative;
}

.other__blog-item span {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 15px;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.45px;
    display: block;
}

.other__blog-item img {
    width: 100%;
    height: auto;
}

.about {
    position: relative;
    padding-bottom: 100px;
    background: #207035;
    color: white;
    padding-top: 100px;
}

@media only screen and (max-width: 568px) {
    .about {
        padding-bottom: 70px;
    }
}

.about .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

@media only screen and (max-width: 768px) {
    .about .container {
        display: block;
    }
}

.about__img-wrapper {
    position: absolute;
    width: 46%;
    left: 0;
    overflow: hidden;
    height: 100%;
}

.about__img-wrapper img {
    width: auto;
}

@media only screen and (max-width: 768px) {
    .about__img-wrapper img {
        height: 400px !important;
    }
}

@media only screen and (max-width: 768px) {
    .about__img-wrapper {
        position: static;
        width: 100%;
        margin-bottom: 30px;
    }
}

.about__content {
    width: 55%;
}

@media only screen and (max-width: 1500px) {
    .about__content {
        width: 52%;
    }
}

@media only screen and (max-width: 768px) {
    .about__content {
        width: 100%;
    }
}

.about__text {
    margin-bottom: 30px;
    color: white;
}

.about__text p {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    line-height: 1.5em;
    text-align: left;
    letter-spacing: 0.39px;
    margin-bottom: 1.1em;
}

.about__text p:last-child {
    margin-bottom: 0;
}

.about__btn {
    background-color: #61c57c;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #000000;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    text-transform: uppercase;
    line-height: 0;
    width: 173px;
    height: 50px;
    border: 1px solid transparent;
    -webkit-transition: color .2s linear, border .2s linear, background-color .2s linear;
    -o-transition: color .2s linear, border .2s linear, background-color .2s linear;
    transition: color .2s linear, border .2s linear, background-color .2s linear;
}

.about__btn:hover {
    border: 1px solid #61c57c;
    color: #61c57c;
    background-color: transparent;
}

.advantages {
    padding: 70px 0;
}

@media only screen and (max-width: 568px) {
    .advantages {
        padding: 70px 0;
    }
}

.advantages__items {
    display: grid;
    grid-template-columns: repeat(4, minmax(260px, 1fr));
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 20px;
}

@media only screen and (max-width: 1200px) {
    .advantages__items {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 468px) {
    .advantages__items {
        grid-template-columns: 1fr;
    }
}

@media only screen and (max-width: 1200px) {
    .advantages__items {
        max-width: 860px;
        width: 100%;
        margin: 0 auto;
    }
}

.advantages__icon {
    background-image: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 166px;
    height: 166px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 auto 20px;
    border: 1px solid #62c57d;
    border-radius: 50%;
}

.advantages__icon svg {
    width: 55px;
    height: 55px;
    fill: #62c57d;
}

.advantages__item-text {
    text-align: center;
    color: #361e1a;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    line-height: 24px;
    letter-spacing: 0.39px;
    padding: 0 20px;
}

.contact-us {
    padding: 70px 0;
}

@media only screen and (max-width: 568px) {
    .contact-us {
        padding: 70px 0;
    }
}

.contacts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: flex-start;
    margin-top: 47px;
    gap: 6px;
    flex-direction: column;
}

.adr {
    font-weight: 300;
    font-size: 18px;
    color: black;
}

@media only screen and (max-width: 1200px) {
    .contacts {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        row-gap: 30px;
        -webkit-column-gap: 30px;
        -moz-column-gap: 30px;
        column-gap: 30px;
    }
}

@media only screen and (max-width: 468px) {
    .contacts {
        grid-template-columns: 1fr;
    }
}

.contact {
    box-shadow: none;
    background-color: #ffffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    align-items: center;
    color: #000000;
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 20px;
}

.contact svg {
    max-width: 16px;
    margin-right: 9px;
    width: auto;
    height: 14px;
    fill: #61c57c;
}

@media only screen and (max-width: 1300px) {
    .contact {
        width: 230px;
    }
}

@media only screen and (max-width: 1200px) {
    .contact {
        margin: 0 auto;
    }
}

@media only screen and (max-width: 768px) {
    .contact {
        max-width: 100%;
        width: 100%;
    }
}

.contact__btn {
    background: #61c57c;
    color: #ffffff;
    font-size: 14px;
    font-weight: 300;
    /* line-height: 0; */
    font-style: normal;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.39px;
    display: block;
    height: auto;
    padding: 20px;
    width: 200px;
}

.destinations {
    padding-bottom: 70px;
}

@media only screen and (max-width: 568px) {
    .destinations {
        padding-bottom: 70px;
    }
}

.destinations[style] {
    padding-top: 70px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.destinations[style] .destinations__title,
.destinations[style] .advantages__title,
.destinations[style] .destinations__item-title,
.destinations[style] .destinations__item-text,
.destinations[style] .destinations__view-more {
    color: #fff;
}

.destinations[style] .destinations__title a,
.destinations[style] .advantages__title a,
.destinations[style] .destinations__item-title a,
.destinations[style] .destinations__item-text a,
.destinations[style] .destinations__view-more a {
    color: #fff;
}

.destinations[style] .destinations__title svg,
.destinations[style] .advantages__title svg,
.destinations[style] .destinations__item-title svg,
.destinations[style] .destinations__item-text svg,
.destinations[style] .destinations__view-more svg {
    fill: #fff;
}

.destinations__title,
.advantages__title {
    font-weight: 500;
    text-align: left;
    margin-bottom: 13px !important;
    font-weight: 500;
    font-size: 30px;
    text-transform: uppercase;
    margin-bottom: 0px !important;
    padding-bottom: 0;
    position: relative;
    margin-bottom: 2.2em;
    display: block;
    width: auto;
    white-space: nowrap;
    width: auto;
    letter-spacing: 3px;
}

.destinations__title:after,
.advantages__title:after {

    width: 40px;
    height: 4px;
    background: #61c57c;
    content: '';
    display: block;
    margin-top: 15px;

}

.destinations__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 20px;
    margin-top: 30px;
}

.destinations__items.items2 {
    grid-template-columns: repeat(2, 1fr);
}

@media only screen and (max-width: 768px) {
    .destinations__items {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 468px) {
    .destinations__items {
        grid-template-columns: repeat(1, 1fr);
    }
}

.destinations__item-img img {
    display: block;
    width: 100%;
    height: auto;
}

.destinations__item-title {
    color: #404447;
    font-size: 15px;
    font-weight: 500;
    font-style: normal;
    margin: 15px 0;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.38px;
}

.destinations__item-text {
    color: #404447;
    font-size: 14px;
    font-weight: 300;
    font-style: normal;
    line-height: 1.53em;
    text-align: left;
    letter-spacing: 0.39px;
}

.fl.jsb {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.destinations__view-more {
    color: #404447;
    font-size: 15px;
    font-weight: 400;
    font-style: normal;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-transform: uppercase;
    letter-spacing: 0.75px;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 1em;
}

.destinations__view-more svg {
    color: #404447;
    width: 23px;
    height: 10px;
}

.more-informations {
    /* padding-bottom: 250px; */
}

@media only screen and (max-width: 992px) {
    .more-informations {
        padding-bottom: 100px;
    }
}

.more-informations__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 17px;
}

@media only screen and (max-width: 992px) {
    .more-informations__inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
}

.more-informations__slider {
    position: relative;
}

.more-informations__slider:before {
    position: absolute;
    content: url("../img/informations/gallery-top__bg.png");
    right: -10px;
    top: -10px;
}

@media only screen and (max-width: 992px) {
    .more-informations__slider:before {
        display: none;
    }
}

.more-informations__contnet {
    width: 50%;
    font-weight: 300;
}

@media only screen and (max-width: 992px) {
    .more-informations__contnet {
        width: 100%;
        margin-top: 90px;
    }
}

.more-informations__text {
    color: #fff;
    font-size: 17px;
    line-height: 1.53em;
    text-align: left;
    font-weight: 300;
    /* letter-spacing: 0.39px; */
    margin-bottom: 30px;
}

.more-informations__btn {
    background-color: transparent;
    border: 1px solid #61c57c;
    color: #61c57c;
}

.more-informations__contnet h2 {
    margin-bottom: 30px !important;
    /* color: #61c57c !important; */
    letter-spacing: 3px;
    display: block;
}

section.more-informations.destinations {
    color: white;
    line-height: 1.5;
    margin: 70px 0;
}

h2.destinations__title + .subtitle {
    margin-top: -5px;
    margin-bottom: 30px;
    color: silver;
}

.more-informations__contnet ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 30px;
}

.more-informations__contnet h2:after {
    width: 40px;
    height: 4px;
    background: #61c57c;
    content: '';
    display: block;
    margin-top: 15px;
}

.more-informations__btn:hover {
    background-color: #61c57c;
    color: #fff;
}

.gallery-top {
    max-width: 560px;
    width: 100%;
    position: relative;
}

.gallery-top img {
    max-width: 560px;
    width: 100%;
    height: auto;
}

.gallery-thumbs {
    /* position: absolute; */
    /* left: -20px; */
    /* bottom: -110px; */
    max-width: 560px;
    width: 100%;
}

.gallery-thumbs img {
    width: 270px;
}

@media only screen and (max-width: 768px) {
    .gallery-thumbs img {
        maxw-width: 205px;
        width: 100%;
        display: block;
        margin: 0 auto;
    }
}

@media only screen and (max-width: 992px) {
    .gallery-thumbs {
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        bottom: -60px;
    }
}

.swiper-button-next__gallery-thumbs {
    width: 56px;
    height: 56px;
    position: absolute;
    z-index: 2;
    right: -30px;
    bottom: auto;
    top: 30%;
}

.swiper-button-next__gallery-thumbs:before {
    content: "";
    background-image: url("../img/informations/arrow_next.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 77px;
    height: 77px;
}

@media only screen and (max-width: 468px) {
    .swiper-button-next__gallery-thumbs:before {
        width: 67px;
        height: 67px;
    }
}

@media only screen and (max-width: 992px) {
    .swiper-button-next__gallery-thumbs {
        right: 40px;
        bottom: -12px;
    }
}

@media only screen and (max-width: 768px) {
    .swiper-button-next__gallery-thumbs {
        bottom: auto;
        top: 50%;
        right: -10px;
    }
}

@media only screen and (max-width: 568px) {
    .swiper-button-next__gallery-thumbs {
        right: 0px;
    }
}

@media only screen and (max-width: 468px) {
    .swiper-button-next__gallery-thumbs {
        right: -10px;
    }
}

.swiper-button-prev__gallery-thumbs {
    width: 56px;
    height: 56px;
    position: absolute;
    z-index: 2;
    left: -30px;
    bottom: auto;
    top: 30%;
}

.swiper-button-prev__gallery-thumbs:before {
    content: "";
    background-image: url("../img/informations/arrow_prev.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 77px;
    height: 77px;
}

@media only screen and (max-width: 468px) {
    .swiper-button-prev__gallery-thumbs:before {
        width: 67px;
        height: 67px;
    }
}

@media only screen and (max-width: 992px) {
    .swiper-button-prev__gallery-thumbs {
        left: 35px;
        bottom: -12px;
    }
}

@media only screen and (max-width: 768px) {
    .swiper-button-prev__gallery-thumbs {
        bottom: auto;
        top: 50%;
        left: -10px;
    }
}

@media only screen and (max-width: 568px) {
    .swiper-button-prev__gallery-thumbs {
        left: 0;
    }
}

@media only screen and (max-width: 468px) {
    .swiper-button-prev__gallery-thumbs {
        left: -10px;
    }
}

.swiper-slide {
    cursor: pointer;
}

.intro {
    height: 100vh;
    min-height: 917px;
    background-repeat: no-repeat;
    background-size: cover;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    background-position: center;
}

@media only screen and (max-width: 568px) {
    .intro {
        min-height: 420px;
    }
}

.intro__title {
    color: #ffffff;
    font-size: 50px;
    font-weight: 500;
    font-style: normal;
    line-height: 1.75em;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 30px;
    margin-bottom: .8em;
}

.intro__title span {
    position: relative;
    display: inline-block;
    padding-bottom: 0.5em;
    border-bottom: 1px solid white;
    padding-left: 18px;
    /* width: 75%; */
}

.intro__title span:after {
    content: "";
    width: 78%;
    height: 1px;
    background-color: #fff;
    position: relative;
}

@media only screen and (max-width: 568px) {
    .intro__title {
        font-size: 40px;
    }
}

@media only screen and (max-width: 468px) {
    .intro__title {
        font-size: 32px;
    }
}

@media only screen and (max-width: 360px) {
    .intro__title {
        font-size: 28px;
    }
}

.intro__text {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
    font-style: normal;
    letter-spacing: 3.6px;
    position: relative;
}

@media only screen and (max-width: 568px) {
    .intro__text {
        font-size: 14px;
    }
}

@media only screen and (max-width: 568px) {
    .intro__text {
        font-size: 12px;
    }
}

.intro_link {
    text-align: center;
    position: absolute;
    white-space: nowrap;
    bottom: 30px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    color: #ffffff;
    font-size: 13px;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 1.04px;
    text-decoration: underline;
}

.intro_link:hover {
    text-decoration: underline;
}

@media only screen and (max-width: 568px) {
    .intro_link {
        font-size: 11px;
    }
}

.socials {
    position: absolute;
    bottom: 0;
    left: 20px;
    height: 100%;
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-bottom: 60px;
    z-index: 99;
}

@media only screen and (max-width: 610px) {
    .socials {
        display: none;
    }
}

.socials__line {
    max-height: 100%;
    height: 100%;
    width: 2px;
    background-color: #fff;
}

.socials__text {
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    white-space: nowrap;
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
    -webkit-text-orientation: mixed;
    text-orientation: mixed;
    display: block;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.18px;
    margin: 30px 0;
}

.socials__list-item {
    text-align: center;
    margin-bottom: 20px;
}

.socials__list-item:last-child {
    margin-bottom: 0;
}

.socials__list-item svg {
    fill: #61c57c;
}

.socials__list-item:nth-child(1) svg {
    width: 33px;
    height: 20px;
}

.socials__list-item:nth-child(2) svg {
    width: 15px;
    height: 27px;
}

.socials__list-item:nth-child(3) svg {
    width: 25px;
    height: 22px;
}

.socials__list-link {
    width: 47px;
    height: 47px;
    background-color: #ffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.socials__list-link:hover {
    background-color: #61c57c;
}

.socials__list-link:hover svg {
    fill: #fff;
}

.welcome {
    padding-top: 100px;
    margin-bottom: 100px;
}

@media only screen and (max-width: 568px) {
    .welcome {
        padding-top: 70px;
        margin-bottom: 70px;
    }
}

.destinations-destination {
    background-color: #61c57c;
    padding: 35px 0;
}

.destinations-destination__title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    font-style: normal;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 3.6px;
    line-height: normal;
    position: relative;
    padding-bottom: 1.1em;
    margin-bottom: 1.1em;
}

.destinations-destination__title:after {
    content: "";
    position: absolute;
    left: 0;
    height: 3px;
    width: 77px;
    background-color: #fff;
    bottom: 0;
}

.destinations-destination__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media only screen and (max-width: 568px) {
    .destinations-destination__content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.destinations-destination__text {
    color: #ffffff;
    font-size: 13px;
    font-weight: 300;
    font-style: normal;
    text-align: left;
    letter-spacing: 0.39px;
    max-width: 769px;
    width: 100%;
}

@media only screen and (max-width: 568px) {
    .destinations-destination__text {
        margin-bottom: 30px;
    }
}

.destinations-destination__btn {
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    line-height: 26px;
    text-align: center;
    text-transform: uppercase;
    border: 2px solid #ffffff;
    width: 270px;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media only screen and (max-width: 568px) {
    .destinations-destination__btn {
        margin: 0 auto;
    }
}

.destinations-slider {
    padding-top: 100px;
    padding-bottom: 10px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.destinations-slider__slider {
    max-width: 587px;
    width: 100%;
    margin: 0 auto;
}

.destinations-slider__slider .swiper-wrapper {
    margin-bottom: 70px;
}

.destinations-slide {
    color: #fff;
}

.destinations-slide__title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3.6px;
    line-height: normal;
    position: relative;
    padding-bottom: 1.16em;
    margin-bottom: 2.2em;
}

.destinations-slide__title:after {
    content: "";
    width: 77px;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #61c57c;
    height: 3px;
    bottom: 0;
}

.destinations-slide__text {
    color: #ffffff;
    font-size: 16px;
    font-weight: 300;
    font-style: normal;
    text-align: center;
    letter-spacing: 0.48px;
    margin-bottom: 25px;
}

.destinations-slide__btn {
    background-color: #61c57c;
    width: 173px;
    height: 50px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: normal;
    text-align: center;
    text-transform: uppercase;
    line-height: normal;
}

.destinations-slider__pagination {
    left: 50%;
}

.destinations-slider__pagination .swiper-pagination-bullet {
    border: 1px solid #61c57c;
    background-color: transparent;
    width: 12px;
    height: 12px;
    opacity: 1;
}

.destinations-slider__pagination .swiper-pagination-bullet-active {
    background-color: #61c57c;
}

.destinations__title2 {
    color: #ffffff;
    font-size: 50px;
    font-weight: 500;
    font-style: normal;
    line-height: 1.75em;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .9em;
    margin-bottom: .8em;
}

.destinations__title2 span {
    position: relative;
    display: inline-block;
    max-width: 17em;
}

@media only screen and (max-width: 1200px) {
    .destinations__title2 {
        font-size: 40px;
    }
}

@media only screen and (max-width: 768px) {
    .destinations__title2 {
        font-size: 28px;
    }
}

@media only screen and (max-width: 568px) {
    .destinations__title2 {
        font-size: 18px;
    }
}

@media only screen and (max-width: 468px) {
    .destinations__title2 {
        font-size: 14px;
    }
}

.destinations .blog__block-item__link {
    margin-bottom: 10px;
}

.destinations__item-title {
    font-size: 18px;
    font-weight: 600;
    font-style: normal;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.39px;
    color: black;
}

a.footer__logo img {
    max-width: 200px;
}

section.welcome h2 {
    font-weight: 500;
    font-size: 30px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

section.welcome p {
    margin-bottom: 20px;
    line-height: 1.5;
}

section.welcome {
    background: url(/img/olen2.svg) no-repeat 153% 40px/63%;
}

.overlay {
    background: #361f1ad9;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.intro .overlay {
    background: #361f1aab;
}

section.destinations {
    position: relative;
    padding-top: 70px;
}

section.destinations .container {
    position: relative;
    z-index: 2;
}

h2.advantages__title {
    margin-bottom: 50px !important;
}

.about__content h2 {
    margin-bottom: 30px !important;
}

.about2 .about__img-wrapper {
    left: auto;
    right: 0;
}

.about.about2 .container {
    justify-content: flex-start;
}

section.pattern {
    background: url(/img/pattern.jpg) repeat center center/40%;
    padding: 100px 0
}

section.pattern .row {
    justify-content: center;
}

section.pattern .row .col-md-6 {
    background: #ffffff;
    padding: 30px
}

section.pattern h2 {
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 30px;
}

section.pattern p {
    margin-bottom: 20px;
}

section.intro .container {
    position: relative;
    z-index: 9;
}

section.intro .intro_link {
    position: absolute;
    z-index: 999;
    font-size: 20px;
    text-decoration: none;
}

img {
    max-width: 100%
}

section.about-main {
    padding: 70px 0;
}

section.about-main img {
    border-radius: 15px;
    height: 100%;
    display: block;
    object-fit: cover;
    width: 100%;
    margin-top: 84px;
}

section.about-main .row {
    height: 100%;
}

section.about-main .col-4 {
    height: 100%;
    padding-right: 50px;
    padding-top: 0px;
}

section.about-main p {
    margin-bottom: 20px;
}

section.about-main h2 {
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 3px
}

section.about-main h2:after {
    width: 40px;
    height: 4px;
    background: #5897d2;
    content: '';
    display: block;
    margin-top: 15px;
}

.about-main a.about__btn {
    background: #5897d2;
    color: white;
    margin-top: 30px;
}

.tours {
    display: flex;
    justify-content: center;
    padding: 100px 0 30px;
    gap: 20px
}

.tours .item {
    background: url(/img/informations/1.png) no-repeat center center/cover;
    flex-basis: 44%;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    position: relative;
}

.tours .item:before {
    background: #361f1aab;
    position: absolute;
    top: 0;
    content: '';
    left: 0;
    border-radius: 10px;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 2;
}

.tours .item + .item {
    background: url(/img/informations/2.png) no-repeat center center/cover;
}

.tours .item a {
    color: white;
    position: relative;
    z-index: 9;
    font-size: 24px;
    font-weight: 300;
}

.ac {
    align-items: center;
}

.contacts img {
    margin-right: 8px;
}

.map iframe {
    border-radius: 20px;
}

.intro {
    position: relative;
    transition: background-image 0.5s ease-in-out;
    background-size: cover;
    background-position: center;
    transition: all 0.5s ease;
}

.intro__title,
.intro__text {
    transition: all 0.3s ease;
    position: relative;
}

.intro__title {
    opacity: 1;
    visibility: visible;
}

/* Для альтернативного варианта */
.temp-bg {
    pointer-events: none;
}

/* Опционально: эффект затемнения при смене */
.intro .overlay {
    transition: background-color 0.5s ease;
}

section.about-page h2 {
    margin-bottom: 21px;
}

.soc ul {
    display: flex;
}

.soc ul li img {
    width: 32px;
}

.soc ul li {
    padding: 0 7px;
}

.grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.grid-item {
    padding: 10px;
    flex-basis: 25%;
}
.sidebar-title {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 8px;
}

.sidebar-text {
    padding: 10px 0 20px;
}

.sidebar-text ul li {
    list-style: disc;
}

.sidebar-text ul {
    margin-left: 20px;
}

.sidebar-text p {
    margin-bottom: 5px !important;
    padding: 0;
}
section.gal {
    padding-bottom: 40px;
}

.swiper-button-next {
    right: 16px !important;
}
.evoSearch_info {
    display:none;
}
@media (max-width: 767px) {
    .grid-item {
        padding: 10px;
        flex-basis: 50%;
    }
}

.agree {
    display: flex;
    justify-content: flex-start;
    text-align: left;
    align-items: flex-start;
}

.agree input {
    width: 30px;
    height: 30px;
    margin-right: 15px;
    top: -5px;
    position: relative;
}

.agree {
    padding-top: 20px;
    font-size: 15px;
}

.blog__block-category .bread, .text-constr.container .bread  {
    padding:20px 0
}

.blog__block-category .bread ul, .text-constr.container .bread ul {
    display:flex;
    
}

.bread ul li a:after {
    content:'/';
    padding:0 5px;
}

.bread ul li a {
    margin-right:0;
    text-transform:none;
    font-weight:400;
}

.bread ul li:last-child span {
    color:#6e6e6e
}




/*COOKIE*/
#cookie-notification {
    display: none;
    position: fixed;
    bottom: 20px;
	font-size:16px;
	line-height:1.3;
    left: 50%;
    transform: translateX(-50%);
    background-color: #f1f1f1;
    color: #333;
    padding: 15px 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    max-width: 80%;
    text-align: center;
}

#cookie-notification p {
    margin: 0 0 10px 0;
    display: inline-block;
	font-size:16px;
}
#cookie-notification a {
	font-size:16px;
}
#cookie-accept {
    background-color: rgb(88, 151, 210);;
    color: white;
    border: none;
    padding: 10px 25px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    margin: 0 10px;
    cursor: pointer;
    text-transform: uppercase;
    border-radius: 0px;
}

#cookie-accept:hover {
    background-color: #000;
}
@media screen and (max-width: 767px) {
 
#cookie-notification {
    display: none;
    position: fixed;
    bottom: 10px;
    font-size: 14px;
    line-height:1.3;
    left: 3%;
    transform: none;
    background-color: #f1f1f1;
    color: #333;
    padding: 10px 10px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    max-width: 97%;
    text-align: center;
}
	#cookie-notification p {
    margin: 0 0 10px 0;
    display: inline-block;
	font-size:14px;
}
	#cookie-notification a {
	font-size:14px;
}
	
}