* {
    margin: 0;
    padding: 0;
    font-family: "Helvetica Neue";
}

body {
    background: url(./images/background.jpg) center / cover;
}

/* .main-container {
    height: 100vh;
    width: 100vw;
} */

.company-name {
    top: 0;
    left: 0;
    /* display: block; */
}

.intro-one {
    margin-top: 150px;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}

.intro-one {
    /* margin-bottom: 20px; */
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1;
    text-align: center;
}

.intro-two-grid-container {
    display: grid;
    /* flex-direction: row;
  justify-content: center;
  align-items: center; */
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
}

.grid-item {
    /* background-color: skyblue; */
    text-align: center;
}

.benefits-heading-flexbox-container {
    grid-column: 1/4;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
}

.benefits-description-flexbox-container {
    grid-column: 1/4;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
}

.intro-three {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 2;
}

.top-brand-partner-h3 {
    grid-row: 1;
    grid-column: 1/4;
    text-align: center;
}

.image-left {
    grid-column: 1/2;
}

.image-right {
    grid-column: 2/3;
}

.grid-content {
    display: grid;
    grid-template-columns: 1;
    grid-template-rows: 3;
    gap: 15px;
    place-items: center;
}

.content {
    border: 0.5px solid midnightblue;
    border-radius: 15px;
    width: 70%;
    /* height: 50%; */
    /* margin: 5px; */
    padding: 10px;
    background-color: #fff5;
}

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

.footer {
    margin: 10px;
}

img {
    width: 60%;
    height: auto;
}

.text-box {
    inline-size: 200px;
    overflow-wrap: break-word;
}

.nav-container {
    background-color: #cbcbcb;
    position: fixed;
    top: 0;
    height: 100px;
    width: 100%;
}

.navbar {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    background-color: #fff5;
    position: fixed;
    top: 0;
    width: 600px;
    right: 0;
    height: 100px;
}

#heading {
    font-size: 6vh;
    padding: 8px;
}

#booking-main-container {
    display: grid;
    justify-content: center;
    align-items: center;
    margin-top: 150px;
}

#booking-form-container {
    display: grid;
    justify-content: center;
    align-items: center;
    border: 2px solid lightgrey;
    height: 600px;
    width: 600px;
    border-radius: 10px;
    background-color: #fff5;
}

.form-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    align-items: center;
    justify-content: center;
}

#getButton {
    background-color: #23f0b94a;
    border: none;
    color: white;
    padding: 15px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
    border-radius: 20px;
    width: 200px;
    justify-content: center;
    align-items: center;
}

#getButton:hover {
    background-color: #1aa17d4a;
}

.form-button {
    display: flex;
    justify-content: center;
}
