@font-face {
  font-family: 'Raleway-Bold';
  src: url('../fonst/Raleway-Bold.woff2') format('woff2');
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: 'Raleway-ExtraBold';
  src: url('../fonst/Raleway-ExtraBold.woff2') format('woff2');
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}
@font-face {
  font-family: 'Raleway-SemiBold';
  src: url('../fonst/Raleway-SemiBold.woff2') format('woff2');
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: 'Raleway-Regular';
  src: url('../fonst/Raleway-Regular.woff2') format('woff2');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Raleway-Medium';
  src: url('../fonst/Raleway-Medium.woff2') format('woff2');
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

body {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.15;
  font-family: 'Raleway-Regular', sans-serif;
}

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

.title {
  font-size: 32px;
  font-weight: 500;
  font-family: 'Raleway-Medium', sans-serif;
  text-transform: uppercase;
}

.title span {
  display: inline-block;
  background-image: url(../images/decor-line.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left bottom;
  padding: 0px 0 8px 0;
}

.header__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0 19px 0;
  background-color: #fff;
}

.header__logo svg {
  transition: color .3s ease;
}

.header__logo:hover svg {
  color: #00A9BD;
}

.menu__btn {
  position: relative;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 0;
  width: 40px;
  height: 25px;
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.menu__btn span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: black;
  transition: all .3s ease;
}

.menu__btn::before,
.menu__btn::after {
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  width: 100%;
  height: 3px;
  background-color: #000;
  transition: transform 0.3s ease;
}

.menu__btn::before {
  top: 0;
}

.menu__btn::after {
  bottom: 0;
}

.menu__list {
  display: flex;
  gap: 30px;
}

.menu__item {
  position: relative;
  font-size: 18px;
  text-transform: uppercase;
  cursor: pointer;
}

.menu__item:after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 50%;
  font-weight: 700;
  font-family: 'Raleway-Bold', sans-serif;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-50%);
  transition: opacity .3s ease;
}

.menu__item:hover::after {
  opacity: 1;
}

.menu__item:hover .menu_link {
  opacity: 0;
}

.menu__link {
  font-weight: 400;
  font-family: 'Raleway-Medium', sans-serif;
  transition: opacity .3s ease;
}

.social {
  display: flex;
  gap: 44px;
  align-items: center;
}

.header__social .social__link svg {
  transition: color .3s ease, transform .3s ease;
}

.social__link {
  display: inline-block;
}

.header__social .social__link:hover svg {
  color: #00A9BD;
  transform: scale(1.25);
}

.header__content {
  background-image: url(../images/header-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.header__content-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: calc(100vh - 128px);
  color: #fff;
}

.header__title {
  max-width: 1235px;
  margin-top: 22vh;
  margin-bottom: 10px;
  font-weight: 700;
  line-height: 1.5;
  font-size: 128px;
  font-family: 'Raleway-Bold', sans-serif;
  text-transform: uppercase;
  text-align: center;
}

.booking {
  padding: 22px 30px;
  font-weight: 700;
  line-height: 1;
  font-size: 18px;
  font-family: 'Raleway-Bold', sans-serif;
  text-transform: uppercase;
  color: #fff;
  background-color: #00A9BD;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.booking:hover {
  color: #000;
  background-color: #FFE093;
}

.header__booking {
  align-self: center;
}

.header__info-list {
  display: flex;
  justify-content: center;
  gap: 280px;
  max-width: 1377px;
  margin-top: auto;
  margin-bottom: 100px;
}

.header__info-item {
  position: relative;
  padding-left: 36px;
  font-size: 24px;
  font-weight: 500;
  font-family: 'Raleway-Medium', sans-serif;
}

.header__info-item span {
  display: flex;
  font-size: 32px;
  font-weight: 700;
  font-family: 'Raleway-Bold', sans-serif;
}

.header__info-item::before {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  background-image: url(../images/info-ico.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  left: 0;
  top: 7px;
}

.tour-info__inner {
 padding-top: 120px;
 padding-bottom: 120px;
}

.tour-info__top {
  display: flex;
  justify-content: space-between;
  text-transform: uppercase;
}

.tour-info__description {
  position: relative;
  max-width: 910px;
  padding-left: 147px;
  margin-bottom: 83px;
  font-size: 24px;
  font-weight: 400;
  font-family: 'Raleway-Regular', sans-serif;
}

.tour-info__description::before {
  content: '';
  position: absolute;
  width: 124px;
  height: 77px;
  background-image: url(../images/arrow-circle.svg);
  background-repeat: no-repeat;
  background-size: auto;
  left: 0;
  top: 0;
}

/* -------- start tour-info__inner-wrapper -------*/

.tour-info__inner-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.tour-info__inner-box {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 587px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.tour-info__inner-box svg {
  position: absolute;
  top: 216px;
  left: 50%;
  transform: translateX(-50%);
  color: #FFE093;
}

.tour-info__inner-box:hover svg {
  color: #00A9BD;
}

.tour-info__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  margin-bottom: 50px;
  padding: 0 20px;
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  font-family: 'Raleway-Bold', sans-serif;
  text-transform: uppercase;
}

.tour-info__link {
  position: relative;
  display: block;
  width: 42px;
  height: 39px;
}

.tour-info__link svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #FFF;
  transition: color 0.3s ease;
}

.tour-info__inner-box:hover 
.tour-info__inner-arr {
  color: #FFF;
}

.tour-info__link:hover .tour-info__inner-arr {
  color: #FFE093;
}

/* -------- end tour-info__inner-wrapper------- */

/* -------start counter-------- */

.tour-info__inner-wrapper {
  counter-reset: number;
}

.tour-info__inner-box::after {
  content: counter(number, decimal-leading-zero);
  counter-increment: number;
  position: absolute;
  top: 214px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 95px;
  font-weight: 400;
  font-family: 'Raleway-Regular', sans-serif;
  color: #FFFFFF;
}

.tour-info__inner-box:nth-child(n+10):after {
  content: counter(number);
}

/* -------end counter-------- */

/* -------- start tour-accommodation -------*/

.tour-accommodation__title {
  margin-bottom: 60px;
  text-align: center;
}

.tour-accommodation__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 10px;
  padding-bottom: 120px;
}

.tour-accommodation__wrapper-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tour-accommodation__wrapper-item-1,
.tour-accommodation__wrapper-item-5 {
  align-items: center;
  justify-content: center;
}

.tour-accommodation__item-title-1,
.tour-accommodation__item-title-5 {
  position: relative;
  margin-bottom: 20px;
  font-size: 32px;
  font-weight: 400;
  font-family: 'Raleway-Regular', sans-serif;
  text-transform: uppercase;
}

.tour-accommodation__item-title-1 {
  padding-left: 80px;
}

.tour-accommodation__item-title-1::before {
  position: absolute;
    content: "";
    width: 50px;
    height: 50px;
    background-image: url(../images/star.svg);
    background-repeat: no-repeat;
    background-size: auto;
    left: 0;
    top: 0;
}

.tour-accommodation__item-title-5::after {
  position: absolute;
  content: "";
  width: 50px;
  height: 50px;
  background-image: url(../images/star.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.tour-accommodation__item-title-5::after {
  /* right: -25px; */
  top: 0;
}

.tour-accommodation__wrapper-item-3 {
  max-width: 529px;
  width: 100%;
  /* height: 342px; */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.tour-accommodation__wrapper-item-8 {
  position: relative;
  max-width: 583px;
  width: 100%;
  /* height: 383px; */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.tour-accommodation__wrapper-item-link {
  position: absolute;
  bottom: -109px;
  left: 20px;
  padding: 15px 38px 15px;
  border: 1px solid #000;
  border-radius: 30px;
  font-size: 20px;
  font-weight: 400;
  font-family: 'Raleway-Regular', sans-serif;
}

.tour-accommodation__item-description-1 {
  max-width: 420px;
  padding-left: 80px;
  font-size: 20px;
  font-weight: 400;
  font-family: 'Raleway-Regular', sans-serif;
}

.tour-accommodation__item-description-5 {
  max-width: 420px;
  padding-left: 27px;
  font-size: 20px;
  font-weight: 400;
  font-family: 'Raleway-Regular', sans-serif;
}

.tour-accommodation__wrapper-item-2 {
  grid-column-start: 2;
  grid-column-end: 4;
}


.tour-accommodation__item-img {
  border-radius: 25px;
}
/* -------- end tour-accommodation -------*/

/* -------- start slider -------*/
.slider {
  padding: 50px 0 65px;
  text-align: center;
  margin-bottom: 120px;
}

.slider__title {
  margin-bottom: 30px;
  text-align: center;
}

.slide__img {
  display: inline-block;
  border-radius: 25px;
}

.slider__buttons {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
}

.button-prev {
  left: 0;
}

.button-next {
  right: 0;
}

.swiper-button-disabled{
  opacity: 0.5;
}

/* -------- end slider -------*/

/* -------- start tour-questions -------*/

.tour-questions {
  position: relative;
  padding: 75px 0 110px;
  background-color: #B6E8EE
}

.tour__title {
  margin-bottom: 36px;
  text-align: center;
}

.tour-questions__inner {
  /* position: relative; */
  /* display: flex;
  flex-direction: column;
  align-items: center;
  gap: 31px; */
}

.tour-questions__inner::before {
  position: absolute;
  content: "";
  width: 203px;
  height: 176px;
  background-image: url(../images/arrow-circle2.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
}

.tour-questions__inner-box {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
}
.tour-questions__inner-box:not(:last-child) {
  margin-bottom: 30px;
}

.tour-questions__inner-title {
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: 400;
  font-family: 'Raleway-Regular', sans-serif;
  text-transform: uppercase;
}

.tour-questions__inner-description {
  font-size: 20px;
  font-weight: 400;
  font-family: 'Raleway-Regular', sans-serif;
}



/* -------- end tour-questions -------*/


/* -------- start tours -------*/
.tours {
  padding: 150px 0 100px;
}

.tours__title {
  text-align: center;
  margin-bottom: 50px;
}

.tours__list {
  display: flex;
  gap: 35px;
}

.tours__item {
  position: relative;
  width: 180px;
  color: #fff;
  cursor: pointer;
  overflow: hidden;
  }

.tours__item.tours__item--active {
  width: 860px;
}

.tours__img {
  height: 800px;
  border-radius: 35px;
  object-fit: cover;
}

.tours__item--active .tours__item-title {
  opacity: 1;
} 

.tours__item-title {
  position: absolute;
  bottom: 115px;
  left: 0;
  right: 0;
  margin-bottom: 37px;
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  font-family: 'Raleway-SemiBold', sans-serif;
  text-transform: uppercase;
  opacity: 0;
}

.tours__info-list {
  position: absolute;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 55px;
  left: 23px;
  white-space: nowrap;
}

.tours__item--active .tours__info-list {
  left: 31px;
}

.tours__info-flag {
  background-color: rgb(255, 255, 255, 0.7);
  padding: 24px 52px;
  border-radius: 35px;
}

.tours__info-flag img {
  max-width: 30px;
  height: 30px;
}

.tours__info-date,
.tours__info-price {
  position: relative;
  padding-left: 33px;
  font-size: 24px;
  font-family: 'Raleway-Medium', sans-serif;
  font-weight: 500;
}

.tours__info-date span,
.tours__info-price span {
  font-weight: 800;
  font-family: 'Raleway-ExtraBold', sans-serif;
}

.tours__info-date::before,
.tours__info-price::before {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  background-image: url(../images/info-ico.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* --------end tours---------------- */

/* ---------start footer----------- */


.footer {
  padding: 50px 0;
  color: #fff;
  background-color: #00A9BD;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
  gap: 0 10%;
}

.footer__logo {
  margin-right: auto;
  align-self: center;
}

.footer__logo svg{
  color: #fff;
}

.footer__menu {
  font-weight: 500;
  font-family: 'Raleway-Medium', sans-serif;

}

/* .footer__menu-item + .footer__menu-item {
  margin-top: 20px;
} */

.footer__menu-item:not(:last-child) {
  margin-bottom: 20px;
}

.footer__contacts__title {
  margin-bottom: 16px;
  font-weight: 500;
  font-family: 'Raleway-Medium', sans-serif;
}

.address {
  font-style: normal;
  margin-bottom: 55px;
}

.address__name {
  margin-bottom: 25px;
}

/* .footer__social {
  margin-top: 55px;
} */

.footer__list {
  margin-right: 87px;
}
.footer__item + .footer__item {
  margin-top: 20px;
}

/* ---------start footer----------- */

.swiper-pagination {
  display: none;
}    

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