@font-face {
    font-family: Montserrat;
    font-weight: 100 900;
    font-style: normal;
    src: url("fonts/Montserrat/Montserrat-VariableFont_wght.ttf");
}

@font-face {
    font-family: Montserrat;
    font-weight: 100 900;
    font-style: italic;
    src: url("fonts/Montserrat/Montserrat-Italic-VariableFont_wght.ttf");
}

@font-face {
    font-family: Playfair Display;
    font-weight: 400 900;
    font-style: normal;
    src: url("fonts/PlayfairDisplay/PlayfairDisplay-VariableFont_wght.ttf");
}

@font-face {
    font-family: Playfair Display;
    font-weight: 400 900;
    font-style: italic;
    src: url("fonts/PlayfairDisplay/PlayfairDisplay-Italic-VariableFont_wght.ttf");
}


.app-main {
    display: block;
    background: white;
    font-family: 'Montserrat';
}



pre {
    width: 100vh;
}

body {
    overflow-x:hidden;
}

a.find {
    background-color: transparent;
    position: relative;
    overflow: hidden;
    color: white;
}
a.find:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(to right, rgba(2, 188, 184, 1) 0%, rgba(2, 188, 184, 1) 50%, rgba(0,0,0,0) 50%,rgba(0,0,0,0) 100%);
    transition: left .3s;
}
a.find:hover:before {
    left: 0;
}
a.find:hover span {
    color: black!important;
}
a.find:hover svg > * {
    fill: black;
}
a.find svg > * {
    transition: all 0.35s
}
a.find span, a.find svg {
    position: relative;
    display: block;
    transition: all 0.3s
}


header {
    position: relative;
    width: 100%;
    background: transparent;
    /*background: linear-gradient(180deg, #091A18 37.19%, rgba(9, 26, 24, 0.00) 106.42%);*/
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    z-index: 1000;
    height: 134px;
}

header .header-container {
    margin-left: auto;
    margin-right: auto;
    max-width: 1440px;
    height: 133px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 24px 135px;
    align-items: center;
}

header ul {
    display: flex;
    justify-content: space-between;
    column-gap: 48px;
    list-style-type: none;
    margin: 0;
    padding: 16px 0;
}

header ul li {
    list-style: none;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.54px;
    text-transform: uppercase;
    width: 94px;
    text-align: center;
}

header ul li a {
    color: white;
}

header ul li a:hover {
    color: white;
}

header img.header-logo {
    list-style: none;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.54px;
    text-transform: uppercase;
    width: 192px;
    height: 69px;
    margin-left: 24px;
    margin-right: 24px;
}

footer {
    padding-top: 100px;
    padding-bottom: 100px;
    width: 100%;
    background: radial-gradient(66.92% 100% at 50% 100%, #0D2220 0%, #071513 84.77%);
    /*border-top: 1px solid #16302D;*/
    position: relative;
}

footer .comma-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    column-gap: 25px;
    margin-bottom: 40px;
}

footer .comma-footer .double-stripe {
    height: 4px;
    border-top: 1px solid #16302D;
    border-bottom: 1px solid #16302D;
    flex: 1;
}


/*footer:before {*/
/*    position: absolute;*/
/*    content: '';*/
/*    background: #16302D;*/
/*    height: 1px;*/
/*    width: 1170px;*/
/*    top: 46px;*/
/*    right: auto;*/
/*    left:50%;*/
/*    transform:translate(-50%, 0);*/
/*}*/
/*footer:after {*/
/*    position: absolute;*/
/*    content: '';*/
/*    background: #16302D;*/
/*    height: 1px;*/
/*    width: 1170px;*/
/*    top: 50px;*/
/*    right: auto;*/
/*    left:50%;*/
/*    transform:translate(-50%, 0);*/
/*}*/


footer .footer-logo {
    display: block;
    width: 226px;
    height: 81px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

footer .info-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 30px;
    padding-bottom: 30px;
    max-width: 1170px;
    margin: 40px auto;
    border-top: 1px solid #16302D;
    border-bottom: 1px solid #16302D;
}




footer .info-container > div {
    flex: 1;
    padding-bottom: 20px;
    padding-top: 20px;
}

footer .info-container > div:not(:last-child) {
    border-right: 1px solid #16302D;
}

footer .info-container > div h6 {
    color: #9BB8B4;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    margin-bottom: 22px;
}

footer .info-container > div p, footer .info-container > div span {
    color: #FFF;
    text-align: center;
    font-family: Playfair Display;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    margin: 0;
}

footer .info-container > div .flex-container {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 15px;
    margin-left: auto;
    margin-right: auto;
}


footer .footer-copyright {
    color: #9BB8B4;
    text-align: center;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}

footer .footer-copyright > div {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 32px;
    margin-top: 24px;
    margin-left: auto;
}

footer .footer-copyright > div a {
    color: #9BB8B4;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    text-decoration-line: underline;
    cursor: pointer;
}







.swiper-overflow-container {
    overflow-x: hidden; /* prevent horizontal scroll */
}

.swiper-overflow-container .container {
    overflow: visible; /* if your container has overflow by default */
}

.swiper-overflow-container .swiper-container {
    overflow: visible; /* remove swiper container overflow */
}

.mm-ocd--open {
    background: rgba(15, 19, 34, 0.79) !important;
}

.index-container {
    width: 100%;
    background: #071513;

}

.index-container > main {
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.index-container > main:before {
    content: url("/web/images/icon/curve-large-bg.svg");
    max-width: 1440px;
    /*left: auto;*/
    /*right: auto;*/
    top: 555px;
    /*top: 50%;*/
    left: 47.5%;
    transform:  translateX(-50%);
    position: absolute;
}


.index-container > main {
    margin-left: auto;
    margin-right: auto;
}


.index-container > main .europe-map-container {
    height: 900px;
    width: 100%;
    padding-top: 195px;
    position: relative;
}
.index-container > main .europe-map-container #europe-map {
    position: absolute;
    left: 50%;
    transform:  translateX(-50%);
    /*transform: scaleY(1.3);*/
    right: 0;
    /*top: 0;*/
    top: -246px;
    z-index: 100;
}



.index-container > main .europe-map-container h6 {
    color: #02BCB8;
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 3.96px;
    text-transform: uppercase;
    margin-left: auto;
    margin-right: auto;
    z-index: 110;
    position: relative;
    pointer-events: none;
}

.index-container > main .europe-map-container h1 {
    color: #FFF;
    text-align: center;
    font-family: Playfair Display;
    font-size: 76px;
    font-style: normal;
    font-weight: 400;
    line-height: 70px;
    margin-top: 11px;
    margin-left: auto;
    margin-right: auto;
    z-index: 150;
    position: relative;
    pointer-events: none;
}

.index-container > main .europe-map-container h1 i {
    font-weight: 500;
}

.index-container > main .europe-map-container .btn.compass {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 120px;
    position: relative;
    padding: 0;
    width: fit-content;
    z-index: 110;
}

.index-container > main .europe-map-container .btn.compass span {
    position: absolute;
    left: calc(50% - 42px);
    top: calc(50% - 8px);
    width: 84px;
    height: 16px;
    color: #FFF;
    text-align: center;
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 1.82px;
    text-transform: uppercase;
}

/*.index-container > main .europe-map-container .btn.compass svg g {*/
/*    transition: all 0.9s;*/
/*}*/

/*.index-container > main .europe-map-container .btn.compass svg {*/
/*    transition: all 0.9s;*/
/*}*/

/*.index-container > main .europe-map-container .btn.compass:hover svg g {*/
/*    opacity: 1;*/
/*}*/

/*.index-container > main .europe-map-container .btn.compass:hover svg  {*/
/*    transform: scale(1.1);*/
/*}*/



.index-container > main .country-gallery-container,
.details-container > main .country-gallery-container  {
    margin-top: 100px;
    position: relative;
    z-index: 110;
}

.index-container > main .country-gallery-container {
    margin-top: 0;
}


.index-container > main .country-gallery-container h2,
.index-container > main .info-container > h2,
.index-container > main .set-gallery-container h2,
.details-container > main .country-gallery-container h2,
.details-container > main .info-container > h2,
.med-container > main .info-container > h2,
.details-container > main .set-gallery-container h2 {
    color: #FFF;
    text-align: center;
    font-family: Playfair Display;
    font-size: 56px;
    font-style: normal;
    font-weight: 400;
    line-height: 70px;
    margin-top: 11px;
    margin-left: auto;
    margin-right: auto;
}

.index-container > main .country-gallery-container h2 i,
.index-container > main .info-container > h2 i,
.details-container > main .country-gallery-container h2 i,
.details-container > main .set-gallery-container h2 i,
.med-container > main .info-container > h2 i,
.details-container > main .info-container > h2 i {
    border-bottom: 1px solid #073F3B;
}




.index-container > main .country-gallery-container h2 i,
.details-container > main .country-gallery-container h2 i {
    font-weight: 500;
}


.index-container > main .country-gallery-container > h6,
.index-container > main .info-container > h6,
.index-container > main .set-gallery-container > h6,
.med-container > main .info-container > h6,
.details-container > main .country-gallery-container > h6,
.details-container > main .info-container > h6,
.details-container > main .set-gallery-container > h6 {
    color: #02BCB8;
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 3.96px;
    text-transform: uppercase;
    margin-left: auto;
    margin-right: auto;
}

.index-container .country-gallery-container .land-swiper.swiper,
.details-container .country-gallery-container .land-swiper.swiper {
    width: 100%;
    height: 640px;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;

}

.index-container .country-gallery-container .land-swiper,
.details-container .country-gallery-container .land-swiper {
    margin-top: 82px;
    margin-bottom: 180px;
}

.index-container .country-gallery-container .land-swiper .swiper-slide,
.details-container .country-gallery-container .land-swiper .swiper-slide {
    width: 370px;
    height: 505px;
}

.index-container .country-gallery-container .land-swiper .swiper-slide .swiper-container,
.details-container .country-gallery-container .land-swiper .swiper-slide .swiper-container {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    transition: all 0.9s;
    z-index: 10;
}

.index-container .country-gallery-container .land-swiper .swiper-slide img,
.details-container .country-gallery-container .land-swiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    pointer-events: none;
}

.index-container .country-gallery-container .land-swiper .swiper-slide .swiper-container:before,
.details-container .country-gallery-container .land-swiper .swiper-slide .swiper-container:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(7, 21, 19, 0.00) 0%, rgba(7, 21, 19, 0.88) 102.18%);
    border-radius: 10px;
    z-index: 100;
    transition: all 0.9s linear;
}

.index-container .country-gallery-container .land-swiper .swiper-slide:hover .swiper-container,
.details-container .country-gallery-container .land-swiper .swiper-slide:hover .swiper-container {
    width: 403px;
    height: 541px;
}

.index-container .country-gallery-container .land-swiper .swiper-slide:not(.swiper-slide-active):hover .swiper-container:before,
.details-container .country-gallery-container .land-swiper .swiper-slide:not(.swiper-slide-active):hover .swiper-container:before {
    background-image: linear-gradient(180deg, rgba(7, 21, 19, 0.00) 50.02%, rgba(7, 21, 19, 0.76) 102.18%);
    opacity: 0;
}

.index-container .country-gallery-container .land-swiper .swiper-slide.swiper-slide-active .swiper-container:before,
.details-container .country-gallery-container .land-swiper .swiper-slide.swiper-slide-active .swiper-container:before {
    background-image: linear-gradient(180deg, rgba(7, 21, 19, 0.00) 50.02%, rgba(7, 21, 19, 0.76) 102.18%)!important;
}

.index-container .country-gallery-container .land-swiper .swiper-slide.swiper-slide-active .swiper-container,
.details-container .country-gallery-container .land-swiper .swiper-slide.swiper-slide-active .swiper-container {
    width: 403px;
    height: 541px;
}

.index-container .country-gallery-container .land-swiper .swiper-slide .swiper-container .border,
.details-container .country-gallery-container .land-swiper .swiper-slide .swiper-container .border {
    width: calc(100% - 24px);
    height: calc(100% - 24px);
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.50)!important;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: absolute;
}

.index-container .country-gallery-container .land-swiper .swiper-slide .countryName,
.details-container .country-gallery-container .land-swiper .swiper-slide .countryName {
    color: #FFF;
    text-align: center;
    font-family: Playfair Display;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 70px;
    margin-bottom: 17px;
    transition: 0.9s;
    z-index: 1000;
}

.index-container .country-gallery-container .land-swiper .swiper-slide.swiper-slide-active .countryName,
.details-container .country-gallery-container .land-swiper .swiper-slide.swiper-slide-active .countryName {
    margin-bottom: 52px;
}

.index-container .country-gallery-container .land-swiper .swiper-slide:hover .countryName,
.details-container .country-gallery-container .land-swiper .swiper-slide:hover .countryName {
    margin-bottom: 52px!important;
}

.index-container .country-gallery-container .land-swiper .swiper-slide button.btn.next,
.details-container .country-gallery-container .land-swiper .swiper-slide button.btn.next {
    position: absolute;
    bottom: -47px;
    /*display: none;*/
    z-index: 201;
    cursor: pointer;
    transition: all 0.35s linear;
}

.index-container .country-gallery-container .land-swiper .swiper-slide:not(.swiper-slide-active) button.btn.next,
.details-container .country-gallery-container .land-swiper .swiper-slide:not(.swiper-slide-active) button.btn.next {
    opacity: 0;
}

.index-container .country-gallery-container .land-swiper .swiper-slide.swiper-slide-active button.btn.next,
.details-container .country-gallery-container .land-swiper .swiper-slide.swiper-slide-active button.btn.next {
    display: block;
}

.index-container .country-gallery-container .land-swiper.swiper-slide:hover button.btn.next,
.details-container .country-gallery-container .land-swiper.swiper-slide:hover button.btn.next {
    display: block;
    /*opacity: 1;*/
}

.index-container .country-gallery-container .land-swiper .btn.next:hover svg .ring,
.details-container .country-gallery-container .land-swiper .btn.next:hover svg .ring {
    transition: all 0.35s linear;
}

/*.swiper-slide:hover button.btn.next:hover {*/
/*    transform: rotate(-45deg)*/
/*}*/

.index-container .country-gallery-container .land-swiper .swiper-slide:hover button.btn.next:hover .ring,
.details-container .country-gallery-container .land-swiper .swiper-slide:hover button.btn.next:hover .ring {
    opacity: 0.5;
}

.index-container > main .info-container,
.details-container > main .info-container {
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
}


.index-container > main .info-container .items-container,
.details-container > main .info-container .items-container {
    display: flex;
    justify-content: center;
    column-gap: 30px;
    margin-top: 64px;
}

.index-container > main .info-container .items-container .item,
.details-container > main .info-container .items-container .item {
    padding: 32px;
    width: 270px;

}

.index-container > main .info-container .items-container .item h5,
.details-container > main .info-container .items-container .item h5 {
    color: #FFF;
    font-size: 19px;
    font-style: normal;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 18px;
}

.index-container > main .info-container .items-container .item p,
.details-container > main .info-container .items-container .item p {
    color: #9BB8B4;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}

.index-container > main .find-travel-block,
.details-container > main .find-travel-block {
    margin-left: auto;
    margin-right: auto;
    max-width: 1265px;
    height: 433px;
    position: relative;
    margin-top: 150px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.index-container > main .find-travel-block::before,
.details-container > main .find-travel-block::before {
    content: "";
    background: url("/web/images/background/abstract-water-ocean-waves-texture-background.jpg"), lightgray 50% / cover no-repeat;
    right: 0;
    bottom: 0;
    z-index: 10;
    border-radius: 20px;
    position: absolute;
    opacity: 0.5;
    width: 100%;
    height: 100%;
}

.index-container > main .find-travel-block svg.back-lines,
.details-container > main .find-travel-block svg.back-lines {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 20;
    pointer-events: none;
}

.index-container > main .find-travel-block .content-container,
.details-container > main .find-travel-block .content-container {
    margin-left: 74px;
    margin-right: 74px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    z-index: 100;
}

.index-container > main .find-travel-block .content-container > span,
.details-container > main .find-travel-block .content-container > span {
    color: #FFF;
    font-family: Playfair Display;
    font-size: 48px;
    font-weight: 600;
    line-height: 70px;
    max-width: 758px;
}

.index-container > main .find-travel-block .content-container > span i,
.details-container > main .find-travel-block .content-container > span i {
    border-bottom: 1px solid rgba(255, 255, 255, 0.33);
    padding-bottom: 6px;
}

.index-container > main .find-travel-block .content-container > a,
.details-container > main .find-travel-block .content-container > a {
    display: inline-flex;
    height: 68px;
    padding: 24px 36px;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.42);
    background: rgba(9, 25, 24, 0.90);
    cursor: pointer;
}

.index-container > main .find-travel-block .content-container > a span,
.details-container > main .find-travel-block .content-container > a span {
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-decoration-line: underline;
}

.index-container > main .number-info-container,
.details-container > main .number-info-container {
    max-width: 1170px;
    display: flex;
    justify-content: space-between;
    margin-left: auto;
    margin-right: auto;
    margin-top: 120px;
}

.index-container > main .number-info-container .info,
.details-container > main .number-info-container .info {
    padding: 28px 108px;
}

.index-container > main .number-info-container .info:not(:last-child),
.details-container > main .number-info-container .info:not(:last-child) {
    padding: 28px 108px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.index-container > main .number-info-container .info .num,
.details-container > main .number-info-container .info .num {
    color: #FFF;
    text-align: center;
    font-family: Playfair Display;
    font-size: 48px;
    font-style: italic;
    font-weight: 600;
    line-height: 70px;
    display: block;
    margin-bottom: 10px;
}

.index-container > main .number-info-container .info .text,
.details-container > main .number-info-container .info .text {
    color: #9BB8B4;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    display: block;
    width: max-content;
}

.index-container > main .health-container,
.details-container > main .health-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 155px;
}

.index-container > main .health-container img,
.details-container > main .health-container img {
    width: 560px;
    height: 489px;
    border-radius: 10px;
    object-fit: cover;
    background: linear-gradient(180deg, rgba(7, 21, 19, 0.00) 0%, rgba(7, 21, 19, 0.88) 102.18%);
}

.index-container > main .health-container .content-container,
.details-container > main .health-container .content-container {
    max-width: 560px;
}

.index-container > main .health-container .content-container h6,
.details-container > main .health-container .content-container h6 {
    color: #02BCB8;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3.96px;
    text-transform: uppercase;
    text-align: left;
}

.index-container > main .health-container .content-container h3,
.details-container > main .health-container .content-container h3 {
    color: #FFF;
    font-family: Playfair Display;
    font-size: 56px;
    font-style: normal;
    font-weight: 400;
    line-height: 70px;
    margin-top: 32px;
}

.index-container > main .health-container .content-container h3 i,
.details-container > main .health-container .content-container h3 i {
    font-weight: 600;
}

.index-container > main .health-container .content-container p,
.details-container > main .health-container .content-container p {
    color: #9BB8B4;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin-top: 40px;
    margin-bottom: 40px;
}

.index-container > main .health-container .content-container > a,
.details-container > main .health-container .content-container > a {
    display: inline-flex;
    height: 68px;
    padding: 24px 36px;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.42);
    background: rgba(9, 25, 24, 0.90);
    cursor: pointer;
}

.index-container > main .health-container .content-container > a span,
.details-container > main .health-container .content-container > a span {
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-decoration-line: underline;
}


.index-container > main .set-gallery-container,
.details-container > main .set-gallery-container {
    margin-top: 167px;
}

.index-container .set-gallery-container .set-swiper.swiper,
.details-container .set-gallery-container .set-swiper.swiper {
    width: 100%;
    /*height: 640px;*/
}

.index-container .set-gallery-container .set-swiper,
.details-container .set-gallery-container .set-swiper {
    margin-top: 80px;
    margin-bottom: 100px;
}

.index-container .set-gallery-container .set-swiper .swiper-slide,
.details-container .set-gallery-container .set-swiper .swiper-slide {
    width: 370px;
    /*height: 660px;*/
}

.index-container .set-gallery-container .set-swiper .swiper-slide .swiper-container,
.details-container .set-gallery-container .set-swiper .swiper-slide .swiper-container {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    transition: all 0.9s;
    z-index: 10;
}

.index-container .set-gallery-container .set-swiper .swiper-slide h6,
.details-container .set-gallery-container .set-swiper .swiper-slide h6 {
    color: #02BCB8;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-top: 32px;
    margin-bottom: 6px;
}
.index-container .set-gallery-container .set-swiper .swiper-slide h3,
.details-container .set-gallery-container .set-swiper .swiper-slide h3 {
    color: #FFF;
    text-align: center;
    font-family: Playfair Display;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
}

.index-container .set-gallery-container .set-swiper .swiper-slide .info,
.details-container .set-gallery-container .set-swiper .swiper-slide .info {
    color: #9BB8B4;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 5px;
    margin-top: 18px;
}

.index-container .set-gallery-container .set-swiper .swiper-button-next::after, .index-container .set-gallery-container .set-swiper .swiper-button-prev::after,
.details-container .set-gallery-container .set-swiper .swiper-button-next::after, .details-container .set-gallery-container .set-swiper .swiper-button-prev::after {
    content: '';
}

.index-container .set-gallery-container .set-swiper .swiper-button-next, .index-container .set-gallery-container .set-swiper .swiper-button-prev,
.details-container .set-gallery-container .set-swiper .swiper-button-next, .details-container .set-gallery-container .set-swiper .swiper-button-prev {
    top: 165px;
    /*top: 25%;*/
    width: 80px;
    height: 80px;
}

.index-container .set-gallery-container .set-swiper .swiper-button-next svg, .index-container .set-gallery-container .set-swiper .swiper-button-prev svg,
.details-container .set-gallery-container .set-swiper .swiper-button-next svg, .details-container .set-gallery-container .set-swiper .swiper-button-prev svg {
    transition: all 0.5s!important;
}

.index-container .set-gallery-container .set-swiper .swiper-slide .image,
.details-container .set-gallery-container .set-swiper .swiper-slide .image {
    display: block;
    width: 100%;
    min-height: 360px;
    border-radius: 10px;
    transition: all 0.9s;
    position: relative;
    z-index: 10;
}

.index-container .set-gallery-container .set-swiper .swiper-slide.swiper-slide-next, .index-container .set-gallery-container .set-swiper .swiper-slide.swiper-slide-prev,
.details-container .set-gallery-container .set-swiper .swiper-slide.swiper-slide-next, .index-container .set-gallery-container .set-swiper .swiper-slide.swiper-slide-prev {
    opacity: 0.2!important;
}

.index-container .set-gallery-container .set-swiper .swiper-slide .image:before,
.details-container .set-gallery-container .set-swiper .swiper-slide .image:before {
    pointer-events: none;
    position: absolute;
    content: '';
    width: 96%;
    height: 96%;
    z-index: 20;
    top: 2%;
    left: 2%;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.20);
}

.index-container .set-gallery-container .set-swiper .swiper-slide.swiper-slide-active .image,
.details-container .set-gallery-container .set-swiper .swiper-slide.swiper-slide-active .image {
    opacity: 0.7;
}


.index-container .set-gallery-container .set-swiper .swiper-slide.swiper-slide-active:hover .image,
.details-container .set-gallery-container .set-swiper .swiper-slide.swiper-slide-active:hover .image {
    background-size: 115%!important;
    opacity: 1;
}

.index-container .set-gallery-container .set-swiper .swiper-slide:not(.swiper-slide-next):not(.swiper-slide-prev):not(.swiper-slide-active),
.details-container .set-gallery-container .set-swiper .swiper-slide:not(.swiper-slide-next):not(.swiper-slide-prev):not(.swiper-slide-active) {
    opacity: 0!important;
}

.index-container .set-gallery-container .set-swiper,
.details-container .set-gallery-container .set-swiper {
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
}

.index-container .set-gallery-container .set-swiper .swiper-slide,
.details-container .set-gallery-container .set-swiper .swiper-slide {
    width: 40% !important;
}

.index-container .set-gallery-container .set-swiper .swiper-button-next,
.details-container .set-gallery-container .set-swiper .swiper-button-next {
    right: 20%;
}
.index-container .set-gallery-container .set-swiper .swiper-button-prev,
.details-container .set-gallery-container .set-swiper .swiper-button-prev {
    left: 20%;
}

.index-container .set-gallery-container .set-swiper .swiper-button-next:hover svg,
.index-container .set-gallery-container .set-swiper .swiper-button-prev:hover svg,
.details-container .set-gallery-container .set-swiper .swiper-button-next:hover svg,
.details-container .set-gallery-container .set-swiper .swiper-button-prev:hover svg {
    transform: scale(1.07)!important;
}

.index-container .set-gallery-container .set-swiper .swiper-button-next:hover svg .arrow,
.index-container .set-gallery-container .set-swiper .swiper-button-prev:hover svg .arrow,
.details-container .set-gallery-container .set-swiper .swiper-button-next:hover svg .arrow,
.details-container .set-gallery-container .set-swiper .swiper-button-prev:hover svg .arrow {
    opacity: 1!important;
}

.index-container .set-gallery-container .set-swiper .swiper-button-next:hover svg .ring,
.index-container .set-gallery-container .set-swiper .swiper-button-prev:hover svg .ring ,
.details-container .set-gallery-container .set-swiper .swiper-button-next:hover svg .ring,
.details-container .set-gallery-container .set-swiper .swiper-button-prev:hover svg .ring {
    opacity: 1!important;
}

.index-container > main .set-gallery-container .set-swiper .swiper-slide > a,
.details-container > main .set-gallery-container .set-swiper .swiper-slide > a {
    display: flex;
    height: 68px;
    width: fit-content;
    padding: 12px 20px;
    justify-content: center;
    align-items: center;
    gap: 14px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    background: rgba(9, 25, 24, 0.90);
    cursor: pointer;
    margin-left: auto;
    margin-right: auto;
    margin-top: 18px;
    transition: all 0.9s;
    opacity: 0;
}

.index-container > main .set-gallery-container .set-swiper .swiper-slide > a span,
.details-container > main .set-gallery-container .set-swiper .swiper-slide > a span {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-decoration-line: underline;
}

.index-container > main .set-gallery-container .set-swiper .swiper-slide.swiper-slide-active:hover a,
.details-container > main .set-gallery-container .set-swiper .swiper-slide.swiper-slide-active:hover a {
    opacity: 1;
}



.countries-container {
    width: 100%;
    background: #071513;
}

.countries-container > main {
    margin-left: auto;
    margin-right: auto;
}

.countries-container > main .europe-map-container {
    height: 525px;
    padding-top: 166px;
    max-width: 1440px;
    margin-right: auto;
    margin-left: auto;
}

.countries-container > main .europe-map-container p {
    color: #9BB8B4;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin-top: 32px;
    max-width: 770px;
    margin-left: auto;
    margin-right: auto;
}

.countries-container > main .europe-map-container .btn.compass svg g {
    transition: all 0.9s;
}

.countries-container > main .europe-map-container .btn.compass svg {
    transition: all 0.9s;
}

.countries-container > main .europe-map-container .btn.compass:hover svg g {
    opacity: 1;
}

.countries-container > main .europe-map-container .btn.compass:hover svg  {
    transform: scale(1.1);
}

.countries-container > main .europe-map-container h6 {
    color: #02BCB8;
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 3.96px;
    text-transform: uppercase;
    margin-left: auto;
    margin-right: auto;
}

.countries-container > main .europe-map-container h1 {
    color: #FFF;
    text-align: center;
    font-family: Playfair Display;
    font-size: 76px;
    font-style: normal;
    font-weight: 400;
    line-height: 70px;
    margin-top: 11px;
    margin-left: auto;
    margin-right: auto;
}

.countries-container > main .europe-map-container h1 i {
    font-weight: 500;
}

.countries-container > main .items-container {
    max-width: 970px;
    margin-left: auto;
    margin-right: auto;
}

.countries-container > main .items-container .item-block {
    width: 100%;
    height: 420px;
    margin-top: 80px;
    margin-bottom: 80px;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    gap: 32px;
    position: relative;
}

.countries-container > main .items-container .item-block .img-container {
    height: 100%;
    min-width: 60%;

    border-radius: 20px;
    z-index: 20;

    position: relative;
}

.countries-container > main .items-container .item-block .img-container:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(7, 21, 19, 0.00) 0%, rgba(7, 21, 19, 0.88) 102.18%);
    z-index: 30;
}

.countries-container > main .items-container .item-block .img-container:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(7, 21, 19, 0.00) 0%, rgba(7, 21, 19, 0.88) 102.18%);
    z-index: 30;
}

.countries-container > main .items-container .item-block .img-container:after {
    pointer-events: none;
    position: absolute;
    content: '';
    width: 96%;
    height: 96%;
    z-index: 40;
    top: 2%;
    left: 2%;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.20);
}


.countries-container > main .items-container .item-block .img-container img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    position: relative;
    z-index: 10;
}

.countries-container > main .items-container .item-block .content-container {
    height: 100%;
    width: 100%;
    padding-top: 41px;
    padding-bottom: 41px;
}

.countries-container > main .items-container .item-block .content-container h6 {
    color: #02BCB8;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.countries-container > main .items-container .item-block .content-container h3 {
    color: #FFF;
    text-align: center;
    font-family: Playfair Display;
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    margin-top: 6px;
}

.countries-container > main .items-container .item-block .content-container  .info {
    color: #9BB8B4;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 5px;
    margin-top: 24px;
    margin-bottom: 24px;
}



.countries-container > main .items-container .item-block .content-container > a, .countries-container > main a.load-more, .med-container > main .items-container .item-block a.find {
    display: flex;
    height: 68px;
    width: fit-content;
    padding: 12px 20px;
    justify-content: center;
    align-items: center;
    gap: 14px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    background: rgba(9, 25, 24, 0.90);
    cursor: pointer;
    margin-left: auto;
    margin-right: auto;
    margin-top: 18px;
}

.countries-container > main .items-container .item-block .content-container  > a span, .countries-container > main a.load-more span {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-decoration-line: underline;
}

.countries-container > main .items-container .item-block:nth-child(even) {
    flex-direction: row-reverse;
}

.countries-container > main .items-container .item-block:nth-child(odd):before {
    content: url("/web/images/icon/curve-left.svg");
    left: -70px;
    bottom: -70px;
    position: absolute;
}
.countries-container > main .items-container .item-block:nth-child(even):before {
    content: url("/web/images/icon/curve-right.svg");
    right: -70px;
    bottom: -70px;
    position: absolute;
}

.countries-container > main a.load-more {
    background: none;
    border: none;
}

.countries-container > main .end-page-container {
    display: flex;
    justify-content: center;
    position: relative;
    margin-top: 15px;
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
}


.countries-container > main .end-page-container a.end-page {
    width: 29px;
    display: flex;
    justify-content: center;
    z-index: 50;
    background: #071513;
    cursor: pointer;
}

.countries-container > main .end-page-container .mini-line{
    content: '';
    width: 82%;
    height: 1px;
    background: #16302D;
    left: auto;
    top: 16px;
    z-index: 20;
    position: absolute;
}

.countries-container > main .end-page-container .line{
    content: '';
    width: 100%;
    height: 1px;
    background: #16302D;
    left: auto;
    top: 11px;
    z-index: 20;
    position: absolute;
}

.details-container {
    width: 100%;
    background: #071513;
}

.details-container .top-swiper.swiper {
    margin-left: auto;
    margin-right: auto;
    max-width: 1265px;
    height: 554px;
    position: relative;
    margin-top: 60px;
}

.details-container .top-swiper .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
}

.details-container .top-swiper .swiper-slide .img-container {
    width: 100%;
    height: 100%;
    position: relative;
}

/*.top-swiper .swiper-slide .img-container:before {*/
/*    pointer-events: none;*/
/*    position: absolute;*/
/*    content: '';*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    left: 0;*/
/*    top: auto;*/
/*    border-radius: 20px;*/
/*    background: linear-gradient(180deg, rgba(7, 21, 19, 0.00) 0%, rgba(7, 21, 19, 0.88) 102.18%);*/
/*}*/



.details-container .top-swiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: none;
}
.details-container .top-swiper .swiper-slide img {

}

.details-container .top-swiper.swiper .swiper-button-prev::after,
.details-container .top-swiper.swiper .swiper-button-next::after {
    content: '';
}

.details-container .top-swiper.swiper .swiper-button-next,
.details-container .top-swiper.swiper .swiper-button-prev {
    top: 50%;
    width: 80px;
    height: 80px;
}

.details-container .top-swiper.swiper .swiper-button-prev svg, .details-container .top-swiper.swiper .swiper-button-next svg {
    transition: all 0.5s;
}

.details-container .top-swiper.swiper .swiper-button-next {
    right: 5%;
}

.details-container .top-swiper.swiper .swiper-button-prev {
    left: 5%;
}

.details-container .top-swiper.swiper .swiper-button-next:hover svg,
.details-container .top-swiper.swiper .swiper-button-prev:hover svg {
    transform: scale(1.07)!important;
}

.details-container .top-swiper.swiper .swiper-button-next:hover svg .arrow,
.details-container .top-swiper.swiper .swiper-button-prev:hover svg .arrow {
    opacity: 1!important;
}

.details-container .top-swiper.swiper .swiper-button-next:hover svg .ring,
.details-container .top-swiper.swiper .swiper-button-prev:hover svg .ring {
    opacity: 1!important;
}

.details-container main .info-container {
    margin-top: 80px;
}

.details-container main .info-container > .info {
    color: #9BB8B4;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 5px;
    margin: 52px auto;
}

.details-container main .info-container > .info svg:first-child {
    margin-right: 10px;
}

.details-container main .info-container > .info svg:last-child {
    margin-left: 10px;
}


.details-container main .info-container > .info svg:last-child {
    margin-left: 10px;
}

.details-container main .info-container > h2 {
    max-width: 770px;
}


.details-container main .info-container > .text-container {
    max-width: 770px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.details-container main .info-container > .medical.text-container {
    max-width: 1170px;
}

.details-container main .info-container > .text-container .text {
    z-index: 10;
    position: relative;
}

.details-container main .info-container > .text-container .text p {
    color: #9BB8B4;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    margin-bottom: 24px;
}

.details-container main .info-container > .text-container .col-text {
    display: flex;
    justify-content: space-between;
    column-gap: 102px;
    position: relative;
    z-index: 10;
}

.details-container > main .find-travel-block.medical {
    width: 1265px;
    height: 313px;
}

.details-container > main .find-travel-block.medical::before {
    background: linear-gradient(103deg, #0B1F1E 27.74%, rgba(11, 31, 30, 0.30) 73.54%);
}



.details-container main .info-container > .text-container .col-text .text,
.details-container main .info-container > .text-container .col-text .list {
    flex: 1;
}

.details-container main .info-container > .text-container .col-text .text p {
    text-align: left;
}

.details-container main .info-container > .text-container .text {
    padding-bottom: 192px;
}

.details-container main .info-container > .text-container .col-text .list ul {
    padding-left: 0;
    margin: 24px 0 0;
}

.details-container main .info-container > .text-container .col-text .list ul li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 8px;
    color: #9BB8B4;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    list-style: none;
    margin-left: 0;
    margin-bottom: 8px;
}


.details-container main .info-container > .text-container .bg-lines {
    bottom: 0;
    position: absolute;
    width: 732px;
    height: 259px;
    background-size: contain;
    background: url("/web/images/background/details-info-lines.svg") no-repeat;
    background-size: contain;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    z-index: 1;
}

.details-container main .info-container > .text-container.medical .bg-lines {
    left: 200px;
}


.details-container main .info-container > .text-container .bg-lines h6 {
    color: #02BCB8;
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 3.96px;
    text-transform: uppercase;
}

.details-container main .info-container > .text-container .bg-lines img {
    width: 100%;
    height: 400px;
}

.details-container main .map-info-container,
.details-container main .tab-info-container {
    margin-top: 6px;
}


.details-container main .map-info-container h2,
.details-container main .tab-info-container h2 {
    color: #FFF;
    text-align: center;
    font-family: Playfair Display;
    font-size: 56px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    margin-bottom: 78px;
}

.details-container main .map-info-container h2 i span,
.details-container main .tab-info-container h2 i span {
    border-bottom: 1px solid #073F3B;
}

.details-container main .map-info-container {
    max-width: 1206px;
    margin-left: auto;
    margin-right: auto;
}


.details-container main .map-info-container .flex-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.details-container main .map-info-container .flex-container .items-container {
    width: 585px;
    border-right: 1px solid #0B1E1C;
}


.details-container main .map-info-container .flex-container .items-container .accordion {
    margin-bottom: 48px;
    margin-top: 24px;
}


.details-container main .map-info-container .flex-container .items-container .accordion .circle-container {
    position: relative;
    width: min-content;
    height: min-content;
}

.details-container main .map-info-container .flex-container .items-container .accordion .circle-container .text {
    position: absolute;
    width: 100%;
    top: 30px;
    color: #01D2C9;
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-align: center;
}

.details-container main .map-info-container .flex-container .items-container a.accordion-btn.collapsed .circle-container .text {
    color: #9BB8B4;
}


.details-container main .map-info-container .flex-container .items-container .accordion .circle-container .text {
    position: absolute;
    width: 100%;
    top: 30px;
    color: #01D2C9;
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-align: center;
}

.details-container main .map-info-container .flex-container .accordion .accordion-header {
    width: 100%;
    height: 70px;
}

.details-container main .map-info-container .flex-container .accordion .accordion-header a.accordion-btn {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    position: relative;
    column-gap: 16px;
}

.details-container main .map-info-container .flex-container .accordion .accordion-header a.accordion-btn:hover {
    text-decoration: none;
    cursor: pointer;
}



.details-container main .map-info-container .flex-container .accordion .accordion-header .country-name h4 {
    color: #FFF;
    font-family: Playfair Display;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    margin-bottom: 5px;
    width: 430px;
}

.details-container main .map-info-container .flex-container .accordion .accordion-header .country-name p {
    color: #9BB8B4;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin: 0;
}


.details-container main .map-info-container .accordion .accordion-header a.accordion-btn:before {
    position: absolute;
    content: url(/web/images/icon/arrow-up.svg);
    right: 0px;
    top: calc(50% - 12px);
    width: fit-content;
    height: fit-content;
}

.details-container main .map-info-container .accordion .accordion-header a.accordion-btn.collapsed:before {
    position: absolute;
    content: url(/web/images/icon/arrow-down.svg);
    right: 0px;
    top: calc(50% - 12px);
    width: fit-content;
    height: fit-content;
}


.details-container main .map-info-container .accordion .accordion-body {
    display: flex;
    margin-top: 32px;
    column-gap: 41px;
    padding-left: 27px;
    padding-right: 30px;
}

.details-container main .map-info-container .accordion .accordion-body h4  {
    color: #FFF;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    margin-bottom: 16px;
}

.details-container main .map-info-container .accordion .accordion-body p {
    color: #9BB8B4;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}

.details-container main .tab-info-container {
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
}

.details-container .tab-info-container .nav.nav-pills {
    display: flex;
    width: 100%;
    justify-content: space-between;
    position: relative;
    padding-left: 145px;
    padding-right: 145px;
    margin-bottom: 68px;
}

.details-container .tab-info-container .nav.nav-pills:after {
    content: '';
    width: 100%;
    height: 1px;
    left: 0;
    bottom: -5px;
    background: #16302D;
    position: absolute;
}

.details-container .tab-info-container .nav.nav-pills:before {
    content: '';
    width: 100%;
    height: 1px;
    left: 0;
    bottom: 5px;
    background: #16302D;
    position: absolute;
}

.details-container .tab-info-container .nav.nav-pills a.nav-link {
    color: #FFF;
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    padding: 15px 22px;
}

.details-container .tab-info-container .nav.nav-pills a.nav-link.active {
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #01D2C9;
    background: none;
}

.details-container .tab-info-container .tab-content .flex-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 30px;
}

.details-container .tab-info-container .tab-content .flex-container .text-container {
    width: 570px;
    padding-right: 56px;
}

.details-container .tab-info-container .tab-content .flex-container .text-container h4 {
    color: #FFF;
    font-family: Playfair Display;
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 32px;
    font-style: normal;
}

.details-container .tab-info-container .tab-content .flex-container .text-container p {
    margin: 0 0 24px;
    color: #9BB8B4;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}

.details-container .tab-info-container .tab-content .flex-container .text-container p {
    margin: 0;
    color: #9BB8B4;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}

.details-container .tab-info-container .tab-content .flex-container .text-container h6 {
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 24px;
}

.details-container .tab-info-container .tab-content .flex-container .text-container ul {
    padding-left: 0;
    margin: 24px 0 0;
}

.details-container .tab-info-container .tab-content .flex-container .text-container ul li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 8px;
    color: #9BB8B4;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    list-style: none;
    margin-left: 0;
    margin-bottom: 8px;
}

.details-container .tab-info-container .tab-content .img-container {
    /*height: 100%;*/
    min-height: 400px;
    min-width: 50%;
    max-width: 589px;
    border-radius: 20px;
    z-index: 20;
    position: relative;
}

.details-container .tab-info-container .tab-content .img-container img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    position: relative;
    z-index: 10;
}

.details-container .tab-info-container .tab-content .img-container:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    background: linear-gradient(180deg, rgba(7, 21, 19, 0.00) 0%, rgba(7, 21, 19, 0.88) 102.18%);
    z-index: 30;
}

.details-container .tab-info-container .tab-content .img-container:after {
    pointer-events: none;
    position: absolute;
    content: '';
    width: 96%;
    height: 96%;
    z-index: 40;
    top: 2%;
    left: 2%;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.20);
}


.contacts-container  {
    width: 100%;
    background: #071513;
}

.contacts-container > main .map-container {
    margin-top: 97px;

}

.contacts-container > main .map-container h2, .contacts-container > main .form-container h2 {
    color: #FFF;
    text-align: center;
    font-family: Playfair Display;
    font-size: 56px;
    font-style: normal;
    font-weight: 400;
    line-height: 70px;
    margin-top: 11px;
    margin-left: auto;
    margin-right: auto;
}

.contacts-container > main .map-container h2 i, .contacts-container > main .form-container h2 i {
    font-weight: 500;
    border-bottom: 1px solid #073F3B;
}

.contacts-container > main .map-container h6,
.contacts-container > main .form-container h6 {
    color: #02BCB8;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.contacts-container > main .map-container .info-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 30px;
    padding-bottom: 30px;
    max-width: 1170px;
    margin: 64px auto;
}

.contacts-container > main .map-container .info-container > div {
    flex: 1;
    padding-bottom: 20px;
    padding-top: 20px;
}

.contacts-container  > main .map-container .info-container > div:not(:last-child) {
    border-right: 1px solid #16302D;
}

.contacts-container > main .map-container .info-container > div h6 {
    color: #9BB8B4;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    margin-bottom: 22px;
}

.contacts-container > main .map-container .info-container > div p, .contacts-container > main .map-container .info-container > div span  {
    color: #FFF;
    text-align: center;
    font-family: Playfair Display;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    margin: 0;
}

.contacts-container > main .map-container .info-container > div .flex-container {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 15px;
    margin-left: auto;
    margin-right: auto;
}


.contacts-container > main .map-container .map {
    width: 1170px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 97px;
}

.contacts-container > main .map-container .map img {
    width: 100%;
    border-radius: 20px;

}

.contacts-container > main .end-page-container {
    display: flex;
    justify-content: center;
    position: relative;
    margin-top: 80px;
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
}

.contacts-container > main .end-page-container a.end-page {
    width: 29px;
    display: flex;
    justify-content: center;
    z-index: 50;
    background: #071513;
    cursor: pointer;
}

.contacts-container > main .end-page-container .mini-line{
    content: '';
    width: 82%;
    height: 1px;
    background: #16302D;
    left: auto;
    top: 16px;
    z-index: 20;
    position: absolute;
}

.contacts-container > main .end-page-container .line {
    content: '';
    width: 100%;
    height: 1px;
    background: #16302D;
    left: auto;
    top: 11px;
    z-index: 20;
    position: absolute;
}

.contacts-container > main  .form-container {
    margin-top: 80px;
}

.contacts-container > main  .form-container form {
    max-width: 770px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 64px;
}

.contacts-container > main  .form-container form .flex-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.contacts-container > main  .form-container form label {
    color: #FFF;
    display: block;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
}

.contacts-container > main  .form-container form label input {
    margin-top: 8px;
    border: 1px solid #102928;
    padding: 16px;
    width: 244px;
    background: #091715;
}

.contacts-container > main  .form-container form label textarea {
    width: 100%;
    height: 151px;
    padding: 16px;
    border: 1px solid #102928;
    background: #091715;
    margin-top: 8px;
    resize: none;
}

.contacts-container > main  .form-container form .find {
    display: flex;
    height: 68px;
    width: fit-content;
    padding: 12px 20px;
    justify-content: center;
    align-items: center;
    gap: 14px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    background: rgba(9, 25, 24, 0.90);
    cursor: pointer;
}

.contacts-container > main  .form-container form .find span {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-decoration-line: underline;
}

.contacts-container > main  .form-container .flex-container.agreement {
    margin-top: 32px;
}

.contacts-container > main  .form-container .agreement-container {
    display: flex;
}

.contacts-container > main  .form-container  .agreement-container label {
    display: inline-block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.contacts-container > main  .form-container .agreement-container label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.contacts-container > main  .form-container .agreement-container label .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: #eee;
}

.contacts-container > main  .form-container .agreement-container label:hover input ~ .checkmark {
    background-color: #ccc;
}

.contacts-container > main  .form-container .agreement-container label input:checked ~ .checkmark {
    background-color: #01D2C9;
}

.contacts-container > main  .form-container .agreement-container label .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.contacts-container > main  .form-container .agreement-container label input:checked ~ .checkmark:after {
    display: block;
}

.contacts-container > main  .form-container .agreement-container label .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.contacts-container > main  .form-container .agreement-container p {
    margin: 0;
    width: 291px;
    color: #9BB8B4;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    display: inline-block;
}

.med-container {
    width: 100%;
    /*min-height: 100vh;*/
    background: #071513;
}

.med-container main {
    margin-top: 97px;
}

.med-container main .info-container {
    margin-bottom: 78px;
}

.med-container main .info-container > .text-container {
    max-width: 770px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    margin-top: 32px;
}


.med-container main .info-container > .text-container .text p {
    color: #9BB8B4;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    margin-bottom: 24px;
}

.med-container > main .end-page-container {
    display: flex;
    justify-content: center;
    position: relative;
    margin-top: 15px;
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
}


.med-container > main .end-page-container a.end-page {
    width: 29px;
    display: flex;
    justify-content: center;
    z-index: 50;
    background: #071513;
    cursor: pointer;
}

.med-container > main .end-page-container .mini-line {
    content: '';
    width: 82%;
    height: 1px;
    background: #16302D;
    left: auto;
    top: 16px;
    z-index: 20;
    position: absolute;
}

.med-container > main .end-page-container .line {
    content: '';
    width: 100%;
    height: 1px;
    background: #16302D;
    left: auto;
    top: 11px;
    z-index: 20;
    position: absolute;
}


.med-container > main .items-container {
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
}

.med-container > main .items-container .item-block {
    width: 100%;
    height: min-content;
    margin-top: 80px;
    margin-bottom: 80px;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    gap: 32px;
    position: relative;
}

.med-container > main .items-container .item-block .content-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 32px;
    width: 70%;

}


.med-container > main .items-container .item-block .img-container {
    height: 100%;
    min-width: 42%;
    max-width: 380px;
    border-radius: 20px;
    z-index: 20;
    position: relative;
}


.med-container > main .items-container .item-block .img-container img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    position: relative;
    z-index: 10;
}

.med-container > main .items-container .item-block .img-container:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(7, 21, 19, 0.00) 0%, rgba(7, 21, 19, 0.88) 102.18%);
    z-index: 30;
}

.med-container > main .items-container .item-block .img-container:after {
    pointer-events: none;
    position: absolute;
    content: '';
    width: 96%;
    height: 96%;
    z-index: 40;
    top: 2%;
    left: 2%;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.20);
}

.med-container > main .items-container .item-block .content-container h6 {
    color: #02BCB8;
    text-align: left;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.med-container > main .items-container .item-block .content-container h3 {
    color: #FFF;
    text-align: left;
    font-family: Playfair Display;
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    margin-top: 6px;
}

.med-container > main .items-container .item-block .content-container ul {
    padding-left: 0;
    margin: 24px 0 0;
}

.med-container > main .items-container .item-block .content-container ul li {
    display: flex;
    align-items: center;
    column-gap: 8px;
    color: #9BB8B4;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    list-style: none;
    margin-left: 0;
    margin-bottom: 8px;
}

.med-container > main .items-container .item-block .find-container {
    min-height: 100%;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    justify-content: center;
}

.med-container > main .items-container .item-block .find-container span {
    width: 100%;
    color: #9BB8B4;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

.med-container > main .items-container .item-block a.find {
    display: flex;
    height: 68px;
    width: fit-content;
    padding: 19px 36px;

    justify-content: center;
    align-items: center;
    gap: 14px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    background: rgba(9, 25, 24, 0.90);
    cursor: pointer;
    margin-left: auto;
    margin-right: auto;
    margin-top: 8px;
}

.med-container > main .items-container .item-block a.find:hover {
    text-decoration: none;
}

.med-container > main a.load-more {
    display: flex;
    height: 68px;
    width: fit-content;
    padding: 12px 20px;
    justify-content: center;
    align-items: center;
    gap: 14px;
    border: none;
    cursor: pointer;
    margin: 18px auto 120px;
}

.med-container > main a.load-more span {
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    letter-spacing: 1.8px;
    text-decoration-line: underline;
}

.blog-container .countries-links {
    width: 770px;
    margin-left: auto;
    margin-right: auto;
    background: url(/web/images/background/lines-star-bg.svg);
    background-size: 1440px 900px;
    background-position: 50% -400px;
    background-repeat: no-repeat;
}

.blog-container .countries-links h6 {
    color: #02BCB8;
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 3.96px;
    text-transform: uppercase;
    margin-left: auto;
    margin-right: auto;
}

.blog-container .countries-links h1 {
    color: #FFF;
    text-align: center;
    font-family: Playfair Display;
    font-size: 76px;
}

.blog-container .countries-links h1 i {
    font-weight: 500;
}

.blog-container .items-container .item-block:before {
    display: none;
}

.blog-container .countries-links ul {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    padding: 0;
    margin: 48px 0 46px;
}

.blog-container .countries-links ul li {
    list-style: none;
    display: flex;
    height: 48px;
    padding: 3px;
    justify-content: center;
    align-items: center;
    gap: 14px;
    border-radius: 150px;
    border: 2px solid rgba(107, 218, 213, 0.17);
    background: rgba(9, 25, 24, 0.90);
}

.blog-container .countries-links ul li.active a {
    background: #01D2C9;
}

.blog-container .countries-links ul li a {
    display: flex;
    padding: 0px 16px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border-radius: 150px;
    border: 1px solid #2F6C65;
    color: #FFF;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
}

.blog-container .countries-links ul li a:hover {
    color: #FFF;
}

.article-container .info-container .article {
    max-width: 770px;
    margin-left: auto;
    margin-right: auto;
    color: #FFF;
    border-bottom: 1px solid #16302D;
}
.article-container .info-container .article .text-block {
    margin-bottom: 48px;
}

.article-container .info-container .article .text-block p {
    margin-bottom: 40px;
    margin-top: 0;
}

.article-container .info-container .article .text-block h2 {
    margin-bottom: 16px;
}



.article-container .info-container .article h3 {
    color: #FFF;
    font-family: Playfair Display;
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
}

.article-container .info-container .article h4, .article-container .info-container .article h2 {
    color: #FFF;
    font-family: Playfair Display;
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    margin-bottom: 32px;
}

.article-container .info-container .article h5 {
    color: #FFF;
    font-family: Playfair Display;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    margin-bottom: 24px;
}

.article-container .info-container .article p {
    color: #9BB8B4;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin-top: 24px;
    margin-bottom: 0;
}


.article-container .info-container .article p:first-child {
    font-size: 18px;
    
}

.article-container .info-container .article .img-container {
    width: 100%;
    margin-bottom: 48px;
}

.article-container .info-container .article .img-container img {
    border-radius: 10px;
    object-fit: cover;
    width: 100%;
}

.article-container .info-container .article blockquote {
    position: relative;
    margin-bottom: 48px;
}

.article-container .info-container .article .comma-article {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    column-gap: 25px;
    margin-bottom: 40px;
}

.article-container .info-container .comma-article .double-stripe {
    height: 4px;
    border-top: 1px solid #16302D;
    border-bottom: 1px solid #16302D;
    flex: 1;
}


.article-container .info-container .article blockquote p {
    color: #FFF;
    text-align: center;
    font-family: Playfair Display;
    font-size: 18px;
    font-style: italic;
    font-weight: 500;
    line-height: 130%;
    padding-left: 40px;
    padding-right: 40px;
    width: 100%;
    margin: 40px 0;
}

.article-container .info-container .article blockquote > .double-stripe {
    height: 4px;
    border-top: 1px solid #16302D;
    border-bottom: 1px solid #16302D;
    width: 100%;
}


.article-container .info-container .article  ul.list {
    padding-left: 0;
    margin: 0;
}

.article-container .info-container .article  ul.list li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 8px;
    color: #9BB8B4;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    list-style: none;
    margin-left: 0;
    margin-bottom: 8px;
}

.article-container .info-container .article-btn-group {
    display: flex;
    justify-content: space-between;
    padding-top: 27px;
    padding-bottom: 27px;
    column-gap: 30px;
    width: 770px;
    margin-right: auto;
    margin-left: auto;
}

.article-container .info-container .article-btn-group > div {
    display: flex;
    flex: 1;
    align-items: center;
    gap: 16px;
}

.article-container .info-container .article-btn-group .next-btn {
    padding-right: 25px;
    cursor: pointer;
    transition: all 0.5s;
    opacity: 0.6;
}

.article-container .info-container .article-btn-group .next-btn:hover {
    transform: scale(1.2) translateX(17px);
    opacity: 1;
}


.article-container .info-container .article-btn-group .prev-btn {
    padding-left: 25px;
    cursor: pointer;
    transition: all 0.5s;
    opacity: 0.6;
}

.article-container .info-container .article-btn-group .prev-btn:hover {
    transform: scale(1.2) translateX(-17px);
    opacity: 1;
}

.article-container .info-container .article-btn-group h6 {
    color: #01D2C9;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.article-container .info-container .article-btn-group .text {
    overflow: hidden;
    color: #9BB8B4;
    text-align: right;
    text-overflow: ellipsis;
    font-family: Playfair Display;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
}

.article-container .info-container .article-btn-group .next-container h6,
.article-container .info-container .article-btn-group .next-container .text {
    text-align: right;
}

.article-container .info-container .article-btn-group .prev-container h6,
.article-container .info-container .article-btn-group .prev-container .text {
    text-align: left;
}


.article-container .links-container {
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 120px;
}

.article-container .links-container h6 {
    color: #02BCB8;
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 3.96px;
    text-transform: uppercase;
}

.article-container .links-container h2 {
    color: #FFF;
    text-align: center;
    font-family: Playfair Display;
    font-size: 56px;
    font-style: normal;
    font-weight: 400;
    line-height: 70px;
    margin-top: 50px;
    margin-bottom: 80px;
}

.article-container .links-container h2 i {
    font-size: 56px;
    font-style: italic;
    font-weight: 500;
}

.article-container .links-container .links {
    display: flex;
    column-gap: 30px;
    max-width: 100%;
}


.article-container .links-container a {
    width: 376px;
    cursor: pointer;
}

.article-container .links-container a .img-container {
    height: 431px;
    width: 100%;
    border-radius: 20px;
    z-index: 20;
    position: relative;
    margin-bottom: 24px;
}

.article-container .links-container a .img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-container .links-container a .image {
    opacity: 0.7;
    width: 100%;
    height: 431px;
    border-radius: 10px;
    transition: all 0.9s;
    position: relative;
    z-index: 10;
}

.article-container .links-container a.image:before {
    pointer-events: none;
    position: absolute;
    content: '';
    width: 96%;
    height: 96%;
    z-index: 20;
    top: 2%;
    left: 2%;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.20);
}


/*.article-container .links-container a .img-container:before {*/
/*    pointer-events: none;*/
/*    position: absolute;*/
/*    content: '';*/
/*    width: 96%;*/
/*    height: 96%;*/
/*    z-index: 40;*/
/*    top: 2%;*/
/*    left: 2%;*/
/*    border-radius: 5px;*/
/*    border: 1px solid rgba(255, 255, 255, 0.20);*/
/*}*/

/*.article-container .links-container a .img-container:after {*/
/*    pointer-events: none;*/
/*    position: absolute;*/
/*    content: '';*/
/*    width: 96%;*/
/*    height: 96%;*/
/*    z-index: 40;*/
/*    top: 2%;*/
/*    left: 2%;*/
/*    border-radius: 5px;*/
/*    border: 1px solid rgba(255, 255, 255, 0.20);*/
/*}*/

.article-container .links-container a h6 {
    color: #02BCB8;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 11px;
}

.article-container .links-container a h4 {
    overflow: hidden;
    color: #FFF;
    text-overflow: ellipsis;
    font-family: Playfair Display;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    height: 62px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-container .links-container a .date {
    color: #9BB8B4;
    font-family: Montserrat;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-align: left;
}

.article-container .links-container a .img-container img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    position: relative;
    z-index: 10;
}

.article-container .links-container a .image:before {
    pointer-events: none;
    position: absolute;
    content: '';
    width: 96%;
    height: 96%;
    z-index: 20;
    top: 2%;
    left: 2%;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.20);
}

.article-container .links-container a:hover .image {
    background-size: 220%!important;
    opacity: 1;
}





@media screen and (max-width: 1200px) {

}
