@import url(./reset.css);
@import url(./fonts.css);

:root {
	--white: #fff;
	--orange: #ff971e;
	--hover-orange: #ff8e0e;
	--black: #333333;
	--black-2: #383838;
	--brown: #9e8665;
	--gray: rgb(255, 255, 255, 0.2);
}

html {
	scrollbar-gutter: stable;
	scroll-behavior: smooth;
}

body {
	font-weight: 500;
	font-family: manrope-sun, sans-serif;
	display: flex;
	position: relative;
	min-height: 100vh;
	flex-direction: column;
}

.container {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 10px;
}

.main {
	flex-grow: 1;
	flex-shrink: 0;
	overflow: hidden;
}

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

.button {
	padding: 29px;
	width: 100%;
	background-color: var(--orange);
	color: var(--white);
	text-transform: uppercase;
	border-radius: 4px;
	font-size: 18px;
	font-family: inter-sun, sans-serif;
	transition: 0.3s all ease;
}

.button:hover {
	background-color: var(--hover-orange);
}

.button-ts {
	padding: 29px;
	width: 100%;
	background-color: transparent;
	color: var(--orange);
	border: 2px solid var(--orange);
	border-radius: 4px;
	font-size: 18px;
	font-family: inter-sun, sans-serif;
	transition: 0.3s all ease;
	text-transform: uppercase;
}

.popup {
	background-color: #00000081;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 100;
	display: none;
	padding: 20px;
	justify-content: center;
	align-items: center;
	overflow-y: auto;
}

.popup--active {
	display: flex;
}

.popup__content {
	width: 100%;
	max-width: 560px;
	padding: 53px 45px;
	background-color: var(--black);
	color: var(--white);
	text-align: center;
	position: relative;
	margin: auto;
}

.popup__content--remove {
	display: none;
}

.popup__title {
	font-size: 40px;
	font-family: opensans-sun, sans-serif;
}

.popup__text {
	font-family: inter-sun, sans-serif;
	margin-top: 45px;
	font-size: 16px;
}

.popup__form {
	margin-top: 43px;
	display: flex;
	flex-direction: column;
	gap: 22px 0;
	align-items: center;
}

.popup__item {
	width: 100%;
}

.popup__label {
	font-family: inter-sun, sans-serif;
	display: block;
	font-size: 18px;
	text-align: start;
	font-weight: 400;
	color: var(--white);
}

.popup__input,
.select {
	color: var(--black);
	background-color: var(--white);
	padding: 20px 13px;
	margin-top: 10px;
	width: 100%;
}

.select {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-image: url(../images/arrow-down.svg);
	background-size: 20px auto;
	background-position: calc(100% - 13px) center;
	background-repeat: no-repeat;
	padding-right: 40px;
}

.popup__bottom {
	margin: 36px auto 0;
	max-width: 353px;
	text-align: center;
	font-family: inter-sun, sans-serif;
}

.popup__bottom a {
	color: var(--orange);
	text-decoration: underline;
}

.popup__close {
	position: absolute;
	top: 20px;
	right: 20px;
}

.popup__item {
	position: relative;
	font-family: inter-sun, sans-serif;
}

.popup__button {
	max-width: 350px;
	font-size: 18px;
	font-family: opensans-sun, sans-serif;
	padding: 17px;
	font-weight: 700;
}

.popup__input-number {
	padding-left: 36px;
}

.popup__code {
	position: absolute;
	bottom: 20px;
	color: var(--black);
	left: 13px;
	font-family: inter-sun, sans-serif;
	font-size: 16px;
}

.popup__thanks {
	max-width: 763px;
	width: 100%;
	background-color: var(--orange);
	padding: 50px 20px 69px;
	text-align: center;
	color: #fff;
	position: relative;
	display: none;
	margin: auto;
}

.popup__thanks--active {
	display: block;
}

.popup__thanks-title {
	font-family: opensans-sun, sans-serif;
	font-size: 30px;
}

.popup__thanks-text {
	font-size: 20px;
	margin-top: 24px;
	position: relative;
	font-family: inter-sun, sans-serif;
}

.header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 10;
	transition: 0.6s background-color ease;
	padding-top: 12px;
}

.header .logo__image {
	max-width: 160px;
}

.header .logo__image-fixed {
	width: 66px;
	display: none;
}

.header__mobile {
	position: absolute;
	opacity: 0;
	width: 0;
	overflow: hidden;
}

.header__menu {
	max-width: 1179px;
}

.header__nav {
	margin-top: 9.73px;
}

.header__item-main {
	display: none;
}

.header__logo {
	margin: 0 auto;
}

.header__list {
	display: flex;
	justify-content: center;
	gap: 0 24px;
	border-top: 1px solid var(--white);
	border-bottom: 1px solid var(--white);
	padding: 21px 0;
	line-height: 1.21;
}

.header__item {
	position: relative;
}

.header__link,
.header__list-button {
	font-weight: 500;
	color: var(--white);
	line-height: 1.21;
}

.header__list-button--active {
	color: var(--orange);
}

.header__link:hover {
	color: var(--hover-orange);
}

.header__item:hover .header__list-button {
	color: var(--hover-orange);
}

.header__inner-wrapper {
	position: absolute;
	bottom: 0;
	transform: translateY(100%);
	padding-top: 10px;
	width: 300px;
	display: none;
}

.header__list-button:hover + .header__inner-wrapper,
.header__inner-wrapper:hover {
	display: block;
}

.header__inner-list {
	display: flex;
	padding: 15px;
	background-color: var(--black);
	bottom: -5px;
	border-radius: 10px;
	flex-direction: column;
	gap: 5px 0;
}

.header__inner-item {
	border-bottom: 1px solid var(--black);
}

.header__inner-link {
	color: var(--white);
	font-weight: 500;
	font-size: 15px;
}

.header__inner-link:hover {
	color: var(--orange);
}

.header__link--active {
	color: var(--orange);
}

.header__close,
.header__contacts {
	display: none;
}

.logo {
	width: fit-content;
	display: flex;
	align-items: center;
	flex-direction: column;
	color: #fff;
}

.title,
.title-b {
	font-size: 44px;
	font-weight: 700;
	text-transform: uppercase;
	font-family: opensans-sun, sans-serif;
}

.title-b {
	font-size: 48px;
}

.title-wrap {
	display: block;
}

.title__text {
	fill: var(--black);
}

.title__text svg {
	padding-bottom: 4px;
}

.top {
	position: relative;
	padding: 265px 0 100px;
	color: var(--white);
}

.top__background {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	object-fit: cover;
	z-index: -2;
}

.top::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: -1;
	background-color: rgba(0, 0, 0, 0.4);
}

.top__inner {
	padding: 0 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.top.top-flags {
	position: relative;
}

.top-flags .top__inner {
	position: relative;
}

.top__title {
	font-size: 70px;
	font-weight: 700;
	text-align: center;
	font-weight: 700;
	font-family: opensans-sun, sans-serif;
}

.top__title-wrapper {
	fill: var(--white);
	padding: 0 24px;
}

.top__title-wrapper svg {
	padding-bottom: 8px;
}

.top__text {
	text-align: center;
	font-size: 18px;
	max-width: 580px;
	margin-top: 88px;
	font-family: inter-sun, sans-serif;
}

.top__title-wrap {
	text-wrap: nowrap;
}

.top__buttons {
	display: flex;
	margin-top: 76px;
	gap: 0 7px;
	width: 100%;
	justify-content: center;
}

.top__button {
	width: auto;
	text-align: center;
	min-width: 290px;
}

.top__list {
	width: 100%;
	margin-top: 76px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 14px;
}

.top__item {
	width: 100%;
	max-width: 290px;
	padding: 25px 20px 35px 28px;
	background-color: var(--white);
	border-radius: 10px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	fill: var(--black);
}

.top__mt {
	margin-top: 50px;
}

.top__value {
	color: var(--black-2);
	font-size: 40px;
	font-weight: 700;
	font-family: opensans-sun, sans-serif;
}

.top__key {
	color: var(--orange);
	display: block;
	margin-bottom: 4px;
	font-weight: 400;
	font-size: 15px;
}

.top__value-bottom {
	font-size: 14px;
	color: var(--black);
	display: block;
	font-family: inter-sun, sans-serif;
	font-weight: normal;
	margin-top: 2px;
}

.list-section {
	padding: 70px 0;
}

.list-section .top__list {
	margin-top: 0;
}

.list-section .top__item {
	background-color: var(--black);
	color: var(--white);
	fill: var(--white);
}

.list-section .top__value,
.list-section .top__value-bottom {
	color: var(--white);
}

.trips {
	padding: 174px 0 114px;
}

.trips__inner {
	max-width: 1260px;
	padding: 0 10px;
}

.trips__title {
	max-width: 596px;
}

.trips__list {
	margin-top: 93px;
	display: flex;
	flex-wrap: wrap;
	gap: 40px 20px;
	justify-content: center;
}

.trips__item {
	max-width: 400px;
	width: calc((100% / 3) - (20px - 20px / 3));
	border-radius: 10px;
	background-color: var(--black);
	color: var(--white);
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.trips__image {
	width: 100%;
	border-radius: 10px 10px 0 0;
	height: 300px;
	object-fit: cover;
}

.trips__item-content {
	padding: 35px 12px 36px 12px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.trips__name {
	font-size: 20px;
	font-family: raleway-sun, sans-serif;
	text-transform: uppercase;
	font-weight: 600;
	padding-bottom: 32px;
	border-bottom: 1px solid var(--gray);
}

.trips__path {
	display: flex;
	align-items: center;
	gap: 0 8px;
	font-size: 15px;
	padding: 26px 0 25px;
	border-bottom: 1px solid var(--gray);
	text-wrap: nowrap;
}

.trips__path svg {
	flex-shrink: 1;
}

.trips__services {
	max-width: 270px;
	display: flex;
	flex-wrap: wrap;
	margin-top: 19px;
	margin-bottom: auto;
	gap: 8px;
}

.trips__services-item {
	padding: 10px 8px;
	border-radius: 6px;
	background-color: var(--gray);
	display: flex;
	align-items: center;
	gap: 0 8px;
	color: var(--white);
	font-size: 15px;
	font-weight: 500;
}

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

.trips__price {
	font-weight: 700;
	font-size: 22px;
}

.trips__button {
	color: var(--orange);
	font-size: 15px;
	padding: 14px 30px;
	transition: 0.5s all ease;
	background-color: rgb(0, 0, 0, 0.2);
	border-radius: 6px;
	font-weight: 600;
	text-align: center;
}

.tours {
	padding: 103px 0 69px;
	background-color: var(--brown);
}

.tours__title {
	text-align: center;
	color: var(--white);
}

.tours__list {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	margin-top: 90px;
}

.tours__item {
	display: flex;
	width: 100%;
	background-color: var(--black);
	max-width: 761px;
	border-radius: 10px;
	overflow: hidden;
	position: relative;
}

.tours__image {
	max-width: 342px;
}

.tours__item-content {
	padding: 29px 36px 24px 22px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.tours__name {
	font-family: raleway-sun, sans-serif;
	font-size: 20px;
	font-weight: 600;
	padding-bottom: 23px;
	border-bottom: 1px solid var(--gray);
	color: var(--orange);
	text-transform: uppercase;
}

.tours__path {
	padding: 16px 0;
	color: var(--white);
	font-size: 15px;
	font-weight: 400;
	border-bottom: 1px solid var(--gray);
}

.tours__services {
	display: flex;
	flex-wrap: wrap;
	margin-top: 23px;
	gap: 8px;
}

.tours__services-item {
	min-width: 115px;
	padding: 10px 8px;
	border-radius: 6px;
	background-color: var(--gray);
	display: flex;
	align-items: center;
	gap: 0 8px;
	color: var(--white);
	font-size: 15px;
	font-weight: 500;
}

.tours__bottom {
	margin-top: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.tours__price {
	font-size: 22px;
	font-weight: 700;
	color: var(--white);
}

.tours__button {
	color: var(--orange);
	font-size: 15px;
	display: block;
	padding: 14px 30px;
	background-color: rgb(0, 0, 0, 0.2);
	border-radius: 6px;
	text-align: center;
	transition: 0.5s all ease;

	font-weight: 600;
}

.tours__top {
	position: absolute;
	top: 12px;
	left: 27px;
	width: 54px;
	height: 54px;
	background-color: var(--orange);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--white);
}

.tours__flags {
	position: absolute;
	left: 18px;
	top: 14px;
	display: flex;
	align-items: center;
	gap: 0 7px;
}

.tours__flag {
	max-width: 81px;
	height: 50px;
}

.tours__button:hover,
.trips__button:hover {
	background-color: #222;
}

.about {
	padding: 72px 0 118px;
}

.about__inner {
	max-width: 1274px;
	padding: 0 7px;
}

.about__title {
	max-width: 770px;
}

.about__title span {
	color: var(--orange);
}

.about__images {
	margin-top: 82px;
	display: flex;
	align-items: center;
	gap: 19px 30px;
}

.about__images-item {
	width: auto;
	max-width: 338.5px;
}

.about__images-item:first-child {
	max-width: 170px;
}

.about__images-item:nth-child(3) {
	max-width: 305px;
}

.about__images-item:last-child {
	max-width: 332px;
}

.about__list {
	display: flex;
	flex-wrap: wrap;
	gap: 21px;
	margin-top: 83px;
}

.about__item {
	width: calc(50% - 10.5px);
	padding: 31px 29px;
	border-radius: 10px;
	background-color: var(--black);
	display: flex;
	flex-direction: column;
	gap: 25px 0;
	font-family: raleway-sun, sans-serif;
}

.about__item-title {
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	padding-bottom: 7px;
	display: inline-block;
	color: var(--white);
	align-self: flex-start;
	position: relative;
}

.about__item-title::after {
	content: "";
	position: absolute;
	border-radius: 60px;
	left: 0;
	right: -17px;
	bottom: 0;
	height: 2px;
	background-color: var(--brown);
}

.about__text {
	color: var(--white);
	font-size: 16px;
	max-width: 470px;
}

.about__item:first-child .about__text {
	max-width: 100%;
}

.request {
	padding: 88px 0 66px;
	background-color: var(--black);
}

.request__inner {
	max-width: 1248px;
	padding: 0 25px;
}

.request__title {
	max-width: 390px;
	font-size: 38px;
	color: var(--white);
}

.request__text {
	margin-top: 38px;
	max-width: 470px;
	font-size: 16px;
	color: var(--white);
}

.request__content {
	display: flex;
	gap: 10px 6px;
	margin-top: 40px;
}

.request__item {
	padding: 22px;
	border-radius: 10px;
	flex-grow: 1;
	background-color: var(--white);
	display: flex;
	flex-direction: column;
	align-items: center;
	min-width: 270px;
}

.request__item-title {
	font-weight: 700;
	font-size: 16px;
	margin-top: 37px;
	font-family: raleway-sun, sans-serif;
	padding-bottom: 8px;
	position: relative;
	text-align: center;
}

.request__item-title::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 2px;
	background-color: var(--brown);
}

.request__checkbox-items {
	display: flex;
	justify-content: center;
	flex-direction: column;
	margin: 0 auto;
	margin-top: 38px;
	gap: 12px 0;
}

.request__checkbox-item {
	display: flex;
	align-items: center;
	gap: 0 8px;
}

.request__checkbox {
	display: none;
}

.request__checkbox-value {
	font-size: 17px;
	font-family: inter-sun, sans-serif;
	position: relative;
	display: flex;
	align-items: center;
}

.request__checkbox-box {
	display: block;
	flex-shrink: 0;
	width: 14px;
	height: 14px;
	border: 1px solid #222;
	border-radius: 1px;
	margin-right: 8px;
	position: relative;
}

.request__checkbox-box::before {
	content: url(../images/check.svg);
	position: absolute;
	bottom: 3px;
	left: 2px;
	height: 13px;
	width: 16px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s ease, visibility 0.2s ease;
}

.request__checkbox-value:last-child,
.request__checkbox-value:nth-child(3) {
	font-size: 14px;
}

.request__checkbox:checked ~ .request__checkbox-value .request__checkbox-box::before {
	opacity: 1;
	visibility: visible;
}

.request__wrapper {
	display: flex;
	gap: 0 19px;
	align-items: flex-start;
}

.request__button {
	margin-top: 6px;
	border-radius: 10px;
	font-family: raleway-sun, sans-serif;
	font-weight: 700;
}

.gallery__inner {
	max-width: 1239px;
}

.gallery__title {
	text-align: center;
}

.gallery__content {
	margin-top: 111px;
	display: flex;
	flex-wrap: wrap;
	gap: 2px;
}

.gallery__content-item {
	width: calc(100% / 3 - (2px - (2px / 3)));
}

.gallery__image {
	width: 100%;
}

.gallery__button {
	display: block;
	text-align: center;
	margin-top: 6px;
	border-radius: 2px;
}

.reviews__inner {
	max-width: 956px;
	padding: 0 15px;
}

.reviews__slider {
	margin-top: 63px;
}

.reviews__button {
	display: none;
}

.map__inner {
	max-width: 1179px;
}

.map__title {
	text-align: center;
}

.map-homepage {
	padding-top: 20px;
}

.map__item {
	margin-top: 60px;
	width: 100%;
	height: 615px;
}

.map + .connect {
	padding: 110px 10px;
}

.special-trips {
	padding: 74px 10px 110px;
	color: var(--white);
}

.special-trips__inner {
	max-width: 1340px;
	background-color: var(--brown);
	padding: 96px 72px 45.5px;
	border-radius: 20px;
}

.special-trips__title {
	color: var(--white);
	text-align: center;
}

.special-trips__list {
	display: flex;
	margin-top: 110px;
	gap: 16px 20px;
	justify-content: space-between;
}

.special-trips__item {
	font-size: 17px;
	font-family: inter-sun, sans-serif;
	display: flex;
	align-items: center;
	gap: 0 10px;
}

.special-trips__slider {
	margin-top: 109px;
}

.special-trips__wrapper {
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 30px 38px;
}

.special-trips__slide {
	width: auto;
}

.special-trips__slide .special-trips__image,
.special-trips__images .special-trips__image:first-child {
	max-width: 400px;
	width: 100%;
}

.special-trips__slide:nth-child(2) .special-trips__image,
.special-trips__images .special-trips__image {
	max-width: 337px;
	width: 100%;
}

.special-trips__slide:nth-child(3) .special-trips__image,
.special-trips__images .special-trips__image:last-child {
	max-width: 364px;
	width: 100%;
}

.special-trips__bottom {
	display: none;
}

.special-trips--black {
	padding: 48px 20px;
	background-color: var(--brown);
}

.special-trips--black .special-trips__inner {
	background-color: var(--black);
}

.special-trips--black .special-trips__title {
	color: var(--white);
}

.special-trips__images {
	margin-top: 66px;
	display: flex;
	gap: 0 38px;
	align-items: center;
}

.special-trips__check-m {
	display: none;
}

.connect__inner {
	background-color: var(--brown);
	padding: 42px 42px 45px;
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.connect__title {
	font-size: 32px;
	max-width: 540px;
	text-align: center;
	color: var(--white);
	margin: 0 auto;
}

.connect__text {
	margin-top: 53px;
	max-width: 674px;
	font-family: inter-sun, sans-serif;
	font-size: 17px;
	color: var(--white);
	text-align: center;
}

.connect__form {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0 10px;
	margin-top: 38px;
	width: 100%;
}

.connect__input,
.connect__button {
	height: 59px;
	background-color: #fff;
	border-radius: 6px;
}

.connect__input {
	width: 100%;
	max-width: 440px;
	padding: 19px 23px;
	font-family: inter-sun, sans-serif;
	font-size: 17px;
}

.connect__input::placeholder {
	color: #7f7f7f;
}

.connect__button {
	font-size: 15px;
	font-weight: 600;
	font-family: inter-sun, sans-serif;
	padding: 21px 30px;
}

.footer {
	background-color: var(--black);
}

.footer .logo__image {
	max-width: 142px;
}

.footer__inner {
	padding: 56px 15px;
	max-width: 1350px;
}

.footer__content {
	display: flex;
	justify-content: space-between;
	padding-right: 189px;
	gap: 32px 10px;
}

.footer__contacts {
	display: flex;
	gap: 0 10px;
	margin-top: 31px;
}

.footer__youtube {
	display: block;
	margin-top: 15px;
}

.footer__wrapper-title {
	color: var(--white);
	font-size: 16px;
	font-weight: 500;
}

.footer__list {
	margin-top: 22px;
	display: flex;
	flex-direction: column;
	gap: 4px 0;
}

.footer__link {
	color: var(--white);
	font-size: 14px;
	font-weight: 300;
}

.footer__link:hover {
	color: var(--hover-orange);
}

.footer__youtube {
	margin-left: 4px;
}

.footer__bottom {
	padding-top: 22px;
	border-top: 1px solid #898d95;
	color: #a1a1a1;
	font-size: 12px;
	display: flex;
	align-items: center;
	padding-right: 292px;
	gap: 172px;
	margin-top: 27px;
}

.footer__bottom-link {
	color: #a1a1a1;
	font-size: 12px;
	margin-left: auto;
	margin-right: 33.4%;
}

.footer__bottom-link--first {
	margin-left: 110px;
}

.footer__content-gmail,
.header__content-gmail {
	width: 36px;
	height: 36px;
}

.footer__bottom-link:first-child {
	margin-left: 40px;
}

@media (max-width: 1280px) {
	.header__list {
		padding-left: 0;
		justify-content: center;
	}

	.top__title br {
		display: none;
	}

	.trips__inner {
		max-width: 840px;
	}

	.trips__item {
		width: calc(50% - 10px);
	}

	.request__item {
		min-width: auto;
	}

	.footer__content {
		padding-right: 0;
	}

	.footer__bottom {
		padding-right: 0;
		gap: 0 20px;
		justify-content: space-between;
	}

	.footer__bottom-link--first {
		margin: 0;
	}

	.footer__bottom-link {
		margin-right: 39.2%;
	}
}

@media (max-width: 900px) {
	.special-trips__inner {
		padding: 50px 20px 20px 17px;
	}

	.request__content {
		flex-wrap: wrap;
	}
}

@media (min-width: 768px) {
	.header--fixed {
		position: fixed;
		left: 0;
		top: 0;
		right: 0;
		background-color: var(--brown);
		padding: 12px 0;
		transition: 0.6s background-color ease;
	}

	.header--fixed .header__menu {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	.header--fixed .logo__image {
		display: none;
	}

	.header--fixed .logo__image-fixed {
		display: block;
	}

	.header--fixed .logo span {
		display: none;
	}

	.header--fixed .header__list {
		border: none;
		padding: 0;
	}

	.header--fixed .header__contacts {
		display: block;
	}

	.header--fixed .header__menu-button,
	.header--fixed .header__number {
		display: none;
	}

	.header--fixed .header__contacts-list {
		display: flex;
		align-items: center;
		gap: 10px;
	}

	.header--fixed .header__nav {
		margin-top: 0;
	}
}

@media (max-width: 1000px) {
	.footer__logo span {
		display: none;
	}
}

@media (max-width: 768px) {
	.header {
		padding-top: 9px;
		/* position: fixed; */
	}

	.header__item-main {
		display: block;
	}

	.header__mobile {
		display: flex;
		padding: 9px 10px;
		position: static;
		opacity: 1;
		width: auto;
		overflow: visible;
	}

	.header__menu-wrapper {
		opacity: 0;
		position: fixed;
		z-index: -1;
		transition: 0.6s opacity ease;
		height: var(--app-height);
		top: 0;
		bottom: 0;
		background-color: #00000020;
		pointer-events: none;
	}

	.header__menu-wrapper--active {
		opacity: 1;
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
		z-index: 50;
		pointer-events: painted;
	}

	.header__close {
		display: block;
	}

	.header__menu {
		position: absolute;
		top: 0;
		left: 0;
		bottom: 0;
		background-color: var(--black);
		width: 300px;
		height: var(--app-height);
		padding: 9px 10px;
		z-index: 100;
		display: flex;
		flex-direction: column;
		transition: 0.6s transform ease;
		transform: translateX(-100%);
		overflow-y: auto;
	}

	.header__logo {
		margin: 0;
	}

	.header__menu--active {
		transform: translateX(0);
		z-index: 100;
	}

	.header__top {
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: space-between;
		margin-bottom: 25px;
	}

	.header__nav {
		display: none;
		margin: auto 0;
	}

	.header__list {
		flex-direction: column;
		border: none;
		gap: 20px 0;
		padding: 0;
	}

	.header__list-button {
		font-size: 15px;
	}

	.header__link {
		font-size: 15px;
	}

	.header__menu--active .header__nav {
		display: flex;
	}

	.header__button {
		display: block;
		width: 57px;
		height: 50px;
		background-color: var(--orange);
		position: fixed;
		transition: 0.5s all ease;
		flex-shrink: 0;
		right: 20px;
	}

	.header__menu--active .header__button {
		background-color: transparent;
	}

	.header__line {
		display: block;
		width: 30px;
		height: 2px;
		background-color: var(--white);
		border-radius: 12px;
		position: absolute;
		top: 50%;
		left: 50%;
		transition: 0.5s all ease;
		transform: translate(-50%, -50%);
	}

	.header__line::before,
	.header__line::after {
		content: "";
		position: absolute;
		width: 30px;
		height: 2px;
		border-radius: 12px;
		background-color: var(--white);
		left: 0;
		transition: 0.5s all ease;
		right: 0;
	}

	.header__menu--active .header__line {
		height: 0;
	}

	.header__line::before {
		transform: rotate(45deg);
		transform: translateY(-9px);
		opacity: 1;
	}

	.header__line::after {
		transform: rotate(-45deg);
		transform: translateY(9px);
		opacity: 1;
	}

	.header__menu--active .header__contacts {
		display: flex;
		flex-direction: column;
		gap: 38px 0;
		margin-top: auto;
	}

	.header__number {
		color: var(--orange);
		font-size: 22px;
		font-weight: 700;
		font-family: opensans-sun, sans-serif;
		margin-top: 20px;
	}

	.header .logo__image {
		width: 98px;
	}

	.header__inner-wrapper {
		transform: none;
		width: 100%;
		padding-left: 20px;
		position: static;
	}

	.header__inner-list {
		width: auto;
	}

	.header__list-button:hover + .header__inner-wrapper {
		display: none;
	}

	.header__item > .header__list--active + .header__inner-wrapper {
		display: block;
	}

	.header__contacts-list {
		display: flex;
		gap: 0 10px;
		align-items: center;
	}

	.header__menu-button {
		max-width: 257px;
		font-size: 16px;
		font-weight: 700;
		padding: 13px;
		font-family: opensans-sun, sans-serif;
	}

	.logo {
		font-size: 18px;
	}

	.logo__image {
		width: 66px;
		margin-bottom: 3px;
	}

	.footer__logo .logo__image {
		max-width: 106px;
		margin-bottom: 0;
	}

	.button,
	.button-ts {
		padding: 22px;
		font-size: 16px;
	}

	.title,
	.title-b {
		font-size: 28px;
	}

	.title-wrap {
		display: inline;
	}

	.top__list:not(.list-section .top__list) {
		display: none;
	}

	.top {
		padding: 222px 0 50px;
	}

	.top__button {
		min-width: 200px;
	}

	.top__mt {
		margin-top: 45px;
	}

	.top__title-wrapper svg {
		width: 14px;
		width: 14px;
		padding-bottom: 5px;
	}

	.top__title {
		font-size: 34px;
		padding: 0 16px;
	}

	.top__text {
		font-size: 16px;
		margin-top: 32px;
	}

	.top__buttons {
		margin-top: 42px;
	}

	.top__item {
		max-width: 100%;
		width: 100%;
		background-color: var(--black);
		fill: var(--white);
		padding: 11px 20px 17px 21px;
	}

	.top__value {
		font-size: 30px;
	}

	.list-section {
		padding: 24px 0 46px;
	}

	.trips {
		padding: 64px 0 88px;
	}

	.trips__list {
		gap: 16px;
		margin-top: 64px;
		/* max-width: 370px; */
	}

	.trips__item {
		max-width: 370px;
		width: 100%;
	}

	.trips__item-content {
		padding: 23.5px 8px 26px 11px;
	}

	.trips__name {
		font-size: 16px;
		font-family: inter-sun, sans-serif;
		padding-bottom: 12px;
	}

	.trips__path {
		font-size: 14px;
		padding: 20px 0;
	}

	.trips__bottom {
		margin-top: 21px;
	}

	.trips__price {
		font-size: 18px;
	}

	.tours {
		padding: 48px 0 58px;
	}

	.tours__list {
		margin-top: 49px;
	}

	.tours__item {
		max-width: 370px;
		flex-direction: column;
	}

	.tours__image-wrap {
		display: flex;
		position: relative;
		padding-bottom: calc(100% / (370 / 262));
	}

	.tours__image {
		object-fit: cover;
		position: absolute;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		max-width: none;
	}

	.tours__image--4 {
		object-position: top;
	}

	.tours__item-content {
		padding: 28px 10px 17px 10px;
	}

	.tours__name {
		text-align: center;
	}

	.tours__name span {
		display: block;
	}

	.tours__path {
		padding: 7px 0 8px;
		text-align: center;
	}

	.tours__path span {
		display: block;
		margin: 0 auto;
		max-width: 250px;
	}

	.tours__services {
		justify-content: center;
	}

	.tours__services-item:last-child {
		width: 100%;
		justify-content: center;
	}

	.tours__bottom {
		margin-top: 23px;
	}

	.tours__price {
		font-size: 18px;
	}

	.tours__path br {
		display: none;
	}

	.special-trips {
		padding: 54px 10px 67px;
	}

	.special-trips__wrapper {
		flex-wrap: nowrap;
		gap: 0;
		justify-content: normal;
	}

	.special-trips__image {
		margin: 0 auto;
		display: block;
	}

	.special-trips__bottom {
		display: flex;
		align-items: center;
		justify-content: space-between;
		margin-top: 22px;
	}

	.special-trips__pagination.swiper-pagination {
		position: static;
		display: flex;
		gap: 0 18px;
		justify-content: center;
	}

	.special-trips__pagination .swiper-pagination-bullet {
		width: 14px;
		height: 14px;
		background-color: var(--white);
		margin: 0;
		opacity: 1;
	}

	.special-trips__pagination .swiper-pagination-bullet-active {
		background-color: var(--orange);
	}

	.special-trips__title {
		font-size: 26px;
	}

	.special-trips__list {
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: auto;
		margin-top: 46px;
	}

	.special-trips__list > .special-trips__item,
	.special-trips--black .special-trips__item {
		max-width: 250px;
		width: 100%;
		font-size: 15px;
	}

	.special-trips__item svg {
		width: 22px;
		height: 22px;
	}

	.special-trips__slider {
		margin-top: 46px;
	}

	.special-trips__slide {
		width: 100%;
	}

	.special-trips__check {
		display: none;
	}

	.special-trips__check-m {
		display: block;
	}

	.special-trips__images {
		flex-wrap: wrap;
		justify-content: center;
		gap: 10px 38px;
		margin-top: 31px;
	}

	.special-trips__slide .special-trips__image {
		max-width: 337px;
		width: 100%;
	}

	.special-trips__slide:nth-child(2) .special-trips__image {
		max-width: 337px;
		width: 100%;
	}

	.special-trips__slide:nth-child(3) .special-trips__image {
		max-width: 337px;
		width: 100%;
	}

	.about {
		padding: 48px 0 66px;
	}

	.about__title {
		max-width: 390px;
		font-size: 22px;
		padding: 0 10px;
	}

	.about__title span {
		display: block;
	}

	.about__item {
		width: 100%;
		padding: 23px 24px 16px 8px;
		gap: 12px 0;
	}

	.about__item-title {
		font-size: 16px;
		margin-top: 15px;
	}

	.about__text {
		font-size: 15px;
	}

	.about__images {
		flex-wrap: wrap;
		justify-content: center;
	}

	.request {
		padding: 60px 0 45px;
	}

	.request__title {
		font-size: 26px;
	}

	.request__text {
		margin-top: 25px;
	}

	.request__checkbox-value:last-child {
		font-size: 12px;
	}

	.request__button {
		font-family: inter-sun, sans-serif;
		font-weight: 500;
		margin-top: 10px;
		border-radius: 6px;
	}

	.gallery__button {
		border-radius: 6px;
		font-size: 18px;
	}

	.gallery__content {
		margin-top: 48px;
	}

	.gallery__title {
		font-size: 26px;
	}

	.reviews__title {
		text-align: center;
	}

	.reviews__slider {
		display: flex;
		gap: 0 23px;
		padding: 0 35px;
		margin-top: 50px;
	}

	.reviews__image {
		margin: 0 auto;
	}

	.reviews__button {
		display: block;
		flex-shrink: 0;
		position: absolute;
		top: 50%;
		z-index: 5;
		transform: translateY(-50%);
	}

	.reviews__prev {
		left: 0;
	}

	.reviews__next {
		right: 0;
	}

	.reviews__image {
		display: block;
	}

	.map-homepage .map__title,
	.map__title {
		text-align: center;
		max-width: 268px;
		margin: 0 auto;
	}

	.map + .connect {
		padding: 39px 10px;
	}

	.map__item {
		height: 400px;
	}

	.connect__inner {
		padding: 40px 37px;
	}

	.connect__title {
		font-size: 24px;
	}

	.connect__title span {
		display: block;
	}

	.connect__text {
		font-size: 15px;
		margin-top: 24px;
	}

	.connect__form {
		flex-direction: column;
		gap: 13px 0;
	}

	.connect__button,
	.connect__input {
		width: 100%;
		max-width: 100%;
		text-align: center;
		font-size: 15px;
	}

	.footer__inner {
		padding-top: 32px;
		padding-bottom: 22px;
	}

	.footer__content {
		flex-wrap: wrap;
	}

	.footer__wrapper {
		width: calc(50% - 5px);
	}

	.footer__wrapper-title {
		font-size: 15px;
		border-bottom: 1px solid var(--white);
		display: inline-block;
	}

	.footer__list {
		gap: 8px 0;
		margin-top: 24px;
	}

	.footer__link {
		font-size: 13px;
	}

	.footer__bottom {
		flex-direction: column;
		gap: 11px 0;
		padding-top: 32px;
		border-top: 1px solid var(--white);
		color: var(--white);
	}

	.footer__bottom-link {
		margin: 0 auto;
	}

	.footer .logo__image {
		width: 106px;
	}
}

@media (max-width: 480px) {
	.top__buttons {
		flex-direction: column;
		gap: 6px 0;
	}

	.top__button {
		max-width: 100%;
	}

	.top__list:not(.list-section .top__list) {
		display: none;
	}

	.top__list {
		padding: 0 20px;
	}

	.top__text br {
		display: none;
	}

	.list-section {
		display: block;
	}

	.popup__content {
		padding: 31px 12px 42px;
	}

	.popup__title {
		font-size: 28px;
	}

	.popup__text {
		font-size: 15px;
		max-width: 265px;
		margin: 48px auto 0;
	}

	.popup__label {
		font-size: 16px;
	}

	.popup__input {
		margin-top: 0;
	}

	.popup__button {
		margin-top: 44px;
	}

	.popup__bottom {
		max-width: 300px;
		font-size: 14px;
	}

	.popup__thanks {
		padding: 18px 60px;
	}

	.popup__thanks-title {
		font-size: 20px;
	}

	.popup__thanks-text {
		font-size: 16px;
		margin-top: 11px;
	}

	.special-trips__slide {
		width: 100%;
		width: auto;
		display: block;
	}

	.footer__wrapper {
		width: 100%;

		padding: 0 12px;
	}

	.footer__wrapper:first-child {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	.footer__youtube {
		width: 100px;
	}

	.footer__bottom {
		align-items: flex-start;
	}

	.footer__bottom-link {
		color: var(--white);
	}

	.footer__bottom-link,
	.footer__bottom span {
		display: block;
		margin-left: 12px;
	}

	.map__item {
		height: 188px;
		margin-top: 40px;
	}
}
