@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Regular.eot');
    src: url('../fonts/Montserrat-Regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Montserrat-Regular.woff2') format('woff2'),
    url('../fonts/Montserrat-Regular.woff') format('woff'),
    url('../fonts/Montserrat-Regular.ttf') format('truetype'),
    url('../fonts/Montserrat-Regular.svg#Montserrat-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Medium.eot');
    src: url('../fonts/Montserrat-Medium.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Montserrat-Medium.woff2') format('woff2'),
    url('../fonts/Montserrat-Medium.woff') format('woff'),
    url('../fonts/Montserrat-Medium.ttf') format('truetype'),
    url('../fonts/Montserrat-Medium.svg#Montserrat-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Bold.eot');
    src: url('../fonts/Montserrat-Bold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Montserrat-Bold.woff2') format('woff2'),
    url('../fonts/Montserrat-Bold.woff') format('woff'),
    url('../fonts/Montserrat-Bold.ttf') format('truetype'),
    url('../fonts/Montserrat-Bold.svg#Montserrat-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DIN Pro Cond';
    src: url('../fonts/DINPro-CondensedMedium.eot');
    src: url('../fonts/DINPro-CondensedMedium.eot?#iefix') format('embedded-opentype'),
    url('../fonts/DINPro-CondensedMedium.woff2') format('woff2'),
    url('../fonts/DINPro-CondensedMedium.woff') format('woff'),
    url('../fonts/DINPro-CondensedMedium.ttf') format('truetype'),
    url('../fonts/DINPro-CondensedMedium.svg#DINPro-CondensedMedium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DIN Pro Cond';
    src: url('../fonts/DINPro-CondensedBold.eot');
    src: url('../fonts/DINPro-CondensedBold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/DINPro-CondensedBold.woff2') format('woff2'),
    url('../fonts/DINPro-CondensedBold.woff') format('woff'),
    url('../fonts/DINPro-CondensedBold.ttf') format('truetype'),
    url('../fonts/DINPro-CondensedBold.svg#DINPro-CondensedBold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    width: 100%;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    background: #FFFFFF;
    line-height: 110%;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: #555555;
    font-size: 18px;
}

.wrapper {
    width: 100%;
    min-height: 100vh;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    overflow-x: clip;
    background: #FFFFFF;
}

.container {
    width: 100%;
    max-width: 1650px;
    position: relative;
    z-index: 1;
    padding: 0 32px;
    margin: 0 auto;
}

.main {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    flex: 1;
}

.section {
    width: 100%;
    position: relative;
}

button {
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    border: none;
    background: transparent;
    transition: all 0.3s ease-in-out;
}

a {
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

ul {
    list-style-type: none;
}

textarea,
input {
    font-family: 'Montserrat', sans-serif;
    border: none;
    background: transparent;
}

sup {
    font-size: .5em;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

.button-pink {
    width: 100%;
    max-width: 300px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #ffffff;
    line-height: 100%;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
    padding: 18px 16px;
    border-radius: 10px;
    background-color: #ea5183;
}

.button-pink:hover {
    background-color: #c03664;
}

/************************************/

/************** Header **************/



/****************************************/

/*************** Content ****************/

.section-title {
    font-family: 'DIN Pro Cond', sans-serif;
    font-weight: 500;
    font-size: 64px;
    line-height: 100%;
    text-transform: uppercase;
    color: #000000;
}

.section-title span {
    color: #ea5183;
}

.banner {
    background-image: url("../images/banner01.webp");
    background-size: cover;
    background-position: center;
}

.banner:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    background-color: rgba(0, 0, 0, 0.63);
}

.banner-row {
    width: 100%;
    min-height: 450px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 300px 0 80px;
    gap: 24px;
}

.banner__title {
    font-family: 'DIN Pro Cond', sans-serif;
    font-weight: 700;
    font-size: 52px;
    line-height: 110%;
    text-align: center;
    text-transform: uppercase;
    color: #ffffff;
}

.hero {
    background-image: url("../images/main/hero-bg.webp");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    background-color: rgba(0, 0, 0, 0.63);
}

.hero-row {
    width: 100%;
    min-height: 900px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 130px 0;
}

.hero-content {
    width: 100%;
    max-width: 1110px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 45px;
    padding: 0 60px;
}

.hero__title {
    font-family: 'DIN Pro Cond', sans-serif;
    font-weight: 700;
    font-size: 52px;
    line-height: 100%;
    text-align: center;
    text-transform: uppercase;
    color: #ffffff;
    border: none;
    outline: none;
}

.hero-bottom {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 13px;
}

.hero-socials {
    position: absolute;
    right: 0;
    bottom: 56px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.hero-socials__link {
    width: 45px;
    height: 45px;
    position: relative;
    display: flex;
    border-radius: 50%;
}

.hero-socials__link:hover {
    transform: scale(1.15) rotate(-6deg);
}

.hero-socials__link img,
.hero-socials__link svg {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.company {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.company-row {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 96px;
}

.company-top {
    width: 100%;
    max-width: 910px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.company-top p {
    font-weight: 400;
    font-size: 18px;
    line-height: 110%;
    text-align: center;
    color: #555555;
}

.company-content {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 48px;
    justify-content: space-between;
}

.company-left {
    width: 420px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.company-right {
    max-width: 60%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 36px;
}

.company-block {
    width: calc(100% / 3 - 72px / 3);
    max-width: 230px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
}

.company-block__icon {
    width: 50px;
    height: 50px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.company-block__icon img,
.company-block__icon svg {
    max-width: 100%;
    max-height: 100%;
}

.company-block__text {
    font-weight: 400;
    font-size: 18px;
    line-height: 110%;
    text-align: center;
    color: #555555;
}

.about {
    padding: 60px 0 120px;
    background-color: #FFFFFF;
}

.about-row {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 42px;
}

.about-info {
    width: 35%;
    max-width: 520px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-info__title.section-title {
    color: #ea5183;
}

.about-info__text {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-info__text p {
    font-weight: 400;
    font-size: 18px;
    line-height: 110%;
    color: #555555;
}

.about-info__text p span {
    color: #ea5183;
}

.about-info__button {
    margin-top: auto;
}

.about-slider {
    width: 65%;
    max-width: 880px;
    position: relative;
    display: flex;
    overflow: hidden;
}

.about-slider__block {
    height: auto;
    position: relative;
    display: flex;
}

.about-slider__block img {
    width: 100%;
    object-fit: cover;
}

.about-controls {
    position: absolute;
    left: 60px;
    bottom: 60px;
    z-index: 1;
}

.plantations {
    padding: 160px 0 30px;
    background-image: url("../images/main/plantations-bg.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.plantations:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    background-color: rgba(0, 0, 0, 0.63);
}

.plantations-row {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 72px;
}

.plantations-top {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
}

.plantations-top__title.section-title {
    color: #ffffff;
}

.plantations-top__text {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.plantations-top__text p {
    font-weight: 400;
    font-size: 18px;
    line-height: 110%;
    color: #ffffff;
}

.plantations-bottom {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 35px;
}

.plantations-bottom__title.section-title {
    color: #ffffff;
}

.plantations-steps {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: nowrap;
}

.plantations-steps:after {
    content: '';
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    top: 24px;
    right: 0;
    background-color: #fff;
}

.plantations-tab {
    width: calc(100% / 9);
    min-height: 360px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
    z-index: 1;
}

.plantations-tab:first-child .plantations-block,
.plantations-tab:last-child .plantations-block {
    width: 180px;
}

.plantations-tab__button {
    width: 50px;
    height: 50px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 50%;
    padding: 6px;
    border: 2px solid #FFFFFF
}

.plantations-tab__button.active {
    transform: scale(1.4);
    background-color: #ea5183;
}

.plantations-tab__button img,
.plantations-tab__button svg {
    max-width: 100%;
    max-height: 100%;
}

.plantations-block {
    width: 220px;
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translate(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 13px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease-in-out;
    background-color: transparent;
}

.plantations-block.active {
    opacity: 1;
    pointer-events: auto;
}

.plantations-block__step {
    font-weight: 400;
    font-size: 16px;
    line-height: 110%;
    text-align: center;
    color: #ffffff;
}

.plantations-block__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 110%;
    text-align: center;
    color: #ffffff;
    margin-top: 10px;
}

.plantations-block__img {
    width: 100%;
    max-width: 155px;
    height: 100px;
    position: relative;
    display: flex;
    border-radius: 13px;
    overflow: hidden;
    background-color: #ffffff;
    margin: 0 auto;
}

.plantations-block__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 13px;
    background-color: transparent;
}

.assortment {
    padding: 130px 0 65px;
}

.assortment-row {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 12px;
}

.assortment-left {
    width: 40%;
    position: relative;
    display: flex;
}

.assortment-left img {
    width: 100%;
    object-fit: cover;
}

.assortment-right {
    width: 60%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 96px 64px;
    background-color: #f5f5f5;
}

.assortment-right__title.section-title {
    color: #ea5183;
    text-align: center;
}

.assortment-right__content {
    width: 100%;
    max-width: 600px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.assortment-right__content p {
    font-weight: 400;
    font-size: 18px;
    line-height: 110%;
    text-align: center;
    color: #555555;
}

.assortment-right__content ul {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.assortment-right__content ul li {
    position: relative;
    font-weight: 400;
    font-size: 18px;
    line-height: 110%;
    text-align: center;
    color: #555555;
}

.assortment-right__content ul li:before {
    content: '●';
    color: #EA5183;
    margin-right: 3px;
    font-size: 16px;
}

.assortment-right__button {
    margin-top: auto;
}

.reviews {
    padding: 65px 0 45px;
}

.reviews-row {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 43px;
}

.reviews-content {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 16px;
}

.reviews-left {
    flex: 1 1 auto;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.reviews-general {
    width: 30%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 24px;
    background-color: #ea5183;
    border-radius: 20px;
}

.reviews-general__icon {
    width: 60px;
    height: 60px;
    position: relative;
    display: flex;
    align-self: flex-end;
}

.reviews-general__icon img,
.reviews-general__icon svg {
    width: 100%;
    height: 100%;
}

.reviews-general__title {
    font-family: 'DIN Pro Cond', sans-serif;
    font-weight: 500;
    font-size: 32px;
    line-height: 110%;
    text-transform: uppercase;
    color: #ffffff;
}

.reviews-general__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 110%;
    color: #ffffff;
    margin-top: auto;
}

.reviews-left .reviews-block:nth-child(2) {
    width: calc(70% - 20px);
}

.reviews-left .reviews-block:nth-child(3) {
    width: 45%;
}

.reviews-left .reviews-block:nth-child(4) {
    width: calc(55% - 20px);
}

.reviews-block {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    background-color: #f5f5f5;
    border-radius: 20px;
    padding: 32px 24px;
    box-shadow: 5px 4px 4px 0 #00000040;
}

.reviews-block__title {
    font-weight: 500;
    font-size: 24px;
    line-height: 110%;
    color: #000000;
    text-transform: uppercase;
}

.reviews-block__text {
    font-weight: 400;
    font-size: 18px;
    line-height: 110%;
    color: #000000;
}

.reviews-right {
    width: 380px;
    position: relative;
    display: flex;
    flex-shrink: 0;
}

.reviews-right .reviews-block {
    width: 100%;
}

.reviews-slider {
    width: 100%;
    position: relative;
    display: none;
}

.flowers {
    padding: 45px 0 110px;
}

.flowers-row {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.flowers-top {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.flowers-top__text {
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    color: #555555;
}

.flowers-slider {
    width: 100%;
    min-height: 510px;
    position: relative;
    display: flex;
}

.flowers-slider__block {
    width: 22%;
    height: 315px;
    position: relative;
    display: flex;
    transition: all 0.6s ease-in-out;
}

.flowers-slider__block.swiper-slide-active {
    width: 50% !important;
    height: 510px;
}

.flowers-slider__block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.flowers-controls {
    position: absolute;
    bottom: 0;
    left: calc(50% + 32px);
    z-index: 1;
}

.travel {
    padding: 75px 0;
    background-color: #000000;
}

.travel-row {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 48px;
}

.travel-left {
    width: 60%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.travel-left__title.section-title {
    color: #ffffff;
}

.travel-left__content {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.travel-left__content p {
    font-weight: 400;
    font-size: 18px;
    line-height: 110%;
    color: #ffffff;
}

.travel-left__list {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.travel-left__list ul {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.travel-left__list ul li {
    position: relative;
    font-weight: 400;
    font-size: 18px;
    line-height: 110%;
    color: #ffffff;
}

.travel-left__list ul li:before {
    content: '';
    width: 6px;
    height: 6px;
    position: absolute;
    top: 8px;
    left: -20px;
    background-color: #ea5183;
    border-radius: 50%;
}

.travel-left__all-button {
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    text-decoration: underline;
    color: #ea5183;
    align-self: flex-start;
    display: none;
}

.travel-right {
    width: 35%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.travel-videos {
    width: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.travel-videos__item {
    width: calc(50% - 6px);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.travel-videos__item-player {
    width: 100%;
    height: 180px;
    position: relative;
    display: flex;
}

.travel-videos__item-video {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.travel-videos__item-video img,
.travel-videos__item-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.travel-videos__item-button {
    width: 75px;
    height: 75px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background-color: #ea5183;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.travel-videos__item-button:hover {
    transform: scale(1.05);
}

.travel-videos__item-button:after {
    content: '';
    position: absolute;
    width: calc(100% + 30px);
    height: calc(100% + 30px);
    background-color: rgba(234, 81, 131, 0.3);
    border-radius: 50%;
    top: -15px;
    left: -15px;
}

.travel-videos__item-button svg {
    width: 30px;
    height: 30px;
    padding-left: 5px;
    z-index: 1;
}

.travel-videos__item-text {
    font-family: 'DIN Pro Cond', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
    text-align: center;
    text-transform: uppercase;
    color: #ffffff;
}

.travel-gallery {
    width: 100%;
    position: relative;
    display: flex;
    overflow: hidden;
}

.travel-gallery__block {
    position: relative;
    display: flex;
    height: auto;
}

.travel-gallery__block img {
    width: 100%;
    object-fit: cover;
}

.travel-controls {
    position: absolute;
    left: 34px;
    bottom: 20px;
    z-index: 1;
}

.founder {
    padding: 110px 0 55px;
}

.founder-row {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.founder-left {
    width: 60%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 62px;
}

.founder-left__img {
    width: 100%;
    max-width: 500px;
    position: relative;
    align-items: center;
    display: none;
}

.founder-left__img img {
    width: 100%;
}

.founder-info {
    width: 100%;
    max-width: 500px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    padding: 10px 10px 10px 100px;
}

.founder-info:before {
    content: '';
    width: 64px;
    height: 42px;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url("../images/icons/quote-icon.svg");
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.founder-info__text {
    font-weight: 400;
    font-size: 24px;
    line-height: 110%;
    color: #555555;
}

.founder-info__name {
    font-weight: 400;
    font-size: 24px;
    line-height: 110%;
    color: #EA5183;
}

.founder-right {
    width: 40%;
    position: relative;
    display: flex;
}

.founder-right img {
    width: 100%;
}

.team {
    padding: 55px 0 125px;
}

.team-row {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.team-top {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 23px;
}

.team-top__text {
    font-weight: 400;
    font-size: 18px;
    line-height: 110%;
    color: #555555;
}

.team-content {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 55px;
}

.team-tabs {
    width: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px;
}

.team-tabs__button {
    position: relative;
    font-family: 'DIN Pro Cond', sans-serif;
    font-weight: 500;
    font-size: 36px;
    line-height: 110%;
    text-align: center;
    text-transform: uppercase;
    color: #000000;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
}

.team-tabs__button:focus {
    outline: none;
    border: none;
}

.team-tabs__button:after {
    content: '';
    width: 0;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #ea5183;
    transition: all 0.3s ease-in-out;
}

.team-tabs__button.active {
    color: #ea5183;
}

.team-tabs__button.active:after {
    width: 100%;
}

.team-tabs__button:hover {
    color: #ea5183;
}

.team-tabs__button:hover::after {
    width: 100%;
}

.team-panel {
    width: 100%;
    position: relative;
    display: none;
    flex-direction: row;
    justify-content: space-between;
    gap: 24px;
}

.team-panel.active {
    display: flex;
}

.team-block {
    width: calc(100% / 3 - 16px);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.team-block__img {
    width: 100%;
    height: 540px;
    position: relative;
    display: flex;
    margin-bottom: 10px;
}

.team-block__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-block__name {
    font-family: 'DIN Pro Cond', sans-serif;
    font-weight: 500;
    font-size: 42px;
    line-height: 110%;
    text-transform: uppercase;
    color: #000000;
}

.team-block__role {
    font-weight: 400;
    font-size: 24px;
    line-height: 110%;
    color: #555555;
}

.team-block__number {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    font-weight: 400;
    font-size: 24px;
    line-height: 110%;
    color: #555555;
}

.team-block__number:hover {
    color: #ea5183;
}

.team-block__number:before {
    content: '';
    width: 30px;
    height: 30px;
    position: relative;
    display: flex;
    flex-shrink: 0;
    background-image: url("../img/icons/whatsapp-icon.webp");
    background-size: 100% 100%;
}

.direction-block {
    width: calc(100% / 3 - 16px);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.direction-block__panel {
    width: 100%;
    height: 540px;
    position: relative;
    display: none;
    justify-content: center;
    align-items: center;
}

.direction-block__panel.active {
    display: flex;
}

.direction-block__panel img {
    max-width: 100%;
    max-height: 100%;
}

.direction-tabs {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.direction-tabs__button {
    font-family: 'DIN Pro Cond', sans-serif;
    font-weight: 500;
    font-size: 42px;
    line-height: 100%;
    text-align: center;
    text-transform: uppercase;
    color: #000000;
}

.direction-tabs__button:hover {
    color: #ea5183;
}

.direction-tabs__button.active {
    color: #ea5183;
}

/* ===== MAP POINTS (XPOINT) ===== */
.xpoint {
    position: absolute;
    display: flex;
    width: 11px;
    height: 11px;
    border-radius: 1000px;
    background-color: #EA5183;
    cursor: pointer;
}

.xpoint::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 48%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    border-radius: 1000px;
    background-color: #ea518445;
    animation: pulse 1.3s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.xpoint-tooltip {
    position: absolute;
    top: -54px;
    left: -10px;
    width: 120px;
    height: auto;
    aspect-ratio: 100/47;
    background-image: url('../images/main/tooltip-sm.svg');
    background-color: white;
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition-duration: .3s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 14px;
}

.xpoint-tooltip--big {
    top: -71px;
    left: -15px;
    width: 155px;
    aspect-ratio: 146/69;
    background-image: url('../images/main/tooltip-big.svg');    
    padding-bottom: 22px;
    padding-right: 8px;
    padding-left: 7px;
}

.xpoint:hover .xpoint-tooltip {
    opacity: 1;
    visibility: visible;
}

.xpoint-tooltip-logo {
    width: 21px !important;
    height: auto;
}

.xpoint-tooltip-text {
    font-weight: 500;
    font-size: 12px;
    line-height: 100%;
    text-transform: uppercase;
    color: #000;
    margin-left: 4px;
}

/* Эквадор точки */
.xmap-ekvador .xpoint-1 { top: 30%; left: 38%; z-index: 40; }
.xmap-ekvador .xpoint-25 { top: 28.5%; left: 40.5%; z-index: 39; }
.xmap-ekvador .xpoint-28 { top: 30.5%; left: 43%; z-index: 38; }
.xmap-ekvador .xpoint-8 { top: 32%; left: 40.5%; z-index: 41; }
.xmap-ekvador .xpoint-2 { top: 24%; left: 38%; z-index: 36; }
.xmap-ekvador .xpoint-16 { top: 23.5%; left: 41%; z-index: 35; }
.xmap-ekvador .xpoint-9 { top: 24.5%; left: 44%; z-index: 34; }
.xmap-ekvador .xpoint-22 { top: 26%; left: 46.5%; z-index: 33; }
.xmap-ekvador .xpoint-14 { top: 22%; left: 36%; z-index: 32; }
.xmap-ekvador .xpoint-13 { top: 21%; left: 39%; z-index: 31; }
.xmap-ekvador .xpoint-17 { top: 21%; left: 42.5%; z-index: 30; }
.xmap-ekvador .xpoint-30 { top: 22.8%; left: 46.5%; z-index: 29; }
.xmap-ekvador .xpoint-27 { top: 18.8%; left: 36.5%; z-index: 28; }
.xmap-ekvador .xpoint-4 { top: 18%; left: 40.5%; z-index: 27; }
.xmap-ekvador .xpoint-4 .xpoint-tooltip-text { font-size: 10px; }
.xmap-ekvador .xpoint-10 { top: 20%; left: 45.5%; z-index: 24; }
.xmap-ekvador .xpoint-26 { top: 21%; left: 49%; z-index: 23; }
.xmap-ekvador .xpoint-5 { top: 17%; left: 31%; z-index: 22; }
.xmap-ekvador .xpoint-29 { top: 16%; left: 34.5%; z-index: 21; }
.xmap-ekvador .xpoint-29 .xpoint-tooltip-text { font-size: 9px; }
.xmap-ekvador .xpoint-23 { top: 16%; left: 38%; z-index: 20; }
.xmap-ekvador .xpoint-21 { top: 16.5%; left: 43%; z-index: 19; }
.xmap-ekvador .xpoint-21 .xpoint-tooltip-text { font-size: 11px; }
.xmap-ekvador .xpoint-3 { top: 17.2%; left: 46.5%; z-index: 18; }
.xmap-ekvador .xpoint-20 { top: 16.5%; left: 50.5%; z-index: 17; }
.xmap-ekvador .xpoint-12 { top: 17%; left: 54.5%; z-index: 16; }
.xmap-ekvador .xpoint-15 { top: 12%; left: 39.5%; z-index: 15; }
.xmap-ekvador .xpoint-18 { top: 9.5%; left: 41.5%; z-index: 14; }
.xmap-ekvador .xpoint-11 { top: 4.5%; left: 41.5%; z-index: 13; }
.xmap-ekvador .xpoint-7 { top: 6.8%; left: 44.5%; z-index: 12; }
.xmap-ekvador .xpoint-7 .xpoint-tooltip-text { font-size: 10px; }
.xmap-ekvador .xpoint-24 { top: 8.2%; left: 48.5%; z-index: 11; }
.xmap-ekvador .xpoint-19 { top: 11.2%; left: 50.5%; z-index: 10; }
.xmap-ekvador .xpoint-19 .xpoint-tooltip-text { font-size: 10px; }
.xmap-ekvador .xpoint-6 { top: 20%; left: 52%; z-index: 22; }

/* Колумбия точки */
.xmap-columbia .xpoint-5 { top: 57.5%; left: 38%; z-index: 20; }
.xmap-columbia .xpoint-3 { top: 59%; left: 42%; z-index: 19; }
.xmap-columbia .xpoint-9 { top: 58%; left: 45%; z-index: 18; }
.xmap-columbia .xpoint-1 { top: 59%; left: 48%; z-index: 17; }
.xmap-columbia .xpoint-8 { top: 58%; left: 51%; z-index: 16; }
.xmap-columbia .xpoint-6 { top: 54%; left: 42%; z-index: 15; }
.xmap-columbia .xpoint-7 { top: 54%; left: 45.5%; z-index: 15; }
.xmap-columbia .xpoint-2 { top: 55.5%; left: 48.5%; z-index: 14; }
.xmap-columbia .xpoint-4 { top: 50.5%; left: 48.5%; z-index: 13; }
.xmap-columbia .xpoint-4 .xpoint-tooltip-text { font-size: 11px; }
.xmap-columbia .xpoint-9 .xpoint-tooltip-text { font-size: 10px; }
.xmap-columbia .xpoint-10 { top: 48%; left: 36%; z-index: 12; }

/* Кения точки */
.xmap-kenia .xpoint-27 { top: 75%; left: 40.5%; z-index: 47; }
.xmap-kenia .xpoint-26 { top: 73%; left: 38.5%; z-index: 46; }
.xmap-kenia .xpoint-25 { top: 71%; left: 42.5%; z-index: 30; }
.xmap-kenia .xpoint-24 { top: 67%; left: 45.5%; z-index: 29; }
.xmap-kenia .xpoint-23 { top: 68%; left: 38.5%; z-index: 45; }
.xmap-kenia .xpoint-22 { top: 67%; left: 35.5%; z-index: 44; }
.xmap-kenia .xpoint-21 { top: 63%; left: 36.5%; z-index: 43; }
.xmap-kenia .xpoint-20 { top: 63%; left: 40%; z-index: 25; }
.xmap-kenia .xpoint-19 { top: 61%; left: 42%; z-index: 24; }
.xmap-kenia .xpoint-18 { top: 59%; left: 44%; z-index: 23; }
.xmap-kenia .xpoint-17 { top: 57%; left: 42%; z-index: 22; }
.xmap-kenia .xpoint-16 { top: 58%; left: 32%; z-index: 41; }
.xmap-kenia .xpoint-15 { top: 55.5%; left: 30%; z-index: 38; }
.xmap-kenia .xpoint-14 { top: 54%; left: 28%; z-index: 37; }
.xmap-kenia .xpoint-13 { top: 49%; left: 37%; z-index: 17; }
.xmap-kenia .xpoint-12 { top: 47%; left: 39%; z-index: 16; }
.xmap-kenia .xpoint-11 { top: 46.5%; left: 36%; z-index: 15; }
.xmap-kenia .xpoint-10 { top: 47.5%; left: 32%; z-index: 29; }
.xmap-kenia .xpoint-9 { top: 50.5%; left: 29%; z-index: 30; }
.xmap-kenia .xpoint-8 { top: 41.5%; left: 36%; z-index: 8; }
.xmap-kenia .xpoint-7 { top: 42.5%; left: 32%; z-index: 7; }
.xmap-kenia .xpoint-6 { top: 43.5%; left: 28%; z-index: 5; }
.xmap-kenia .xpoint-5 { top: 42.5%; left: 25%; z-index: 4; }
.xmap-kenia .xpoint-4 { top: 44.5%; left: 23%; z-index: 30; }
.xmap-kenia .xpoint-3 { top: 46.5%; left: 22%; z-index: 30; }
.xmap-kenia .xpoint-2 { top: 36.5%; left: 18%; z-index: 1; }
.xmap-kenia .xpoint-1 { top: 36.5%; left: 15%; z-index: 1; }
.xmap-kenia .xpoint-28 { top: 42.5%; left: 47%; z-index: 14; }
.xmap-kenia .xpoint-29 { top: 41.5%; left: 51%; z-index: 13; }
.xmap-kenia .xpoint-30 { top: 40.5%; left: 53%; z-index: 12; }
.xmap-kenia .xpoint-31 { top: 39.5%; left: 55%; z-index: 11; }
.xmap-kenia .xpoint-32 { top: 55.5%; left: 35%; z-index: 40; }

.community {
    padding: 84px 0;
    background-color: #f5f5f5;
}

.community-row {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 58px;
}

.community-top {
    width: 100%;
    max-width: 740px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 26px;
}

.community-top__title.section-title {
    text-align: center;
}

.community-top__text {
    font-weight: 400;
    font-size: 18px;
    line-height: 110%;
    text-align: center;
    color: #555555;
}

.community-bottom {
    width: 100%;
    max-width: 850px;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.community-block {
    max-width: 130px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.community-clue {
    position: absolute;
    top: 0;
    right: 0;
    width: 22px;
    height: 22px;
}

.community-clue__question {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #EA5183;
    border-radius: 50%;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    text-align: center;
    color: #ea5183;
    cursor: pointer;
}

.community-clue__info {
    width: 360px;
    position: absolute;
    top: 0;
    left: 70%;
    padding: 6px 12px;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.85);
    z-index: -1;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.community-clue:hover .community-clue__info {
    opacity: 1;
    z-index: 2;
}

.community-clue__info p {
    font-weight: 400;
    font-size: 10px;
    line-height: 110%;
    color: #000000;
}

.community-block__icon {
    width: 80px;
    height: 80px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px;
    background-color: #ea5183;
    border-radius: 50%;
}

.community-block__icon img,
.community-block__icon svg {
    max-width: 100%;
    max-height: 100%;
}

.community-block__link {
    font-weight: 700;
    font-size: 13px;
    line-height: 110%;
    text-align: center;
    color: #000000;
}

.community-block__link:hover {
    color: #ea5183;
}

.news {
    padding: 110px 0 55px;
}

.news-row {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 48px;
}

.news-all__link {
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    text-align: right;
    text-decoration: underline;
    color: #ea5183;
    align-self: flex-end;
}

.news-all__link:hover {
    opacity: .8;
}

.academy {
    padding: 55px 0;
}

.academy-row {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 48px;
}

.academy-left {
    width: 60%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
}

.academy-head {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.academy-left__subtitle,
.academy-head__subtitle {
    font-family: 'DIN Pro Cond', sans-serif;
    font-weight: 500;
    font-size: 40px;
    line-height: 100%;
    text-transform: uppercase;
    color: #000000;
}

.academy-left__text {
    font-weight: 400;
    font-size: 18px;
    line-height: 110%;
    color: #555555;
}

.academy-left__text strong {
    color: #ea5183;
    font-weight: 700;
}

.academy-left__list {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.academy-left__list ul {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.academy-left__list ul li {
    width: 100%;
    position: relative;
    font-weight: 400;
    font-size: 18px;
    line-height: 110%;
    color: #555555;
    padding-left: 15px;
}

.academy-left__list ul li:before {
    content: '';
    width: 6px;
    height: 6px;
    position: absolute;
    top: 6px;
    left: 0;
    background-color: #ea5183;
    border-radius: 50%;
}

.academy-left__button {
    margin-top: auto;
}

.academy-right {
    width: 40%;
    position: relative;
    display: flex;
}

.academy-right img {
    width: 100%;
    object-fit: cover;
}

.become-team {
    padding: 55px 0 150px;
    background-color: #FFFFFF;
}

.become-team-row {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.become-team__text {
    font-weight: 400;
    font-size: 18px;
    line-height: 110%;
    color: #555555;
    margin-bottom: 10px;
}

.feedback {
    background-color: #000000;
}

.feedback-row {
    width: 100%;
    padding: 90px 0 70px;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 48px;
    border-bottom: 2px solid #EA5183;
}
/* removed custom container override – use global .container */
.feedback-content {
    width: 50%;
    max-width: 600px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
}

.feedback-content__title.section-title {
    color: #ea5183;
}

.feedback-content__text {
    font-weight: 400;
    font-size: 20px;
    line-height: 110%;
    color: #ffffff;
}

.feedback-content__img {
    width: 100%;
    position: relative;
    display: flex;
}

.feedback-content__img img {
    width: 100%;
}

.feedback-form {
    width: 50%;
    max-width: 580px;
    position: relative;
    display: flex;
}

.feedback-form form {
    width: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0 10px;
}

.feedback-form__input {
    width: 100%;
    position: relative;
    display: flex;
}

.feedback-form__input input {
    width: 100%;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    color: #ffffff;
    padding: 20px 0;
    border-bottom: 2px solid #EA5183;
    transition: all 0.3s ease-in-out;
    border-radius: none;
}

.feedback-form__input input:focus {
    border-bottom: 2px solid #c03664;
}

.feedback-form__input input::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.feedback-form__area {
    width: 100%;
    position: relative;
    display: flex;
    margin-top: 10px;
}

.feedback-form__area textarea {
    width: 100%;
    min-height: 150px;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    color: #000000;
    padding: 16px;
    background-color: #ea5183;
    border-radius: 10px;
    resize: none;
    border: none;
    transition: all 0.3s ease-in-out;
}

.feedback-form__area textarea:focus {
    background-color: #c03664;
}

.feedback-form__area textarea::placeholder {
    color: #000000;
}

.feedback-form__recaptcha {
    width: 220px;
    position: relative;
    display: flex;
    margin-top: 20px;
}

.feedback-form__recaptcha img {
    width: 100%;
}

.feedback-form__button {
    margin-top: 20px;
}

.blog {
    padding: 90px 0;
}

.blog-row {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 90px;
}

.blog-content {
    width: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 90px 32px;
}

.blog-content .news-block {
    width: calc(25% - 24px);
}

.blog-bottom {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.article-page .banner,
.contacts-page .banner {
    background-image: url("../images/banner02.webp");
}

.article {
    padding: 90px 0;
}

.article .container {
    max-width: 850px;
}

.article-row {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.article__title {
    font-family: 'DIN Pro Cond', sans-serif;
    font-weight: 700;
    font-size: 52px;
    line-height: 110%;
    text-transform: uppercase;
    color: #000000;
}

.article__img {
    width: 100%;
    min-height: 200px;
    position: relative;
    display: flex;
}

.article__img img {
    width: 100%;
    object-fit: cover;
}

.article-content {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.article-content p {
    font-weight: 400;
    font-size: 20px;
    line-height: 110%;
    color: #555555;
}

.contacts {
    padding: 90px 0;
}

.contacts-row {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.contacts__title {
    font-family: 'DIN Pro Cond', sans-serif;
    font-weight: 700;
    font-size: 52px;
    line-height: 110%;
    text-transform: uppercase;
    color: #000000;
}

.contacts-content {
    width: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    margin-top: 10px;
}

.contacts-block {
    width: 300px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.contacts-block__img {
    width: 100%;
    height: 300px;
    position: relative;
    display: flex;
    margin-bottom: 10px;
}

.contacts-block__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contacts-block__name {
    font-family: 'DIN Pro Cond', sans-serif;
    font-weight: 500;
    font-size: 42px;
    line-height: 110%;
    text-transform: uppercase;
    color: #000000;
}

.contacts-block__role {
    font-weight: 400;
    font-size: 16px;
    line-height: 110%;
    color: #555555;
    margin-bottom: 6px;
}

.contacts-block__number {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    font-weight: 400;
    font-size: 24px;
    line-height: 110%;
    color: #555555;
    margin-top: auto;
}

.contacts-block__number:hover {
    color: #ea5183;
}

.contacts-block__number:before {
    content: '';
    width: 30px;
    height: 30px;
    position: relative;
    display: flex;
    flex-shrink: 0;
    background-image: url("../img/icons/whatsapp-icon.webp");
    background-size: 100% 100%;
}


.news-block {
    max-width: 350px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 23px;
}

.news-block__img {
    width: 100%;
    height: 260px;
    position: relative;
    display: flex;
    background-color: #f0f0f0;
}

.news-block__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-block__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 110%;
    color: #555555;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.news-block__link.button-pink {
    max-width: 100%;
}

.slider-controls {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 22px;
}

.slider-controls__prev,
.slider-controls__next {
    width: 13px;
    height: 13px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-controls__prev img,
.slider-controls__prev svg,
.slider-controls__next img,
.slider-controls__next svg {
    width: 100%;
    height: 100%;
}

.slider-controls__current,
.slider-controls__total {
    min-width: 20px;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    color: #ffffff;
}

.slider-controls__progress {
    width: 115px;
    height: 2px;
    position: relative;
    background-color: #ffffff;
}

.slider-controls__progress span {
    width: 10%;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background-color: #ffffff;
    transition: all 0.3s ease-in-out;
}

.slider-controls-black .slider-controls__progress {
    background-color: #000000;
}

.slider-controls-black .slider-controls__progress span {
    background-color: #000000;
}

.slider-controls-black .slider-controls__current,
.slider-controls-black .slider-controls__total {
    color: #000000;
}

.pagination {
    width: 100%;
    max-width: 500px;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.pagination__button {
    width: 36px;
    height: 36px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    padding: 7px;
    border-radius: 50%;
}

.pagination__button:hover {
    background-color: #efc2d1;
}

.pagination__button img,
.pagination__button svg {
    max-width: 100%;
    max-height: 100%;
}

.pagination-list {
    flex: 1 1 auto;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.pagination-list__item {
    position: relative;
    display: flex;
}

.pagination-list__link {
    width: 35px;
    height: 35px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    vertical-align: middle;
    color: #555555;
    border-radius: 50%;
}

.pagination-list__link:hover {
    background-color: #f6b9cd;
}

.pagination-list__link.active {
    background-color: #ea5183;
    color: #ffffff;
}

.ac-f-content {
    display: flex;
    flex-direction: column;
    row-gap: 32px;
}

/*******************************/

/************* Media ***********/

@media only screen and (max-width: 1600px) {

    .header.fixed .nav-menu {
        gap: 16px;
    }

    .header.fixed .nav-menu li a {
        font-size: 18px;
    }

    .header-language__list a {
        font-size: 18px;
    }

    .header.fixed .header-bottom__button.button-pink {
        font-size: 14px;
    }

    .hero-row {
        min-height: 750px;
    }

}

@media only screen and (max-width: 1400px) {

    .header.fixed .nav-menu__logo {
        width: 80px;
    }

    .header.fixed .nav-menu {
        gap: 12px;
    }

    .header.fixed .nav-menu li a {
        font-size: 16px;
    }

    .flowers-slider {
        min-height: 460px;
    }

    .flowers-slider__block {
        height: 260px;
    }

    .flowers-slider__block.swiper-slide-active {
        height: 460px;
    }

}

@media only screen and (max-width: 1250px) {

   

    .nav-menu li a {
        font-size: 18px;
        padding: 2px 0;
    }

    .news-block__img {
        height: 200px;
    }

    .news-block__text {
        font-size: 14px;
    }

    .news-block__link.button-pink {
        font-size: 14px;
    }

    .company-row {
        gap: 64px;
    }

    .company-content {
        flex-direction: column;
        align-items: center;
    }

    .company-left {
        width: 100%;
    }

    .company-left__title.section-title {
        text-align: center;
    }

    .company-right {
        width: 100%;
        max-width: 900px;
    }

    .about-row {
        align-items: flex-start;
        gap: 32px;
    }

    .about-info {
        width: 40%;
    }

    .about-slider {
        width: 60%;
    }

    .plantations-bottom {
        padding: 0 15px;
    }

    .assortment-left {
        width: 45%;
    }

    .assortment-right {
        width: 55%;
        padding: 96px 32px;
    }

    .reviews-content {
        flex-direction: column;
    }

    .reviews-left {
        width: 100%;
    }

    .reviews-right {
        width: 100%;
    }

    .travel-row {
        align-items: flex-start;
        gap: 32px;
    }

    .travel-right {
        width: 45%;
    }

    .team-tabs__button {
        font-size: 32px;
    }

    .team-block__img {
        height: 400px;
    }

    .direction-block__panel {
        height: 400px;
    }

    .direction-tabs__button {
        font-size: 36px;
    }

    .academy-row {
        align-items: flex-start;
        gap: 24px;
    }

    .academy-left {
        width: 55%;
    }

    .academy-right {
        width: 45%;
    }

    
}

@media only screen and (max-width: 992px) {

   

    .news-block {
        gap: 18px;
    }

    .news-block__img {
        height: 160px;
    }

    .news-block__link.button-pink {
        padding: 14px;
    }

    .banner-row {        
        padding: 140px 0;
    }

    .banner__title {
        font-size: 46px;
    }

    .section-title {
        font-size: 52px;
    }

    .hero-row {
        padding: 180px 0 100px;
        min-height: 100vh;
    }

    .hero-content {
        padding: 0;
        gap: 120px;
    }

    .hero-socials {
        display: none;
    }

    .hero__title {
        font-size: 46px;
    }

    .company {
        padding: 64px 0;
    }

    .company-top {
        gap: 24px;
    }

    .company-block__text {
        font-size: 16px;
    }

    .about {
        padding: 50px 0 100px;
    }

    .about-row {
        flex-direction: column;
        align-items: center;
        gap: 38px;
    }

    .about-info {
        width: 100%;
        max-width: 100%;
    }

    .about-slider {
        width: 100%;
    }

    .about-controls {
        left: 20px;
        bottom: 20px;
    }

    .plantations {
        padding: 120px 0 30px;
    }

    .plantations-steps:after {
        top: 20px;
    }

    .plantations-tab {
        position: unset;
    }

    .plantations-tab__button {
        width: 40px;
        height: 40px;
    }

    .plantations-bottom {
        padding: 0;
    }

    .plantations-tab:first-child .plantations-block,
    .plantations-tab:last-child .plantations-block,
    .plantations-block {
        width: 100%;
        top: 50px;
        left: 0;
        transform: translate(0);
        align-items: flex-start;
        gap: 10px;
    }

    .plantations-block__text {
        text-align: left;
    }

    .plantations-block__img {
        max-width: 200px;
        height: 130px;
    }

    .assortment {
        padding: 0 0 50px;
    }

    .assortment .container {
        padding: 0;
    }

    .assortment-row {
        flex-direction: column-reverse;
        align-items: center;
        gap: 32px;
    }

    .assortment-left {
        width: calc(100% - 32px);
        max-width: 600px;
    }

    .assortment-right {
        width: 100%;
        padding: 64px 32px;
    }

    .reviews {
        padding: 50px 0 40px;
    }

    .reviews-row {
        gap: 32px;
    }

    .reviews-left .reviews-block {
        display: none;
    }

    .reviews-right .reviews-block {
        display: none;
    }

    .reviews-right {
        display: none;
    }

    .reviews-general {
        width: 100%;
        max-width: 700px;
        gap: 12px;
    }

    .reviews-general__title {
        font-size: 28px;
    }

    .reviews-slider {
        display: flex;
    }

    .reviews-slider .reviews-block {
        width: 400px;
        height: auto;
        display: flex;
        gap: 16px;
        padding: 24px;
    }

    .reviews-block__title {
        font-size: 20px;
        font-weight: 700;
    }

    .reviews-block__text {
        font-size: 16px;
    }

    .flowers {
        padding: 40px 0 100px;
    }

    .flowers-row {
        gap: 40px;
    }

    .flowers-slider {
        min-height: unset;
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .flowers-slider__block,
    .flowers-slider__block.swiper-slide-active {
        width: 280px !important;
        height: 280px !important;
    }

    .flowers-controls {
        position: relative;
        bottom: unset;
        left: unset;
        gap: 28px;
    }

    .flowers-controls .slider-controls__current,
    .flowers-controls .slider-controls__total,
    .flowers-controls .slider-controls__progress {
        display: none;
    }

    .flowers-controls__prev svg path,
    .flowers-controls__next svg path {
        fill: #EA5183;
    }

    .travel {
        padding: 60px 0;
    }

    .travel-row {
        flex-direction: column;
        align-items: center;
    }

    .travel-left {
        width: 100%;
    }

    .travel-left__list ul li {
        padding-left: 20px;
    }

    .travel-left__list ul li:before {
        left: 0;
    }

    .travel-right {
        width: 100%;
        max-width: 750px;
    }

    .founder {
        padding: 100px 0 50px;
    }

    .founder-right {
        display: none;
    }

    .founder-left {
        width: 100%;
        gap: 48px;
    }

    .founder-left__img {
        display: flex;
    }

    .founder-info__text {
        font-size: 20px;
    }

    .founder-info__name {
        font-size: 20px;
    }

    .team {
        padding: 50px 0 100px;
    }

    .team-row {
        gap: 32px;
    }

    .team-tabs {
        flex-direction: column;
        align-items: flex-start;
    }

    .team-tabs__button {
        text-align: left;
    }

    .team-content {
        gap: 32px;
    }

    .team-panel {
        flex-wrap: wrap;
        justify-content: center;
    }

    .team-block {
        max-width: 370px;
        width: calc(50% - 12px);
    }

    .direction-block {
        width: 100%;
        max-width: 720px;
    }

    .direction-block__panel {
        height: unset;
    }

    .team-block__role {
        font-size: 20px;
    }

    .team-block__number {
        font-size: 20px;
    }

    .team-block__name {
        font-size: 32px;
    }

    .community {
        padding: 64px 0;
    }

    .community-bottom {
        justify-content: space-around;
    }

    .community-block {
        max-width: 100px;
    }

    .community-block__icon {
        width: 60px;
        height: 60px;
        padding: 14px;
    }

    .community-block__link {
        font-size: 12px;
    }

    .news {
        padding: 100px 0 50px;
    }

    .news-row {
        gap: 42px;
    }

    .news-all__link {
        font-size: 20px;
    }

    .academy {
        padding: 40px 0;
    }

    .academy-row {
        flex-direction: column;
        align-items: center;
        gap: 48px;
    }

    .academy-left {
        width: 100%;
    }

    .academy-left__subtitle,
    .academy-head__subtitle {
        font-size: 32px;
    }

    .academy-right {
        width: 100%;
        max-width: 500px;
    }

    .become-team {
        padding: 40px 0 120px;
    }

    .feedback-row {
        flex-direction: column;
        align-items: center;
        padding: 74px 0;
    }

    .feedback-content {
        width: 100%;
        max-width: 700px;
    }

    .feedback-content__text {
        font-size: 18px;
    }

    .feedback-form {
        width: 100%;
        max-width: 700px;
    }

    .blog {
        padding: 80px 0;
    }

    .blog-row {
        gap: 60px;
    }

    .blog-content {
        gap: 60px 18px;
    }

    .blog-content .news-block {
        width: calc(100% / 3 - 12px);
    }

    .article {
        padding: 80px 0;
    }

    .article__title {
        font-size: 36px;
    }

    .article-content p {
        font-size: 18px;
    }

    .contacts {
        padding: 80px 0;
    }

    .contacts__title {
        font-size: 36px;
    }

    .contacts-block {
        width: calc(50% - 25px);
        gap: 10px;
    }

    .contacts-block__img {
        height: 400px;
    }

    .contacts-block__name {
        font-size: 32px;
    }

    .contacts-block__role {
        font-size: 14px;
    }

    .contacts-block__number {
        font-size: 20px;
    }

    

}

@media only screen and (max-width: 768px) {

    .company-block__text {
        font-size: 14px;
    }

}

@media only screen and (max-width: 660px) {

    

    .pagination {
        gap: 8px;
        max-width: 360px;
    }

    .pagination-list {
        gap: 8px;
    }

    .pagination-list__link {
        width: 25px;
        height: 25px;
        font-size: 12px;
        line-height: 16px;
    }

    .pagination__button {
        width: 25px;
        height: 25px;
        padding: 5px;
    }

    .container {
        padding: 0 16px;
    }

    .section-title {
        font-size: 40px;
    }

    .hero-content {
        gap: 160px;
    }

    .hero__title {
        font-size: 40px;
    }

    .hero-bottom {
        flex-direction: column-reverse;
        gap: 6px;
    }

    .company {
        padding: 48px 0;
    }

    .company-row {
        gap: 32px;
    }

    .company-top {
        gap: 16px;
    }

    .company-top p {
        font-size: 16px;
    }

    .company-content {
        gap: 32px;
    }

    .company-right {
        justify-content: center;
    }

    .company-block {
        width: calc(50% - 18px);
        gap: 16px;
    }

    .about {
        padding: 40px 0 80px;
    }

    .about-info {
        gap: 20px;
        align-items: center;
    }

    .about-info__text {
        gap: 16px;
    }

    .about-info__text p {
        font-size: 16px;
    }

    .about-controls {
        width: calc(100% - 32px);
        left: 16px;
        bottom: 16px;
        justify-content: space-between;
    }

    .about-controls .slider-controls__progress,
    .about-controls .slider-controls__current,
    .about-controls .slider-controls__total {
        display: none;
    }

    .plantations {
        padding: 60px 0 30px;
    }

    .plantations-row {
        gap: 48px;
    }

    .plantations-top {
        gap: 24px;
    }

    .plantations-top__text p {
        font-size: 16px;
    }

    .plantations-block__img {
        max-width: 260px;
        height: 180px;
        margin-top: 15px;
    }

    .assortment {
        padding: 0 0 30px;
    }

    .assortment-right {
        gap: 24px;
        padding: 60px 20px 30px;
    }

    .assortment-right__content p {
        font-size: 16px;
    }

    .assortment-right__content ul li {
        font-size: 16px;
    }

    .reviews {
        padding: 40px 0 30px;
    }

    .reviews-row {
        gap: 28px;
    }

    .reviews-general {
        padding: 20px;
    }

    .reviews-general__title {
        font-size: 20px;
    }

    .reviews-general__text {
        font-size: 12px;
    }

    .reviews-general__icon {
        width: 48px;
        height: 48px;
    }

    .reviews-slider .reviews-block {
        padding: 20px;
        gap: 12px;
    }

    .reviews-block__title {
        font-size: 14px;
    }

    .reviews-block__text {
        font-size: 12px;
    }

    .flowers {
        padding: 35px 0 60px;
    }

    .flowers-row {
        gap: 24px;
    }

    .flowers-top {
        gap: 16px;
    }

    .flowers-top__text {
        font-size: 16px;
    }

    .travel {
        padding: 40px 0;
    }

    .travel-left__content {
        gap: 16px;
    }

    .travel-left__content.hidden {
        max-height: 300px;
        overflow: hidden;
    }

    .travel-left__content.hidden:after {
        content: '';
        width: 100%;
        height: 150px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0) 12.12%, #000000 100%);
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        pointer-events: none;
    }

    .travel-left__all-button {
        display: block;
    }

    .travel-left__list ul li {
        font-size: 16px;
        padding-left: 15px;
    }

    .travel-left__content p {
        font-size: 16px;
    }

    .travel-controls {
        width: calc(100% - 20px);
        left: 10px;
        bottom: 10px;
        right: 10px;
        justify-content: space-between;
    }

    .travel-controls .slider-controls__current,
    .travel-controls .slider-controls__total,
    .travel-controls .slider-controls__progress {
        display: none;
    }

    .slider-controls__prev,
    .slider-controls__next {
        width: 17px;
        height: 17px;
    }

    .founder {
        padding: 45px 0 20px;
    }

    .founder-left {
        gap: 24px;
    }

    .founder-left__img {
        width: 75%;
        align-self: flex-start;
    }

    .founder-info {
        padding-left: 60px;
        gap: 16px;
    }

    .founder-info:before {
        width: 42px;
        height: 32px;
        top: 10px;
    }

    .founder-info__text {
        font-size: 16px;
    }

    .founder-info__name {
        font-size: 16px;
    }

    .team {
        padding: 30px 0 60px;
    }

    .team-top {
        gap: 12px;
    }

    .team-top__text {
        font-size: 16px;
    }

    .team-tabs__button {
        font-size: 24px;
    }

    .team-block__img {
        height: 320px;
    }

    .team-block__name {
        font-size: 24px;
    }

    .team-block__role {
        font-size: 16px;
    }

    .team-block__number {
        font-size: 18px;
        gap: 4px;
    }

    .team-block__number:before {
        width: 24px;
        height: 24px;
    }

    .direction-tabs__button {
        font-size: 32px;
    }

    .team-content {
        gap: 12px;
    }

    .community {
        padding: 42px 0;
    }

    .community-row {
        gap: 32px;
    }

    .community-top {
        gap: 16px;
    }

    .community-top__text {
        font-size: 16px;
    }

    .community-block {
        max-width: 65px;
    }

    .community-block__icon {
        width: 40px;
        height: 40px;
        padding: 10px;
    }

    .community-clue {
        top: -10px;
        right: -10px;
    }

    .community-clue__info {
        width: 250px;
    }

    .news {
        padding: 70px 0 35px;
    }

    .news-row {
        gap: 32px;
    }

    .news-all__link {
        font-size: 16px;
    }

    .academy {
        padding: 30px 0;
    }

    .academy-left {
        gap: 24px;
    }

    .academy-left__subtitle,
    .academy-head__subtitle {
        font-size: 24px;
    }

    .academy-left__text {
        font-size: 16px;
    }

    .academy-left__list ul {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: unset;
        gap: 12px;
    }

    .academy-left__list ul li {
        width: calc(50% - 6px);
        min-height: 120px;
        padding: 24px 8px;
        background-color: #ea5183;
        border-radius: 6px;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 13px;
        color: #ffffff;
    }

    .become-team {
        padding: 30px 0 60px;
    }

    .become-team-row {
        gap: 16px;
    }

    .become-team__text {
        font-size: 16px;
    }

    .feedback-row {
        gap: 36px;
    }

    .feedback-content {
        gap: 20px;
    }

    .feedback-content__img {
        margin-top: 14px;
    }

    .feedback-content__text {
        font-size: 16px;
    }

    .feedback-form__recaptcha {
        width: 180px;
    }

    .blog {
        padding: 70px 0;
    }

    .blog-row {
        gap: 48px;
    }

    .blog-content {
        gap: 30px 12px;
    }

    .blog-content .news-block {
        width: calc(50% - 6px);
    }

    .article {
        padding: 60px 0;
    }

    .article-row {
        gap: 32px;
    }

    .article__title {
        font-size: 24px;
    }

    .article-content {
        gap: 18px;
    }

    .article-content p {
        font-size: 16px;
    }

    .article__link.button-pink {
        font-size: 14px;
        padding: 14px;
    }

    .contacts {
        padding: 60px 0;
    }

    .contacts__title {
        font-size: 24px;
    }

    .contacts-content {
        gap: 40px 24px;
    }

    .contacts-block {
        width: calc(50% - 12px);
    }

    .contacts-block__img {
        height: 300px;
    }

    .contacts-block__number {
        font-size: 16px;
    }

    .contacts-block__number:before {
        width: 24px;
        height: 24px;
    }

    
}

@media only screen and (max-width: 480px) {

    .hero {
        background-image: url("../img/main/hero-mobile-bg.webp");
    }

    .plantations-bottom {
        gap: 28px;
    }

    .plantations-steps:after {
        top: 14px;
    }

    .plantations-tab__button {
        width: 28px;
        height: 28px;
        padding: 4px;
    }

    .plantations-block__text {
        margin-top: 0;
    }

    .travel-left__title.section-title {
        font-size: 28px;
    }

    .team-block {
        gap: 4px;
    }

    .team-block__img {
        height: 200px;
        margin-bottom: 4px;
    }

    .team-tabs__button {
        font-size: 20px;
    }

    .team-block__name {
        font-size: 20px;
    }

    .team-block__role {
        font-size: 13px;
    }

    .team-block__number {
        font-size: 12px;
        gap: 2px;
    }

    .team-block__number:before {
        width: 16px;
        height: 16px;
    }

    .direction-tabs__button {
        font-size: 26px;
    }

    .travel-videos__item-player {
        height: 130px;
    }

    .travel-videos__item-button {
        width: 50px;
        height: 50px;
    }

    .travel-videos__item-button svg {
        width: 25px;
        height: 25px;
    }

    .news-block {
        gap: 10px;
    }

    .news-block__img {
        height: 120px;
    }

    .news-block__text {
        font-size: 12px;
    }

    .news-block__link.button-pink {
        padding: 8px;
        font-size: 10px;
        border-radius: 4px;
    }

    .contacts-block__img {
        height: 180px;
        margin-bottom: 5px;
    }

    .contacts-block__role {
        font-size: 11px;
    }

    .contacts-block__number {
        font-size: 14px;
    }

    .contacts-block__number:before {
        width: 16px;
        height: 16px;
    }

    .contacts-block__name {
        font-size: 22px;
    }

    .banner__title {
        font-size: 40px;
    }

}

@media only screen and (max-width: 360px) {

    .company-block__text {
        font-size: 12px;
    }

    .contacts-content {
        justify-content: center;
    }

    .contacts-block {
        width: 100%;
        max-width: 200px;
    }

   

}

.wpcf7-submit  {
    cursor: pointer;
    transition-duration: .3s;
}

/*
.header {
    opacity: 0;
    pointer-events: none;
}
 */

/* ===== MOBILE HEADER FIX ===== */
@media only screen and (max-width: 992px) {
    /* Header всегда fixed на мобильных */
    .header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 1000 !important;
        background-color: rgba(0, 0, 0, 0.9) !important;
    }

    .header.fixed-mobile {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 1000 !important;
        background-color: rgba(0, 0, 0, 0.95) !important;
        backdrop-filter: blur(10px) !important;
    }

    .header-bottom {
        display: none !important;
    }

    .header-bottom.active {
        display: flex !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        min-height: 100vh !important;
        background-color: rgba(0, 0, 0, 0.98) !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 20px !important;
        z-index: 9999 !important;
        overflow-y: auto !important;
    }

    .header-burger {
        display: flex !important;
        z-index: 10000 !important;
        position: relative !important;
    }

    .header-bottom.active .nav-menu {
        flex-direction: column !important;
        gap: 20px !important;
        width: 100% !important;
        align-items: center !important;
    }

    .header-bottom.active .menu-item {
        width: 100% !important;
        text-align: center !important;
    }

    .header-bottom.active .nav-link {
        font-size: 20px !important;
        padding: 12px 0 !important;
        display: block !important;
        color: #fff !important;
    }

    .nav-menu__logo {
        display: none !important;
    }
}

@media only screen and (max-width: 576px) {
    .header-bottom.active .nav-menu {
        gap: 16px !important;
    }

    .header-bottom.active .nav-link {
        font-size: 18px !important;
        padding: 10px 0 !important;
    }
}
























/* Точки на карте */

.xmap {
    position: relative;
}

.xpoint {
    position: absolute;
    display: flex;
    width: 11px;
    height: 11px;
    border-radius: 1000px;
    background-color: #EA5183;
    cursor: pointer;
}

.xpoint::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 48%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    border-radius: 1000px;
    background-color: #ea518445;
    animation: pulse 1.3s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
    }
}



.xpoint-tooltip {
    position: absolute;
    top: -54px;
    left: -10px;
    width: 120px;
    height: auto;
    aspect-ratio: 100/47;
    background-image: url('../img/main/tooltip-sm.svg');
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;

    opacity: 0;
    visibility: hidden;

    transition-duration: .3s;

    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-top: 1px;
    padding-bottom: 16px;
    padding-left: 8px;
    padding-right: 15px;
}

.xpoint-tooltip--big {
top: -71px;
  left: -15px;
    width: 155px;
        aspect-ratio: 146/69;
    background-image: url('../img/main/tooltip-big.svg');

    padding-bottom: 22px;
    padding-right: 8px;
    padding-left: 7px;
}

.xpoint:hover .xpoint-tooltip {
    opacity: 1;
    visibility: visible;
}

.xpoint-tooltip-logo {
    width: 21px !important;
    height: auto;
}

.xpoint-tooltip-text {
    font-weight: 500;
    font-size: 12px;
    line-height: 100%;
    text-transform: uppercase;
    color: #000;
    margin-left: 4px;
}

.xmap-ekvador .xpoint-1 {
    top: 30%;
    left: 38%;
    z-index: 40;
} 

.xmap-ekvador .xpoint-25 {
    top: 28.5%;
    left: 40.5%;
    z-index: 39;
} 

.xmap-ekvador .xpoint-28 {
    top: 30.5%;
    left: 43%;
    z-index: 38;
} 

.xmap-ekvador .xpoint-8 {
    top: 32%;
    left: 40.5%;
    z-index: 41;
}





.xmap-ekvador .xpoint-2 {
    top: 24%;
    left: 38%;
    z-index: 36;
}

.xmap-ekvador .xpoint-16 {
    top: 23.5%;
    left: 41%;
    z-index: 35;
}

.xmap-ekvador .xpoint-9 {
    top: 24.5%;
    left: 44%;
    z-index: 34;
}

.xmap-ekvador .xpoint-22 {
    top: 26%;
    left: 46.5%;
    z-index: 33;
}

.xmap-ekvador .xpoint-14 {
    top: 22%;
    left: 36%;  
    z-index: 32;
}

.xmap-ekvador .xpoint-13 {
    top: 21%;
    left: 39%;
    z-index: 31;
}

.xmap-ekvador .xpoint-17 {
    top: 21%;
    left: 42.5%;
    z-index: 30;
}

.xmap-ekvador .xpoint-30 {
    top: 22.8%;
    left: 46.5%;
    z-index: 29;
}

.xmap-ekvador .xpoint-27 {
    top: 18.8%;
    left: 36.5%;
    z-index: 28;
}

.xmap-ekvador .xpoint-4 {
    top: 18%;
    left: 40.5%;
    z-index: 27;
}

.xmap-ekvador .xpoint-4 .xpoint-tooltip-text {
    font-size: 10px;
}

.xmap-ekvador .xpoint-10 {
  top: 20%;
  left: 45.5%;
  z-index: 24;
}

.xmap-ekvador .xpoint-26 {
  top: 21%;
  left: 49%;
  z-index: 23;
}

.xmap-ekvador .xpoint-5 {
  top: 17%;
  left: 31%;
  z-index: 22;
}

.xmap-ekvador .xpoint-29 {
  top: 16%;
  left: 34.5%;
  z-index: 21;
}

.xmap-ekvador .xpoint-29 .xpoint-tooltip-text {
    font-size: 9px;
}

.xmap-ekvador .xpoint-23 {
  top: 16%;
  left: 38%;
  z-index: 20;
}

.xmap-ekvador .xpoint-21 {
  top: 16.5%;
  left: 43%;
  z-index: 19;
}

.xmap-ekvador .xpoint-21 .xpoint-tooltip-text {
    font-size: 11px;
}

.xmap-ekvador .xpoint-3 {
  top: 17.2%;
  left: 46.5%;
  z-index: 18;
}

.xmap-ekvador .xpoint-20 {
  top: 16.5%;
  left: 50.5%;
  z-index: 17;
}

.xmap-ekvador .xpoint-12 {
  top: 17%;
  left: 54.5%;
  z-index: 16;
}







.xmap-ekvador .xpoint-15 {
  top: 12%;
  left: 39.5%;
  z-index: 15;
}

.xmap-ekvador .xpoint-18 {
  top: 9.5%;
  left: 41.5%;
  z-index: 14;
}

.xmap-ekvador .xpoint-11 {
  top: 4.5%;
  left: 41.5%;
  z-index: 13;
}

.xmap-ekvador .xpoint-7 {
  top: 6.8%;
  left: 44.5%;
  z-index: 12;
}

.xmap-ekvador .xpoint-7 .xpoint-tooltip-text {
    font-size: 10px;
}

.xmap-ekvador .xpoint-24 {
  top: 8.2%;
  left: 48.5%;
  z-index: 11;
}

.xmap-ekvador .xpoint-19 {
  top: 11.2%;
  left: 50.5%;
  z-index: 10;
}

.xmap-ekvador .xpoint-19 .xpoint-tooltip-text {
    font-size: 10px;
}









.xmap-ekvador .xpoint-6 {
  top: 20%;
  left: 52%;
  z-index: 22;
}

.direction-block {
    width: 485px;
    flex-shrink: 0;
}

.direction-block__panel {
    min-width: 485px;
    height: auto;
    max-height: initial;
    min-height: initial;
    aspect-ratio: 484/540;
}

.xmap-ekvador-map {

}







/* Кения */


.xmap-kenia .xpoint-27 {
    top: 75%;
    left: 40.5%;
    z-index: 47;
}

.xmap-kenia .xpoint-26 {
    top: 73%;
    left: 38.5%;
    z-index: 46;
}

.xmap-kenia .xpoint-25 {
    top: 71%;
    left: 42.5%;
    z-index: 30;
}

.xmap-kenia .xpoint-24 {
    top: 67%;
    left: 45.5%;
    z-index: 29;
}

.xmap-kenia .xpoint-23 {
    top: 68%;
    left: 38.5%;
    z-index: 45;
}

.xmap-kenia .xpoint-22 {
    top: 67%;
    left: 35.5%;
    z-index: 44;
}

.xmap-kenia .xpoint-21 {
    top: 63%;
    left: 36.5%;
    z-index: 43;
}

.xmap-kenia .xpoint-20 {
    top: 63%;
    left: 40%;
    z-index: 25;
}

.xmap-kenia .xpoint-19 {
    top: 61%;
    left: 42%;
    z-index: 24;
}

.xmap-kenia .xpoint-18 {
    top: 59%;
    left: 44%;
    z-index: 23;
}

.xmap-kenia .xpoint-17 {
    top: 57%;
    left: 42%;
    z-index: 22;
}

.xmap-kenia .xpoint-16 {
    top: 58%;
    left: 32%;
    z-index: 41;
}

.xmap-kenia .xpoint-15 {
    top: 55.5%;
    left: 30%;
    z-index: 38;
}

.xmap-kenia .xpoint-14 {
    top: 54%;
    left: 28%;
    z-index: 37;
}

.xmap-kenia .xpoint-13 {
    top: 49%;
    left: 37%;
    z-index: 17;
}

.xmap-kenia .xpoint-12 {
    top: 47%;
    left: 39%;
    z-index: 16;
}

.xmap-kenia .xpoint-11 {
    top: 46.5%;
    left: 36%;
    z-index: 15;
}

.xmap-kenia .xpoint-10 {
    top: 47.5%;
    left: 32%;
    z-index: 29;
}

.xmap-kenia .xpoint-9 {
    top: 50.5%;
    left: 29%;
    z-index: 30;
}

.xmap-kenia .xpoint-8 {
    top: 41.5%;
    left: 36%;
    z-index: 8;
}

.xmap-kenia .xpoint-7 {
    top: 42.5%;
    left: 32%;
    z-index: 7;
}

.xmap-kenia .xpoint-6 {
    top: 43.5%;
    left: 28%;
    z-index: 5;
}

.xmap-kenia .xpoint-5 {
    top: 42.5%;
    left: 25%;
    z-index: 4;
}

.xmap-kenia .xpoint-4 {
    top: 44.5%;
    left: 23%;
    z-index: 30;
}

.xmap-kenia .xpoint-3 {
    top: 46.5%;
    left: 22%;
    z-index: 30;
}

.xmap-kenia .xpoint-2 {
    top: 36.5%;
    left: 18%;
    z-index: 1;
}

.xmap-kenia .xpoint-1 {
    top: 36.5%;
    left: 15%;
    z-index: 1;
}

.xmap-kenia .xpoint-28 {
    top: 42.5%;
    left: 47%;
    z-index: 14;
}

.xmap-kenia .xpoint-29 {
    top: 41.5%;
    left: 51%;
    z-index: 13;
}

.xmap-kenia .xpoint-30 {
    top: 40.5%;
    left: 53%;
    z-index: 12;
}

.xmap-kenia .xpoint-31 {
    top: 39.5%;
    left: 55%;
    z-index: 11;
}

.xmap-kenia .xpoint-32 {
    top: 55.5%;
    left: 35%;
    z-index: 40;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 0;
    object-fit: cover;
}





/* Колумбия */


.xmap-columbia .xpoint-5 {
  top: 57.5%;
  left: 38%;
  z-index: 20;
}

.xmap-columbia .xpoint-3 {
  top: 59%;
  left: 42%;
  z-index: 19;
}

.xmap-columbia .xpoint-9 {
  top: 58%;
  left: 45%;
  z-index: 18;
}

.xmap-columbia .xpoint-1 {
  top: 59%;
  left: 48%;
  z-index: 17;
}

.xmap-columbia .xpoint-8 {
  top: 58%;
  left: 51%;
  z-index: 16;
}

.xmap-columbia .xpoint-6 {
  top: 54%;
  left: 42%;
  z-index: 15;
}

.xmap-columbia .xpoint-7 {
  top: 54%;
  left: 45.5%;
  z-index: 15;
}

.xmap-columbia .xpoint-2 {
  top: 55.5%;
  left: 48.5%;
  z-index: 14;
}

.xmap-columbia .xpoint-4 {
  top: 50.5%;
  left: 48.5%;
  z-index: 13;
}

.xmap-columbia .xpoint-4 .xpoint-tooltip-text { 
    font-size: 11px;
}

.xmap-columbia .xpoint-9 .xpoint-tooltip-text {
    font-size: 10px;
}

.xmap-columbia .xpoint-10 {
  top: 48%;
  left: 36%;
  z-index: 12;
}


@media (max-width: 550px) {

    .direction-block {
        width: 100%;
    }

    .direction-block__panel {
        min-width: initial;
        width: 100%;
    }

    .xpoint {
        width: 2%;
        height: auto;
        aspect-ratio: 1/1;
    }

}





/* Contact Form 7 */

.wpcf7-form br {
    display: none;
}

.wpcf7-form .wpcf7-spinner {
    display: none;
}

.wpcf7-form .wpcf7-response-output {
    display: none;
}

.wpcf7-form .wpcf7-not-valid-tip {
    display: none;
}

.wpcf7-not-valid {
    background-color: #ea518321;
}

.wpcf7 {
    width: 100%;
}

.wpcf7-form-control-wrap {
    width: 100%;
}


.popup-success-message {
    display: flex;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 650px;
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    border-radius: 10px;
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding-left: 40px;
    padding-right: 40px;
    font-weight: 600;
    text-align: center;
    font-size: 22px;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    background-color: #fff;
    color: #fff;

    transition-duration: .3s;

    backdrop-filter: blur(90px);
    background: rgba(217, 217, 217, 0.04);
}

.show.popup-success-message  {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.close-success-message {
    position: absolute;
    right: 25px;
    top: 25px;
    width: 25px;
    height: auto;
    aspect-ratio: 1/1;
    cursor: pointer;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"%3E%3Cpath d="M4 4L20 20M20 4L4 20" stroke="%23FFFFFF" stroke-width="2" stroke-linecap="round" /%3E%3C/svg%3E');
}

@media (max-width: 650px) {

    .popup-success-message {
        max-width: 96%;
        width: 100%;
        font-size: 18px;
        border-radius: 6px;
    }

}

.wp-block-list {
    font-weight: 400;
    font-size: 20px;
    line-height: 110%;
    color: #555555;
}


.wp-block-list li {
    margin-bottom: 4px;
}

.team-block__number {
    display: none !important;
}

@media (max-width: 660px) {

    .wp-block-list li {
        font-size: 16px;
    }

}

