.header__wraper {
    height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

.header__title {
    text-align: center;
    font-size: 48px;
    line-height: 1;
    letter-spacing: 4.8px;
    color: white;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 26px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.header__subtitle {
    color: white;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 26px;
    text-align: center;
    margin-bottom: 15px;
}

.search-form {
    max-width: 650px;
    margin: 0 auto 120px;
    height: 60px;
    background-color: white;
    display: flex;
}

.search-form__input {
    width: calc(100% - 60px);
    text-align: center;
    font-size: 14px;
    letter-spacing: 2.8px;
    color: #000000;
    height: 60px;
    line-height: 60px;
    border: none;
}

.search-form__input::placeholder {
    color: #999999; 
}

.search-form__btn {
    border: 2px solid #ffffff;
    background-color: #5474fd;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    color: #ffffff;
    font-size: 14px;
    letter-spacing: 1.4px;
    font-family: 'Aleo', serif;
    width: 150px;
    min-width: 150px;
    padding: 0;
    cursor: pointer;
    transition: background-color 0.4s ease;
}

.search-form__btn svg {
    width: 20px;
    height: 20px;
    margin-left: 15px;
   
}
.search-form__btn:hover {
    background-color: #3b60fd; 
}

.scroll-down {
    font-size: 14px;
    letter-spacing: 2.8px;
    color: #ffffff;
    font-family: 'Josefin Sans', sans-serif;
    text-align: center;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
}

.scroll-down svg {
    fill: #ffffff;
}

svg  {
    overflow: hidden;
    vertical-align: middle;
    width: 32px;
    height: 32px;
    margin-left: 37px;
}

.scroll-down:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    border-bottom: 1px solid #ffffff;
    transition: 0.4s ease; 
}

.scroll-down:hover:after {
    width: 100%; 
}

.header__bot {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #5474fd;
    padding: 30px 0; 
}

.header__bot-title {
    font-size: 24px;
    line-height: 26px;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 2.4px;
    font-family: 'Josefin Sans', sans-serif;
}

.header__nav ul {
    display: flex;
    justify-content: flex-end;
}

.header__nav a {
    font-size: 14px;
    color: #ffffff;
    display: block;
    text-transform: uppercase;
    text-decoration: none;
    font-family: 'Josefin Sans', sans-serif;
}

.header__nav li {
    margin-right: 42px;
}

.header__nav li:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    border-bottom: 1px solid #ffffff;
    transition: 0.4s ease;
}
.header__nav li:hover::after {
    width: 100%;
}

.header__nav li:last-child {
    margin-right: 0;
}

.about {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 120px 0;
}

.about__title {
    font-size: 36px;
    color: #ffffff;
    font-family: 'Aleo', serif;
    margin-bottom: 60px;
}
.about__text {
    max-width: 530px;
    margin-bottom: 50px;
}
.about__text p {
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 1.6px;
    margin-bottom: 30px;
    color: #ffffff;
    font-family: 'Josefin Sans', sans-serif;
    color: #e8e8e8;
    font-weight: 400;

}
.about__text p:last-child {
    margin-bottom: 0; 
}

.about__image {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.about__image-1 {
    margin-right: 125px;
    margin-bottom: 5px;
}

.btn {
    display: inline-block;
    background-color: #5474fd;
    position: relative;
    height: 60px;
    line-height: 60px;
    padding: 0 38px;
    font-size: 16px;
    color: #ffffff;
    text-transform: uppercase;
    width: 225px;
    letter-spacing: 1.2;
    font-family: 'Aleo', serif;
    text-decoration: none;
    text-align: center;
    transition: .5s;
}
.btn:after {
    content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url(../image/btn-el.svg);
      background-repeat: no-repeat;
      background-position: left top;
      background-size: contain;
}

.btn span {
    position: relative;
    z-index: 1;
}

.btn:hover {
    
    transform: skew(-10deg);
}


.steps{
    background-color: #333333;
    padding: 80px 0 120px;
}

.step-items {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.step-item {
    margin-right: 170px;
}
.step-item:last-child {
    margin-right: 0; 
}

.step-item__icon {
    width: 96px;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}


.step-item__title {
    font-size: 36px;
    color: #e8e8e8;
    font-family: 'Aleo', serif;
    text-align: center;
}

.tour-section {
    padding: 230px 0 100px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;

}

.tour-block {
    background-color: rgba(35, 35, 35, 0.9);
    max-width: 540px;
    padding: 50px 30px;
}

.tour-block__country {
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 1.5px;
    color: #e8e8e8;
    margin-bottom: 30px;
    font-family: 'Josefin Sans', sans-serif;
}
.tour-block__title {
    font-size: 20px;
    text-transform: uppercase;
    color: #fefefe;
    line-height: 26px;
    margin-bottom: 30px;
    font-family: 'Josefin Sans', sans-serif;
}

.tour-block__text {
    font-size: 16px;
    line-height: 26px;
    color: #e8e8e8;
    margin-bottom: 50px; 
    font-family: 'Josefin Sans', sans-serif;
}

.reviews-section {
    padding: 120px 0 200px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.reviews-section__title {
    font-size: 36px;
    text-align: center;
    color: #ffffff;
    margin-bottom: 100px;
    font-family: 'Aleo', serif; 
}

.review {
    display: flex;
    width: 100%;
    background-color: #333333;
}

.review__img {
    object-fit: cover;
}

.review__inner {
    padding: 50px 50px 50px 60px;
}
.review__name {
    color: #fefefe;
    font-size: 20px;
    line-height: 26px;
    text-transform: uppercase;
    margin-bottom: 30px;
    font-family: 'Josefin Sans', sans-serif;
}
.review__text {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 16px;
    line-height: 26px;
    color: #e8e8e8;
    text-indent: 30px;
    position: relative; 
   
}

.review__text img {
    width: 20px;
    position: absolute;
    top: -10px;
    left: 0; 
}

.footer {
    padding: 120px 0 50px;
    background-color: #232323;
}
.footer__title {
    font-size: 24px;
    line-height: 26px;
    letter-spacing: 3.36px;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 15px;
    text-align: center;
    font-family: 'Josefin Sans', sans-serif;
}
.footer__subtitle {
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 1.6px;
    text-align: center;
    margin-bottom: 30px;
    color: #ffffff;
    font-family: 'Josefin Sans', sans-serif
}

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

.footer__socials li {
    margin-right: 24px; 
}



.footer__socials li:last-child {
    margin-right: 0; 
}


.footer__socials a {
    display: block; 
    color: white;
}

.footer__socials a:hover {
    color: #5474fd;
}

@media (max-width: 1199.98px) {
    .about__image-1 {
      margin-right: 60px; } 
    }

 @media (max-width: 991.98px) {
    .about__image-1 {
      margin-right: 0px; 
    }
    .tour-section {
      padding: 100px 0; 
    }
    .reviews-section {
      padding: 100px 0; 
    }
      .reviews-section__title {
        margin-bottom: 60px; 
    }
    .review {
      display: block; 
    }
      .review__img {
        display: block;
        width: 100%; 
    }
    .step-item {
      margin-right: 80px; 
    }
      .step-item__title {
        font-size: 20px; 
    }
    .header__nav li {
      margin-right: 20px; } 
    }

@media (max-width: 767.98px) {
    .search-form {
    display: block;
    height: auto;
    margin-bottom: 30px; 
}
    .search-form__btn {
      height: 60px;
      width: 100%; 
    }
    .search-form__input {
      width: 100%; 
    }
  .header__title {
    font-size: 40px; 
}
  .header__subtitle {
    font-size: 18px;
    margin-bottom: 30px; 
}
  .steps {
    padding: 40px 0 80px; 
}
  .step-items {
    display: block;
    margin-bottom: -30px; 
}
  .step-item {
    margin: 0 auto 30px;
    margin-right: 0; 
}
  .tour-section {
    padding: 80px 0; 
}
  .tour-block__country {
    margin-bottom: 20px; 
}
  .tour-block__title {
    margin-bottom: 20px; 
}
  .tour-block__text {
    margin-bottom: 20px; 
}
  .reviews-section {
    padding: 80px 0; }
    .reviews-section__title {
      font-size: 28px;
      margin-bottom: 30px;
     }
  .review__inner {
    padding: 30px 15px; 
}
  .about {
    padding: 80px 0; 
}
    .about__title {
      font-size: 28px;
      margin-bottom: 30px; 
    }
    .about__image-1 {
      display: block;
      width: 100%;
      margin-right: 0;
      margin-top: 30px;
      margin-bottom: 15px; 
    }
    .about__image-2 {
      display: block;
      width: 100%; 
    }
  .header__bot-title {
    text-align: center;
    margin-bottom: 20px; 
}
  .header__nav ul {
    display: block;
    text-align: center; 
}
  .header__nav li {
    margin-right: 0;
    margin-bottom: 10px; 
}
    .header__nav li:last-child {
      margin-bottom: 0; 
    } 
}



