body {
    font-family: "Forum", sans-serif;
    font-weight: 400;
    background-color: #524DA1;
}

.container {
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Hero */
.hero-section {
    padding-bottom: 80px;
}

.hero__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
}

.hero__logo-img {
    width: 100%;
    max-width: 530px;
    height: 100%;
    max-height: 353px;
}

.hero__title {
    font-size: 64px;
    line-height: 80px;
    letter-spacing: 0%;
}

.hero__text {
    font-family: "Gentium Plus", sans-serif;
    margin: 10px auto 50px;
    width: 100%;
    max-width: 786px;
    font-size: 25px;
    line-height: 25px;
    letter-spacing: 0%;
    position: relative;
}

.hero__text::after {
    content: "";
    display: flex;
    position: absolute;
    background-image: url("../img/arrow-1.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 480px;
    height: 325px;
    bottom: -345px;
    left: 50px;
    z-index: 1;
}

.hero__btn {
    font-family: "Pacifico", sans-serif;
    background-color: #FFF048;
    font-size: 19px;
    line-height: 23.75px;
    letter-spacing: 0%;
    text-align: center;
    cursor: pointer;
    color: #3B3B3B;
    padding: 23px 20px;
    border-radius: 10px;
    z-index: 2;
    position: relative;
}

/* Search */
.search-section {
    padding-bottom: 100px;
    color: #000;
}

.search__container {
    width: 100%;
    max-width: 1425px;
    margin: 0 auto;
    padding: 0 40px 0 15px;
}

.search__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: space-between;
    align-items: center;
    gap: 18px;
}

.search__left-img {
    height: 350px;
}

.search__left {
    grid-column: 1 / 4;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 70px;
    padding: 22px;
    background-color: #D9D9D9;
    border-radius: 0 100px 100px 0;
    width: 100%;
}

.search__left-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 46px;
}

.search__left-text {
    font-size: 25px;
    line-height: 22px;
    letter-spacing: 0%;
}

.search__right {
    background-color: #D9D9D9;
    border-radius: 100px 0 0 100px;
    width: 100%;
    height: 100%;
    min-height: 350px;
    position: relative;
    grid-column: 4 / 4;
}

.search__right div {
    position: absolute;
    top: 24px;
    right: -20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    z-index: 1;
}

.search__right div div:nth-child(1) {
    position: absolute;
    top: 0;
    background-color: #524DA1;
    border-radius: 50%;
    width: 90px;
    height: 90px;
}
.search__right div div:nth-child(2) {
    position: absolute;
    top: 120px;
    background-color: #524DA1;
    border-radius: 50%;
    width: 90px;
    height: 90px;
}
.search__right div div:nth-child(3) {
    position: absolute;
    top: 240px;
    background-color: #524DA1;
    border-radius: 50%;
    width: 90px;
    height: 90px;
}

.search__right-plane {
    position: absolute;
    width: 186px;
    height: 186px;

    top: 10px;
    left: 10px;
    z-index: 2;
}
.search__right-img--flamingo {
    position: absolute;
    width: 180px;
    height: 145px;

    top: 80px;
    right: 0;
    z-index: 2;
}
.search__right-img--mountains {
    position: absolute;
    width: 100%;
    object-fit: fill;
    height: 166px;

    left: 0;
    bottom: 105px;
}
.search__right-car {
    position: absolute;
    width: 100%;
    max-width: 250px;
    height: 200px;

    left: 28px;
    bottom: 0;
    z-index: 2;
}

/* City */
.city-section {
    margin-bottom: 55px;
}

.city__inner {
    color: #fff;
}

.city__title {
    font-family: "Gentium Plus", sans-serif;
    font-weight: 700;
    font-size: 43px;
    line-height: 53.75px;
    letter-spacing: 0%;
    margin: 0 auto 40px;
    text-align: center;
}

.city__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: space-between;
}

.city__item-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.city__item-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.city__item-item a {
    font-size: 30px;
    line-height: 25px;
    letter-spacing: 0%;
    color: #fff;
}

.city__item-item a:hover {
    text-decoration: underline;
}

.city__item-item a img {
    width: 30px;
    min-width: 30px;
    height: 30px;
    min-height: 30px;
    transition: all 0.2s ease-in-out;
}

.city__item-item a img:hover {
    transform: scale(1.2);
}

/* Avaliable */
.avaliable-section {
    background-color: #D9D9D9;
    padding: 106px 0;
    position: relative;
    z-index: 2;
}

.avaliable-section::after {
    content: "";
    display: block;
    position: absolute;

    background-image: url("../img/img.png");
    background-repeat: no-repeat;
    background-size: cover;

    width: 500px;
    height: 453px;

    top: 50px;
    right: 0;
    z-index: 1;
}

.avaliable__container {
    width: 100%;
    max-width: 1343px;
    margin: 0 auto;
    padding: 0 15px;
}

.avaliable__title {
    width: 100%;
    max-width: 1070px;
    color: #000;
    font-family: "Gentium Plus", sans-serif;
    font-weight: 700;
    font-size: 64px;
    line-height: 80px;
    letter-spacing: 0%;
    position: relative;
    z-index: 2;
}

/* Destinations */
.destinations-section {
    padding: 72px 0 340px;
    color: #fff;
    position: relative;
}

.destinations-section::after {
    content: "";
    display: block;
    position: absolute;

    background-image: url("../img/arrow-3.png");
    background-repeat: no-repeat;
    background-size: contain;

    width: 100%;
    max-width: 600px;
    height: 100%;
    max-height: 600px;

    top: -130px;
    right: 110px;
}

.destinations__inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.destinations__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: space-between;
    gap: 20px;
}

.destinations__item-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.destinations__item-item {
    font-size: 25px;
    line-height: 25px;
    letter-spacing: 0%;
}

.destinations__img {
    width: 300px;
    height: 300px;
    margin-right: 21%;
    align-self: flex-end;
}