@charset "UTF-8";

html, body, span, applet, object, iframe, img, div, 
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ul, li,
fieldset, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font-size: 16px;
	font: inherit;
	vertical-align: baseline;
	box-sizing: border-box;
}

body {
	font-family: 'Gilroy', Arial;
	color: #212428;
    text-rendering: optimizeSpeed;
	font-style: normal;
	font-weight: 400;
	background: #fff;
	font-size: 14px;
	line-height: 1;
	scroll-behavior: smooth
}
/*
body::-webkit-scrollbar {
  width: 12px;               // ширина scrollbar
}
*/
main {
	-webkit-box-flex: 1;
	-webkit-flex: auto;
	-moz-box-flex: 1;
	-ms-flex: auto;
	flex: auto;
	display: block
}


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


/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */ 
html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

li {
    list-style: none;
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    text-decoration: underline dotted;
}

b,
strong {
    font-weight: bolder;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -.25em;
}

sup {
    top: -.5em;
}

img {
    border-style: none;
    max-width: 100%;
    height: auto;
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

[type=button],
[type=reset],
[type=submit],
button {
    -webkit-appearance: button;
}

fieldset {
    padding: .35em .75em .625em;
}

legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal;
}

progress {
    vertical-align: baseline;
}

textarea {
    overflow: auto;
}


[hidden] {
    display: none;
}

/* Common styles for links, buttons, and spans */
a,
button,
span {
    display: inline-block;
    background-color: transparent;
    text-decoration: none;
}

/* Styles for inputs and textareas */
input,
textarea {
    display: block;
    width: 100%;
}

/* Table styles */
table {
    width: 100%;
    border-collapse: collapse;
}

/* Reset styles for links and buttons */
a,
button {
    outline: 0;
    cursor: pointer;
}

/* Transition for interactive elements */
a,
button,
input,
textarea {
    color: #000;
    font-weight: inherit;
    -webkit-appearance: none;
    transition: all .5s ease;
}

button {
    background: 0;
    border: none;
}

/* Box sizing for all elements */
:after,
:before {
    box-sizing: border-box;
}
textarea, input {
    outline: 0;
    border: none;
    -webkit-appearance: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    background: 0 0;
}

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

input[type=submit] {
    cursor: pointer;
    display: inline-block;
}

input[type=search]::-webkit-search-cancel-button {
    background: 0 0;
    display: none;
}

body.open {
    overflow: hidden;
    height: 100vh;
}

/* Placeholder styles */
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #000;
    transition: all .5s ease;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    color: #000;
    transition: all .5s ease;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
    color: #000;
    transition: all .5s ease;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: #000;
    transition: all .5s ease;
}

/* Placeholder styles on focus */
input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
    color: transparent;
}

input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
    color: transparent;
}

input:focus:-moz-placeholder,
textarea:focus:-moz-placeholder {
    color: transparent;
}

input:focus:-ms-input-placeholder,
textarea:focus:-ms-input-placeholder {
    color: transparent;
}

/************************************************************************************************************/
/*
#custom-cursor {
  position: fixed;
  width: 80px;
  height: 80px;
  background: url('/img/cursor-circle.png') no-repeat center center;
  background-size: contain;
  pointer-events: none; // Чтобы курсор не блокировал клики 
  transform: translate(-50%, -50%) scale(0); // Начальная точка 
  transition: transform 0.5s ease; // Анимация увеличения 
  z-index: 9999; // Поверх всего 
}*/

/*
#custom-cursor.active {
  transform: translate(-50%, -50%) scale(1.2); // Изменение при нажатии
  opacity: 0.8; // Полупрозрачность при нажатии 
}
*/



.see .swiper-slide {
    pointer-events: auto !important; /* Разрешаем обработку событий */
    /*transition: width 2s ease, height 2s ease; /* Плавное изменение ширины и высоты */
}

.see .swiper-slide:hover {
    cursor: url('/img/cursor-circle.png') 50 50, auto;
    width: 80px;
    height: 80px;
    pointer-events: auto !important;
}



/* COLORS START */ 

:root {
    --grey: #949494;
    --darkGrey: #7c7c7c;
    --darkBrown: #1b0502;
	--red: #e93222; 
    /*--chocolate: #ad7561; */
    --chocolate: #c18f6a; 
    --gold: #e7a47e;
    /*--red: #e09ae4;*/
} 

.vignette {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;background: radial-gradient(ellipse 70% 50% at center, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0.8) 100%);
      
    pointer-events: none;
}

.friend {
    max-width: 1040px;
    margin: 0 auto;   
}
/* КРУГЛЫЕ PLAY */

.playicon i {
    color:#ffa23d;
    position:relative;
    z-index:11;
    margin-top:-10px;
    margin-left:-7px;
    -webkit-transition:all .8s ease-in-out;
    -moz-transition:all .8s ease-in-out;
    -o-transition:all .8s ease-in-out;
    -ms-transition:all .8s ease-in-out;
    transition:all .8s ease-in-out
}

.playicon {
     width:60px;
     height:60px;
     font-size:16px;
     top:50%;
     right:0;
     bottom:0;
     left:0;
     transform:translateY(-50%);
     margin:0 auto;
     position:absolute;
     display:flex;
     align-items:center;
     justify-content:center;
    z-index: 9990;
    cursor: pointer;
}

.playicon.bigCircle::before {
    width: 102px;
    height: 102px;
}

.playicon::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    background-color: var(--red);
    border-radius: 50%;
    align-items: center;
    display: flex;
    justify-content: center;
    content: "";
    transition: all 0.4s ease-in-out;
}

.playicon .outer-circle {
    position:absolute;
    content:"";
    width:70px;
    height:70px;
    display:inline-block;
    background:rgba(255,255,255,0.5);
    top:-5px;
    left:-5px;
    z-index:-1;
    border-radius:100%;
    transform-origin:50% 50% 0px;
    animation:circleAni 2s infinite
}

.playicon:hover .outer-circle {
    background:rgba(202,151,101,0.3)
}

@keyframes circleAni {
0% {
    transform:scale(0);
    opacity:1;
}
50% {
    transform:scale(1.1);
    opacity:.8
}
100% {
    transform:scale(1.2);
    opacity:0
}
    
}
.playicon:hover::before {
    background:rgb(138, 13, 2);
    /*width:70px;
    height:70px;*/
}
.playicon:hover i {
 color:#fff
}

.playicon:after {
    border-style: solid;
    border-width: 1em 0 1em 1.732em;
    border-color: transparent transparent transparent #fff;
    content: ' ';
    font-size: 0.75em;
    height: 0;
    margin: -1em 0 0 0.25em;
    top: 50%;
    position: absolute;
    width: 0;
}

.playicon:hover::after {
    border-color: transparent transparent transparent #fff;
}

.playicon.bigCircle {
    width:102px;
    height:102px;
    z-index: 9;
}

.playicon.bigCircle:after {
    margin: -0.9em 0 0 0.2em;
    font-size: 1.2em;
}

.playicon.bigCircle .outer-circle {
    width:124px;
    height:124px;
    top:-11px;
    left:-11px;
}

/* КРУГЛЫЕ PLAY END */


.discount {
  position: relative;
}


.priceLine span {
    font-size: 0.8rem;
    top: 0;
}

.discount::after {
  content: "";
  position: absolute;
  left: -40px;
  bottom: 50%;
  width: 100%;
  height: 2px;
  background-color: var(--red);
  transform: rotate(-30deg);
}

.reverse {
    flex-direction: row-reverse;
}

.month_wrp .name {
    transform: rotateZ(-45deg);
    color: #000;
    top: 12px;
}

.arrowLong, .icon.icon-long-arrow {
    width: 47px;
    top: 8px;
}

.flex, .country.flex {
    display: flex;
}

.column {
    background: linear-gradient(180deg, #A9CBFF 0%, #2976E8 100%);
    border-radius: 12px 12px 8px 8px;
    border: 2px solid #fff;
    margin: 0 6px;
}

.column:first-child {
    background: linear-gradient(139.45deg, #FDCA47 -21.56%, #FE7F23 216.14%);
    border-radius: 8px 8px 0 0;
    border: 0;
    border-bottom: 2px solid #fff;
    margin: 0;
    width: 32px;
}

.month_wrp {
    text-align: center;
}

.month_wrp span {
    display: block;        
}

.month_wrp span {
    color:#faa939;
}  

.videoTitle {
    width: 100%;
    position: absolute;
    display: flex;
    justify-content: center;
    z-index: 49;
    top: calc(30% + 2vw);
    padding: 0 20px;
    text-align: center;
}

.footerBgTxt {
    /*background-image: url("../img/footer/namibia-footer-bg.jpg"); */
    /*background-size: cover;*/
      color: white;
     /* -webkit-mask-image: linear-gradient(transparent 50%, black 50%);
      mask-image: linear-gradient(transparent 50%, black 50%);*/
    font-family: 'Dhanikans Signature Italic Italic';
    font-size: calc(4vw + 68px);
    text-align: center;
    padding: 66px 0 60px 0;
    letter-spacing: 0.01em;
    /*line-height: 0.8em;*/
    width: 100%;
    margin: 0 auto;
}

.daysLong, .map {
    top: -40px;
    background: #fff;
    border-radius: 40px;
    /*height: 100px;*/
}

 .daysLong h2 {
     padding: 80px 0 0px;
     color: #000
}

.partOfDays .swiper-slide {
    padding-top: 60px
}

.partOfdays .text-hidden {
    padding-top: 60px;
}

.daysNumber h5, .daysNumber > h6, .daysNumber > h6:first-child {
    max-width: 80%;
}

.smallImgDay{
    width: 64px;
    height: 64px;
    border-radius: 20px;
    position: absolute;
    margin:-20px 0 0 -100px;
    
    border: 1px solid #aaa;
    padding: 3px;
    box-sizing: content-box;
}

del {
    color: #a80f0f;
}

.friend .form__wrap {
    background: linear-gradient(135deg, rgba(89, 56, 32, 0.6) 0%, rgba(30, 21, 14, 0.6) 47%, rgba(66, 39, 22, 0.51) 100%);
}

.button-more {
    position: absolute;
    font-size: 40px;
    z-index: 99;
    cursor: pointer;
}

.feedback .button-more {
    position: relative;
}

.team__wrap .button-more {
    position: relative;
    right: 0;
}

/*
.oneDay {
    cursor: pointer;
}
*/
.see, .food {
    background-color: #fff;
}

.miniGallery {
    overflow: visible;
}

.large-swiper >h6 {
    padding-bottom: 20px;
}

#highlights .swiper-scrollbar, #miniGallery .swiper-scrollbar {
    display: block;
}

.partOfdays .see-swiper__slide {
    padding-bottom: 60px;
}

.partOfdays small {
    color: var(--darkBrown);
    font-weight: 500;
    font-size: 14px;
    position: relative;
    top: 5px;
}

.miniGallery .text {
    display: none;
}


.miniGallery .swiper-pagination {
    padding-top: 10px;
    font-size: 36px;
}


.bottomLine {
    height: 1px; 
    border-bottom: 1px solid #ccc;
}

.bottomLine :last-child {
    height: 0;
    border-bottom: 0;
}

.oneDayText>img {
    padding: 8px 0;    
    display: inline-block;
    vertical-align: bottom;
} 

.daysNumber h5 {
    color: var(--red);
    padding-top: 40px;
}

.daysNumber>h6:first-child {
    padding: 0px;
    margin: 5px 0;
    font-weight: 500;
    font-size: 16px;
}

.welcome__txt .text {
    font-family: 'Dhanikans Signature Italic Italic';
    text-transform: lowercase;
    font-size: 5rem;
    /*color: #f7ba96;*/
    color: #ffebdf;
    /*color: #fff;*/
    line-height: 40px;
    padding: 30px 10px 40px 10px;
    letter-spacing: -0.01em;
}

.details-item__title .small {
    color: var(--darkGrey);
    font-size: .9rem;
}

.priceLineBtn {
    display: flex;
    width: 60px;
    height: 46px;
    color: #fff;
    background: var(--red);
    font-size: 24px;
    border-radius: 22px;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: -60px;
}

.priceLine {
	position: relative;
	background: #fff;
	box-shadow: 2px 13px 34px rgba(0, 0, 0, 0.1);
	border-radius: 12px;
	padding: 22px;
	width: 100%;
	margin: 20px auto;
	font-size: 1.1rem;
	font-weight: 600;
}

.priceLine div {
	display: inline-block;
	min-width: calc(100%/4 - 26px);					
	text-align: center;
    vertical-align: middle;
}

.priceLine div:first-child {
	min-width: 200px;
	max-width: 24%;
    width: 24%;
}

.priceLine div:nth-child(2) {
	font-size: 1.2rem;
   /* color: var(--red);*/
   color: #a23409;
}

.priceLine div:last-child {
	/*color: var(--red);*/
	color: #a23409;
}

.priceLine div p:last-child {
    display: none;
}

.priceLine a:hover {
    color: var(--red);
}

.priceLine p {
    /*height: 36px;*/
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.caption {
	font-size: 14px;
	font-weight: 500;
	color: var(--grey);
	box-shadow: none;
	padding: 20px 48px 0 48px;
}

.caption div {
    white-space: nowrap;
}
 
.take {
	padding-top: 80px;
}

#request.modal {
	max-width: 760px;
}

.swiperCounter {
	display: flex;
	margin: 0 auto;
	width: 80px;
	height: 80px;
	/*background: #b9905c;*/
	background: var(--red);
	border-radius: 50%;
    color: #fff;
}

.see-swiper__slide {
   /*  padding-bottom: 40px; YURA */
   /*padding-bottom: calc(2vw + 20px);   */
}

.descrSubText
{
	font-size: 10px;
	color: #aa6d26;
	font-weight: 500;
}

.mini {
	transform: translateY(-60px);
    font-size: 50px;
}

.see-weather {
	margin: 0 auto;
	/*width: 100%; 2023-07-19 YURA
	max-width: 340px;*/
}

.play { 
  background: red;
  border-radius: 50% / 10%;
  color: #FFFFFF;
  font-size: 2em; /* change this to change size */
  height: 3em;
  margin: 20px auto;
  padding: 0;
  position: relative;
  text-align: center;
  text-indent: 0.1em;
  transition: all 150ms ease-out;
  width: 4em;
}

.sex-item .small p {
	padding: 0 0 12px 0;
} 

.play:hover {
  background: #c00;
}

.play::before { 
  background: inherit;
  border-radius: 5% / 50%;
  bottom: 9%;
  content: "";
  left: -5%;
  position: absolute;
  right: -5%;
  top: 9%;
}

.play::after {
  border-style: solid;
  border-width: 1em 0 1em 1.732em;
  border-color: transparent transparent transparent #fff;
  content: ' ';
  font-size: 0.75em;
  height: 0;
  margin: -1em 0 0 -0.75em;
  top: 50%;
  position: absolute;
  width: 0;
}

.partOfdays h2, .partOfdays h3, .partOfdays .small {
	color: #222;
}

.partOfdays .arrowDiv {
    margin: 0 74px;
    top: 20px;
    float: right;
}

.w-1920 {
}

.w-500 {
	display: none;
}

.right10 {
	position: absolute;
	right: 10%;
}

.daysClass {
	padding: 80px 0px;
}

.daysClass:nth-of-type(even) {
	background: #fff;
}

.text {
	line-height: 1.2;
	font-size: 16px;
}

.breadcrumb {
	padding: 40px 0 0 0px;
	/*border-radius: 40px 40px 0 0;*/
	border-radius: 0;
	background: #fff;
	margin: 0;
}

.galleryFone  {
	width: 26%;
	max-width: 160px;
	height: 100%;
	background: rgba(32, 52, 86, 0.8);
	position: absolute;
	top: 0;
}

.right {
	right: 0
}

.left {
	left: 0
}

.d-none {
	display: none;
}

.miniGallery img, .see img, .portfolio img {
	/*border-radius: 32px;*/
    border-radius: 132px;
}

.food img {
    border-radius: 32px;
}

#plusActivity .food img {
    border-radius: 16px;
}

.miniGallery img {
    border-radius: 20px;
}

.moreTravel {
    background: url('../img/footer-tours/lagune-bg.webp') center bottom #000; background-repeat: no-repeat; padding-top: 100px;
} 

.formMoreTravel {
    /*position: absolute; */
    position: relative;
    width: 100%;
    background: #fff; /*linear-gradient(135deg, rgb(61, 23, 15) 0%, rgb(58, 21, 12) 47%, rgb(21, 2, 0) 100%); */
    margin: -40px 0;
    z-index: 9;
    border-radius: 40px;
}

.formMoreTravel .form__wrap:first-child {
    background: none;
}

.formMoreTravel h3, .formMoreTravel .form-upper .small, .formMoreTravel .input-wrap input {
    color: #000;
}

.formMoreTravel .input-wrap input {
    border-bottom: 1px solid #000;
}

/*
.formMoreTravel .form {
    padding: 40px 0 0 0; 
} 
*/

.formMoreTravel  .form__wrap {
    /*padding: 45px 0;*/
    margin: 0 auto;
}

.moreTravel img {
    border-radius: 40px;
}

.dig {
	padding: 20px 0 40px 0;
}

.p-t-25 {
	padding-top: 25px;
}

.details {	
	position: relative;
	/*padding: 0 0 80px 0; */
    
	border-radius: 40px;
	/*margin-top: -40px;*/
	background-color: #fff;
}

.subscribe {
    position: relative;
	padding: 100px 0 100px 0; 
    color: #fff;
}

.large-slider-container {
	margin: 40px auto 80px auto;
}

.bigPrice {
	font-size: 100px;
	font-weight: 600;
	width: 100%;
	text-align: center;
	padding-top: 32px;
}

.bigPrice span {
	font-size: 32px;	
}

.swiper-pagination-fraction {
	bottom: 0;
}

.greyTop {
	background: linear-gradient(180deg, rgba(33, 37, 41, 0.05), transparent 96px);
	height: 96px
}

.greyBottom {
	background: linear-gradient(0, rgba(33, 37, 41, 0.05), transparent 96px);
	height: 96px
}

.oneDay {
	display: flex;
}				

.program-swiper__img {
    border-radius: 26px 0 0 26px;
}

.oneDay .program-swiper__img {
	width: 50%;
	position: relative;
    margin: 10px;
}

.oneDay .program-swiper__txt {
    width: 50%;
    position: relative;
    margin: 0 auto;
}

.oneDayText {
	font-size: 17px;
	line-height: 1.2;
	width: 90%;
	padding-top: 20px;
    position: relative;
    height: 100%;
}

.oneDayText p {
	padding: 8px 0;
}

.city {
	width: 50%;
	margin: 0px auto;
	max-width: 640px;
}

.city .oneDayText {
	width: 100%;
}

.counterArrowBlock
{
	position: relative;
	margin: 0 auto;
	width: 200px;
}

#pictograms {    
    padding: 180px 0 60px 0;
}

#pictograms h2 {
    color: #000;
}

.pictograms {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    box-sizing: border-box;
    padding: 60px 0 0 0;
}
    
.pictogramOne {
    flex-basis: 160px;
    height: 240px;
    border: 1px #ddd solid;
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.pictogramOne img {
    height: 70%;
     margin: 0 auto;
}

.picTitle {
    position: absolute;
    bottom: 48px; 
    text-align: center;
    font-weight: 500;
}

.pictOneImg {
    display: flex;
    bottom: 48px;
}

/** swiper-button */

.program__swiper .swiper-button-next, .program__swiper .swiper-button-prev {
	margin-top: calc(-60px - (var(--swiper-navigation-size)/ 2));
}

.swiper-button-next, .swiper-button-prev {
	position: absolute;
	top: 30%;
    width: 64px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    transition: .2s ease-out;
    background: var(--red);
    border-radius: 32px;
}

.swiper-button-next {
    margin-right: 10px; /* Пример отступа между кнопками */
    right: -65px;
}

.swiper-button-prev {
    margin-left: 10px; /* Пример отступа между кнопками */
    left: -65px;
}

.swiper-button-next:after, .swiper-button-prev:after {
	display: none
}
.swiper-button-next:hover, .swiper-button-prev:hover {
	background: #771500;
}

.swiper-button {
	outline: 0
}
.swiper-button.swiper-button-prev {
	-webkit-transform: scaleX(-1);
	-moz-transform: scaleX(-1);
	-ms-transform: scaleX(-1);
	-o-transform: scaleX(-1);
	transform: scaleX(-1)
}
.swiper-button:after, .swiper-button:before {
	display: none
}

.partOfdays .swiper-button-next {
    left: 0;
} 

.partOfdays .swiper-button-prev {
    left: -92px;
} 


/* swiper-button END */


.feedback .swiper-button-prev {
	left: -40px
}
.feedback .swiper-button-next {
	right: -40px
}

.program .swiper-button-prev {
	left: 0px
}
.program .swiper-button-next {
	left: 80px
}

.swiper-button-prev .icon {
    transform: scaleX(-1);
}

.miniGallery .swiper-button-next, .miniGallery .swiper-button-prev {
	top: 23%;
}

.miniGallery .swiper-button-next {
    left: 100%;
}

.swiperButtonDays {
    padding: 60px 0 0 0;
    margin: 60px 0 0 0;
    top: 0;
}

.counterArrowBlock .swiper-button-next, .counterArrowBlock .swiper-button-prev {
	position: absolute;
	top: 40%;
}

.l1 {
    padding: 80px;
}

body.compensate-for-scrollbar {
	overflow: hidden
}
.fancybox-active {
	height: auto 
} 
.fancybox-is-hidden {
	left: -9999px;
	margin: 0;
	position: absolute !important;
	top: -9999px;
	visibility: hidden
}
.fancybox-container {
	-webkit-backface-visibility: hidden;
	height: 100%;
	left: 0;
	outline: 0;
	position: fixed;
	-webkit-tap-highlight-color: transparent;
	top: 0;
	-ms-touch-action: manipulation;
	touch-action: manipulation;
	transform: translateZ(0);
	width: 100%;
	z-index: 99992
}
.fancybox-container * {
	box-sizing: border-box
}
.fancybox-bg, .fancybox-inner, .fancybox-outer, .fancybox-stage {
	bottom: 0;
	left: 0;
	position: absolute;
	right: 0;
	top: 0
}
.fancybox-outer {
	-webkit-overflow-scrolling: touch;
	overflow-y: auto
}
.fancybox-bg {
	background: #1e1e1e;
	opacity: 0;
	transition-duration: inherit;
	transition-property: opacity;
	transition-timing-function: cubic-bezier(.47, 0, .74, .71)
}
.fancybox-is-open .fancybox-bg {
	opacity: .9;
	transition-timing-function: cubic-bezier(.22, .61, .36, 1)
}
.fancybox-caption, .fancybox-infobar, .fancybox-navigation .fancybox-button, .fancybox-toolbar {
	direction: ltr;
	opacity: 0;
	position: absolute;
	transition: opacity .25s ease, visibility 0s ease .25s;
	visibility: hidden;
	z-index: 99997
}
.fancybox-show-caption .fancybox-caption, .fancybox-show-infobar .fancybox-infobar, .fancybox-show-nav .fancybox-navigation .fancybox-button, .fancybox-show-toolbar .fancybox-toolbar {
	opacity: 1;
	transition: opacity .25s ease 0s, visibility 0s ease 0s;
	visibility: visible
}
.fancybox-infobar {
	color: #ccc;
	font-size: 13px;
	-webkit-font-smoothing: subpixel-antialiased;
	height: 44px;
	left: 0;
	line-height: 44px;
	min-width: 44px;
	mix-blend-mode: difference;
	padding: 0 10px;
	pointer-events: none;
	top: 0;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none
}
.fancybox-toolbar {
	right: 0;
	top: 0
}
.fancybox-stage {
	direction: ltr;
	overflow: visible;
	transform: translateZ(0);
	z-index: 99994
}
.fancybox-is-open .fancybox-stage {
	overflow: hidden
}
.fancybox-slide {
	-webkit-backface-visibility: hidden;
	display: none;
	height: 100%;
	left: 0;
	outline: 0;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	padding: 44px;
	position: absolute;
	text-align: center;
	top: 0;
	transition-property: transform, opacity;
	white-space: normal;
	width: 100%;
	z-index: 99994
}
.fancybox-slide:before {
	content: "";
	display: inline-block;
	font-size: 0;
	height: 100%;
	vertical-align: middle;
	width: 0
}
.fancybox-is-sliding .fancybox-slide, .fancybox-slide--current, .fancybox-slide--next, .fancybox-slide--previous {
	display: block
}
.fancybox-slide--image {
	overflow: hidden;
	padding: 44px 0
}
.fancybox-slide--image:before {
	display: none
}
.fancybox-slide--html {
	padding: 6px
}
.fancybox-content {
	background: #fff;
	display: inline-block;
	margin: 0;
	max-width: 100%;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	padding: 44px;
	position: relative;
	text-align: left;
	vertical-align: middle
}
.fancybox-slide--image .fancybox-content {
	animation-timing-function: cubic-bezier(.5, 0, .14, 1);
	-webkit-backface-visibility: hidden;
	background: 0 0;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	left: 0;
	max-width: none;
	overflow: visible;
	padding: 0;
	position: absolute;
	top: 0;
	transform-origin: top left;
	transition-property: transform, opacity;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	z-index: 99995
}
.fancybox-can-zoomOut .fancybox-content {
	cursor: zoom-out
}
.fancybox-can-zoomIn .fancybox-content {
	cursor: zoom-in
}
.fancybox-can-pan .fancybox-content, .fancybox-can-swipe .fancybox-content {
	cursor: grab
}
.fancybox-is-grabbing .fancybox-content {
	cursor: grabbing
}
.fancybox-container [data-selectable=true] {
	cursor: text
}
.fancybox-image, .fancybox-spaceball {
	background: 0 0;
	border: 0;
	height: 100%;
	left: 0;
	margin: 0;
	max-height: none;
	max-width: none;
	padding: 0;
	position: absolute;
	top: 0;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	width: 100%
}
.fancybox-spaceball {
	z-index: 1
}
.fancybox-slide--iframe .fancybox-content, .fancybox-slide--map .fancybox-content, .fancybox-slide--pdf .fancybox-content, .fancybox-slide--video .fancybox-content {
	height: 100%;
	overflow: visible;
	padding: 0;
	width: 100%
}
.fancybox-slide--video .fancybox-content {
	background: #000
}
.fancybox-slide--map .fancybox-content {
	background: #e5e3df
}
.fancybox-slide--iframe .fancybox-content {
	background: #fff
}
.fancybox-iframe, .fancybox-video {
	background: 0 0;
	border: 0;
	display: block;
	height: 100%;
	margin: 0;
	overflow: hidden;
	padding: 0;
	width: 100%
}
.fancybox-iframe {
	left: 0;
	position: absolute;
	top: 0
}
.fancybox-error {
	background: #fff;
	cursor: default;
	max-width: 400px;
	padding: 40px;
	width: 100%
}
.fancybox-error p {
	color: #444;
	font-size: 16px;
	line-height: 20px;
	margin: 0;
	padding: 0
}
.fancybox-button {
	background: rgba(30, 30, 30, .6);
	border: 0;
	border-radius: 0;
	box-shadow: none;
	cursor: pointer;
	display: inline-block;
	height: 44px;
	margin: 0;
	padding: 10px;
	position: relative;
	transition: color .2s;
	vertical-align: top;
	visibility: inherit;
	width: 44px
}
.fancybox-button, .fancybox-button:link, .fancybox-button:visited {
	color: #ccc
}
.fancybox-button:hover {
	color: #fff
}
.fancybox-button:focus {
	outline: 0
}
.fancybox-button.fancybox-focus {
	outline: 1px dotted
}
.fancybox-button[disabled], .fancybox-button[disabled]:hover {
	color: #888;
	cursor: default;
	outline: 0
}
.fancybox-button div {
	height: 100%
}
.fancybox-button svg {
	display: block;
	height: 100%;
	overflow: visible;
	position: relative;
	width: 100%
}
.fancybox-button svg path {
	fill: currentColor;
	stroke-width: 0
}
.fancybox-button--fsenter svg:nth-child(2), .fancybox-button--fsexit svg:first-child, .fancybox-button--pause svg:first-child, .fancybox-button--play svg:nth-child(2) {
	display: none
}
.fancybox-progress {
	background: #ff5268;
	height: 2px;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	transform: scaleX(0);
	transform-origin: 0;
	transition-property: transform;
	transition-timing-function: linear;
	z-index: 99998
}
.fancybox-close-small {
	background: 0 0;
	border: 0;
	border-radius: 0;
	color: #ccc;
	cursor: pointer;
	opacity: .8;
	padding: 8px;
	position: absolute;
	right: -12px;
	top: -44px;
	z-index: 401
}
.fancybox-close-small:hover {
	color: #fff;
	opacity: 1
}
.fancybox-slide--html .fancybox-close-small {
	color: currentColor;
	padding: 10px;
	right: 0;
	top: 0
}
.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
	overflow: hidden
}
.fancybox-is-scaling .fancybox-close-small, .fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
	display: none
}
.fancybox-navigation .fancybox-button {
	background-clip: content-box;
	height: 100px;
	opacity: 0;
	position: absolute;
	top: calc(50% - 50px);
	width: 70px
}
.fancybox-navigation .fancybox-button div {
	padding: 7px
}
.fancybox-navigation .fancybox-button--arrow_left {
	left: 0;
	left: env(safe-area-inset-left);
	padding: 31px 26px 31px 6px
}
.fancybox-navigation .fancybox-button--arrow_right {
	padding: 31px 6px 31px 26px;
	right: 0;
	right: env(safe-area-inset-right)
}
.fancybox-caption {
	background: linear-gradient(0deg, rgba(0, 0, 0, .85) 0, rgba(0, 0, 0, .3) 50%, rgba(0, 0, 0, .15) 65%, rgba(0, 0, 0, .075) 75.5%, rgba(0, 0, 0, .037) 82.85%, rgba(0, 0, 0, .019) 88%, transparent);
	bottom: 0;
	color: #eee;
	font-size: 14px;
	font-weight: 400;
	left: 0;
	line-height: 1.5;
	padding: 75px 44px 25px;
	pointer-events: none;
	right: 0;
	text-align: center;
	z-index: 99996
}
@supports (padding:max(0px)) {
	.fancybox-caption {
		padding: 75px max(44px, env(safe-area-inset-right)) max(25px, env(safe-area-inset-bottom)) max(44px, env(safe-area-inset-left))
	}

}
.fancybox-caption--separate {
	margin-top: -50px
}
.fancybox-caption__body {
	max-height: 50vh;
	overflow: auto;
	pointer-events: all
}
.fancybox-caption a, .fancybox-caption a:link, .fancybox-caption a:visited {
	color: #ccc;
	text-decoration: none
}
.fancybox-caption a:hover {
	color: #fff;
	text-decoration: underline
}
.fancybox-loading {
	animation: a 1s linear infinite;
	background: 0 0;
	border: 4px solid #888;
	border-bottom-color: #fff;
	border-radius: 50%;
	height: 50px;
	left: 50%;
	margin: -25px 0 0 -25px;
	opacity: .7;
	padding: 0;
	position: absolute;
	top: 50%;
	width: 50px;
	z-index: 99999
}
@keyframes a {
	to {
		transform: rotate(1turn)
	}
}
.fancybox-animated {
	transition-timing-function: cubic-bezier(0, 0, .25, 1)
}
.fancybox-fx-slide.fancybox-slide--previous {
	opacity: 0;
	transform: translate3d(-100%, 0, 0)
}
.fancybox-fx-slide.fancybox-slide--next {
	opacity: 0;
	transform: translate3d(100%, 0, 0)
}
.fancybox-fx-slide.fancybox-slide--current {
	opacity: 1;
	transform: translateZ(0)
}
.fancybox-fx-fade.fancybox-slide--next, .fancybox-fx-fade.fancybox-slide--previous {
	opacity: 0;
	transition-timing-function: cubic-bezier(.19, 1, .22, 1)
}
.fancybox-fx-fade.fancybox-slide--current {
	opacity: 1
}
.fancybox-fx-zoom-in-out.fancybox-slide--previous {
	opacity: 0;
	transform: scale3d(1.5, 1.5, 1.5)
}
.fancybox-fx-zoom-in-out.fancybox-slide--next {
	opacity: 0;
	transform: scale3d(.5, .5, .5)
}
.fancybox-fx-zoom-in-out.fancybox-slide--current {
	opacity: 1;
	transform: scaleX(1)
}
.fancybox-fx-rotate.fancybox-slide--previous {
	opacity: 0;
	transform: rotate(-1turn)
}
.fancybox-fx-rotate.fancybox-slide--next {
	opacity: 0;
	transform: rotate(1turn)
}
.fancybox-fx-rotate.fancybox-slide--current {
	opacity: 1;
	transform: rotate(0)
}
.fancybox-fx-circular.fancybox-slide--previous {
	opacity: 0;
	transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0)
}
.fancybox-fx-circular.fancybox-slide--next {
	opacity: 0;
	transform: scale3d(0, 0, 0) translate3d(100%, 0, 0)
}
.fancybox-fx-circular.fancybox-slide--current {
	opacity: 1;
	transform: scaleX(1) translateZ(0)
}
.fancybox-fx-tube.fancybox-slide--previous {
	transform: translate3d(-100%, 0, 0) scale(.1) skew(-10deg)
}
.fancybox-fx-tube.fancybox-slide--next {
	transform: translate3d(100%, 0, 0) scale(.1) skew(10deg)
}
.fancybox-fx-tube.fancybox-slide--current {
	transform: translateZ(0) scale(1)
}

.fancybox-share {
	background: #f4f4f4;
	border-radius: 3px;
	max-width: 90%;
	padding: 30px;
	text-align: center
}
.fancybox-share h1 {
	color: #222;
	font-size: 35px;
	font-weight: 700;
	margin: 0 0 20px
}
.fancybox-share p {
	margin: 0;
	padding: 0
}
.fancybox-share__button {
	border: 0;
	border-radius: 3px;
	display: inline-block;
	font-size: 14px;
	font-weight: 700;
	line-height: 40px;
	margin: 0 5px 10px;
	min-width: 130px;
	padding: 0 15px;
	text-decoration: none;
	transition: all .2s;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	white-space: nowrap
}
.fancybox-share__button:link, .fancybox-share__button:visited {
	color: #fff
}
.fancybox-share__button:hover {
	text-decoration: none
}
.fancybox-share__button--fb {
	background: #3b5998
}
.fancybox-share__button--fb:hover {
	background: #344e86
}
.fancybox-share__button--pt {
	background: #bd081d
}
.fancybox-share__button--pt:hover {
	background: #aa0719
}
.fancybox-share__button--tw {
	background: #1da1f2
}
.fancybox-share__button--tw:hover {
	background: #0d95e8
}
.fancybox-share__button svg {
	height: 25px;
	margin-right: 7px;
	position: relative;
	top: -1px;
	vertical-align: middle;
	width: 25px
}
.fancybox-share__button svg path {
	fill: #fff
}
.fancybox-share__input {
	background: 0 0;
	border: 0;
	border-bottom: 1px solid #d7d7d7;
	border-radius: 0;
	color: #5d5b5b;
	font-size: 14px;
	margin: 10px 0 0;
	outline: 0;
	padding: 10px 15px;
	width: 100%
}
.fancybox-thumbs {
	background: #ddd;
	bottom: 0;
	display: none;
	margin: 0;
	-webkit-overflow-scrolling: touch;
	-ms-overflow-style: -ms-autohiding-scrollbar;
	padding: 2px 2px 4px;
	position: absolute;
	right: 0;
	-webkit-tap-highlight-color: transparent;
	top: 0;
	width: 212px;
	z-index: 99995
}
.fancybox-thumbs-x {
	overflow-x: auto;
	overflow-y: hidden
}
.fancybox-show-thumbs .fancybox-thumbs {
	display: block
}
.fancybox-show-thumbs .fancybox-inner {
	right: 212px
}
.fancybox-thumbs__list {
	font-size: 0;
	height: 100%;
	list-style: none;
	margin: 0;
	overflow-x: hidden;
	overflow-y: auto;
	padding: 0;
	position: absolute;
	position: relative;
	white-space: nowrap;
	width: 100%
}
.fancybox-thumbs-x .fancybox-thumbs__list {
	overflow: hidden
}
.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
	width: 7px
}
.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
	background: #fff;
	border-radius: 10px;
	box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
}
.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
	background: #2a2a2a;
	border-radius: 10px
}
.fancybox-thumbs__list a {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	background-color: rgba(0, 0, 0, .1);
	background-position: 50%;
	background-repeat: no-repeat;
	background-size: cover;
	cursor: pointer;
	float: left;
	height: 75px;
	margin: 2px;
	max-height: calc(100% - 8px);
	max-width: calc(50% - 4px);
	outline: 0;
	overflow: hidden;
	padding: 0;
	position: relative;
	-webkit-tap-highlight-color: transparent;
	width: 100px
}
.fancybox-thumbs__list a:before {
	border: 6px solid #ff5268;
	bottom: 0;
	content: "";
	left: 0;
	opacity: 0;
	position: absolute;
	right: 0;
	top: 0;
	transition: all .2s cubic-bezier(.25, .46, .45, .94);
	z-index: 99991
}
.fancybox-thumbs__list a:focus:before {
	opacity: .5
}
.fancybox-thumbs__list a.fancybox-thumbs-active:before {
	opacity: 1
}

* {
	position: relative; /* мешает эффекту L! слова исчезающие на месте */
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box
}


.wrapper {
	width: 100%;
	overflow: hidden;  /* мешает эффекту L! слова исчезающие на месте */
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-moz-box-orient: vertical;
	-moz-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	min-height: 100vh;
}

.text-align-left {
	text-align: left
}
.text-align-center {
	text-align: center
}
.text-align-right {
	text-align: right
}
.full-img img {
	width: 100%
}
figure {
	text-align: center;
	margin-bottom: 30px;
	margin-top: 5px;
	font-size: .75em;
	opacity: .8
}
[hidden] {
	display: none !important
}
.img-full {
	width: 100%
}
.clearfix:after {
	content: '';
	clear: both;
	display: block
}

.h1, h1 {
    font-size: calc(0.9rem + 7vw);
    /*font-weight: 400;*/
    font-weight: 600;
    margin: 0;
    color: #fff;
    /*line-height: .8;*/
    line-height: 1;
    /*padding-bottom: 24px;*/
}
@media (min-width: 1200px) {
  .h1, h1 {
    font-size: 6.25rem;
  }
}

.h2, h2 {
	margin: 0;
	font-weight: 600;
	font-size: 64px;
	color: #fff;
	line-height: 1
}

.ilove {
	color: #fff;
	writing-mode: vertical-lr;
	position: absolute;
	left: -50px;
	top: 15px;
	font-size: 17px;
	font-weight: 400;
	border-left: 1px solid #f00;
	padding: 0 0 0 5px;
	height: 100%;	
    transform: rotate(180deg);
}


.h3, h3 {
	margin: 0;
	font-size: 26px;
	font-weight: 600;
    color: #000;
}

.h3 {
	font-size: 32px;
}

.h3:not(.c-heading), h3:not(.c-heading) {
	color: #fff
} 

.program-swiper__txt h3 {
    color: var(--chocolate);
}

.formMoreTravel .h3:not(.c-heading),
.formMoreTravel h3:not(.c-heading) {
    color: #000;
}


.h4, h4 {
	font-size: 32px;
	font-weight: 600
}
.h5, h5 {
	font-size: 32px;
	font-weight: 600
}

.welcome-item .h5 {
	font-size: 24px;
}

.h5 b, h5 b {
	font-weight: 700
}
.h6, h6 {
	font-size: 20px;
	font-weight: 600
}

.medium {
	font-size: 22px;
	font-weight: 600;
}
.small {
	font-size: 18px;
	font-weight: 400;
	line-height: 1.2;
}

.small p {
    text-align: left;
}

.welcome-item .small {
	font-size: 14px;
    opacity: .8;
}

/*.welcome-item>div:first-child {
	line-height: 28px;
}
*/
.text > * + * {
	margin-top: 15px
}

@media (max-width:735px) {
	body {
		font-size: 14px
	}
}

.large-slider-container .container, .container, .container-fluid, .container-inner {
	width: 100%;
	margin: 0 auto;
	padding: 0 64px;
	z-index: 2
}
.large-slider-container .container, .container {
	max-width: 1440px;
}
.container-inner {
	max-width: 1360px
}
.container-fluid {
	max-width: 1920px;
	padding: 0;
}
.fancybox-navigation {
	position: static
}

.swiper-pagination {
	position: relative;
	width: 60px;
	text-align: center;
	padding: 0;
	font-weight: 400;
	font-size: 16px;
	margin: 60px auto 0 auto;
}

.partOfdays .swiper-pagination {
    margin: 0px auto;
}

.swiper-pagination .swiper-pagination-bullet {
	opacity: 1;
	outline: 0
}


@font-face {
	font-family: IndieFlower;
	src: url(../fonts/IndieFlower-Regular.ttf);
	font-weight: 400
}

.icon {
    display: flex;
    width: 1em;
    height: 1em;
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
}


.textFoto, .miniGallery .swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
}

.textFoto {
    top: -4px; /* Пример отступа */
}

.miniGallery .swiper-pagination {
    top: -10px; /* Пример отступа */
}

.swiper-pagination, .swiper-pagination-bullet {
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-pagination-bullet {
    width: 5px;
    height: 5px;
    background: rgba(62, 62, 62, .62);
    transition: .2s ease-out;
}

.swiper-pagination-bullet-active {
    background: var(--red);
    /*
    width: 18px;
    height: 6px;
    */
    width: 40px;
    height: 4px;
}

.input-wrap input {
    width: 100%;
    border-bottom: 2px solid #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 2;
    color: #fff;
    padding: 0 16px 10px;
}

.input-wrap input::-webkit-input-placeholder,
.input-wrap input:-moz-placeholder,
.input-wrap input::-moz-placeholder,
.input-wrap input:-ms-input-placeholder,
.input-wrap input::placeholder {
    color: #fff;
    opacity: 0.4;
    font-weight: 400;
}

.tableMain img {
	-webkit-border-radius: 24px;
	-moz-border-radius: 24px;
	border-radius: 24px;
}

.modal {
	display: none;
	max-width: 90%;
	background-color: #fff;
	overflow: visible;
	-webkit-box-shadow: 0 10px 30px 0 rgba(0, 0, 0, .25);
	-moz-box-shadow: 0 10px 30px 0 rgba(0, 0, 0, .25);
	box-shadow: 0 10px 30px 0 rgba(0, 0, 0, .25);
	padding: 35px 30px;
	width: 380px
}
.modal, .modal > * {
	-webkit-transform: translateY(150px);
	-moz-transform: translateY(150px);
	-ms-transform: translateY(150px);
	-o-transform: translateY(150px);
	transform: translateY(150px);
	opacity: 0;
	-webkit-transition: opacity .5s, -webkit-transform .5s;
	/*transition: opacity .5s, -webkit-transform .5s;*/
	-o-transition: opacity .5s, -o-transform .5s;
	-moz-transition: transform .5s, opacity .5s, -moz-transform .5s;
	transition: transform .5s, opacity .5s;
}
.fancybox-slide--current .modal, .fancybox-slide--current .modal > * {
	opacity: 1;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0)
}

.link-icon, .media, .button-more {
    display: flex;
    align-items: center;
    transition: .2s ease-out;
}

.link-icon {
    font-size: 15px;
    color: #fff;
    font-weight: 600;
}

.link-icon--icon, .btn-outline, .btn-outline-modal {
    transition: .2s ease-out;
}

.link-icon:hover .link-icon--icon {
    transform: translateX(5px);
}

.media, .media li {
    display: flex;
    align-items: center;
}

.media > * + * {
    margin-left: 6px;
}

.media a, footer .media a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: .2s ease-out;
    font-size: 24px;
    color: #fff;
    /*margin: 6px;*/
}

footer .media a {
    width: 60px;
    height: 60px;
    font-size: 32px;
}

.media a:hover {
    color: #ff3b2a;
    background: #fff;
}

.btn, .btn-small {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 160px;
    height: 160px;
    overflow: hidden;
    border-radius: 50%;
    text-align: left;
    padding: 35px;
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    transition: .4s ease-out;
}

.btn-orange {
    background: var(--chocolate);
}

.btn-green {
    background: #009924;
}

.btn-small {
    width: 180px;
    height: 180px;
    font-size: 22px;
    padding: 30px;
}

.btn-small .btn--icon {
    font-size: 21px;
}

.btn:hover {
    background: #b91304;
    box-shadow: rgba(0, 0, 0, .1) 0 4px 12px;
}

.btn:hover .btn--icon {
    transform: translateX(40px);
}

.video-btn {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s ease-out;
    background: #009924;
}

.video-btn img {
    max-height: 100%;
    margin-left: 10px;
}

.video-btn:hover {
    background: #000;
}

.video-btn:before {
    content: attr(data-label);
    position: absolute;
    left: calc(100% + 18px);
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-weight: 600;
}

.button-more {
    display: flex;
    align-items: center;
    transition: .2s ease-out;
}

.button-more > * + * {
    margin-left: 18px;
}

.button-more--txt {
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.button-more--txt div {
    width: 60px;
    height: 42px;
    border-radius: 25px;
    border: 1px solid var(--red);
    display: inline-block;
    margin-right: 20px;
    transition: background-color 0.5s, border-color 0.5s; /* Плавный переход */
}

.button-more--txt div::before,
.button-more--txt div::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 2px; /* Толщина линии */
    background-color: var(--red); /* Замените на var(--red), если у вас определены CSS переменные */
    top: 45%;
    left: 54%;
    transform-origin: center;    
    transition: background-color 0.5s; /* Плавный переход */
}

.button-more--txt div::before {
    transform: translateX(-50%) translateY(-50%) rotate(45deg);

}

.button-more--txt div::after {
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
    top: 55%
}

.button-more:hover .button-more--txt div {
    background-color: var(--red); /* Изменение фона на красный при наведении */
    border-color: var(--red);
}

.button-more:hover .button-more--txt div::before,
.button-more:hover .button-more--txt div::after {
    background-color: #fff; /* Изменение цвета стрелки на белый при наведении */
}

/*
.button-more--icon {
    font-size: 16px;
    color: var(--red);
    transition: .2s ease-out;
}

.button-more--icon .icon {
    transform: rotate(0deg);
}

.button-more.active .button-more--icon {
    transform: rotate(-90deg);
}
*/

.btn-outline, .btn-outline-modal {
    height: 45px;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s ease-out;
    font-size: 14px;
    font-weight: 600;
    padding: 0 20px;
    border-radius: 22px;
    color: #fff;
    width: max-content;
    line-height: 45px;
}

.btn-outline-modal {
    border: 1px solid #ccc;
    color: #ccc;
}

.btn-outline:hover, .btn-outline-modal:hover {
    background: #ff3b2a;
    border-color: #ff3b2a;
    color: #fff;
}

.close-nav, .open-nav, .overlay, .wrap-nav--contacts {
	display: none
}

.footer {
	padding: 0 0 120px 0;
	overflow: hidden
}
.footer h6 {
	color: #fff;
	font-weight: 400;
	max-width: 375px
}

.footer__wrap {
    margin: 230px auto 240px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer__wrap h2 {
    text-align: center;
    max-width: 600px;
    padding: 100px 0 40px;
}

.footer__wrap .btn {
    margin-top: 30px;
}

.footer__lower {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer__lower .row {
    display: flex;
    align-items: center;
}

.footer__lower .row > * + * {
    margin-left: 34px;
    padding-left: 34px;
    border-left: 2px solid rgba(255, 255, 255, .4);
}

.footer__lower .small {
    color: #fff;
}

.footer .policy {
    font-size: 12px;
    color: #fff;
    font-weight: 400;
    text-decoration: underline;
}

.footer .policy:hover {
    text-decoration: none;
}

.welcome {
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.2);
    height: calc(100vh + 20px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.welcome__wrap {
    padding: 0;
}

.welcome__txt {
    text-align: center;
    font-family: "Montserrat";
    text-transform: uppercase;
}

.welcome__txt span {
    font-size: 1rem;
    font-weight: 400;
    color: #fff;
    max-width: 680px;
    margin: 16px 0;
    line-height: 1.4rem;
}

.welcome .btn {
    /* position: absolute;
    right: 40px;
    top: 0; */
}

.welcome .btn p:nth-child(1) {
    font-size: 18px;
    font-weight: 500;
}

.welcome__lower {
    margin-top: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.welcome__lower .row {
    display: flex;
    align-items: center;
    justify-content: center;
}

.welcome__lower .row > * + * {
    margin-left: 16px;
}

.welcome__lower .row .welcome-item * {
    color: #fff;
    text-align: center;
}

.welcome-item {
    padding: 16px;
    /*width: 210px;
    height: 100px;
    */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: .4px solid rgba(255, 255, 255, .5);
    border-radius: 5px;
    transition: .2s ease-out;
    user-select: none;
    background-color: rgba(255, 255, 255, 0.2);
}

.welcome-item:hover {
    border-color: #ff3b2a;
}

.introduction {
    overflow: hidden;
    height: 1000px;
}

.introduction-upper h2 {
    max-width: 880px;
}

.introduction-upper__wrap {
    padding-left: 120px;
    margin-top: 55px;
}

.introduction-upper__wrap * {
    color: #fff;
}

.introduction-upper__wrap > * + * {
    margin-top: 40px;
}

.introduction-upper__wrap .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 870px;
}

.introduction-upper__wrap .row h5 {
    font-weight: 500;
    max-width: 640px;
    width: 100%;
}

.introduction-upper__wrap .row h5 b {
    display: block;
    font-weight: 700;
}

.introduction-upper__wrap .row .text {
    max-width: 305px;
}

.introduction-upper__wrap .row:last-child .text p {
    font-size: 20px;
    font-weight: 600;
}

.introduction-lower {
    padding: 0 0 400px;
}

.introduction-lower .small {
    color: #c5c5db;
}

.introduction-lower__wrap {
    display: flex;
    flex-direction: column;
}

.introduction-lower h2 {
    font-size: 88px;
    text-align: center;
    font-weight: 500;
    max-width: 800px;
    margin: 0 auto 140px;
}

.introduction-lower__txt {
    margin-left: auto;
    max-width: 540px;
}

.introduction-lower__txt > * + * {
    margin-top: 16px;
}


.introduction:before {
	content: '';
	position: absolute;
	width: 1920px;
	height: 977px;
	bottom: -400px;
	left: 0;
	pointer-events: none
}
.advantages {
	padding: 0 0 600px;
} 

#advantagesNamibia {
    font-weight: 700;
    font-size: 20vw;
    line-height: 1;
    position: relative;
    text-align: center;
    transform: translateY(200px);
    z-index: 20;
    
    /* Градиентный текст */
    background: linear-gradient(15deg, #82563E -8.8%, #452919 70.33%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.advantages-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.advantages-item {
    padding: 0px 24px 36px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 25%;
    align-items: center;
}

.advantages-item > * + * {
	margin-top: 25px
}
.advantages-item * {
	color: #fff
}
.advantages-item .small {
	color: #dfdfdf
}
.advantages-item__img {
	width: 100%;
	overflow: hidden;
	-webkit-border-radius: 25px;
	-moz-border-radius: 25px;
	border-radius: 25px;
}
.advantages-item__img:before {
	content: '';
	display: block;
	padding-top: 100%
}
.advantages-item__img img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
.advantages-item__txt {
	max-width: 96%;
	padding-bottom: 25px;
	min-height: 320px;
}
.advantages-item__txt > * + * {
	margin-top: 16px
}

.advantages-item--dark {
	border-color: rgba(79, 79, 79, .4);
}
.advantages-item--dark .advantages-item__txt h6 {
	color: #000
}
.advantages-item--dark .advantages-item__txt .small {
	color: var(--darkGrey);
}
.gallery-hidden {
	display: none
}
.gallery__wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    position: absolute;
}

.gallery-item {
    width: 50%;
    overflow: hidden;
    transition: .2s ease-out;
    background-color: rgb(140, 114, 182);
    position: relative;
}

.gallery-item > img {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s ease-out;
}

.gallery-item--txt {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 60px 0 0 60px;
    transition: .3s ease-out;
}

.gallery-item--txt .small {
    font-weight: 400;
    color: #fff;
}

.gallery-item--txt .small span {
    display: block;
}

.gallery-item--txt .h3 {
    position: absolute;
    transform: rotate(-90deg);
    bottom: 20px;
    left: 80px;
    transform-origin: 0;
    z-index: 20;
}

.gallery-item--txt.left .h3 {
    transform: none;
    margin: 40px -20px;
}

.gallery-item--txt .h3 span {
    display: block;
    font-size: 22px;
}

.gallery-item--btn {
    transition: .2s ease-out;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 0 30px 0 35px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(0, 153, 36, 0.63);
    border: 1px solid rgba(0, 153, 36, 0.63);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 20px;
    color: #fff;
    font-weight: 600;
}

.gallery-item--btn span {
    display: block;
}

.gallery-item--btn img {
    width: 12px;
    height: 12px;
    margin-bottom: 6px;
}

.gallery-item:hover > img {
    transform: scale(1.1);
}

.gallery-item--txt.left {
    transform: rotate(-90deg);
    position: absolute;
    z-index: 20;
}

.gallery--1,
.gallery--2 {
    z-index: 10;
    padding: 0;
    height: calc(25vw); /* Высота адаптирована под ширину */
}

.gallery--1 .gallery-item,
.gallery--2 .gallery-item {
    transform: translateY(-50px); /* Смещение элементов */
}

.gallery--1 .gallery-item:last-child,
.gallery--2 .gallery-item:last-child {
    transform: translateY(-100px); /* Смещение последнего элемента */
}

.atlantica {
    padding: 600px 0 300px; /* Подгонка отступов */
}

.gallery--3 {
    margin: 120px 0 40px; /* Отступы для третьей галереи */
}

.gallery--3 .gallery-item:last-child {
    margin-top: 145px;
}

.gallery--3 .gallery-item--txt .h4 {
    max-width: 250px; /* Максимальная ширина текста */
}

.gallery--3 .gallery-item--txt .h3 {
    font-size: 25px; /* Размер шрифта заголовка */
}

.gallery--3 .gallery-item:after {
    display: none; /* Скрыть псевдоэлемент */
}

.atlantica h2 {
    max-width: 500px; /* Максимальная ширина заголовка */
}

.atlantica .btn {
    margin-left: 215px; /* Отступ для кнопки */
}

.atlantica .medium {
    margin: 60px 0 30px; /* Отступы для абзацев */
    max-width: 300px;
    font-weight: 400;
    color: #fff;
}

.see__top {
	padding: 0 0 40px 0px;
    /*
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap
    */
}

.see, .portfolio, .food {
	padding: 60px 0;
}

.see__top h2, .time2 h2, .feedback h2 {
	color: var(--chocolate);
	max-width: 680px
}

.see__top h6 {
    font-weight: 500;
    margin-top: 10px;
    color: #666;
    min-width: 30%;
    max-width: 600px;
    font-size: 18px;
}

.see-weather h6 {
	margin-bottom: 20px
}
.see-weather .row {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex
}
.see-weather .row > * + * {
	margin-left: 20px
}
.see-weather__item {
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: end;
    border-radius: 16px;
    box-shadow: 2px 13px 34px 0px rgba(0, 0, 0, 0.13);
    height: 106px;
    padding: 0 30px;
    width: 200px;
    /* Дополнительные стили */
    background-color: #fff; /* Цвет фона */
    color: #333; /* Цвет текста */
    font-family: Arial, sans-serif; /* Шрифт */
    font-size: 16px; /* Размер шрифта */
    text-align: center; /* Выравнивание текста по центру */
    transition: box-shadow 0.3s ease; /* Плавное изменение тени */
}

.see-weather__icon {
	width: 37px;
	height: 37px;
    position: absolute;
    top: 20px;
    left: 20px;
}
.see-weather__icon img {
	max-height: 100%
}

.moreTravel .see__top {
    padding: 0 0 60px 0px;
}

.see__swiper {
    padding: 0;
}
.see-swiper, .video-swiper, .fotos {
	overflow: visible
}

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

.see-swiper:after, .see-swiper:before, .fotos:after, .fotos:before, .large-swiper:after, .large-swiper:before, .video-swiper:after, .video-swiper:before {
	content: '';
	position: absolute;
	width: 1000%;
	top: 0;
	height: 100%;
	background: rgba(255, 255, 255, .8);
	z-index: 2
}

#plusActivity .see-swiper:before {
    background: #fff;
}

.see-swiper:after, .fotos:after, .large-swiper:after, .video-swiper:after {
	left: 100%;
}

.see-swiper:before, .fotos:before, .large-swiper:before, .video-swiper:before {
	right: 100%;
	/*background: rgba(255, 255, 255, 1);*/
}

.moreTravel .moreTravel-swiper, .moreTravel h2 {
    color: #ffffff;
}

.see-swiper .swiper-slide, .video-swiper .swiper-slide {
	height: auto
}

.see-swiper__slide {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-moz-box-orient: vertical;
	-moz-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 100%;
	height: 100%;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-moz-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between
}

.miniGallery .see-swiper__slide,
.see .see-swiper__slide,
.food .see-swiper__slide,
.moreTravel .see-swiper__slide,
.video-swiper .see-swiper__slide{
	-webkit-justify-content: start;
	justify-content: start;
}

.see-swiper__slide .medium {
	font-size: 18px;
	margin-bottom: 10px;
	text-align: center
}

.moreTravel-swiper__slide .medium {
    font-size: calc(1.3vw + 10px);
    padding: 20px 0 10px 0;
}

.moreTravel-swiper__slide .text {
    font-size: 16px;
    color: #ddd;
    font-weight: 500;
}

.moreTravel .swiper-pagination {
    margin: 80px 0 40px 0;
}

.moreTravel .swiper-pagination-bullet {
    background: #fff;
}

.moreTravel .swiper-pagination-bullet-active {
  background: var(--red); 
}

.afterMoreTravel {
    height: 400px;
}
 
.moreTravel .input-wrap input::placeholder {
    color: #333;
}

.moreTravel .input-wrap input:-moz-placeholder {
    color: #333;
}

.moreTravel .input-wrap input:placeholder {
    color: #333;
}

.moreTravel .input-wrap input::-webkit-input-placeholder {
	color: #333;
}
.moreTravel .input-wrap input:-webkit-input-placeholder {
	color: #333;
}

.input-wrap input::placeholder {
  color: #ddcaca;
  opacity: 1;
  font-weight: 400;
}

.miniGallery .see-swiper__slide .medium {
    font-size: 15px;
}

.miniGallery .see-swiper__slide .medium,
.see .see-swiper__slide .medium,
.portfolio .see-swiper__slide .medium,
.food .see-swiper__slide .medium,
.moreTravel .see-swiper__slide .medium {
	margin: 20px 0 20px 0;
}

.moreTravel .see-swiper__slide .medium {
    text-align: left;
}

.sex__wrap {
	padding: 0 0 40px 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: space-around;
	-ms-flex-pack: distribute;
	justify-content: space-around;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.country {
    padding: 0 0 40px 0;
    display: flex;
}

.country.small {
    display: block;
}

.sex__wrap img, .country img {
    border-radius: 24px; 
    align-self: flex-start;
    padding: 3px;
}

.sex-item {
	max-width: 50%;
	padding: 0 40px 0 0;
}

.country .sex-item {
    /*display: flex;*/
}

.country .small > div {
    display: block;
}

.sex-item h3 {
	margin: 40px 0 30px 0;
	color: var(--chocolate);
	font-size: 64px;
	max-width: 460px;
	font-weight: 600;
}

.sex-item h6 {
	margin-bottom: 36px;
	color: #000;
	max-width: 460px;
	font-weight: 600;
}

.sex-item ul li {
	padding-bottom: 12px;
	padding-left: 24px
}

.sex-item ul li.check, .sex-item ul li.mini-arrow {
	padding-bottom: 10px;
}

.small.check, .small.mini-arrow {
    font-size: 16px;
    color: #666;
}
/*
.sex-item ul li:before {
	content: '“';
	position: absolute;
	left: 0;
	top: 0;
	color: var(--red);
	font-family: Andale;
	font-size: 48px;
	line-height: .8
}
*/

.sex-item ul li:not(.check):not(.mini-arrow):before {
	content: '';
	position: absolute;
	left: 0;
	top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
	background-color: var(--chocolate);
    
}

.sex-item ul li.check:before, .sex-item ul li.mini-arrow:before {
    content: url('/img/icons/check.svg');
	position: absolute;
    left: 0;
	top: 0;    
    /*font-size: 20px;*/
}

.sex-item ul li.mini-arrow:before {
    content: url('/img/icons/mini-arrow.svg');
}

.sex-item ul li > * + * {
	margin-top: 12px
}

.sex-item.data ul li {
	padding-left: 0;
}

.sex-item.data ul li:before {
    display: none;
}

.tour {
	padding: 300px 0 800px;
	margin: 200px 0 0 0;
}

.tour:before {
	content: 'Namibia';
	font-size: 350px;
	font-weight: 700;
	position: absolute;
	top: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	color: rgba(164, 201, 223, 0.7);
	mix-blend-mode: multiply;
	z-index: 2
}
.tour__txt h2 {
	background: -webkit-linear-gradient(0deg, #d48c57 5%, #632f14 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	max-width: 750px;
	line-height: .8;
	padding: 0 0 16px
}
.tour__txt .medium {
	color: #643014;
	max-width: 420px;
	margin: 20px 0 55px
}
.tour__txt .btn {
	margin-left: 215px
}

.feedback h2.side-title {
	color: #000
}
.feedback h2.side-title:before {
	color: #939393
}
.feedback__swiper {
	margin-top: 40px;
}
.feedback-swiper {
	overflow: visible
}
.feedback-swiper .swiper-button-next, .feedback-swiper .swiper-button-prev {
	z-index: 6
}
.feedback-swiper:after {
	content: '';
	position: absolute;
	width: 1000%;
	left: 100%;
	top: 0;
	height: 100%;
	background: rgba(255, 255, 255, .8);
	z-index: 2
}
.feedback-swiper:before {
	content: '';
	position: absolute;
	width: 1000%;
	right: 100%;
	top: 0;
	height: 100%;
	background: rgba(255, 255, 255, .8);
	z-index: 2
}
.feedback-swiper__slide {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-moz-box-orient: vertical;
	-moz-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column
}
.feedback-swiper__slide > * + * {
	margin: 18px 0;
}
.feedback-swiper__txt {
	width: 100%;
	  box-shadow: 2px 13px 34px rgba(0, 0, 0, 0.08);
	padding: 30px 40px;
	border-radius: 20px
}
.feedback-swiper__txt > * + * {
	margin-top: 20px
}
.feedback-swiper__txt .text p {
	color: #505050
}
.feedback-swiper__txt a {
	color: #ff3b2a;
	font-weight: 600
}
.feedback-swiper__txt a:hover {
	text-decoration: underline
}
.feedback-user {
    display: flex;
    align-items: center;
}

.feedback-user__img {
    width: 55px;
    height: 55px;
    overflow: hidden;
    border-radius: 50%;
}

.feedback-user__img img {
    width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    transition: 0.5s ease;
}

.feedback-user__txt {
    width: calc(100% - 55px);
    padding-left: 10px;
    display: flex;
    flex-direction: column;
}

.feedback-user__txt .medium {
	font-size: 16px;
	line-height: 1
}
.feedback-user__txt .small {
	font-size: 14px;
	color: #505050
}

.tripadvisor img {
  width: 14px;
}

.team__wrap > div {
	padding: 40px;
}

.team__wrap div:first-child {
	padding: 0px;
}

.team__wrap {
    display: flex;
    /*flex-wrap: wrap;*/
    margin-top: 55px;
    box-shadow: 2px 13px 34px rgba(0, 0, 0, 0.08);
    border-radius: 400px;
    padding: 24px;
}

.team__wrap .team {
    padding: 0;
}

.team__wrap >.text {
	max-width: calc(75% - 340px - 48px);
	color: #000;
	font-size: 18px;
}

.team__wrap >.lider {
	width: 25%;
	min-width: 25%;
}

.team__wrap .text p {
	line-height: 1.15;
	font-size: 16px;
	color: var(--darkGrey);
}

.time {
	padding: 150px 0 0 0
}
.time__wrap {
	display: flex;
	flex-wrap: wrap
}
.time__txt {
	max-width: 355px
}
.time__txt > * + * {
	margin-top: 30px
}
.time__txt h3 {
	color: #000;
	font-size: 48px;
	font-weight: 600
}
.time__txt .medium {
	font-size: 20px;
	color: #535353;
	font-weight: 400;
	max-width: 170px
}
.time .advantages-row {
    width: calc(100% - 355px);
    padding-left: 20px;
}

.time .advantages-row .advantages-item {
    width: calc(33.33% - 40px); /* 100% / 3 - 40px */
}

.time .advantages-item {
	min-height: 520px
}
.time2 {
	padding: 70px 0px;
	background: #fff;
}
.time2 .container {
	background: #fff;
}
.time2-mid {
	margin: 70px 0 80px
}
.time2-mid__item {
    padding: 35px 0 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    border-top: 1px solid #000;
    min-height: 260px;
}

.time2-mid__item .medium, 
.time2-mid__item .text {
    width: calc(100% - 485px);
    padding-left: 95px;
}

.time2-mid__item .text {
	margin-top: 12px
}
.time2-mid__item .text p {
	color: var(--darkGrey);
}
.time2-mid__item .medium {
	font-size: 20px;
	font-weight: 600
}
.time2-mid__item:last-child {
	border-bottom: none
}
.time2-mid__img {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 485px;
    border-radius: 52px;
    overflow: hidden;
}

.time2-mid__img:before {
    content: '';
    display: block;
    padding-top: 38%; /* это значение может быть связано с аспектным соотношением изображения, проверьте, что требуется для вашего макета */
}

.time2-mid__img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team img {
    border-radius: 200px;
    width: 260px;
}

.time2-upper, .time2-lower {
    display: flex;
    flex-wrap: wrap;
}

.time2-upper > * + * {
    margin-left: 180px;
}

.time2-upper h5 {
    max-width: 420px;
    font-weight: 400;
}

.time2-upper .small {
    max-width: 300px;
    color: var(--darkGrey); /* предполагается, что --darkGrey определено в вашем CSS */
    line-height: 1.2;
}

.time2-lower {
    align-items: center;
    margin: 80px auto 20px;
}

.time2-lower h5 {
	font-weight: 400;
	max-width: 570px
}
.time2-lower h5 b {
	font-weight: 600
}
.time2-lower > * + * {
	margin-left: 200px
}
.program {
	padding: 0 0 125px 0;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	overflow: hidden;
}
.program h2 {
	max-width: 620px
}
.program__swiper {
	margin-top: 25px;
    padding-bottom: 128px;
}
.program__wrap {
	margin-top: 65px
}
.program-swiper {
	margin: 0%;
}
.program-swiper__slide,
.oneDay {
    display: flex;
    justify-content: space-between; /* заменяет -webkit-box-pack, -moz-box-pack, -ms-flex-pack */
    width: 100%;
    overflow: hidden;
}

.program-swiper__slide {
    height: 450px;
}

.program-swiper__txt {
    display: flex;
    flex-direction: column;
    padding: 0 10px 0 40px;
}

.partOfdays h3 {
    font-weight: 600;
    max-width: 440px;
    font-size: 32px;
    color: #000;
    text-overflow: ellipsis;
}

.program-swiper__txt .small {
	color: #fff;
	padding: 20px 0 60px 0;
	max-width: 500px;
}

.program-swiper__txt .small p {
	padding-bottom: 10px;
}

.program-swiper__txt .small p:last-child {
	padding-bottom: 0px;
}

.program-swiper__txt .small a {
	color: #fff;
	text-decoration: underline;
}

.program-swiper__txt .small span {
	display: block
}

.program-swiper__img {
    width: calc(100% - 580px); /* используем только calc() для вычисления ширины */
    border-radius: 26px;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 0;
}

.program-swiper__img img {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.program-swiper__label {
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    line-height: .8;
    background: #84725a;
    height: 20px;
    padding: 0 12px;
    width: max-content; /* используем только max-content для ширины */
    display: flex;
    align-items: center;
    border-radius: 10px;
    margin-bottom: 10px;
}

.program-thumbs {
	overflow: visible
}
.program-thumbs .swiper-slide {
	height: auto
}
.program-thumbs .swiper-slide.swiper-slide-thumb-active .program-thumbs__slide {
	padding-top: 40px
}
.program-thumbs .swiper-slide.swiper-slide-thumb-active .program-thumbs__slide span {
	color: #fff
}
.program-thumbs .swiper-slide.swiper-slide-thumb-active .program-thumbs--dot:before {
	opacity: 1;
	visibility: visible
}
.program-thumbs .swiper-slide.swiper-slide-thumb-active .program-thumbs--dot:after {
    background: #fff;
    top: calc(100% + 10px);
    height: 14px;
}

.program-thumbs .swiper-slide:last-child .program-thumbs__slide:before {
    display: none;
}

.program-thumbs__slide {
    display: flex;
    flex-direction: column;
    padding-top: 28px;
    transition: .2s ease-out;
    min-height: 70px;
    position: relative; /* добавлено для .daysNumber */
    padding: 0 0 4px 40px; /* добавлено для .daysNumber */
}

.program-thumbs__slide:before {
    content: '';
    position: absolute;
    top: 3px;
    left: 0;
    width: calc(100% + 20px);
    height: 2px;
    background: rgba(255, 255, 255, .4);
    z-index: -2;
}

.program-thumbs__slide span {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, .6);
    transition: .2s ease-out;
}

.program-thumbs--dot {
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    transition: .2s ease-out;
}

.program-thumbs--dot:before {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #ff3b2a;
    pointer-events: none;
    transition: .2s ease-out;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
}

.program-thumbs--dot:after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    width: 2px;
    height: 12px;
    background: rgba(255, 255, 255, .4);
    z-index: -2;
    transition: .2s ease-out;
}

.form__wrap {
    background: linear-gradient(135deg, rgb(76, 46, 82) 0%, rgb(142, 98, 112) 47%, rgb(208, 146, 140) 100%);
    padding: 45px 60px;
    border-radius: 40px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}

.form__wrap > * + * {
	margin-left: 40px
}
.form__left {
	/*max-width: 66%;*/
	width: calc(100% - 200px);
}
.form-row {
	padding: 40px 0 18px 0;
}

.form .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -25px -25px;
}

.form .row .input-wrap {
    width: calc(50% - 50px); /* используем только calc() для вычисления ширины */
    margin: 0 25px 25px;
}

.form-upper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.form-upper h3 {
	max-width: 50%;
	font-weight: 600;
	line-height: .9
}

.form-subscribe h4 {
	font-weight: 600;
}

.form-subscribe .small {
    padding-top: 10px;
}

.form-upper .small {
	width: calc(50% - 25px);
	color: #fff;
	font-weight: 400;
	line-height: 1.1
}

.form-agreement {
	font-size: 10px;
	font-weight: 400;
	color: #fff
}
.form-agreement a {
	text-decoration: underline;
	color: #fff
}
.form-agreement a:hover {
	text-decoration: none
}
.details h2 {
	color: #000;
	max-width: 620px
}

.details__wrap {
    padding: 70px 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.details-col {
    display: flex;
    flex-direction: column;
}

.details-col h3 {
    font-size: 42px; /* Оставлено без изменений */
    font-weight: 600;
    color: #000;
    z-index: 2;
}

.details-col .medium {
    font-size: 20px;
    margin-top: 4px;
}

.details__left {
    display: flex;
    flex-direction: column;
    width: 240px;
}

.details__left > * + * {
    margin-top: 30px;
}

.details__content {
    width: calc(100% - 240px);
    padding-left: 80px;
}

.details-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -25px -30px;
}

.details-item {
    width: calc(100% / 3 - 30px);
    margin: 0 7px 18px 15px;
    box-shadow: 2px 13px 34px rgba(0, 0, 0, 0.07);
    padding: 35px 30px;
    border-radius: 40px;
}

.details-item__img {
    height: 50px;
    display: flex;
    align-items: center;
    max-width: 100%;
    flex-direction: row-reverse; /* Добавлено для правильного расположения изображения */
}

.details-item__img img {
    max-height: 100%;
}

.details-item__title {
    margin: 20px 0 14px;
}

.details-item__title > * + * {
    margin-top: 4px;
}

.details-item .text p {
    font-size: 14px;
    color: var(--darkGrey);
    line-height: 1.2;
}

.take h2 {
    color: #000;
    max-width: 480px;
    margin-bottom: 50px;
}

.take__wrap {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -12px -24px;
}

.take-item {
    display: flex;
    flex-direction: column;
    width: calc(100% / 4 - 24px);
    margin: 0 12px 24px;
    padding: 30px 35px;
    border: 1px solid rgba(208, 192, 170, .3);
    border-radius: 60px;
}

.take-item:hover .take-item__arrow {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
}

.take-item__img {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
}

.take-item__img img {
	max-height: 100%
}
.take-item .h6 {
	margin: 20px 0 10px
}
.take-item .h6 span {
	display: block
}
.take-item .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.take-item .row .small {
    font-size: 14px;
    font-weight: 500;
    color: var(--red);
}

.take-item__arrow {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ececec;
    border-radius: 50%;
    font-size: 14px;
    color: var(--red);
    transition: .2s ease-out;
}

.faq {
    padding: 130px 0 100px;
    background-color: #fff;
}

.faq h2 {
    max-width: 620px;
    color: #000;
}

.faq__wrap {
    margin-top: 40px;
}

.faq-item + .faq-item {
    margin-top: 14px; /* Изменено положение маргина */
}

.faq-item.active .faq-item__icon {
    background: #ff3b2a;
}

.faq-item.active .faq-item__icon:before {
    content: '-';
    color: #fff;
    top: -2px; /* Изменено положение top */
}

.faq-item:before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: calc(100% - 60px);
    border-bottom: 1px solid #dbdbdb;
}

.faq-item__question {
    padding-left: 60px;
    min-height: 64px;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 20px;
    font-weight: 500;
    color: #000;
}

.faq-item__answer {
	padding: 16px 0 16px 60px;
}
.faq-item__answer .text {
	max-width: 95%
}
.faq-item__answer .text p {
	font-size: 16px;
	color: var(--darkGrey);
}

.faq-item__icon {
    position: absolute;
    left: 0;
    top: 15%;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s ease-out;
    border-radius: 50%;
}

.faq-item__icon:hover {
	transform: rotate(180deg);
}

.faq-item__icon:before {
    content: '+';
    position: relative;
    font-size: 34px;
    font-weight: 400;
    line-height: 1;
    color: #ff3b2a;
    transition: .2s ease-out;
}

.map {
    padding: 100px 0 0;
    background: #fff;
}

.map h2 {
    color: #000;
    max-width: 620px;
    z-index: 1;
}

.map__col {
    display: flex;
    flex-direction: column;
}

.map__col > * + * {
    margin-top: 75px;
}

.map-item {
    display: flex;
    align-items: flex-start;
}

.map-item__img {
    width: 32px;
}

.map-item__img img {
    max-height: 100%;
}

.map-item__txt {
    width: calc(100% - 32px);
    padding-left: 20px;
}


.map-item__txt > * + * {
	margin-top: 6px
}
.map-item__txt .medium {
	font-size: 16px

}

.map #map__data {
    position: absolute;
    top: 72px;
    width: 94%;
}   

.map__img {
	position: relative;
}
.map__img img {
	max-width: initial;
    display: block;
    margin: 0 auto;
}
.map__img-mob {
	display: none
}
.map__wrap {
    padding: 170px 200px 300px 0; /* Убрано использование padding-right */
    display: flex;
    justify-content: flex-end;
    position: relative; /* Добавлено для позиционирования псевдоэлемента */
}

.map__wrap:before {
    content: attr(data-label);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
    left: 0;
    font-weight: 600;
    color: #b1cddc;
    max-width: 110px;
}

.modal {
	max-width: 900px;
	width: 100%;
	padding: 35px 50px;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px
}
.modal .input-wrap input {
	line-height: 1
}
.modal-info__wrap {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-moz-box-orient: vertical;
	-moz-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column
}
.modal-info__wrap > * + * {
	margin-top: 20px
}
.modal-info__img {
	height: 95px;
	width: 100%;
	text-align: left
}
.modal-info__img img {
	max-height: 100%;
	height: 100%
}
.modal-info h3 {
	color: #000;
}
.modal-info ul > * + * {
	margin-top: 20px
}
.modal-info ul li {
	font-size: 20px;
	padding-left: 40px
}
.modal-info ul li:before {
	content: '';
	position: absolute;
	background: var(--red);
	height: 3px;
	width: 14px;
	top: 9px;
	left: 10px
}
.modal-info .fancybox-close-small {
	top: 30px;
	right: 30px;
	padding: 0
}
.modal-info .fancybox-close-small svg path {
	fill: #ff3b2a
}
.modal .btn {
	font-size: 18px;
	margin-top: -60px;	
}
.modal-request {
	background: url(../img/form-bg.png) center no-repeat;
	-moz-background-size: cover;
	background-size: cover
}
.modal-request .fancybox-close-small {
	top: 30px;
	right: 30px;
	padding: 0
}
.modal-request .fancybox-close-small svg path {
	fill: #fff
}
.modal-request__header {
	margin-bottom: 60px
}
.modal-request__header .small {
	margin-top: 10px;
	color: #fff
}
.modal-request__header .small span {
	display: block
}
.modal-request__wrap {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: left;
	-webkit-justify-content: left;
	-moz-box-pack: left;
	-ms-flex-pack: left;
	justify-content: left
}
.modal-request__wrap > * + * {
	margin-left: 35px
}
.modal-request__wrap .col {
	max-width: 420px;
	width: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-moz-box-orient: vertical;
	-moz-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column
}
.modal-request__wrap .col > * + * {
	margin-top: 20px
}
.modal-request__wrap .col .form-agreement {
	margin-top: 40px
}
.modal-request__wrap .col .small {
	color: #fff
}
.modal-request__wrap .col .small span {
	display: block
}
.modal-request h3 {
	line-height: 1
}
.modal-request__icon {
	width: 100%;
	height: 80px;
	text-align: left
}
.modal-request__icon img {
	max-height: 100%;
	height: 100%
}
.modal-request--ok .modal-request__wrap {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center
}
.modal-request--ok .modal-request__wrap .btn {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center
}
.fancybox-bg {
	background: rgba(0, 0, 0, .7) !important
}
.fancybox-thumbs {
	top: auto;
	width: auto;
	bottom: 0;
	left: 0;
	right: 0;
	height: 95px;
	padding: 10px 10px 5px 10px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	background: rgba(0, 0, 0, .3);
}
.fancybox-thumbs__list {
	text-align: center
}
.fancybox-thumbs__list a:before {
	border: 4px solid #ff3b2a
}
.fancybox-show-thumbs .fancybox-inner {
	right: 0;
	bottom: 95px
}

.team__wrap .text .lider {
    display: none;
}

.atlantica__wrap > * + * {
	margin-top: 18px
}

.atlantica .side-title {
	max-width: 460px
}
.atlantica .side-title span {
	display: block
}

.copyright {
    padding-top: 60px;
    color: #ccc;
}

.hotels, .feedback {
    padding-top: 60px;
}

.outer-c {
    width: 16px; /* Общий размер: 60px внутренний круг + 20px пробел + 20px внешний круг */
    height: 16px;
    border-radius: 50%;
    border: 2px solid #00A680; /* Цвет внешнего круга */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent; /* Прозрачный фон для пробела */
}

.inner-c {
    width: 8px; /* Размер внутреннего круга */
    height: 8px;
    border-radius: 50%;
    background-color: #00A680; /* Цвет внутреннего круга */
}

@media (max-width:1600px) {
    
	.swiper-button-next {
		right: -45px;
	}

	.swiper-button-prev {
		left: -45px;
	}
    
    .see__top {
        padding: 0 0 calc(4vw + 10px) 0px;
    }
}

@media (max-width:1408px){
   .large-slider-container .container {
        padding: 0 32px;
    }
}

@media (max-width:1366px) {   
    .afterMoreTravel {
        height: 300px;
    }
    
    .map__wrap {
        padding: 170px 60px 160px;
    }
    
	.swiper-button-next {
		right: -25px;
	}

	.swiper-button-prev {
		left: -25px;
	}
	
	.video {
	  top: 20px;
	}
	
	.tour:before {
		font-size: 250px
	}
	.side-title:before {
		display: none
	}
	
	.link-icon {
		font-size: 14px
	}
	.link-icon--icon {
		margin-left: 8px
	}
	
	.h2, h2 {
		font-size: 64px
	}
	.ilove {
		left:-40px;
	}
	.h3 {
		font-size: 32px
	}
	.h4, h4 {
		font-size: 30px
	}
	.h5, h5 {
		font-size: 24px
	}
	.welcome-item .h5 {
	font-size: 23px;
}
	
	.h6, h6 {
		font-size: 20px
	}
	.medium {
		font-size: 17px
	}
    
	.btn-small {
		width: 140px;
		height: 140px;
		font-size: 18px;
		padding: 0 26px
	}

	.introduction:before {
		-moz-background-size: contain;
		background-size: contain;
		width: 100%;
		height: 977px;
		bottom: -410px
	}
	.introduction-upper {
		padding: 100px 0 120px;
	}
	.introduction-upper__wrap {
		padding-left: 60px
	}
	.introduction-lower h2 {
		margin: 0 auto 100px;
		font-size: 65px;
		max-width: 600px
	}
	.gallery-item--txt {
		padding-left: 55px;
		padding-top: 50px
	}

	.advantages {
		padding: 0px 0 470px
	}
	.advantages-item {
		min-height: 530px;
		padding: 0px 25px 25px 25px;
	}

	.advantages:after {
		font-size: 250px
	}
	.atlantica .medium {
		margin: 50px 0 20px
	}
	.see__top {
		-webkit-box-pack: justify;
		-moz-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between
	}
	.see, .portfolio, .food {
		padding: 20px 0 40px 0;
	}
	
	.see__top > * + * {
		margin: 0
	}
	.see-swiper__slide .medium {
		font-size: 18px
	}
	.see-weather__item {
		width: 180px;
		height: 110px
	}
	.see-weather__icon {
		width: 30px;
		height: 30px
	}
	.swiper-button-next, .swiper-button-prev {
		width: 50px;
		height: 50px;
		font-size: 20px
	}
	
	.miniGallery .swiper-button-next, .miniGallery .swiper-button-prev, .see .swiper-button-next, .see .swiper-button-prev, .hl-next, .hl-prev {
		width: 54px;
		height: 54px;		
	}
	
	.sex-item {
		width: -webkit-calc(100% / 2);
		width: -moz-calc(100% / 2);
		width: calc(100% / 2);
		margin: 30px 0px;
		max-width: 100%
	}
	.sex-item h3 {
		font-size: 40px
	}
	.sex__wrap {
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		-moz-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
	.tour {
		padding: 200px 0 485px
	}

	.atlantica__wrap > * + * {
		margin: 25px auto;
	}
	.video-btn {
		width: 100px;
		height: 100px
	}
	.video-btn img {
		width: 36px
	}
	.time .advantages-item {
		min-height: 460px
	}
	.feedback__swiper {
		margin-top: 50px
	}
	.team__wrap > * + * {
		margin: 0
	}

	.program {
		padding: 0px 0 415px

	}
	.map__img {
		width: 85%
	}
	.map__img img {
		max-width: 100%
	}
	.details-col h3 {
		font-size: 36px
	}
	.footer {
		padding: 60px 0
	}
	
	.portfolio {
		padding: 40px 0 0
	}    
}
@media (max-width:1280px) {   
    
    .gallery--1, .gallery--2 {
        padding: 0;
        height: calc(30vw);
    }
    
    .footer__wrap {
        margin: 80px auto 40px auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
	.see-swiper:before, .see-swiper:after, .large-swiper:before, .large-swiper:after, .video-swiper:before, .video-swiper:after {
		background: none
	}
	
	.bigPrice {
	font-size: 100px;
	}
	
	.advantages-row {
		margin: 0 -10px 0
	}
	.advantages-item {
		width: -webkit-calc(100% / 4 - 20px);
		width: -moz-calc(100% / 4 - 20px);
		width: calc(100% / 4 - 20px);
		margin: 0 10px 0
	}
	.time__txt {
		max-width: 100%;
		margin-bottom: 30px
	}
	.time__txt > * + * {
		margin-top: 20px
	}
	.time__txt .medium {
		max-width: 100%
	}
    
	.time__wrap {
        display: flex;
        justify-content: center;
    }

	.time .advantages-row {
		padding: 0;
		max-width: 770px;
		width: 100%
	}
	.time .advantages-row .advantages-item {
		width: -webkit-calc(100% / 3 - 20px);
		width: -moz-calc(100% / 3 - 20px);
		width: calc(100% / 3 - 20px)
	}
	
	.details-item {
		padding: 25px
	}
	.details__content {
		padding-left: 0
	}
	.faq {
		padding: 100px 0
	}
	
	.see-swiper, .fotos, .video-swiper {
		overflow: visible;
	}
	.tour {
		background-position: top;
	}
    
    .priceLine div:nth-child(n+2), .priceLine div:nth-child(n+3)
    {
        min-width: 20%;
    }    
    
    .moreTravel-swiper__slide .text {
        font-size: 16px;
    }    
}

@media (max-width:1100px) {
    
    .gallery--1 {
        padding: 160px 0 0 0;        
    }
    
    .gallery--2 {
        padding: 0;        
    }
    
	.team__wrap >.lider {
		display: none;
	}
    
    .team__wrap .text .lider {
		width: 100%;
        display: block;
	}
	
	.team__wrap>.text {
		max-width: calc(100% - 320px);
	}
	
	.bigPrice {
	font-size: 100px;
	}

	.bigPrice span {
		font-size: 26px;	
	}
		
	.oneDay h3 {
		margin-top: 20px;
	}
		
	.oneDay .program-swiper__img {
        width: 100%;
        position: relative;
        margin: 30px
	}
	
	.program-swiper__label {
		margin: 20px 0 0 0;
	}
	
	.oneDayText {
		width: 100%;
		padding-top: 0;
	}
	
	.oneDay .program-swiper__txt {
		width: 100%;
	}
        
    .priceLine div:first-child {
        width: 30%;
        min-width: 170px;
    }
    
    .priceLine div:nth-child(n+2) {
        min-width: 20%;
    } 
    .introduction {
      height: 640px;
    }
    
    .advantages-item {
		width: calc(100% / 2 - 40px);
		margin: 0 20px 100px !important;
        min-height: 280px;
        flex-direction: column-reverse;
	}
    
    .advantages-item__txt {
        min-height: 220px;
        top: 32px;
        max-width: 98%;
    }
    
    .advantages-item > * + * {
      margin-top: 0;
    }
    
    .advantages {
      padding: 0;
    }
    
    #advantagesNamibia {
        transform: translateY(-40px);
        padding-bottom: 0px;
    }
    
    .videoTitle {
        top: calc(20% + 2vw);
    }
}

@media (max-width:1023px) {
    
    .l1 {
        padding: 0px 20px;
    }
    
    .tour {
        margin: 0;
    }
    
    .modal .arrowLong, .modal .icon.icon-long-arrow {
      top: 0px;
    }
    
    .moreTravel-swiper__slide .medium {
        font-size: calc(1.2vw + 20px);
    }
    
    .large-slider-container {
        margin: 60px auto;
    }
    
    #advantagesNamibia {
      transform: translateY(0px);
    }
    
    .gallery__wrap {
        position: relative;
    }
         
    .container, .container-fluid, .container-inner {
      padding: 0 40px;
    }
    
    .daysNumber h5, .daysNumber>h6 {
        font-size: calc(1vw + 1rem);
    }
    
    .bottomLine {
        display: none;
    }
    
    .program-swiper__img {
        border-radius: 26px;
    }
        
    .program-swiper__txt h3 {
        /*font-size: calc(1.6vw + 1rem);*/
        font-size: clamp(30px, 1.6vw + 1rem, 48px);
    }
    
	.program-swiper__img {
        border-radius: 26px;
    }
    
    .modal .btn {
	  margin-top: 40px;
	}
	
	.mini {
		/*margin: 360px 0 0px 0;*/
	}
	
	.form__left {
	  max-width: 68%;
	}	
		
	.city {
		width: 70%;
	}
	
	.oneDayText {
        width: 100%;
	}
	
	.swiper-button-next, .swiper-button-prev {
		width: 44px;
		height: 44px
	}
	
	.hl-next, .hl-prev {
		width: 54px;
		height: 54px
	}
	
	.modal {
		max-width: 800px;
	}
	
	.modal-request__wrap .col {
		width: 100%;
		max-width: 100%
	}
	.modal-request__wrap .col .form-agreement {
		margin-top: 22px
	}
	.modal-request__wrap > * + * {
		margin: 40px 0 0 0
	}
	.modal-request__wrap .btn {
        width: 50%;
        height: 50px;
        border-radius: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
    }

	.modal-request__wrap .btn--icon {
		margin: 0 0 0 8px
	}
	.modal-request__header {
		margin-bottom: 40px
	}
	.modal-info__img {
		height: 70px
	}
	.modal-info ul li {
		font-size: 18px
	}
	.modal-info ul > * + * {
		margin-top: 12px
	}
	
	.video {
	  top: 60px;
		padding-left: 60px
	}
    	
	.overlay.open {
		display: block;
		position: fixed;
		z-index: 9998;
		background: #19104e;
		opacity: .5;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%
	}
	.welcome__txt > * + * {
		margin-top: 6px
	}

	.h2, h2 {
		font-size: 60px
	}
    
	.h2.side-title:before,
    h2.side-title:before {
        display: block;
        line-height: 1.2;
        width: 100%;
        transform: rotate(0);
        top: auto;
        left: auto;
        right: auto;
        position: relative;
        font-family: IndieFlower;
        border-bottom: 1px solid #ff3b2a;
        margin-bottom: 10px;
        padding-bottom: 4px;
        font-size: 18px;
    }

	.h4, h4 {
		font-size: 26px
	}
	.h5, h5 {
		font-size: 20px
	}
	
	.welcome-item .h5 {
	font-size: 20px;
}
	
	.h6, h6 {
		font-size: 18px
	}
	.introduction {
		-moz-background-size: cover !important;
		background-size: cover !important
	}
	.introduction-upper {
		padding: 60px 0 60px
	}
	.introduction-upper__wrap {
		padding: 0;
		margin-top: 40px;
	}
		
	.introduction-upper__left {
		padding-left: 20px
	}
	.introduction-lower {
		padding: 0 0 100px
	}
	.introduction-lower h2 {
		font-size: 60px;
		max-width: 560px;
		margin: 0 auto 200px
	}
	.introduction-lower__txt {
		margin-left: 20px;
		max-width: 100%
	}
	.advantages {
		padding: 60px 0
	}
	.advantages:after {
		display: none
	}
	.advantages__wrap {
		margin: 0
	}
	.advantages-row {
		margin: 0 -20px -40px
	}
    
    .advantages-item__txt {
        min-height: 240px;
    }
    
	.container-fluid {
		padding: 0
	}
    
    .gallery--1, .gallery--2 {
        height: initial;
    }
    
    .gallery--1 .gallery-item,
    .gallery--1 .gallery-item:last-child,
    .gallery--2 .gallery-item,
    .gallery--2 .gallery-item:last-child{
      transform: translateY(0);
    }
    
	.gallery--3 {
		margin: 40px 0 60px
	}
	.gallery-item {
		width: 100%
	}
	.gallery-item:last-child {
		margin: 0 !important
	}
	.atlantica {
      padding: 400px 0 300px 0;
	}
	.atlantica .h2, .atlantica h2 {
		font-size: 56px
	}
	.atlantica .h2.side-title:before, .atlantica h2.side-title:before {
		border: none
	}
    
	.see, .portfolio {
		padding: 0;
	}
	.see__top h2 {
		max-width: 600px
	}
        
	.see-weather__item {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        height: auto;
        padding: 10px 15px;
    }

	.see-weather__item .small {
		width: 100%;
		margin-top: 10px;
		text-align: right
	}
	.see-weather__item > * + * {
		margin: 0
	}

	.sex-item {
		width: 100%;
	}
	.tour {
		padding: 100px 0 300px;
	}
	.tour__txt h2 {
		line-height: 1.1;
		padding: 0
	}
	.tour__txt .medium {
		max-width: 220px
	}
	.tour__txt .btn {
		margin: 0 auto
	}
	.tour:before {
		display: none
	}

	.video-btn img {
		width: 30px
	}
	.feedback {
		padding: 40px 0 0
	}
	.feedback .swiper-button-next, .feedback .swiper-button-prev {
		display: none
	}
	.feedback .h2.side-title:before, .feedback h2.side-title:before {
		display: none
	}

    /*
    .team__wrap > * + * {
		margin-top: 14px
	}
*/
    
	.time {
		padding: 60px 0 0
	}
    
	.time .advantages-row {
        min-width: 100%;
		max-width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin: 0 -20px -40px;
    }

    .time .advantages-row .advantages-item {
        flex: 1 0 calc(50% - 40px);
        max-width: calc(50% - 40px);
        margin: 0 20px 40px;
    }

	.time2 {
		padding: 70px 0 60px
	}
	.time2-upper h5 {
		max-width: 100%;
		font-weight: 500
	}
	.time2-upper > * + * {
		margin: 20px 0 0 0
	}
	.time2-upper .small {
		max-width: 100%;
		padding-left: 10px
	}
	.time2-mid {
		margin: 50px 0 30px;
		border-top: 1px solid rgba(61, 61, 61, .4);
		padding: 30px 0 0 0
    }
    
    .time2-mid__img {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        margin: 30px 0;
        width: calc(100% + 130px);
        border-radius: 120px;
    }

	.time2-mid__img:before {
		padding-top: 35%
	}
	.time2-mid__item {
		padding: 0 0 60px;
		border: none;
		min-height: initial
	}
	.time2-mid__item .medium, .time2-mid__item .text {
		width: 100%;
		padding: 0 0 0 10px
	}
	.time2-mid__item .text {
		margin: 0
	}
	.time2-mid__item:nth-child(even) .time2-mid__img {
		margin-left: auto
	}
	.time2-lower h5 {
		max-width: 100%
	}
	.time2-lower .btn {
		margin: 20px auto 0
	}
	.program {
		padding: 60px 0 415px
	}
	.program-thumbs {
		display: none
	}
	.program__swiper {
		margin: 0
	}
	.program-swiper {
		overflow: visible
	}
    
	.program-swiper__label::before {
        content: '';
        position: absolute;
        left: 100%;
        top: 50%;
        transform: translateY(-50%);
        width: 2000%;
        background: #84725a;
        height: 1px;
    }
    
	.oneDay .program-swiper__label::before {
		height: 0;
	}
	
	.program-swiper__slide, .oneDay {
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		overflow: hidden;
		height: auto
	}
	.program-swiper__slide h3, .oneDay h3 {
		margin-bottom: 15px;
		max-width: 100%
	}
	.program-swiper__slide .small, .oneDay .small {
		max-width: 100%
	}
	.program-swiper__txt .small {
		padding: 20px 0 40px 30px
	}
	.program-swiper__img {
		width: 100%;
		position: relative;
		right: auto;
		top: auto
	}
	
	.map {
		padding: 70px 0 0
	}
    
	.map__img {
		display: none
	}
    
	.map__img-mob {
		display: block;
        padding: 0;
	}
   
        .map__wrap {
        display: flex;
        justify-content: flex-start;
        padding: 100px 0 60px;
    }

    .map__wrap:before {
        display: none;
    }

    .map__col {
        display: flex;
        flex-direction: row;
        width: 100%;
        justify-content: space-around; 
    }

    .map__col > * + * {
        margin: 0 0 0 20px;
    }

    .details {
        padding: 30px 0;
    }

    .details__left {
        width: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }

	.details__left > * + * {
		margin: 0
	}
	.details__left .btn {
		margin: 0px auto 0
	}
	.details__left .details-col {
		width: 30%;
		/*text-align: center;*/
	}
	.details__content {
		width: 100%;
		padding-top: 40px
	}
	.take-item {
		width: -webkit-calc(100% / 2 - 24px);
		width: -moz-calc(100% / 2 - 24px);
		width: calc(100% / 2 - 24px)
	}
	.faq {
		padding: 60px 0 80px
	}
	.footer {
		padding: 40px 0 30px
	}
	.footer:before {
		content: '';
		position: absolute;
		width: 1024px;
		height: 384px;
		top: 0;
		left: 0;
		pointer-events: none
	}
	.footer h6 {
		max-width: 300px
	}
    
	.footer__wrap .orange-txt {
        order: 2;
        margin: 15px 0;
        font-size: 22px;
    }

    .footer__wrap h2 {
        order: 1;
    }

    .footer__wrap .btn {
        order: 3;
        margin: 0;
    }
/*
    .footer__lower {
        display: flex;
        flex-direction: column;
    }

    .footer__lower > * + * {
        margin-top: 15px;
    }

    .footer__lower .row {
        display: flex;
        flex-direction: column;
    }

	.footer__lower .row > * + * {
		margin: 15px 0 0 0;
		padding: 0;
		border: none
	}
    */
    
    .footer__lower .row {
        margin: 0 auto;
    }
    
	.form__wrap {
		border-radius: 30px
	}
		
	.sex-item {
		margin: 0; 
        padding: 0;
	}
		
	.miniGallery, .see, .portfolio {
		padding: 20px 0 40px 0;
	}
	
	.details__wrap  {
		padding: 0 40px;
	}

	
	.form__wrap {
		padding: 45px;
	}
    
    .team__wrap > .text {
        padding: 30px calc(5vw - 10px) ;
    }
    
    .container>.container {
        padding: 0;
    }

	.welcome-item > * + * {
		margin-top: 2px
	}
    
}

@media (max-width:860px) {   
    
    .footer__wrap {
        margin: 80px auto 80px auto;
    }
    
    .footerBgTxt {
        font-size: calc(4vw + 28px);       
        padding: 0;
    }
    
    .h1, h1 {
    font-weight: 700;
    }
    
    .welcome__txt {
        padding: 0 32px;
    }
    
    .welcome__lower {
        justify-content: space-around;
    }
    
	.welcome-item > * + * {
		margin-top: 2px
	}
    
    .welcome__txt span {
    line-height: normal;
    letter-spacing: 0px;
    text-transform: none;
}
    
    .partOfdays .text-hidden {
        padding-top: 20px;
    }
    
    .partOfDays .swiper-slide {
        padding-top: 60px
    }
    
    .priceLine div:first-child {
        width: 16%;
        min-width: 180px;
    }
    
    .priceLine div:nth-child(n+2) {
        width: 20%;
        min-width: 20%;
    }  
    
	.mini {
		/*margin: 340px 0 0px 0;*/
	}
    
    .priceLineBtn {
        right: -80px;
    }
	
	.form .btn {
		width: 160px;
		height: 160px;
		padding: 0 24px;
		font-size: 20px;
	}
	
	.btn {
		width: 170px;
		height: 170px;
		padding: 0 30px;
		font-size: 20px;
	}
	
	.form__wrap {
		padding: 45px;
	}
	
	.small {
		font-size: 16px;
	}
	
	.modal {
		max-width: 640px;
	}
    
    .team {        
        display: inline-flex;
        align-items: center;
        margin: 0;
    }
    
    .team__wrap {
        border-radius: 80px;
    }
        
	.team__wrap > .text {
		max-width: 100%
	}
    
    .see__top h2 {
        max-width: 100%;
    }
}

@media (max-width:767px) {
    .arrowLong {
        display: none;
    }
    
    .video {
        top: 0;
    }
    
    .videoTitle {    
        top: calc(20% + 4vw);
    }
    
    .advantages {
        display: none;
    }
    
    .large-slider-container {
      margin: 40px auto;
    }
    
    .container, .container-inner
    {
      padding: 0 40px;
    }
    .video {
      padding: 0 60px;
    }
    
    .gallery--1, .gallery--2 {
        padding: 0;
    }
    
    .smallImgDay{
        width: 64px;
        height: 64px;
        border-radius: 32px;
        position: absolute;
        margin:-23px 0 0 -60px;
        
        border: 1px solid #151014;
    }
    
    .daysNumber h5, .daysNumber > h6 {
        font-size: calc(1vw + 0.8rem);
        max-width: 80%;
        padding: 0 0 0 20px;
    }
    
    .daysNumber > h6:first-child {
        max-width: 80%;
        padding: 0 0 0 20px;
    }
    
    .daysNumber {
        padding: 0 0 12px 0;
        min-height: 80px;
    }
        
    .advantages__wrap {
        display: none
    }
    
    .priceLine {
        padding: 32px 20px;        
    }
    
    .tour {
        margin: 160px 0 0 0;
    }
    
    .details__wrap {
      padding: 0;
    }
	
	.fancybox-slide {
		padding: 24px;
	}
	
	.breadcrumb {
		font-size: 14px;
	}
	
	.details__left .details-col {
  		width: 50%;
		padding: 0 0 20px 0;
	}
	
	.gallery-item--txt.left {
	  margin: -80px -40px;
	}

	.form__wrap {
		padding: 35px
	}
	
	.form__left {
		width: 100%;
		max-width: 100%;
	}
    
    .form-upper {
        display: flex;
        flex-direction: column;
    }

	.form-upper > * + * {
		margin-top: 8px
	}
	.form-upper .small, .form-upper h3 {
		max-width: 100%;
		width: 100%;			
	}
	
	.form-upper h3 {
		font-size: 50px
	}
    
    .form-subscribe h4 {
		font-size: 36px
	}
	
	.form .row .input-wrap {
		width: 100%
	}
	.form-row {
		padding: 20px 0 40px 0;
	}
	
    .form .btn {
        width: 100%;
        max-width: 300px;
        border-radius: 30px;
        height: 50px;
        display: flex;
        flex-direction: row;
        margin: 20px auto 0 auto;
        justify-content: center;
        align-items: center;
    }
    
	.form .btn--icon {
		margin: 0 0 0 8px;
		font-size: 22px
	}
	
	.program-button-next, .program-button-prev {
		display: none;
	}
	
	.small {
		font-size: 18px;
	}
	
	.text p {
		font-size: 16px
	}
	.time2-mid__item {
		padding: 0 0 40px
	}
	.time2-mid__item .medium {
		font-size: 18px
	}
	.time2-mid__item:last-child {
		padding-bottom: 0
	}
	.time2-mid .time2-mid__img {
		margin: 15px 0
	}
	.wrap-nav .media {
		margin-bottom: 20px
	}
	.wrap-nav .media a {
		color: #9aa6c7;
		font-size: 26px
	}
	
	.btn--icon {
		font-size: 20px
	}
	
	.btn {
		width: 180px;
		height: 180px;
		padding: 0 30px;
		font-size: 18px
	}
	
	.btn-small {
		width: 140px;
		height: 140px;
		font-size: 18px;
		padding: 0 26px
	}
	
	.big-mobile-text {		
		font-size: 22px
	}
	
	.h1, h1 {
		line-height: 1;
	}
	.h2, h2, .sex-item h3 {
		font-size: 42px;
		line-height: 1
	}

	.h3, h3 {
		font-size: 24px
	}
	.h5, h5 {
		font-size: 18px
	}
	.welcome-item .h5 {
	    font-size: 18px;
    }
	
	.h4, h4 {
		font-size: 22px
	}
	.h6, h6 {
		font-size: 20px
	}
	.medium {
		font-size: 16px
	}
    
	.welcome__wrap {
		padding: 0
	}
	.welcome__txt > * + * {
		margin: 0
	}

	.welcome__lower {
		margin-top: 40px
	}
    
	.welcome .btn {
        margin-top: 20px;
        position: relative;
        width: 100%;
        height: 50px;
        border-radius: 30px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

	.welcome .btn p:nth-child(2) {
		display: none;
	}
	.welcome .btn--icon {
		margin: 0 0 0 8px;
		font-size: 22px
	}
	.introduction-upper {
		padding: 80px 0 0
	}
	.introduction-upper__wrap > * + * {
		margin-top: 20px;
		padding-top: 20px;
		border-top: 1px solid #ff3b2a
	}
	.introduction-upper__wrap .row {
		width: 100%;
		max-width: 100%
	}
    
	.introduction-upper__wrap .row:first-child {
        display: flex;
        flex-direction: column;
    }

    .introduction-upper__wrap .row:first-child > * + * {
        margin-top: 15px;
    }

    .introduction-upper__wrap .row:first-child .text {
        max-width: 100%;
    }

    .introduction-upper__wrap .row:last-child {
        display: flex;
        justify-content: space-between;
    }

	.introduction-upper__wrap .row:last-child .text {
		width: -webkit-calc(100% - 160px);
		width: -moz-calc(100% - 160px);
		width: calc(100% - 160px)
	}
	.introduction-upper__wrap .row:last-child .text p {
		font-size: 14px;
		font-weight: 500
	}
	.introduction-upper__wrap .row h5 {
		max-width: 90%;
		padding-left: 20px;
		font-weight: 400
	}
	.introduction-upper__wrap .row h5 b {
		display: inline
	}
	.introduction-lower {
		padding: 0 0 60px
	}
	.introduction-lower h2 {
		font-size: 36px;
		margin: 0 auto 60px
	}
	.advantages {
		padding: 40px 0 60px
	}
	.advantages:before {
		display: none
	}
	.advantages-item {
		width: 100%;
		min-height: auto;	
        border: 0;
        margin: 0;
        padding: 40px 0 0 0;
	}
    
    .advantages-item__img {
        border-radius: 80px;
    }
	
	.advantages-item__txt {
		max-width: 100%;
        min-height: inherit;
	}
	
	.advantages-item__txt h6 {
		font-size: 20px;
	}
    
    .advantages-item > * + * {
      margin-top: 0;
    }
	
	.gallery-item--txt {
		padding-left: 20px !important;
		padding-top: 20px !important
	}
	.gallery-item .h3 {
		font-size: 44px;
	}
	.atlantica {
		padding: 260px 0 250px 0;
	}
	.atlantica:before {
		display: none
	}

	.atlantica__wrap {
        display: flex;
        justify-content: space-between;
    }

    .atlantica .h2.side-title,
    .atlantica h2.side-title {
        margin-bottom: 30px;
    }

    .atlantica .btn {
        margin: 0;
    }

    .atlantica .medium {
        width: calc(100% - 180px);
        margin: 20px 0;
    }
	
	.see-weather h6 {
		margin-bottom: 10px
	}
	
	.sex__wrap {
		padding: 0
	}

	.sex-item h3 {
		margin-bottom: 15px;
		max-width: 78%
	}
	.tour__txt .medium {
		margin: 15px 0
	}

	.time__txt h3 {
		font-size: 30px
	}
	.time__txt .medium {
		font-size: 16px
	}
	.time__txt .medium {
		padding-left: 20px
	}
	.time .advantages-row {
		margin: 0 0 -20px
	}
	.time .advantages-row .advantages-item {
		width: 100%;
		max-width: 280px;
		margin: 0 auto 20px
	}
	.time2 {
		padding: 70px 0 30px
	}
	.swiper-button-next, .swiper-button-prev {
		width: 54px;
		height: 54px;
		font-size: 18px;
	}
	
	.map-item__img {
		width: 26px
	}
	.map-item__txt {
		width: -webkit-calc(100% - 26px);
		width: -moz-calc(100% - 26px);
		width: calc(100% - 26px);
		padding-left: 12px
	}
	.map-item__txt .medium {
		font-size: 12px
	}
	.map__wrap {
		display: none;            
	}
	.details {
		padding: 40px 0
	}
	.details__wrap {
		margin-top: 0px
	}
	.details-row {
		margin: 0 -6px -12px
	}
    
	.details-item {
        width: calc(50% - 20px);
        margin: 0 10px 20px 10px;
        border-radius: 20px;
        padding: 15px;
    }

	.details-item__img {
		height: 35px
	}
	.details-item__title {
		margin: 12px 0
	}
	.details-item .medium {
		font-size: 14px
	}
	.gallery--3 {
		margin: 40px 0 40px
	}
	.gallery-item--txt .h4 {
		max-width: 145px !important
	}
	.take h2 {
		margin-bottom: 30px
	}
	.faq {
		padding: 50px 0 60px
	}
	.faq__wrap {
		margin-top: 30px
	}
	.faq-item__icon {
		width: 46px;
		height: 46px
	}
	.faq-item__question {
		padding-left: 60px
	}
	.faq-item__answer {
		padding-left: 60px;
		margin-top: 12px
	}
	.faq-item__answer .text {
		max-width: 100%
	}
	.footer h6 {
		max-width: 180px;
		font-size: 14px
	}
	.modal {
		-webkit-border-radius: 40px;
		-moz-border-radius: 40px;
		border-radius: 40px;
		padding: 35px 20px
	}
	.modal-info .fancybox-close-small, .modal-request .fancybox-close-small {
		top: 15px;
		right: 10px
	}
	.modal-request__wrap .btn {
		width: 100%
	}
	.modal-info__img {
		height: 40px
	}
	.modal-info ul li {
		font-size: 18px
	}
	
	.modal-info p {
		font-size: 18px
	}

	.program {
		padding: 40px 0 115px
	}
	.program__wrap {
		margin-top: 40px
	}
    
	.program-swiper__slide,
    .oneDay {
        flex-wrap: wrap;
    }

    .program-swiper__img {
        border-radius: 30px;
    }

	.program-swiper__txt {
		width: 100%;
		padding: 0
	}
	.program-swiper__txt h3 {
		margin-bottom: 5px
	}
	.program-swiper__txt .small {
		padding: 20px 0 20px 20px
	}
	.program .swiper-button-next, .program .swiper-button-prev {
		top: 41%
	}
	
	.mobHidden {
		display: block;
	}	
		
	.form-upper h3 {
	  font-size: 32px;
	}
    
    .form-subscribe h4 {
	  font-size: 28px;
	}
    
    .swiperButtonDays {
        display: none
    }    
    
    .oneDay .program-swiper__img {
      margin: 10px 0;
    }
    
     .afterMoreTravel {
        height: 100px;
    }
    
}
@media (max-width:711px) {    
    .column:first-child {
        width: 28px;
    }
    
    .team__wrap {
        flex-wrap: wrap;
    }
    
    .take-item__arrow {
        border: 0;
    }
        
	.tour {
		margin: 0;
	}
	
	.details__left .btn {
		margin: 30px auto 0
	}
	
	.reverseMob {
		display: flex;
		flex-direction: column-reverse
	}
    
    .team {
        margin: 0 auto;
        text-align: center;
    }
	
	.introduction-upper__wrap h5 
	{
		padding-left: 0;
		font-size: 22px;
	}
	
	.introduction-upper__wrap div.row:nth-child(2)
	{
		flex-flow: row-reverse nowrap;
		padding-left: 20px;
		line-height: 1;
	}
	
	.introduction-upper__wrap div.row:nth-child(2) .text p
	{
		font-size: 20px;
	}
	
	.introduction-upper__wrap .row .text {
		max-width: 80%}	
	
	.introduction-upper__wrap .row:last-child .text {
		width: -webkit-calc(100% - 80px);
		width: -moz-calc(100% - 80px);
		width: calc(100% - 80px);
		padding: 0 110px 0 0;
	}
	
	.swiper-button-next, .swiper-button-prev {
		/*width: 64px;
		height: 64px;*/
		font-size: 20px
	}
	
	.hl-next, .hl-prev {
		width: 54px;
		height: 54px;
	}
	
	.atlantica__wrap {
        display: flex;
        flex-wrap: wrap;
    }

    .atlantica .medium {
        margin: 30px 0 20px;
    }

    .atlantica .h2.side-title, .atlantica h2.side-title {
        width: 100%;
        max-width: 100%;
    }

    .take-item {
        width: 100%;
        padding: 15px;
        border-radius: 30px;
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .take-item .h6 {
        margin: 0;
        width: calc(100% - 45px);
        padding: 0 40px 0 15px;
    }

    .take-item__arrow {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .take-item .row {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
    }

	.take-item .row .small {
		display: none
	}
	
	.see__top h2 {
		max-width: 70%
	}
	.see-weather {
		width: 100%;
		margin-top: 30px
	}
	.see-weather__item {
		width: -webkit-calc(100% / 2 - 20px);
		width: -moz-calc(100% / 2 - 20px);
		width: calc(100% / 2 - 20px);
		margin: 0 10px 0 !important
	}
	.see-weather .row {
		min-width: 100%;
		margin: 0 -10px 0
	}
	
	.mobHidden {
		display: none;
	}
	
	.advantages-item__txt {
		min-height: inherit;
	}
		
	.see-swiper__slide .text {
		font-size: 15px;
		line-height: 1.25;
	}
	
	.see-swiper__slide .medium {
  		font-size: 20px;
	}	
	
	.see-weather__item h4 {
		font-size:32px;
        text-align: right;
        width: 100%;
	} 
    
    .feedback-swiper:after, .feedback-swiper:before {
        display: none;
    }
}

@media (max-width:620px) {
    .column:first-child {
      width: 28px;
    }

    .team__wrap {
        box-shadow: none;
        border-radius: 0;
        border-bottom: 1px solid #ccc;
        padding: 0;
        margin-top: 32px;

    }
    
    .team__wrap > .text {
        padding: 50px 0;
    }
    
    .video {
        padding: 0 20px 0 60px!important;
    }
    
    .videoTitle {    
        top: calc(64% + 3vw);
    }
    
    .priceLine div:nth-child(3) {
        display: none;
    } 
    
    .container, .container-inner {
      padding: 0 24px;
    }
    
    .introduction {
      height: 460px;
    }
    
    .partOfdays .arrowDiv {
        float: right;
        margin: 0 48px;
        /*top: 46px;*/
    }

    .swiper-button-next, .swiper-button-prev {
        width: 40px;
        height: 40px;
        display: none;
    }
    
    .miniGallery .swiper-button-next, .miniGallery .swiper-button-prev {
        display: flex;
    }
      
	.gallery-item--btn {
		left: 25%;
		font-size: 16px;
		width: 120px;
		height: 120px;
		padding: 0 20px 0 25px;
	}
	
	.gallery-item--btn.n2 {
		left: 75%;
	}
	
	.gallery-item:nth-child(2) .gallery-item--txt .h3 {
		left: 40px;
	}
	
	.gallery-item .h3 {
  		font-size: 28px;
	}
	
	.details-col .medium {
	  font-size: 40px;
	  margin-top: 16px;
	}
/*	
	.welcome__lower .row {
		margin: 0 -10px 0;
		min-width: 100%
	}
*/
    .details__left .details-col {
        width: 100%;
    }

    .details__left {
        display: flex;
        flex-direction: column;
    }

	.details__left > * + * {
		margin-top: 30px
	}
    
    .priceLine div:nth-child(n+2) {
        width: 24%;
        min-width: 24%;
    } 
    .priceLine div:last-child {
        width: 30%;
        min-width: 20%;
    } 
    
    
    .welcome__lower {
        margin-top: 80px;
        display: block;
    }
}

@media (max-width:576px) { 
    .welcome {
        height: 100vh;
    }
        
    .welcome__wrap {
        /*margin-top: -200px;*/
    }    
    
    .welcome__txt span {
    padding: 12px 0 20px;
    }
    
    .welcome__txt .text {
        padding: 0;
    }
 
    .welcome__txt .text {
        padding: 0 10px 20px 10px;
		font-size: 3rem;
		line-height: 3rem;
    }
    
    .food, .see {
        margin-top: 40px;
    }   
    .priveLine div p a:first-child {
        display: none;
    }
    
    .miniGallery .swiper-button-next, .miniGallery .swiper-button-prev, .see .swiper-button-next, .see .swiper-button-prev, .hl-prev, .hl-next {
		font-size: 18px;
        /*display: none*/
	}
	    
	.city {
		width: 90%;
	}
	
	.right10 {
	  right: 20%;
	}
	
	.greyTop {
		background: linear-gradient(180deg, rgba(33, 37, 41, 0.05), transparent 66px);
		height: 66px;
	}
	
	.greyBottom {
		background: linear-gradient(0, rgba(33, 37, 41, 0.05), transparent 66px);
		height: 66px;
	}

    /*
	.welcome__lower .row .welcome-item {
		width: -webkit-calc(100% / 2 - 10px);
		width: -moz-calc(100% / 2 - 10px);
		width: calc(100% / 2 - 10px);
	}
	
	.welcome-item .small, .welcome-item h5 {
		font-size: 16px;
	}
    */
	
	.fancybox-thumbs__list a {
		max-width: calc(100% - 10px)
	}
		
	.form-upper h3 {
	  font-size: 32px;
	}
        	
	.form-subscribe h4 {
	  font-size: 26px;
	}

	.fancybox-slide {
		padding: 6px;
	}
	.fancybox-slide--image {
		padding: 6px 0
	}
	.fancybox-close-small {
		right: -6px
	}
	.fancybox-slide--image .fancybox-close-small {
		background: #4e4e4e;
		color: #f2f4f6;
		height: 36px;
		opacity: 1;
		padding: 6px;
		right: 0;
		top: 0;
		width: 36px
	}
	.fancybox-caption {
		padding-left: 12px;
		padding-right: 12px
	}
	@supports (padding:max(0px)) {
		.fancybox-caption {
			padding-left: max(12px, env(safe-area-inset-left));
			padding-right: max(12px, env(safe-area-inset-right))
		}
	}
	
	.form-upper > * + * {
		margin-top: 8px
	}
	
	.friend .small {
		font-size: 16px
	}
	
	.details__wrap, .sex-item, .see, .food, .miniGallery, .portfolio {
		padding: 0 10px 40px 10px;
	}
    
    .food {
		padding: 0 10px 80px 10px;
	}
    
    .miniGallery, .miniGallery .container {
		padding: 0;
	}
        
    .welcome__lower .row .welcome-item {
        min-width: 80px;
        margin: 12px;
    }

}

@media (max-width:500px)
{	 
    .team__wrap > div {
        padding: 40px;
    }
    
    .team img {
        padding: 20px;
    }
    
    .copyright {
        display: none;
    }
    
    .large-slider-container {
      margin: 10px auto 40px auto;
    }
    
     .team__wrap > .text {
        padding: 0px calc(5vw - 10px) 30px calc(5vw - 10px);
      }
    
    .sex-item ul li {
        padding-bottom: 14px;
    }
    
    .friend .form__wrap {
        /*background: linear-gradient(135deg, rgba(104, 59, 59, 50%) 0%, rgba(138, 100, 90, 50%) 47%, rgba(67, 45, 37, 50%) 100%)*/
        background:  rgba(0, 0, 0, 50%);
    }
    
    .subscribe {
        padding: 40px 0 40px 0; 
    }
    
    .daysLong h2 {
     padding: 50px 0 0px;
    }
        
    .column {
        margin: 0 2px;
    }
    
    .column:first-child {
        width: 18px;
    }
    
    .month_wrp span {
        font-size: 12px;
    }
    
    .month_wrp .name {
        transform: rotateZ(-60deg);
        color: #000;
        top: 12px;
    }
    
    .country {
        padding: 0px 0 20px 0;
        display: block;
    }
    
    .country.reverse img, .country img {
        width: 100%!important;
        padding: 0;
        margin: 24px 0 0 0;
    }
    
    .sex-item {
        padding: 0;
    }
    
    .footerBgTxt {
        font-size: calc(4vw + 28px);       
        padding: 20px 0 70px 0;
    }
    
    .footer__wrap {
        margin: 10px auto;
    }
    
    .footer__wrap h2 {
      padding: 20px 0 40px 0;
    }
    
    .atlantica {
      padding: 320px 0 100px 0;        
    }
        
    .atlantica .medium {
        margin: 10px 0;
        max-width: 100%;
        width: 100%;
    }
    
    .atlantica h2.side-title {
        margin-bottom: 0;
    }
    
    .daysNumber > h6 {
        max-width: 100%;
        padding: 0 48px 0 20px;
    }
    
    .gallery-item--txt.left {
      margin: -20px;
    }
    
    .priceLine {
    padding: 20px;
    }

    .priceLine div:nth-child(n+2) {
        width: 40%;
        min-width: 40%;
    }

    .priceLine div:nth-child(n+3),
    .priceLine div p:last-child {
        display: none;
    }

    .priceLine div:first-child {
        min-width: 180px;
        max-width: 100%;
        width: 100%; 
    }

    .priceLine div:first-child p:last-child {
        display: none;
    }

    .priceLine div:nth-child(2),
    .priceLine div:nth-child(3) {
        display: block;
        width: 100%;
    }

    .priceLine div p {
        margin: 12px 0 0;
    }

    .priceLine div p:last-child {
        display: flex;
        /*font-size: 1.2rem;*/
        color: var(--grey);
        padding: 0;
        /*height: 48px;*/
        align-items: center;
        justify-content: center;
    }

    .priceLine div:nth-child(2) p:nth-child(1) {
        font-size: 32px;
        color: #444;
    }

    .priceLine div:nth-child(3) p:nth-child(2) {
        margin-bottom: 16px;
    }

    .priceLineBtn {
        position: relative;
        right: 0;
        top: 0;
        font-size: 16px;
        width: 160px;
    }

    .textFoto {    
        margin: 0 40px;
        width: 120px;
    }
	
	.swiper-pagination {
  		margin: 40px auto 0 auto;
	}
    
    .miniGallery .swiper-pagination {
  		margin: 0 40px;
        top: -10px;
        width: 120px;
	}
	
	.details__left .details-col {
		padding: 0 0 inherit;
	}
	
	.details-col .medium {
  		font-size: 22px;
	}
	
	.w-1920 {
		display: none!important;
	}
	
	.w-500 {
		display:inline-block;
	}
		
	.portfolio, .portfolio .container {
		padding: 0;
	}
	
	.portfolio img {
		border-radius: 0px;
	}
	
	.portfolio .see__top {
		padding: 0 30px 40px 30px;
	}
		
	.ilove {
		top: 10px;
	}
	.atlantica .h2, .atlantica h2 {
	  font-size: 46px;
	}
	
	.h2, h2, .sex-item h3 {
		font-size: 32px;
		line-height: 1;
	}
	
	.bigPrice {
		font-size: 72px;
		padding: 30px 0 0;
	}
	
	.sex-item .small {
		font-size: 18px;
		line-height: 1.0em;
	}
    
	.breadcrumb h6 {
		font-size: 17px;
	}
	
	.form__wrap {
		background: #410233;
		background: -webkit-linear-gradient(60deg, rgba(65, 2, 51, 1), rgba(176, 122, 129, 1));
		background: -moz-linear-gradient(60deg, rgba(65, 2, 51, 1), rgba(176, 122, 129, 1));
		background: linear-gradient(60deg, rgba(65, 2, 51, 1), rgba(176, 122, 129, 1));
	}
			
	.see-swiper__slide .text {
		font-size: 16px;
		line-height: 1.2;
		padding-bottom: 12px
	}
	
	.see-swiper__slide .medium {
  		font-size: 18px;
	}

	.miniGallery .see-swiper__slide .medium, .see .see-swiper__slide .medium {
	  margin: 20px 0;
	}
	
	.sex-item h3 {
	  max-width: 100%;
	}
	
	.friend .btn {
		padding: 0 20px;
		font-size: 15px;
		margin: 0;
	}
	
	.friend .small {
		font-size: 4vw;
		color: #eee;
	}

	.details-item {
		width: -webkit-calc(100% / 2 - 20px);
		width: -moz-calc(100% / 2 - 20px);
		width: calc(100% / 2 - 20px);
		margin: 0 10px 20px 10px;
		margin: 12px auto;
		padding: 20px 10px;
	}
	
	.details-item .text p {
		font-size: 15px;
	}
	
	.details-item img {
		margin: 0 auto;
	}
	
	.details-item__title {
	  margin: 12px 0;
	  text-align: center;
	}
	
	.details-item__img {
		max-width: 100%;
	}
	
	.details__wrap {
		padding: 0;
	}
	
	.details-row.two .details-item {
		width: 100%;
	}
	
	.introduction-upper__wrap .row:last-child .text {
		width: -webkit-calc(100% - 80px);
		width: -moz-calc(100% - 80px);
		width: calc(100% - 80px);
		padding: 0;
	}
	
	.tour {
		margin-top: 40px;
	}
	
	.gallery-item--txt.left .h3 {  
		margin: -12px -60px;
	}
    
    .map-item:last-child {
		display: none
	}
    
    .miniGallery img, .see img, .portfolio img {
      border-radius: 80px;
    }
    
    .feedback, .time2
    {
        padding: 60px 0 0 0;
    }
    
    .feedback-swiper__txt {
        padding: 30px;
    }
    
     .food
    {
        padding: 0 10px 40px 10px;
    }
    
    .team__wrap div {
        padding: 24px 0 12px 0;
    }
}

@media (max-width:400px)
{
    .month_wrp .name {
        transform: rotateZ(-90deg);
        color: #000;
        top: 12px;
    }
    
      .welcome__txt
    {
        padding: 0;
    }
    
    .atlantica {
      padding: 200px 0 100px 0;
    }
    
    .caption {
        display: none;
    }
    
    .priceLine div:first-child {
        font-size: 1.4rem;
        min-width: 100%;
        width: 100%;
        text-align: center;
    }
    
    .priceLine div:nth-child(2), .priceLine div:nth-child(3) {
        font-size: 1.3rem;
        vertical-align: top;
    }    
    
    .details__content {
        padding-top: 0;
    }
    
	.see-weather__item h4 {
		font-size:24px;
	}
	
	.see-swiper__slide .medium {
  		font-size: 16px;
	}
    
	.introduction-upper__wrap .row:last-child .text {
		width: 100%;
	}
	
	.introduction-upper__wrap div.row:nth-child(2) {
	  flex-flow: row;
	}
	
	.gallery-item--txt.left .h3 {  
		margin: -20px -60px;
	}
	
	.atlantica .h2, .atlantica h2 {
	  font-size: 40px;
	}
	
	.friend .small {
		font-size: 4vw;
		color: #e3e3e3;
	}

	.form__wrap {
        padding: 28px;
	}
	
	.advantages-item {
		max-width: calc(100% - 50px);
	}
	
	.see__top h2 {
		max-width: 90%
	}
    
    .team__wrap div {
      padding: 10px;
    }
    
    .sex-item h6 {
        margin-top: 40px;
    }   
    
    footer .media a {
        width: 52px;
        height: 52px;
        font-size: 26px;
    }
    
    .footer__lower .row > * + * {
        margin-left: 20px;
        padding-left: 20px;
    }

}

.footerBgTxt span {
    color: var(--red);
}

.button-more--txt div::after {
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

.button-more--txt div.rotated::after {
  transform: translateX(-110%) translateY(-260%) rotate(-45deg);
}

.team__wrap {
    transition: border-radius 0.5s ease; /* Дублируем для браузеров, которые не поддерживают jQuery animate для border-radius */
}

.text-hidden {
    display: none; /* На случай если не сработает inline-style */
    overflow: hidden; /* Для плавной анимации */
}