@import url('https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@300&family=Poppins:wght@200;300;400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@300&family=Open+Sans&family=Poppins:wght@200;300;400&display=swap');

* {
    margin: 0;
    padding: 0;
}

::-webkit-scrollbar {
    display: none;
}

html,
body {
    height: 100%;
    max-width: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

:root {
    --nav-text-color: #FF914D;
    --nav-color: #00285D;
}

nav {
    display: flex;
    height: 4vw;
    width: 100vw;
    background-color: var(--nav-color);
    align-items: center;
    justify-content: space-between;
    color: white;
    justify-content: space-evenly;
    font-family: 'Lexend Deca', sans-serif;
    font-weight: bold;
    padding: 0 1vw;
}

.left {
    width: 20%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    cursor: pointer;
}

.left .logo {
    height: 2vw;
}

.left .logo img {
    height: 5.5vw;
}

.right {
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-right: 4vw;
}

.right .nav-number {
    margin-right: 2vw;
    font-size: 0.9vw;
}

nav ul {
    display: flex;
    align-items: center;
    cursor: pointer;
}

nav ul li {
    list-style: none;
    margin: 0 3vw;
    font-size: 0.9vw;
    position: relative;
}

nav ul li a::before {
    content: "";
    width: 0%;
    height: 0.15vw;
    
    background-color: var(--nav-text-color);
    position: absolute;
    left: 0;
    bottom: -15px;
    transition: all 0.5s;
}

nav ul li a:hover::before {
    width: 100%;
}

nav ul li a {
    text-decoration: none;
    color: var(--nav-text-color);
}

.nav-link {
    transition: 0.7s ease;
}

.hamburger {
    display: none;
    cursor: pointer;
    padding: 2vw;
}

.bar {
    display: block;
    width: 2.5vw;
    height: 0.3vw;
    margin: 0.4vw auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: var(--nav-text-color);
}

.home {
    height: 100vh;
    width: 100%;
    background: url(img/bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.home .trans-layer {
    
    height: 100%;
    background-color: rgba(48, 44, 44, 0.4);
    background-size: cover;
    background-position: center;
}

.home .trans-layer .hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5vw;
    color: white;
}

.home .trans-layer .hero .heading {
    margin-top: 25vh;
    font-size: 8vw;
    font-family: 'Lexend Deca', sans-serif;
}

.home .trans-layer .hero .para {
    font-family: 'Open Sans', sans-serif;
    font-size: 2vw;
    width: 50vw;
    text-align: center;
}

.designed-but {
    padding: 0.8vw 5vw;
    border-radius: 1.8vw;
    font-family: 'Lexend Deca', sans-serif;
    font-weight: bold;
    font-size: 1.2vw;
    background: linear-gradient(90deg, #ff3131, #FF914D);
    color: white;
    border: none;
    cursor: pointer;
}

.destination {
    
    width: 100vw;
    background-color: #f2f6f8;
    text-align: center;
    padding-bottom: 5vw;

}

.destination .container {
    margin-top: 3vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.destination .heading {
    padding-top: 4vw;
    font-family: 'Lexend Deca', sans-serif;
    font-size: 2.5vw;
}

.destination .dest-container {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 5vw;
    width: 80%;
}

.destination .card {
    width: 15vw;
    height: 15vw;
    overflow: hidden;
    position: relative;
    border-radius: 15px;
    box-shadow: #000 0px 3px 7px 0px;
}
.card:hover{
    box-shadow: #000 0px 11px 15px 0px;
}
.grayscale {
    height: 15vw;
    width: 15vw;
    background-color: black;
    opacity: 0.65;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.3s ease-in-out;
}
.card{
    cursor: pointer;
}

.card:hover .grayscale {
    opacity: 0;
}

.card img {
    height: 15vw;
    width: 15vw;
    object-fit: cover;
    transition: 0.3s ease-in-out;
}

.card:hover img {
    transform: scale(1.2);
}

.intro {
    position: absolute;
    bottom: 2%;
    left: 0;
    color: white;
    font-family: 'Open Sans', sans-serif;
    text-align: justify;
    font-size: 0.75vw;
    padding: 0.4vw 0.65vw;
    background-color: #2e2e2e;
    transform: translateY(110%);
    transition: 0.5s ease-out;
}

.card:hover .intro {
    visibility: visible;
    transform: translateY(0);
}

.sub-heading {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 2vw;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 150;
}

.itenary {
    height: 78vh;
    width: 100vw;
    background-color: #bbd3d3;
    display: flex;
    gap: 5vw;
    flex-direction: column;
}

.itenary .top,
.mid,
.bot {
    width: 50%;
    margin: 0vw 5vw;
}

.itenary .top {
    height: 10vw;
    margin-top: 4vw;
    padding: 0 2vw;
    padding-top: 3vw;
    margin-bottom: 2.3vw;
}

.itenary .top h1 {
    width: 65%;
    font-size: 3vw;
    font-family: 'Lexend Deca', sans-serif;
}

.itenary .top p {
    margin-top: 1vw;
    width: 65%;
    font-size: 1.1vw;
    font-family: 'Open Sans', sans-serif;
}

.itenary .mid {
    padding: 0 2vw;
    font-size: 1vw;
}

.itenary .mid ul {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 2vw;
    font-family: 'Lexend Deca', sans-serif;
}

.itenary .bot {
    padding: 0 3vw;
    
}

.itenary button {
    padding: 0.8vw 5vw;
    border-radius: 1.8vw;
    font-family: 'Lexend Deca', sans-serif;
    font-weight: bold;
    font-size: 1.2vw;
    background: linear-gradient(90deg, #ff3131, #FF914D);
    color: white;
    border: none;
    cursor: pointer;
}

.whatmore {
    background-color: #f2f6f8;
    height: 65vh;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
    padding-bottom: 2vw;
}

.whatmore h1 {
    font-size: 3vw;
    font-family: 'Lexend Deca', sans-serif;
}

.whatmore .cards-container {
    display: flex;
    align-items: center;
    
    gap: 5vw;
}

.whatmore .cards-container .card {
    width: 15vw;
    height: 15vw;
    overflow: hidden;
    position: relative;
    box-shadow: #000 0px 11px 15px 0px;
}

.whatmore .cards-container .card:hover .sub-heading {
    visibility: hidden;
    transform: scale(5);
}

.itenary_two {
    height: 78vh;
    width: 100vw;
    background-color: #c8deee;
    display: flex;
    gap: 5vw;
    flex-direction: column;
}

.itenary_two .top,
.mid,
.bot {
    width: 50%;
    margin: 0vw 5vw;
}

.itenary_two .top {
    height: 10vw;
    margin-top: 4vw;
    padding: 0 2vw;
    padding-top: 3vw;
    margin-bottom: 2.3vw;
}

.itenary_two .top h1 {
    width: 65%;
    font-size: 3vw;
    font-family: 'Lexend Deca', sans-serif;
}

.itenary_two .mid {
    padding: 0 2vw;
    font-size: 1vw;
}

.itenary_two .mid ul {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 2vw;
    font-family: 'Lexend Deca', sans-serif;
}

.itenary_two .bot {
    padding: 0 3vw;
    
}

.itenary_two button {
    padding: 0.8vw 5vw;
    border-radius: 1.8vw;
    font-family: 'Lexend Deca', sans-serif;
    font-weight: bold;
    font-size: 1.2vw;
    background: linear-gradient(90deg, #ff3131, #FF914D);
    color: white;
    border: none;
    cursor: pointer;
}

.packages {
    height: 70vh;
    background-color: white;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 3vw 0;
}

.packages h1 {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 3vw;
    transition: 0.1s ease-out;
}

.packages .package-cont {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
    width: 70%;
    
    height: 100%;
}

.packages .package {
    margin: 1.5vw 0;
    background-color: red;
    width: 15vw;
    height: 20vw;
    position: relative;
    overflow: hidden;
}

.package img {
    width: 15vw;
    height: 20vw;
    object-fit: cover;
    transition: 0.3s ease-in-out;
}

.package:hover h1 {
    visibility: hidden;
}

.pack-grayscale {
    width: 15vw;
    height: 20vw;
    background-color: black;
    opacity: 0.65;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.3s ease-in-out;
}

.package:hover .pack-grayscale {
    opacity: 0;
}

.sub-head h2 {
    font-family: 'Lexend Deca', sans-serif;
    color: white;
    position: absolute;
    top: 100%;
    left: 0;
    text-align: center;
    width: 90%;
    font-size: 1.1vw;
    background-color: #004aad;
    
    transition: 0.3s ease-in-out;
    margin-bottom: 2vw;
}

.package:hover .sub-head h2 {
    transform: translate(-50%, -50%);
    top: 60%;
    left: 50%;
    padding-top: 0.5vw;
    padding-bottom: 0.5vw;
    padding-left: 1vw;
    padding-right: 1vw;
}

.card:hover .pack-grayscale {
    opacity: 0;
}

.package ul {
    font-family: 'Lexend Deca', sans-serif;
    color: white;
    position: absolute;
    padding-left: 3vw;
    bottom: 100%;
    left: 50%;
    width: 100%;
    font-size: 0.8vw;
    background-color: #004aad;
    transition: 0.3s ease-in-out;
}

.package:hover ul {
    transform: translate(-50%, -50%);
    bottom: -5%;
    left: 50%;
    padding-top: 0.5vw;
    padding-bottom: 0.5vw;
}

.blogs {
    padding: 5vw 0;
    height: 80vh;
    width: 100vw;
    
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: #f2f6f8;
}

.blogs h1 {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 3vw;
    transition: 0.1s ease-out;
}

.blogs .blog-cont {
    display: flex;
    align-items: center;
    max-width: 85%;
}

.blogs .blog-cont .blog {
    width: 15vw;
    height: 22vw;
    overflow: hidden;
    margin: 5vw 2vw;
    
    box-shadow: black 0px 11px 15px 0px;
    position: relative;
    text-align: center;
}

.blog-grayscale {
    width: 15vw;
    height: 22vw;
    background-color: black;
    opacity: 0.65;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.3s ease-in-out;
}

.blog:hover .blog-grayscale {
    opacity: 0;
}

.quote {
    background-color: #ffffff;
    height: 40vw;
    width: 100vw;
    display: flex;
    padding: 2vw 2vw;
}

.quote .head {
    
    height: 40vw;
    width: 50%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.quote .head h1 {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 3.5vw;
    transition: 0.1s ease-out;
    width: 70%;
}

.quote .head p {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 1.5vw;
    transition: 0.1s ease-out;
    width: 70%;
}

.quote .bef-form .form {
    background-color: #0165B2;
    height: 36vw;
    width: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 1vw 0;
    border-radius: 1vw;
}

.quote .bef-form {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 2vw;
}

.quote .bef-form .form form {
    
    font-family: 'Lexend Deca', sans-serif;
    width: 80%;
}

.quote .bef-form .form label {
    display: block;
    font-size: 2vw;
    font-weight: 400;
    color: white;
    margin: 0.8vw 0;

}

.quote .bef-form .form input {
    width: 90%;
    border-radius: 3px;
    height: 2vw;
    border: none;
    padding: 0.3vw 0.5vw;
    font-size: 1.2vw;
    font-family: 'Open Sans', sans-serif;
    text-transform: capitalize;
    font-weight: 100;
}

button {
    
    padding: 0.8vw 5vw;
    border-radius: 1.8vw;
    font-family: 'Lexend Deca', sans-serif;
    font-weight: bold;
    font-size: 1.2vw;
    background: linear-gradient(90deg, #ff3131, #FF914D);
    color: white;
    border: none;
    cursor: pointer;
}

.review {
    height: 38vw;
    width: 100vw;
    background-color: #C8DEEE;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 2vw 0;
    gap: 3vw;

}

.review .slide {
    background-color: white;
    text-align: center;
    border: .3rem solid black;
    border-radius: .5rem;
    display: inline-block;
    position: relative;
}

.image {
    position: absolute;
    bottom: 0;
    left: 10%;
    margin: 1vw 0;
}

.image img {
    width: 5vw;
    height: 5vw;
    
    border-radius: 50%;
    background-position: center;
    object-fit: cover;
    object-position: center;
}

.image h2 {
    position: absolute;
    left: 120%;
    bottom: 18%;
    font-family: 'Lexend Deca', sans-serif;
    font-size: 1.5vw;
}

#overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}
.fa-circle-xmark{
    position: absolute;
    top: 2%;
    font-size: 2rem;
    right: 2%;
    cursor: pointer;
}
#popup {
    
    position: absolute;
    height: 43rem;
    width: 55rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ccd9df;
    padding: 5px;
    border-radius: 8px;
    display: flex;
    
}

#popup .left {
    width: 50%;
    height: 100%;
    display: block;
}

#popup .left .process {
    height: 70%;
    width: 100%;
    display: flex;
    flex-direction: column;
}

#popup .left .process .steps {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-evenly;
    height: 100%;
    width: 100%;
    background-color: #ccd9df;
}

.step-1,
.step-2,
.step-3 {
    
    width: 100%;
    height: 30%;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-inner {
    height: 80%;
    
    width: 50%;
    display: flex;
    align-items: center;
}

.step-class {
    
    height: 100%;
    width: 60%;
    display: flex;
    align-items: center;
    flex-direction: column;
    
    gap: 10px;
    padding-top: 7px;
}

.step-class-inner {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.fa-chevron-right {
    font-size: 2.2rem;
    
}

.step-class i {
    font-size: 2rem;
}

.head-top {
    
    padding-left: 110px;
    color: black;
    font-family: 'Lexend Deca', sans-serif;
    font-size: 1.2rem;
}

#popup .left .cont-info {
    

    height: 30%;
    width: 100%;
}

#popup .left .cont-info .dotted {
    border: 2px dashed var(--nav-color);
    margin: 0 20px;
}

#popup .left .cont-info .left-bot {
    display: flex;
    height: 100%;
    width: 100%;
    
    align-items: center;
    flex-direction: column;
    font-family: 'Lexend Deca', sans-serif;
    color: black;
    padding: 2px;
    gap: 1.5rem;
}

.fa-square-phone,
.fa-envelope {
    font-size: 25px;
    color: orange;
}

#popup .left .cont-info .left-bot .contact-info {
    
    width: 100%;
    display: flex;
    gap: 1.2rem;
    align-items: center;
    justify-content: center;
}

#popup .middle {
    margin: 2.5rem 0;
    border: 2px solid var(--nav-color);
}

#popup .right {
    
    width: 50%;
    height: 100%;
    
    margin: 0 0;
    display: flex;
    flex-direction: column;
}

#popup .right .right-top {
    
    height: 30%;
    width: 100%;
    display: flex;
    align-items: center;
    
    flex-direction: column;
    
    gap: 2rem;
}
#popup .right .right-top img{
    object-fit: cover;
    width: 40%;
    height: 40%;
}
#popup .right .right-top .right-top-inner{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-family: 'Lexend Deca', sans-serif;
    
    width: 100%;
    font-size: 1.2rem;
}
#popup .right .right-top .right-top-inner p{
    font-size: 15px;
}
#popup .right .right-middle {
    
    
    
    height: 60%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
    padding: 1.5rem;
}
#popup .right .right-middle form{
    padding: 0 5px;
    padding: 0 5px;
    font-family: 'Lexend Deca', sans-serif;
}
#popup .right .right-middle form .box{
    width: 90%;
    border-radius: 5px;
    border: none;
    margin-top: 10px;
}

#popup .right #popup h2 {
    margin-top: 0;
}

#popup input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    margin-top: 20px;
}

footer {
    background: url(img/footer4.jpg);
    width: 100%;
    height: 45vw;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

footer .foot-grayscale {
    width: 100%;
    height: 45vw;
    background-color: black;
    opacity: 0.45;
    position: absolute;
    left: 0;
    right: 0;
}

footer .foot-top {
    display: flex;
    gap: 2vw;
    align-items: center;
    justify-content: center;
}

footer .foot-top .sub-top {
    display: flex;
    gap: 2vw;
    width: 80%;
    border-bottom: 2px solid white;
    position: relative;
}

footer .foot-top .sub-top .choose {
    
    width: 50%;
    height: 15vw;
    position: relative;
    margin: 3vw 2vw;
    display: flex;
    align-items: center;
    

}

footer .foot-top .sub-top .choose h1 {
    
    font-family: 'Lexend Deca', sans-serif;
    font-size: 3vw;
    width: 70%;
    color: white;
}

footer .foot-top .sub-top .pres {
    background-color: white;
    width: 50%;
    height: 15vw;
    position: relative;
    margin: 3vw 2vw;
    border-radius: 1vw;
    box-shadow: black 0px 11px 15px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer .foot-top .sub-top .pres p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.5vw;
    width: 70%;
    font-weight: bold;
}

footer .foot-bot {
    display: flex;
    align-items: center;
    justify-content: center;
    
    margin: 4vw 0;
}

footer .foot-bot .sub-bot {
    
    width: 80%;
    height: 20vw;
    display: flex;
    gap: 1vw;
    position: relative;
}

footer .foot-bot .logo-bot {
    
    width: 25%;
    height: 15vw;
    position: relative;
}

footer .foot-bot .logo-bot img {
    width: 10vw;
    height: 6vw;
    position: absolute;
    left: 15%;
    top: 15%;
}

footer .foot-bot .logo-bot h2 {
    position: absolute;
    left: 15%;
    top: 60%;
    font-size: 1vw;
    font-family: 'Open Sans', sans-serif;
    color: white;
    font-weight: 100;
}

footer .foot-bot .pages,
.handles,
.location {
    
    width: 25%;
    height: 18vw;
    display: flex;
    
    
    gap: 2vw;
    flex-direction: column;
    font-family: 'Open Sans', sans-serif;
    color: white;
    font-weight: 100;
}

footer .foot-bot .pages ol {
    list-style: none;
}

footer .foot-bot .pages ol li {
    padding-bottom: 1vw;
}

footer .foot-bot .handles {
    
    width: 25%;
    height: 18vw;
}

footer .foot-bot .handles ol {
    list-style: none;
}

footer .foot-bot .handles ol li {
    padding-bottom: 1vw;
}

footer .foot-bot .location {
    
    width: 25%;
    height: 18vw;
}
.special-touch{
    background-color: white;
    height: 100%;
    width: 100%;
}
.timeline-dif{
    background-color: #BBD3D3;
    height: 70vh;
    width: 100%;
}

@media(max-width: 790px) {
    nav {
        display: flex;
        height: 6vw;
        width: 100vw;
        background-color: var(--nav-color);
        align-items: center;
        justify-content: space-between;
        color: white;
        justify-content: space-evenly;
        font-family: 'Lexend Deca', sans-serif;
        font-weight: bold;
    }

    .nav-number {
        font-size: 1vw;
    }

    nav ul li {
        list-style: none;
        margin: 0 3vw;
        font-size: 1vw;
    }

    .left .logo {
        height: 2vw;
    }

    .left .logo img {
        height: 7vw;
    }
}

@media(max-width: 720px) {
    .right {
        display: flex;
        align-items: center;
        gap: 4vw;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70vw;
        flex-direction: column;
        background-color: var(--nav-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
    }
}