* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
}

body {
    font-size: 1.6rem;
    font-weight: 300;
    font-family: 'Raleway', sans-serif;
    min-height: 1000px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1350px;
    margin: 0 auto;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 1rem 6rem;
    border-bottom: 1px solid #6a6a6a77;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffff;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.header .logo {
    display: inline-block;
    width: 16.8rem;
    height: 7.6rem;
}

.header .logo img {
    width: 100%;
    height: 100%;
}

.header .navigation {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5rem;
}

.header .navigation .nav__list {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.header .navigation .nav__list .nav__link a:link , 
.header .navigation .nav__list .nav__link a:visited {
    display: inline-block;
    color: #6A6A6A;
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.32px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.header .navigation .nav__list .nav__link a:hover {
    color: #1640D6;
    font-weight: 700;
}

.header .navigation .nav__list .nav__link.active a {
    color: #1640D6;
    font-weight: 700;
}

.header .navigation .nav__contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.header .navigation .nav__contact svg {
    width: 2rem;
    height: 2rem;
}

.header .navigation .nav__contact p {
    color: #303030;
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.32px;
}

.header .navigation .close__hamburger {
    cursor: pointer;
    width: 3rem;
    height: 3rem;
    display: none;
    position: absolute;
    top: 3%;
    left: 6%;
}

.header .navigation .close__hamburger .bar::before,
.header .navigation .close__hamburger .bar::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    height: 4px;
    width: 100%;
    border-radius: 5px;
    background-color: #6A6A6A;
    transition: all 0.3s ease;
}

.header .navigation .close__hamburger .bar::before {
    transform: translateY(-50%) rotate(-45deg);
}

.header .navigation .close__hamburger .bar::after {
    transform: translateY(-50%) rotate(45deg);
}

.header .hamburger {
    display: none;
}

.header .hamburger i {
    font-size: 3rem;
    color: #6A6A6A;
}

.hero__section {
    height: 100vh;
    width: 100%;
    background-image: url(../img/hero__img/bg__img.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top 15%;
}

.hero__section .overlay {
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);  
}

.hero__content {
    position: relative;
    top: 35%;
}

.hero__content h2 {
    color: #D3D3D3;
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 10rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.hero__content h2 span {
    font-size: 3rem;
    margin-right: 1rem;
}

.hero__content h1 {
    color: #F0F0F0;
    font-size: 8rem;
    font-weight: 700;
    letter-spacing: 1.6px;
    line-height: 9rem;
    display: flex;
    align-items: center;
}

.hero__content h1 span {
    font-size: 3rem;
    margin-left: 1rem;
    color: #D3D3D3;
}

.hero__content .hero__btn:link,
.hero__content .hero__btn:visited {
    display: inline-block;
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.32px;
    padding: 1.5rem 5rem;
    border-radius: 5px;
    margin-top: 6rem;
    border: 2px solid #1640D6;
    color: #ffffff;
    background-color: #1640D6;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.hero__content .hero__btn:hover {
    background-color: transparent;
}

.about__section {
    position: relative;
}

.about__section .back__objects .object__1 {
    position: absolute;
    top: 20%;
    left: 5%;
}

.about__section .back__objects .object__2 {
    position: absolute;
    top: 0;
    right: 0;
}

.about__container .img__box {
    width: 26.7rem;
    height: 26.7rem;
    margin: 4rem auto;
}

.about__container .img__box img {
    width: 100%;
    height: 100%;
}

.about__container .para__1 {
    color: #3E3E3E;
    font-size: 2.6rem;
    font-weight: 500;
    line-height: 4rem;
    letter-spacing: 0.52px;
    text-align: center;
    padding-bottom: 8rem;
}

.about__container .para__2 {
    background-color: #1640D6;
    color: #F5F5F5;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 4rem;
    letter-spacing: 0.44px;
    padding: 2rem 14rem;
    text-align: center;
}

.consultation__section {
    padding: 10rem 0;
    position: relative;
}

.consultation__section .back__objects .object__1 {
    position: absolute;
    top: 10%;
    left: 5%;
}

.consultation__section .back__objects .object__2 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}

.consultation__section .back__objects .object__3 {
    position: absolute;
    bottom: 25%;
    left: 10%;
}

.session__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.session__container h3 {
    color: #1C1C1C;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.4px;
}

.session__container .custom-dropdown {
    position: relative;
}

.session__container .selected-item {
    padding: 1rem;
    border: 1px solid #ccc;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 46.2rem;
    height: 5rem;
    border-radius: 5px;
    user-select: none;
}

.session__container .selected-item #selected-value {
    color: #797979;
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.32px;
}

.session__container .arrow-down {
    border: solid black;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
}

.session__container .dropdown-list {
    display: none;
    position: absolute;
    top: 120%;
    left: 0;
    width: 46.2rem;
    border: 1px solid #ccc;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    border-radius: 5px;
}

.session__container .dropdown-item {
    padding: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #242424;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.32px;
}

.session__container .dropdown-item:hover {
    background-color: #f0f0f0;
}

.request__container {
    margin-top: 10rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 5rem;
}

.request__container h3 {
    color: #1C1C1C;
    font-size: 4rem;
    font-weight: 600;
    letter-spacing: 0.8px;
}

.request__container .form__container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    row-gap: 4rem;
    width: 100% ;
}

.request__container .form__container .input__box {
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
}

.request__container .form__container .input__box label {
    color: #1C1C1C;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 0.36px;
}

.request__container .form__container .input__box input {
    width: 44.9rem;
    height: 5rem;
    border-radius: 5px;
    border: 1px solid #A9A9A9;
    padding: 1rem;
}

.request__container .form__container .input__box input::placeholder {
    color: #A8A8A8;
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.28px;
}

.request__container .captcha__container {
    max-width: 53.7rem;
    height: 25.7rem;
    width: 100%;
    border-radius: 5px;
    background: #FFF;
    box-shadow: 0px 14px 54px 0px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.request__container .captcha__container h3 {
    color: #1C1C1C;
    font-size: 2.8rem;
    font-weight: 600;
    letter-spacing: 0.56px;
    text-align: center;
    margin-bottom: 2rem;
}

.request__container .captcha__container .screen {
    width: 37.8rem;
    height: 5rem;
    border-radius: 5px;
    border: 1px solid #A9A9A9;
    margin-bottom: 1.5rem;
    position: relative;
}

.request__container .captcha__container .screen .captcha {
    width: 100%;
    height: 100%;
    color: #8A8A8A;
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: 16.72px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.request__container .captcha__container .screen button {
    background: #1640D6;
    border-radius: 5px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 5px;
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    outline: none;
    cursor: pointer;
}

.request__container .captcha__container #userInput {
    width: 37.8rem;
    height: 5rem;
    border-radius: 5px;
    border: 1px solid #A9A9A9;  
    color: #8A8A8A;
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.36px;
    padding: 1rem;
    outline: none;
}

.request__container .captcha__container #userInput::placeholder {
    font-size: 1.6rem;
    font-weight: 500;
    color: #8A8A8A;
}

.request__container .submit__btn {
    max-width: 44.9rem;
    width: 100%;
    height: 5rem;
    border-radius: 5px;
    border: 1px solid #A9A9A9;
    background: #1640D6;
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 0.36px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.request__container .submit__btn:hover {
    background-color: transparent;
    color: #5B5B5B;
}

.footer {
    background: #F0F0F0;
    height: 22.3rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 6rem;
}

.footer .footer__nav .nav__list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6rem;
    flex-wrap: wrap;
}

.footer .footer__nav .nav__list .nav__link a:link,
.footer .footer__nav .nav__list .nav__link a:visited {
    display: inline-block;
    color: #5B5B5B;
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.32px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.footer .footer__nav .nav__list .nav__link a:hover {
    font-weight: 700;
}

.footer .footer__copyrights {
    color: #5B5B5B;
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.32px;
    text-align: center;
}

/* Book Page Css */

.book__hero {
    height: 80vh;
    width: 100%;
    background-image: url(../img/book__img/bg__img.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.book__hero .overlay {
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
}

.book__hero .overlay  h1 {
    color: #F0F0F0;
    font-size: 8rem;
    font-weight: 700;
    letter-spacing: 1.6px;
    line-height: 9rem;
    text-transform: uppercase;
    border-bottom: 1px solid #ffffff;
}

.book__section {
    padding: 10rem 0;
}

.book__section form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    width: 80%;
    margin: 0 auto;
}

.book__section form .input__box {
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
}

.book__section form .input__box label {
    color: #1C1C1C;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 0.36px;
}

.book__section form .input__box input {
    width: 100%;
    height: 5rem;
    border-radius: 5px;
    border: 1px solid #A9A9A9;
    padding: 1rem;
}

.book__section form .input__box input::placeholder {
    color: #A8A8A8;
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.28px;
}

.book__section form .submit__btn {
    display: flex;
    justify-content: flex-end;
    grid-column: 1/3;
}

.book__section form .submit__btn button {
    background-color: #1640D6;
    color: #fff;
    padding: 1rem 0;
    width: 20rem;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    font-size: 1.8rem;
    transition: background-color 0.3s ease;
}

.book__section form  .submit__btn button:hover {
    background-color: #1640d6c5;
}

/* Contact Us Page Css */

.contact__hero {
    height: 80vh;
    width: 100%;
    background-image: url(../img/contact__img/bg__img.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.contact__hero .overlay {
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact__hero .overlay  h1 {
    color: #F0F0F0;
    font-size: 8rem;
    font-weight: 700;
    letter-spacing: 1.6px;
    line-height: 9rem;
    text-transform: uppercase;
    border-bottom: 1px solid #ffffff;
}

.contact__section {
    padding: 10rem 0;
}

.contact__section form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    width: 80%;
    margin: 0 auto;
}

.contact__section form .input__box {
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
}

.contact__section form .input__box label {
    color: #1C1C1C;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 0.36px;
}

.contact__section form .input__box input {
    width: 100%;
    height: 5rem;
    border-radius: 5px;
    border: 1px solid #A9A9A9;
    padding: 1rem;
}

.contact__section form .input__box input::placeholder {
    color: #A8A8A8;
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.28px;
}

.contact__section form .submit__btn {
    display: flex;
    justify-content: flex-end;
    grid-column: 1/3;
}

.contact__section form .submit__btn button {
    background-color: #1640D6;
    color: #fff;
    padding: 1rem 0;
    width: 20rem;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    font-size: 1.8rem;
    transition: background-color 0.3s ease;
    -webkit-transition: background-color 0.3s ease;
    -moz-transition: background-color 0.3s ease;
    -o-transition: background-color 0.3s ease;
}

.contact__section form  .submit__btn button:hover {
    background-color: #1640d6c5;
}

/* Faq Page Css */

.faq__hero {
    height: 80vh;
    width: 100%;
    background-image: url(../img/faq__img/bg__img.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.faq__hero .overlay {
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.faq__hero .overlay  h2 {
    color: #F0F0F0;
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: 1.6px;
    line-height: 4rem;
    text-transform: uppercase;
}

.faq__hero .overlay  h1 {
    color: #F0F0F0;
    font-size: 6rem;
    font-weight: 700;
    letter-spacing: 1.6px;
    line-height: 7rem;
    text-transform: uppercase;
    border-bottom: 1px solid #ffffff;
}

.faq__section .accordion-container {
    width: 80%;
    padding: 5rem 0;
    margin: 0 auto;
}

.faq__section .accordion-container .accordion-item {
    padding: 2rem;
    position: relative;
    border: 1px solid #3E3E3E;
    margin-bottom: 2rem;
}

.faq__section .accordion-container .accordion-item .accordion-title {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    position: relative;
    cursor: pointer;
    color: #3E3E3E;
}

.faq__section .accordion-container .accordion-item .accordion-title::before {
    content: '+';
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    right: 2rem;
    font-size: 3rem;
    font-weight: 400;
}

.faq__section .accordion-container .accordion-item.active .accordion-title::before {
    content: '-'; 
}

.faq__section .accordion-container .accordion-item .accordion-content {
    color: #3E3E3E;
    font-size: 1.6rem;
    font-weight: 400;
    max-width: 100%;
    padding-top: 1rem;
    position: relative;
    height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.faq__section .accordion-container .accordion-item.active .accordion-content {
    height: 80px;
    display: flex;
    align-items: center;
}

/* Rates Page Css */

.rates__hero {
    height: 80vh;
    width: 100%;
    background-image: url(../img/rates__img/bg__img.jpg);
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: cover;
    background-attachment: fixed;
}

.rates__hero .overlay {
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
}

.rates__hero .overlay  h1 {
    color: #F0F0F0;
    font-size: 8rem;
    font-weight: 700;
    letter-spacing: 1.6px;
    line-height: 9rem;
    text-transform: uppercase;
    border-bottom: 1px solid #ffffff;
}

.booking__section h2 {
    color: #1C1C1C;
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    padding: 4rem;
    text-align: center;
}

.booking__container {
    padding: 4rem;
    margin-bottom: 10rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 2rem;
    border: 1px solid rgba(211, 211, 211, 0.5);
    border-radius: 10px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.booking__container .content__box p {
    color: #3E3E3E;
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 3.5rem;
    letter-spacing: 0.52px;
}

.booking__container .content__box p span {
    font-weight: 700;
}

.booking__container .form__box form .input__box:not(:last-child) {
    margin-bottom: 2rem;
}

.booking__container .form__box form .input__box {
    display: flex;
    flex-direction: column;
    row-gap: .5rem;
}

.booking__container .form__box form .input__box label {
    color: #1C1C1C;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 0.36px;
}

.booking__container .form__box form .input__box input {
    width: 100%;
    height: 5rem;
    border-radius: 50px;
    border: none;
    outline: none;
    padding: 2rem;
    background-color: #ebeaea;
}

.booking__container .form__box form .input__box input::placeholder {
    color: #A8A8A8;
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.28px;
}

.booking__container .form__box form .input__box textarea {
    height: 20rem;
    border-radius: 30px;
    border: none;
    outline: none;
    padding: 2rem;
    background-color: #ebeaea;
    resize: none;
}

.booking__container .form__box form .input__box textarea::placeholder {
    color: #A8A8A8;
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.28px;
    font-family: 'Raleway', sans-serif;
}

.booking__container .form__box .submit__btn {
    width: 50%;
    position: relative;
    left: 50%; transform: translateX(-50%);
    background-color: #1640D6;
    color: #fff;
    padding: 1rem 0;
    border: none;
    cursor: pointer;
    border-radius: 20px;
    font-size: 1.8rem;
    transition: background-color 0.3s ease;
    -webkit-transition: background-color 0.3s ease;
    -moz-transition: background-color 0.3s ease;
    -o-transition: background-color 0.3s ease;
}



