* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}

body {
    overflow-x: hidden;
}

/* Header CSS */
.header-sec {
    width: 100%;
    min-height: 940px;
    background-image: url('./images/header.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    position: relative;
    padding-top: 150px;
    padding-bottom: 60px;
}
.header-sec .navbar {
    width: 100%;
    padding: 48px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1200;
}
.header-sec .navbar .logo {
    cursor: pointer;
}
.header-sec .navbar .humburger {
    cursor: pointer;
    z-index: 6;
}
.header-sec .navbar .humburger span {
    margin: 6px 0;
    width: 25px;
    height: 2px;
    background: #fff;
    display: block;
    transition: all 0.4s;
}
.header-sec .navbar .humburger.active span:nth-child(2) {
    opacity: 0;
}
.header-sec .navbar .humburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.header-sec .navbar .humburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}
.header-sec .navbar .side-bar {
    z-index: 5;
    position: absolute;
    right: -1000px;
    /* opacity: 0; */
    width: 372px;
    top: 0;
    padding: 130px 30px 10px 20px;
    height: 600px;
    background: linear-gradient(rgb(13, 13, 13), rgba(38, 38, 38, 0));
    color: rgb(255, 255, 255);
    transition: all 0.4s;
}
.header-sec .navbar .side-bar.active {
  right: 0;
}
.header-sec .navbar .side-bar ul {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 28px;
    list-style: none;
}
.header-sec .navbar .side-bar ul li {
    cursor: pointer;
}
.header-sec .hero {
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.header-sec .hero .main-text h1 {
    display: flex;
    justify-content: space-between;
    font-size: 240px;
    line-height: 288px;
    margin-top: -30px;
    color: #fff;
    font-weight: 400;
    text-align: justify;
}
@media (max-width: 1200px) {
    .header-sec .hero .main-text h1 {
        font-size: 210px;
        line-height: 288px;
    } 
}
@media (max-width: 900px) {
    .header-sec .hero .main-text h1 {
        font-size: 160px;
        line-height: 200px;
    } 
}
@media (max-width: 686px) {
    .header-sec .hero .text-wrapper {
        display: flex !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        flex-direction: column;
    }
}
@media (max-width: 570px) {
    .header-sec .hero .main-text h1 {
		margin-top: 10px;
        font-size: 70px;
        line-height: 100px;
    } 
    .header-sec {
        min-height: 640px;
    }
}
.header-sec .hero .text-wrapper {
    padding: 10px 25px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    color: #fff;
}
.header-sec .hero .text-wrapper .left h4 {
    margin: 0;
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 20px;
    max-width: 400px;
    margin-bottom: 15px;
}
.header-sec .hero .text-wrapper .left h2 {
    font-weight: 400;
    font-size: 36px;
    line-height: 36px;
}
.header-sec .hero .text-wrapper .book {
	margin-top: 10px;
    font-size: 36px;
    line-height: 36px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
}
.header-sec .hero .text-wrapper .book:hover {
    border-bottom: 2px solid #fff;
}

/* Booking Sec CSS */
.booking-sec {
    width: 100%;
    position: relative;
    height: 1160px;
    background-image: linear-gradient(rgba(62, 62, 64, 0.33), rgba(13, 13, 13, 1));
    -webkit-background-size: cover;
    background-size: cover;
}
.booking-sec .main-bg-img {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}
.booking-sec .main-bg-img img {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    color: transparent;
    object-fit: cover;
    transform: none;
}
.booking-sec .booking-wrapper {
    width: 100%;
    display: flex;
    gap: 64px;
}
.booking-sec .booking-wrapper .left {
    min-width: 404px;
    max-width: 404px;
    padding: 218px 40px 132px;
}
.booking-sec .booking-wrapper .left h1 {
    font-size: 64px;
    font-weight: 800;
    color: #fff;
}
.booking-sec .booking-wrapper .right {
    padding: 180px 20px 132px 0;
    overflow: hidden;
}
.booking-sec .booking-wrapper .right .steps {
    width: 100%;
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.booking-sec .booking-wrapper .right .steps .box {
    width: 90px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
}
.booking-sec .booking-wrapper .right .steps .box p {
    font-size: 13px;
    font-weight: 300;
    color: #fff;
}
.booking-sec .booking-wrapper .right .steps .box .line {
    width: 90px;
    height: 4px;
    border-radius: 3px;
    background: #fff;
}
.booking-sec .booking-wrapper .right .btn {
    margin-top: 30px;
    display: flex;
    justify-content: flex-end;
    margin-right: 30px;
}
.booking-sec .booking-wrapper .right .btn button {
    border: 0;
    outline: 0;
    color: #fff;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}
.booking-sec .booking-wrapper .right .title {
    font-size: 36px;
    color: #fff;
    font-weight: 400;
}
.booking-sec .booking-wrapper .right .carousal {
    margin-top: 180px;
    max-width: 870px;
    position: relative;
}
.booking-sec .booking-wrapper .right .carousal .wrapper {
    width: 870px;
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease;
}
.booking-sec .booking-wrapper .right .carousal .left-arrow {
    position: absolute;
    top: 50%;
    left: 25px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    z-index: 100;
}
.booking-sec .booking-wrapper .right .carousal .right-arrow {
    position: absolute;
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    z-index: 100;
}
.booking-sec .booking-wrapper .right .carousal .wrapper .boxs {
    min-width: 325px;
    transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    box-shadow: none;
    max-width: 325px;
    cursor: pointer;
    height: 520px;
    padding: 22px 20px;
    background: linear-gradient(rgb(255, 255, 255), rgb(134, 134, 134));
    color: rgb(13, 13, 13);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s;
}
.booking-sec .booking-wrapper .right .carousal .wrapper .boxs.active {
    background: linear-gradient(rgb(255, 255, 255), rgb(50, 50, 50));
    box-shadow: 0px 0px 26px 10px rgba(0,0,0,0.75);
}
.booking-sec .booking-wrapper .right .carousal .wrapper .boxs .price {
    display: flex;
    flex-direction: column;
}
.booking-sec .booking-wrapper .right .carousal .wrapper .boxs .price p {
    font-size: 12px;
    font-weight: 300;
    margin: 0;
}
.booking-sec .booking-wrapper .right .carousal .wrapper .boxs .price h1 {
    font-size: 56px;
    margin: 0;
    font-weight: 300;
}
.booking-sec .booking-wrapper .right .carousal .wrapper .boxs ul {
    list-style: none;
    margin-left: 20px;
    font-size: 13px;
    font-weight: 300;
}
.booking-sec .booking-wrapper .right .carousal .wrapper .boxs .bottom {
    display: flex;
    flex-direction: column;
    font-size: 13px;
    font-weight: 300;
    gap: 20px;
}
.booking-sec .booking-wrapper .right .carousal .wrapper .boxs .bottom .img {
    display: flex;
    font-size: 13px;
    font-weight: 300;
    gap: 15px;
    align-items: center;
}
@media (max-width: 800px) {
    .booking-sec {
        height: auto;
    }
    .booking-sec .booking-wrapper {
        flex-direction: column;
        padding: 0 30px;
    }
    .booking-sec .booking-wrapper .left {
        min-width: 200px;
        max-width: 200px;
    }
    .booking-sec .booking-wrapper .right {
        width: 100%;
    }
}
@media (max-width: 600px) {
    .booking-sec .booking-wrapper .left {
        padding: 50px 10px;
    }
    .booking-sec .booking-wrapper .left h1{
        font-size: 50px;
    }
}


/* Option CSS */
.option {
    width: 100%;
    padding: 100px 40px;
    background: #000;
}
.option .option-wrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.option .option-wrapper .left {
    flex: 1;
}
.option .option-wrapper .left h1 {
    font-size: 64px;
    width: 60%;
    color: #fff;
}
.option .option-wrapper .right {
    width: 420px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.option .option-wrapper .right button {
    width: 80%;
    padding: 15px 5px;
    margin-top: 10px;
    border-radius: 30px;
    font-size: 16px;
    border: 0;
    outline: 0;
    background: #4C5359;
    cursor: pointer;
    color: #fff;
    transition: all 0.4s;
    font-weight: 600;
}
.option .option-wrapper .right button:hover {
    background: rgba(255, 255, 255, 0.04);
}
@media (max-width: 820px) {
    .option .option-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    .option .option-wrapper .right {
        width: 100%;
    }
    .option .option-wrapper .left {
        width: 100%;
    }
}
@media (max-width: 680px) {
    .option .option-wrapper .left h1 {
        width: 100%;
    }
}
@media (max-width: 360px) {
    .option .option-wrapper .left h1 {
        font-size: 38px;
    }
}

/* car-option CSS */
.car-option {
    width: 100%;
    padding: 0 40px 100px;
    background: #000;
    color: #fff;
}
.car-option .car-option-wrapper {
    width: 100%;
    display: flex;
    align-items: flex-end;
    gap: 50px;
}
.car-option .car-option-wrapper .option-list {
    display: flex;
    flex-direction: column;
}
.car-option .car-option-wrapper .option-list .box {
    padding: 40px 0;
    border-bottom: 2px solid #fff;
    cursor: pointer;
}
.car-option .car-option-wrapper .option-list .box h2 {
    color: #fff;
    font-size: 32px;
    width: 90%;
    font-weight: 500;
}
.car-option .car-option-wrapper .detail {
    flex: 1;
    display: flex;
    align-items: flex-end;
    gap: 50px;
}
.car-option .car-option-wrapper .detail .img {
    width: 418px;
    height: 665px;
}
.car-option .car-option-wrapper .detail .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.car-option .car-option-wrapper .detail .txt {
    width: 360px;
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media (max-width: 1150px) {
    .car-option .car-option-wrapper {
        align-items: flex-start;
    }
    .car-option .car-option-wrapper .detail {
        flex-direction: column;
    }
}
@media (max-width: 800px) {
    .car-option .car-option-wrapper {
        flex-direction: column;
    }
    .car-option .car-option-wrapper .option-list {
        width: 100%;
    }
    .car-option .car-option-wrapper .detail {
        width: 100%;
    }
    .car-option .car-option-wrapper .detail .img {
        width: 100%;
    }
    .car-option .car-option-wrapper .detail .txt {
        width: 100%;
        text-align: center;
    }
}

/* footer CSS */
footer {
    width: 100%;
    padding: 20px 40px 40px;
    background: #000;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-weight: 400;
    font-size: 14px;
}
footer .wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
footer p {
    border-bottom: 1px solid transparent;
    cursor: pointer;
}
footer p:hover {
    border-bottom: 1px solid #fff;
}

span {
  display: inline-block;
  opacity: 0;
  filter: blur(4px);
}

span:nth-child(1) {
  animation: fade-in 0.8s 0.1s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

span:nth-child(2) {
  animation: fade-in 0.8s 0.2s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

span:nth-child(3) {
  animation: fade-in 0.8s 0.3s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

span:nth-child(4) {
  animation: fade-in 0.8s 0.4s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

span:nth-child(5) {
  animation: fade-in 0.8s 0.5s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

span:nth-child(6) {
  animation: fade-in 0.8s 0.6s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

span:nth-child(7) {
  animation: fade-in 0.8s 0.7s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

span:nth-child(8) {
  animation: fade-in 0.8s 0.8s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

span:nth-child(9) {
  animation: fade-in 0.8s 0.9s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

span:nth-child(10) {
  animation: fade-in 0.8s 1s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

span:nth-child(11) {
  animation: fade-in 0.8s 1.1s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

span:nth-child(12) {
  animation: fade-in 0.8s 1.2s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

span:nth-child(13) {
  animation: fade-in 0.8s 1.3s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

span:nth-child(14) {
  animation: fade-in 0.8s 1.4s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

span:nth-child(15) {
  animation: fade-in 0.8s 1.5s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

span:nth-child(16) {
  animation: fade-in 0.8s 1.6s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

span:nth-child(17) {
  animation: fade-in 0.8s 1.7s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

span:nth-child(18) {
  animation: fade-in 0.8s 1.8s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

@keyframes fade-in {
  100% {
    opacity: 1;
    filter: blur(0);
  }
}