* {
    margin: 0px;
    padding: 0px;
}

body {
    padding: 0px;
    margin: 0px;
}

:root {
    --blue-color: #4D77FF;
    --black-color: #121212;
    --dark-gray-color: #696969;
    --light-gray-color: #C7C9D9;
    --white-color: #ffffff;
}

h1 {
    color: var();
}

.flex {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

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

.justify-center {
    justify-content: center;
}

.justify-space-between {
    justify-content: space-between;
}

.full-width {
    width: 100%;
}

li {
    list-style-type: none;
}

.span-blue {
    color: var(--blue-color);
}


/*styling the landing section*/

.landing {
    padding: 20px 0px;
    width: 100%;
    height: 140vh;
    background: url('../assets/landingImage.png');
    background-repeat: no-repeat;
    background-size: cover;
}

header {
    align-items: center;
}

.nav {
    width: 40%;
    align-self: center;
}

.nav ul {
    align-items: center;
}

.nav ul li {
    align-items: center;
    margin-left: 3.5rem;
}

.nav ul li a {
    color: var(--black-color);
    text-decoration: none;
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.03em;
}

.auth {
    width: 15%;
    align-items: center;
    margin-right: 3rem;
}

.auth a {
    text-decoration: none;
    color: var(--black-color);
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.03em;
}

.auth a button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 22px;
    gap: 10px;
    width: 97px;
    height: 44px;
    background: var(--blue-color);
    border-radius: 10px;
    border: none;
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.03em;
    color: var(--white-color);
}

.search {
    width: 265px;
    height: 38px;
    border-radius: 8px;
    background-color: var(--white-color);
    align-items: center;
    margin-left: 30px;
}

.search input {
    border: none;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0.03em;
    color: #989292;
    text-align: center;
    margin-left: 25px;
}


/*styling the landing text*/

.landing__text {
    width: 45%;
    height: 140px;
    font-weight: 700;
    font-size: 30px;
    line-height: 70px;
    letter-spacing: 0.02em;
    color: var(--black-color);
    margin-left: 3.5rem;
    margin-top: 4rem;
}

.underline {
    background: linear-gradient(180deg, rgba(229, 229, 229, 0) 0%, #E5E5E5 50%, rgba(229, 229, 229, 0) 100%);
    width: 100%;
    height: 4px;
}


/*styling the flight box*/

.flightbox {
    width: 550px;
    height: 440px;
    background-color: var(--white-color);
    margin-left: 3.5rem;
    box-shadow: 0px 10px 40px rgba(18, 18, 18, 0.1);
    border-radius: 0px 0px 10px 10px;
    margin-top: 3rem;
    padding: 20px 50px;
    border-top: 6px solid var(--blue-color);
}

.flightbox__head {
    margin-bottom: 1rem;
    padding: 1px 20px;
}

.flightbox__head a {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.03em;
    text-decoration: none;
    color: var(--black-color);
}

.flightbox__body {
    margin-top: 2rem;
}

form {
    align-items: center;
}

form .form__groups {
    margin-bottom: 1.5rem;
    width: 90%;
}

.form__group label {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.03em;
    color: var(--black-color);
    margin-bottom: 1rem;
}

.form__group input {
    width: 230px;
    height: 32px;
    border: 1px solid var(--light-gray-color);
    font-weight: 500;
    font-size: 11px;
    line-height: 21px;
    letter-spacing: 0.03em;
    text-align: center;
    background-color: #EDF1FF;
    border-radius: 9px;
}

.form__group .passengers {
    width: 500px;
}

.flightbox form button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 16px 36px;
    gap: 10px;
    width: 500px;
    height: 52px;
    background: var(--blue-color);
    border-radius: 10px;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.03em;
    color: var(--white-color);
    border: none;
}

.flightbox__tail {
    align-items: center;
    margin-top: 1rem;
}

.flightbox__tail a {
    text-decoration: none;
    color: var(--blue-color);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.015em;
}


/*styling the services section */

.services {
    align-items: center;
    margin-top: 3rem;
    margin-left: 3.5rem;
    margin-right: 3.5rem;
}

.services p {
    text-align: center;
    color: var(--blue-color);
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.03em;
    margin-bottom: 2rem;
}

.services h1 {
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: 0.015em;
    text-align: center;
    color: var(--black-color);
}

.services .services__cards {
    width: 100%;
    margin-top: 2rem;
}

.service__card {
    width: 280px;
    height: 230px;
    background-color: var(--white-color);
    border-top: 6px solid var(--blue-color);
    box-shadow: 0px 10px 40px rgba(18, 18, 18, 0.1);
    border-radius: 0px 0px 10px 10px;
    align-items: center;
    padding: 0px 10px;
}

.service__card h6 {
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0.03em;
    align-self: flex-start;
    margin-left: 10px;
    margin-top: 1rem;
}

.service__card p {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0.03em;
    color: #696969;
    align-self: flex-start;
    margin-left: 10px;
    text-align: left;
    margin-top: 1rem;
}


/*Styling trending cities section*/

.trending {
    height: 100vh;
    width: 100vw;
    background-image: url('../assets/trending.png');
    justify-content: left;
    align-items: flex-start;
    background-repeat: no-repeat;
    background-size: contain;
    margin-left: 4rem;
    margin-top: 5rem;
    padding-left: 3.5rem;
    padding-top: 3.5rem;
}

.trending .trending__top {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.03em;
    color: var(--white-color);
}

.trending .trending__header {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: 0.015em;
    color: var(--black-color);
}

.trending .trending__description {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.02em;
    color: #696969;
    width: 25%;
    text-align: left;
}

.trending .trending__button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 16px 36px;
    gap: 10px;
    border-radius: 10px;
    background-color: var(--blue-color);
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.03em;
    color: var(--white-color);
    text-decoration: none;
    margin-top: 3rem;
}

.trending .line {
    transform: matrix(1, 0, 0, -1, 0, 0);
    background-color: var(--blue-color);
    width: 90%;
    height: 3px;
}

.trending .trending__cities .trending__cities__main {
    align-items: flex-start;
    padding: 25px;
    gap: 10px;
    box-shadow: 0px 10px 40px rgba(18, 18, 18, 0.1);
    border-radius: 0px 0px 10px 10px;
    background-color: var(--white-color);
    width: 80%;
    height: 178px;
    flex-wrap: wrap;
}

.trending__cities__main .flights {
    width: 40%;
}

.flights select {
    border: none;
    background-color: var(--white-color);
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 28px;
    letter-spacing: 0.03em;
    color: var(--black-color);
    text-align: center;
}

.flights p {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    letter-spacing: 0.03em;
    color: var(--dark-gray-color);
}


/*Styling trending countries section*/

.trending__countries {
    width: 100vw;
    justify-content: center;
    align-items: center;
}

.trending__countries img {
    border: 2px solid #4D77FF;
    border-radius: 1000px;
    box-sizing: border-box;
    width: 40%;
    margin-left: 4rem;
}

.trending__countries .trending__coutries__left {
    width: 40%;
    justify-content: left;
    align-items: flex-start;
    margin-left: 4rem;
    margin-top: 5rem;
    padding-left: 3.5rem;
    padding-top: 3.5rem;
}

.trending__countries .trending__coutries__left .trending__top {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.03em;
    color: var(--blue-color);
}

.trending__countries .trending__coutries__left .trending__header {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: 0.015em;
    color: var(--black-color);
}

.trending__countries .trending__coutries__left .trending__description {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.02em;
    color: #696969;
    width: 60%;
    text-align: left;
}

.trending__countries .trending__coutries__left .trending__button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 16px 36px;
    gap: 10px;
    border-radius: 10px;
    background-color: var(--blue-color);
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.03em;
    color: var(--white-color);
    text-decoration: none;
    margin-top: 3rem;
}

.trending__countries .trending__coutries__left .line {
    transform: matrix(1, 0, 0, -1, 0, 0);
    background-color: var(--blue-color);
    width: 90%;
    height: 3px;
}

.trending__countries .trending__coutries__left .trending .trending__cities {
    width: 200px;
}

.trending__city {
    align-items: flex-start;
    padding: 25px;
    gap: 10px;
    box-shadow: 0px 10px 40px rgba(18, 18, 18, 0.1);
    border-radius: 0px 0px 10px 10px;
    background-color: var(--white-color);
    width: 80%;
    height: 200px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.trending__countries .trending__coutries__left .trending__city .flights {
    width: 40%;
}

.trending__countries .trending__coutries__left .flights select {
    border: none;
    background-color: var(--white-color);
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 28px;
    letter-spacing: 0.03em;
    color: var(--black-color);
    text-align: center;
}

.trending__countries .trending__coutries__left .flights p {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    letter-spacing: 0.03em;
    color: var(--dark-gray-color);
}


/*Styling ratings section*/

.rating {
    margin-top: 5rem;
}

.rating .services__cards {
    width: 80;
    justify-content: space-between;
}

.rating .service__card {
    width: 287px;
    height: 190px;
    margin-right: 2rem;
}

.rating .service__card p {
    align-self: center;
}

.entertainmentimage {
    width: 1365px;
    height: 500px;
    transition: all 0.3s ease 0s;
}

.entphrase {
    width: 700px;
    display: flex;
    margin-left: 340px;
    text-align: center;
    font-size: larger;
    margin-top: 10px;
    line-height: 25px;
    padding-bottom: 10px;
}

hr {
    color: #4d77ff67;
}

.items {
    border-radius: 20px;
    display: flex;
    width: 300px;
    height: 300px;
}

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

.card {
    margin-top: 10px;
    margin-left: 80px;
    margin-right: 80px;
    box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.2);
    margin-bottom: 50px;
    border-radius: 20px;
}

h2 {
    margin-left: 80px;
    margin-top: 10px;
}

.order {
    background-color: #4D77FF;
    color: white;
    border-radius: 20px;
    width: 90px;
    height: 30px;
    margin-left: 200px;
    margin-top: 20px;
    margin-bottom: 10px;
    transition: all 3s ease 0s;
}

p {
    margin-top: 10px;
}

.view {
    background-color: #4D77FF;
    color: white;
    border-radius: 20px;
    width: 90px;
    height: 30px;
    position: absolute;
    right: 45px;
    margin-bottom: 10px;
    transition: all 3s ease 0s;
}

.logout {
    background-color: #4D77FF;
    color: white;
    border-radius: 20px;
    width: 90px;
    height: 30px;
    position: absolute;
    right: 45px;
    transition: all 3s ease 0s;
}

mark {
    background-color: rgba(0, 0, 0, 0);
    color: #4D77FF;
}


/*Styling footer section*/

.footer {
    width: 100vw;
    margin-top: 5rem;
    padding-bottom: 20px;
    position: static;
}

.footer__left {
    width: 40%;
    margin-left: 3rem;
}

.footer__left p {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.015em;
    color: var(--black-color);
    width: 80%;
    margin-top: 1.5rem;
}

.footer__left h1 {
    font-size: 2rem;
}

.footer__right {
    width: 50%;
    margin-right: 3rem;
}

.footer__right ul li a {
    text-decoration: none;
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.015em;
    color: var(--black-color);
    margin-top: 5px;
}

.footer__right ul li {
    margin-top: 5px;
}

.footer__right__content div img {
    margin-top: 10px;
}