* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    width: 100%;
}
body{
    overflow: visible;
    position: relative;
}
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.Montez {
    font-family: "Montez", cursive;
}

.blue-clr {
    color: #113D48;
}
/* header section started */
header{
    position: sticky;
    top: 0;
    z-index: 999;
    background-color: white;
    overflow: visible;
}
.hdr-part-1 a{
    color: white;
    font-size: 14px;
}
.hdr-part-1-info p{
    color: white;
    font-size: 14px;
}
.hdr-support p{
    color: white;
    font-size: 14px;
}
.nav ul li a{
    color: black;
    font-weight: 400;
    font-size: 17px;
}
.nav ul li a:hover{
    color: #ff0000;
}

.hdr-btn button a{
    color:#ffffff;
    font-size: 17px;
}

.hdr-btn button{
    background: transparent;
    background-color: rgb(0, 0, 0);
    border: none;
    font-size: 20px;
    padding: 15px 35px;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    z-index: 1;
}

.hdr-btn button::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 0;
    background: #ff0000;
    border-radius: 30px;
    z-index: 1;
    transition: width 0.5s ease-in-out;
    opacity: 1;
    /* Always rendered */
}

.hdr-btn button:hover::after {
    width: 100%;
}

.hdr-btn button:hover a {
    color: rgb(255, 255, 255);
    position: relative;
    z-index: 6;
    display: inline;

}
.hdr-3{
    display: none;
}

/* header section ended */

/* banner section started */
.banner{
    height: 400px;
    background-image: url("../img/Frame-41-scaled.jpg.bv.webp");
    background-size: cover;
}
.banner h1{
    width: 60%;
    font-size: 50px;
}
/* banner section ended */

/* cta section started */
.cta {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-evenly;
    margin: 100px auto;
    border-radius: 20px;
    box-shadow: 0px 0px 10px rgb(240, 240, 240);
    background-color: white;
    z-index: 1;
}

#Part1 {
    width: 75%;
    padding: 30px;
}

#data1 {
    font-family: Arial, Helvetica, sans-serif;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
}

span {
    color: red;
    font-size: 20px;
}


#data1 .space input {
    width: 100%;
    height: 40px;
    margin-top: 5px;
    padding: 10px;
    background-color: rgb(244, 244, 244);
    border: 1px solid rgb(188, 187, 187);
}

#data1 .space select {
    width: 100%;
    height: 40px;
    font-size: 18px;
    padding: 10px;
    font-family: Arial, Helvetica, sans-serif;
    margin-top: 5px;
    background-color: rgb(244, 244, 244);
    border: 1px solid rgb(188, 187, 187);
    color: gray;

}

#data1 button {
    width: 100%;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 500;
    border: none;
    border-radius: 30px;
    background-color: rgb(0, 0, 0);
    color: rgb(0, 0, 0);
    margin-top: 28px;
}

#data1 button:hover {
    background: #E40505;
}

#data1 button a {
    text-decoration: none;
    color: white;
}

#Part2 {
    width: 25%;
    padding: 30px;
    background: rgb(255, 0, 0);
    border-radius: 0px 20px 20px 0px;
    text-align: center;
}

#Part2 h3 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: white;
}

#Part2 h1 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 25px;
    font-weight: 700;
    color: white;
}

#Part2 p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: white;
}

#Part2 button {
    padding: 10px 25px;
    font-size: 20px;
    font-weight: 500;
    border: none;
    border-radius: 30px;
    background-color: rgb(240, 240, 240);
    color: rgb(0, 0, 0);
}

#Part2 button:hover {
    background-color: black;
}

#Part2 button a {
    text-decoration: none;
    color: black;
}

#Part2 button:hover a {
    color: white;
}

#Part2 button:hover i {
    color: white;
}


/* cta section ended */


/* footer section css started */
.ftr-social-media-icon a{
    background-color: rgb(239, 245, 254);
    color:#E40505;
    width: 35px;
    height: 35px;
    font-size: 18px;
}
.ftr-social-media-icon a:hover{
    color:  rgb(239, 245, 254);
    background-color:#E40505;
}
.ftr-company-intro >p{
    font-size: 17px;
}
.Quick-Links ul li a{
    font-size: 18px;
    color: rgb(142, 141, 141);
    font-weight: 400;
}
.Quick-Links ul li:hover a{
    color: red;
}
.get-in-touch i{
    font-size: 20px;
    background-color: #e4f3fc;
    color: #5dc2fd;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    width: 40px;
    height: 40px;
}
.get-in-touch a{
    font-size: 18px;
    color: rgb(142, 141, 141);
    font-weight: 400
}
.get-in-touch a:hover{
    color: #E40505;
}
.instagram-post iframe{
    height: 200px;
}
.copyright{
    font-size: 17px;
    font-weight: 600;
    background-color: #E40505;
    color: white;
}
/* footer section css ended */

@media screen and (max-width:767px) {
    .hdr-3{
        display: block !important;
        display: flex !important;
        justify-content: space-between !important;
        padding: 10px 10px !important;
        align-items: center !important;
    }
    .hdr-3 div img{
        width: 50% !important;
    }
    .hdr-part-2{
        display: none !important;
    }
    .hdr-part-1{
        display: none !important;
    }
    .banner{
        height: 300px;
        background-image: url("../img/Frame-41-scaled.jpg.bv.webp");
        background-size: cover;
    }
    .banner h1{
        width: 90%;
        font-size: 45px;
    }
    .cta {
        flex-direction: column;
        top: 0;
        margin: 40px auto;
    }
    .btn{
        margin: 0 auto;
    }

    .cta #Part1 {
        width: 100%;
    }

    #data1 button {
        width: 60%;
    }

    .chat-btn {
        text-align: center;
    }

    .cta #Part2 {
        width: 100%;
        border-radius: 0px 0px 20px 20px;
    }
    .tour-places{
        flex-direction: column;
    }
    .footer-part2 img{
        width: 100%;
    }
}
