@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'Rubik', sans-serif;
    scroll-behavior: smooth;
}
body {
    overflow-x: hidden;
}
main{
    overflow-x: hidden;
}
a {
    text-decoration: none;
}
figure {
    margin: 0;
    padding: 0;
}
.btn:focus {
    outline: none;
}
ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}
h1,h2,h3,h4,h5,h6,p{
    margin: 0;
    padding: 0;
}
a,button{
    display: inline-block;
}
button:focus {
    outline: none;
    box-shadow: none;
}
.btn:focus {
    outline: none;
    box-shadow: none;
}
.form-control:focus {
    outline: none;
    box-shadow: none;
}
/************************** Header css **************************/
.header-main{
    background-color: #182e49;
    padding: 26px 0;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
    position: relative;
}
.header-main .navbar-toggler{
    color: rgba(0, 0, 0, 0.55);
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: none !important;
}
.header-main .navbar-toggler-icon{
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.header-main .navbar-nav{
    padding-right: 80px;
}
.header-main .custom-nav-item{
    padding: 0 10px;
}
.header-main .custom-nav-item .custom-nav-link{
    color: #fff;
    text-transform: uppercase;
}
.header-main .icon-nav-item .icon-nav-link{
    color: #fff;
    padding: 0 10px;
}
/************************** Header css end **************************/
.home-banner-main{
    position: relative;
    /* min-height: 73vh; */
    min-height: 620px;
    padding: 20px 0;
    display: flex;
    align-items: center;
    background-image: url(../images/bg-crystals-banner.png);
    background-size: cover;
}
.home-banner-main::before{
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    background-image: url(../images/home-banner-bg.png);
    background-repeat: no-repeat;
    width: 70%;
    background-size: contain;
    background-position: top right;
}
.home-banner-main::after{
    content: '';
    position: absolute;
    top: -40px;
    left: 0px;
    background-image: url(../images/after-banner.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 150px;
    height: 150px;
}
.home-banner-main .banner-text{
    width: 45%;
    padding-bottom: 80px;
}
.home-banner-main .banner-text h6{
    text-transform: uppercase;
    font-size: 16px;
    line-height: 20px;
    color: #182e49;
    margin-bottom: 10px;
}
.home-banner-main .banner-text h3{
    font-weight: 500;
    font-size: 45px;
    text-transform: uppercase;
}
.home-banner-main .banner-text h3 span{
    color: #182e49;
}
.home-banner-main .banner-text .seperator-line{
    width: 300px;
    max-width: 100%;
    margin: 20px 0;
}
.home-banner-main .banner-text p{
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 400;
}
.home-banner-main .banner-text .book-now{
    display: flex;
    width: fit-content;
    align-items: center;
    justify-content: center;
    background: linear-gradient(41deg, rgba(24,46,73,1) 0%, rgba(39,71,108,1) 100%);
    color: #fff;
    padding: 8px;
    padding-left: 38px;
    border-radius: 30px;
    text-transform: uppercase;
    margin-top: 40px;
    transition: 0.5s;
}
.home-banner-main .banner-text .book-now span{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background-color: #fff;
    color: #000;
    margin-left: 20px;
    border-radius: 50%;
    transition: 0.5s;
}
.home-banner-main .banner-text .book-now:hover{
    transform: translateY(-10px);
}
.home-banner-main .booking-form-banner{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translateY(50%);
    z-index: 11;
}
.home-banner-main .booking-form-banner ul{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
.home-banner-main .booking-form-banner li{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25%;
    padding: 35px 30px;
}
.home-banner-main .booking-form-banner li:nth-child(1)::before{
    content: '\f3c5';
}
.home-banner-main .booking-form-banner li:nth-child(2)::before,
.home-banner-main .booking-form-banner li:nth-child(3)::before{
    content: '\f133';
}
.home-banner-main .booking-form-banner li::before{
    font-family: "Font Awesome 6 Pro";
    font-weight: 700;
    color: #555555;
}
.home-banner-main .booking-form-banner li::after{
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 2px;
    height: 55px;
    background-color: #ccc;
}
.home-banner-main .booking-form-banner li select{
    width: 90%;
    margin-left: 15px;
    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    color: #333333;
    font-weight: 500;
}
.home-banner-main .booking-form-banner li .book-now{
    display: flex;
    width: fit-content;
    align-items: center;
    justify-content: center;
    background: linear-gradient(41deg, rgba(24,46,73,1) 0%, rgba(39,71,108,1) 100%);
    color: #fff;
    padding: 8px;
    padding-left: 38px;
    border-radius: 30px;
    text-transform: uppercase;
    transition: 0.5s;
}
.home-banner-main .booking-form-banner li .book-now span{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: #fff;
    color: #000;
    margin-left: 20px;
    border-radius: 50%;
    transition: 0.5s;
}
.home-banner-main .booking-form-banner li .book-now:hover{
    transform: translateX(5px);
}
.how-it-works-sec{
    position: relative;
    padding-top: 140px;
}
.how-it-works-sec::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(../images/how-it-works-bg.png);
    z-index: -1;
}
.how-it-works-sec .sec-title{
    text-align: center;
}
.how-it-works-sec .sec-title h3{
    font-size: 45px;
    font-weight: 500;
    text-transform: uppercase;
}
.how-it-works-sec .sec-title h3 span{
    color: #182e49;
}
.how-it-works-sec .card-works{
    border-radius: 30px 0;
    border: 2px solid #787878;
    padding: 25px 25px 45px 30px;
    background-color: #fff;
}
.how-it-works-sec .card-works:hover{
    background: linear-gradient(41deg, rgba(24,46,73,1) 0%, rgba(39,71,108,1) 100%);
    border-color: transparent;
    color: #fff;
}
.how-it-works-sec .card-works:hover .card-title img{
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(213deg) brightness(111%) contrast(101%);
}
.how-it-works-sec .card-work-listing{
    padding-top: 45px;
}
.how-it-works-sec .card-works .card-works-head{
    display: flex;
    align-content: center;
    justify-content: flex-start;
}
.how-it-works-sec .card-works .card-works-head .card-title{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 20px;
    width: calc(100% - 90px);
}
.how-it-works-sec .card-works .card-works-head .icon{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90px;
    width: 90px;
    border-radius: 50%;
    background: linear-gradient(41deg, rgba(24,46,73,1) 0%, rgba(39,71,108,1) 100%);
}
.how-it-works-sec .card-works:hover .card-works-head .icon{
    background-image: none;
    background-color: #fff;
}
.how-it-works-sec .card-works .card-works-head .icon img{
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(213deg) brightness(111%) contrast(101%);
}
.how-it-works-sec .card-works:hover .card-works-head .icon img{
    filter: brightness(0) saturate(100%) invert(21%) sepia(54%) saturate(641%) hue-rotate(171deg) brightness(91%) contrast(89%);
}
.how-it-works-sec .card-works .card-works-head .card-title h4{
    text-transform: capitalize;
    margin-bottom: 10px;
    font-size: 25px;
    font-weight: 500;
}
.how-it-works-sec .card-works .card-content{
    padding: 40px 0;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
}
.how-it-works-sec .card-works .card-bottom .learn-more{
    display: flex;
    width: fit-content;
    align-items: center;
    justify-content: center;
    background: linear-gradient(41deg, rgba(24,46,73,1) 0%, rgba(39,71,108,1) 100%);
    color: #fff;
    padding: 8px;
    font-size: 14px;
    padding-left: 38px;
    border-radius: 30px;
    text-transform: capitalize;
    font-weight: 500;
    margin: 0 auto;
    transition: 0.5s;
}
.how-it-works-sec .card-works .card-bottom .learn-more span{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: #fff;
    color: #000;
    margin-left: 20px;
    border-radius: 50%;
    transition: 0.5s;
}
.how-it-works-sec .card-works .card-bottom .learn-more:hover{
    transform: translateX(5px);
}
.how-it-works-sec .card-works:hover .learn-more{
    background-image: none;
    background-color: #fff;
    color: #182e49;
}
.how-it-works-sec .card-works:hover .card-bottom .learn-more span{
    background-color: #182e49;
    color: #fff;
}
.how-it-works-sec .about-us-sec .about-us-content h6{
    font-size: 18px;
    text-transform: uppercase;
    color: #182e49;
    margin-bottom: 15px;
}
.how-it-works-sec .about-us-sec .about-us-content h3{
    font-size: 45px;
    font-weight: 500;
    text-transform: uppercase;
}
.how-it-works-sec .about-us-sec .about-us-content img{
    margin: 20px 0 30px;
}
.how-it-works-sec .about-us-sec{
    margin-top: 90px;
}
.how-it-works-sec .about-us-sec .about-us-content h3 span{
    color: #182e49;
}
.how-it-works-sec .about-us-sec .about-us-content p{
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    width: 85%;
}
.how-it-works-sec .about-us-sec .about-us-content .learn-more{
    display: flex;
    width: fit-content;
    align-items: center;
    justify-content: center;
    background: linear-gradient(41deg, rgba(24,46,73,1) 0%, rgba(39,71,108,1) 100%);
    color: #fff;
    padding: 8px;
    font-size: 14px;
    padding-left: 38px;
    border-radius: 30px;
    text-transform: capitalize;
    font-weight: 500;
    margin-top: 30px;
    transition: 0.5s;
}
.how-it-works-sec .about-us-sec .about-us-content .learn-more span{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: #fff;
    color: #000;
    margin-left: 20px;
    border-radius: 50%;
    transition: 0.5s;
}
.how-it-works-sec .about-us-sec .about-us-content .learn-more:hover{
    transform: translateX(5px);
}
.top-deal-sec{
    padding: 130px 0 0;
}
.top-deal-sec .sec-title{
    text-align: center;
}
.top-deal-sec .sec-title h6{
    font-size: 18px;
    text-transform: uppercase;
    color: #182e49;
    margin-bottom: 15px;
}
.top-deal-sec .sec-title h3{
    font-size: 45px;
    font-weight: 500;
    text-transform: uppercase;
}
.top-deal-sec .sec-title h3 span{
    color: #182e49;
}
.top-deal-sec .card-top-deal{
    border: 3px solid #cccccc;
    transition: 0.5s;
}
.top-deal-sec .card-top-deal:hover{
    border: 3px solid #19304b;
}
.top-deal-sec .card-wrapper:nth-child(odd) .card-top-deal{
    border-radius: 30px 0;
}
.top-deal-sec .card-wrapper:nth-child(even) .card-top-deal{
    border-radius: 0 30px;
}
.top-deal-sec .card-top-deal .top-deal-img{
    padding: 30px 30px 0;
    width: 100%;
    height: 255px;
}
.top-deal-sec .card-top-deal .top-deal-img img{
    border: 2px solid #cccccc;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
}
.top-deal-sec .card-top-deal:hover .top-deal-img img{
    border-color: #84919f;
}
.top-deal-sec .card-wrapper:nth-child(odd) .top-deal-img img{
    border-radius: 30px 0 0 0;
}
.top-deal-sec .card-wrapper:nth-child(even) .top-deal-img img{
    border-radius: 0 30px 0 0;
}
.top-deal-sec .card-top-deal .card-content{
    padding: 20px 30px 5px;
}
.top-deal-sec .card-top-deal .card-content .product-title{
    text-transform: capitalize;
    margin-bottom: 15px;
}
.top-deal-sec .card-top-deal .card-content .pricing{
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 20px;
}
.top-deal-sec .card-top-deal .card-content .pricing span:nth-child(1){
    color: #182e49;
}
.top-deal-sec .card-top-deal .card-content .pricing span:nth-child(2){
    color: #8d8d8d;
}
.top-deal-sec .card-top-deal .card-content .pricing span::after{
    content: attr(data-price-plan);
    font-size: 12px;
    text-transform: capitalize;
}
.top-deal-sec .card-top-deal hr{
    height: 3px;
    background-color: #b0b3b6;
}
.top-deal-sec .card-top-deal .card-bottom{
    padding-bottom: 15px;
}
.top-deal-sec .card-top-deal .card-bottom ul{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}
.top-deal-sec .card-top-deal .card-bottom ul li{
    width: 33.33%;
    text-align: center;
}
.top-deal-sec .card-top-deal .card-bottom ul li .text{
    font-size: 18px;
    font-weight: 400;
}
.top-deal-sec .card-top-deal .card-bottom ul li img{
    max-height: 30px;
}
.top-deal-sec .card-top-deal .card-bottom a{
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 275px;
    height: 40px;
    background-color: #7f7f7f;
    margin: 0 auto;
    color: #fff;
    border-radius: 30px;
    text-transform: capitalize;
}
.top-deal-sec .card-top-deal:hover .card-bottom a{
    background-color: transparent;
    background: linear-gradient(41deg, rgba(24,46,73,1) 0%, rgba(39,71,108,1) 100%);
}
.best-customer-sec{
    position: relative;
    padding: 190px 0 250px;
}
.best-customer-sec::before{
    content: '';
    position: absolute;
    right: 0;
    height: calc(100% + 300px);
    bottom: 0;
    left: 0;
    background-image: url(../images/best-experience.png);
    background-size: contain;
    background-position: top right;
    background-repeat: no-repeat;
    z-index: -1;
}
.best-customer-sec h3{
    font-weight: 500;
    font-size: 45px;
    text-transform: uppercase;
    margin-bottom: 30px;
}
.best-customer-sec h3 span{
    color: #182e49;
}
.best-customer-sec p{
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 400;
    width: 80%;
}
.best-customer-sec img{
    margin-bottom: 45px;
}
.best-customer-sec .contact-us{
    display: flex;
    width: fit-content;
    align-items: center;
    justify-content: center;
    background: linear-gradient(41deg, rgba(24,46,73,1) 0%, rgba(39,71,108,1) 100%);
    color: #fff;
    padding: 8px;
    font-size: 14px;
    padding-left: 38px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
    margin-top: 30px;
    transition: 0.5s;
}
.best-customer-sec .contact-us span{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: #fff;
    color: #000;
    margin-left: 20px;
    border-radius: 50%;
    transition: 0.5s;
}
.best-customer-sec .contact-us:hover{
    transform: translateX(5px);
}
.testimonial-sec{
    position: relative;
    padding: 140px 0 130px;
}
.testimonial-sec::before{
    content: '';
    position: absolute;
    right: 0;
    top: 65px;
    background-image: url(../images/testimonial-shape-1.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
    height: 200px;
    width: 65px;
}
.testimonial-sec::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 70px;
    background-image: url(../images/testimonial-shape-2.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left;
    height: 320px;
    width: 100px;
}
.testimonial-sec .sec-title h3{
    font-weight: 500;
    font-size: 45px;
    text-transform: uppercase;
    margin-bottom: 50px;
    text-align: center;
}
.testimonial-sec .sec-title h3 span{
    color: #182e49;
}
.testimonial-sec .testimonial-slider .item{
    padding: 50px 50px 0;
    text-align: center;
}
.testimonial-sec .testimonial-slider .testimonial-item .testimonial-text{
    position: relative;
    background-color: #b9c0c8;
    padding: 75px 110px 65px;
    border-radius: 15px;
    font-size: 22px;
    font-weight: 400;
}
.testimonial-sec .testimonial-slider .testimonial-item .testimonial-text p{
    font-family: 'Outfit', sans-serif;
}
.testimonial-sec .testimonial-slider .testimonial-item .testimonial-text .quote{
    position: absolute;
    top: 0;
    object-fit: contain;
    left: 50%;
    transform: translate(-50%,-60%);
    height: 40px;
    width: 50px;
}
.testimonial-sec .testimonial-slider .testimonial-item .testimonial-img{
    padding: 25px 0;
}
.testimonial-sec .testimonial-slider .testimonial-item .testimonial-img img{
    height: 80px;
    width: 80px;
    margin: 0 auto;
    border-radius: 50%;
    margin-bottom: 15px;
}
.testimonial-sec .testimonial-slider .testimonial-item .testimonial-img .person-name{
    font-weight: 500;
    font-size: 25px;
    text-transform: capitalize;
}
.testimonial-sec .testimonial-slider .owl-prev{
    position: absolute;
    left: 15px;
    top: 145px;
    border: 2px solid #000 !important;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.testimonial-sec .testimonial-slider .owl-next{
    position: absolute;
    right: 15px;
    top: 145px;
    border: 2px solid #000 !important;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.testimonial-sec .testimonial-slider .owl-prev:hover,
.testimonial-sec .testimonial-slider .owl-next:hover{
    background-color: transparent;
    border-color: transparent !important;
    background: linear-gradient(41deg, rgba(24,46,73,1) 0%, rgba(39,71,108,1) 100%);
}
footer{
    overflow: hidden;
}
.footer-main{
    padding: 90px 0;
    background: linear-gradient(0deg, rgba(24,46,73,1) 0%, rgba(39,71,108,1) 100%);
    color: #fff;
}
.footer-main h4{
    font-size: 24px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 30px;
}
.footer-main h5{
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 30px;
}
.footer-main p{
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 30px;
}
.footer-main .social-links{
    display: flex;
    align-items: center;
    justify-content: flex-start;    
}
.footer-main .social-links li{
    padding-right: 25px;
}
.footer-main .social-links li a{
    color: #fff;
}
.footer-main .footer-contact-links li{
    position: relative;
    font-family: 'Outfit', sans-serif;
    padding-left: 25px;
    padding-bottom: 25px;
}
.footer-main .footer-contact-links li a{
    color: #fff;
}
.footer-main .footer-contact-links li:nth-child(1)::before{
    content: '\f3c5';
}
.footer-main .footer-contact-links li:nth-child(2)::before{
    content: '\f0e0';
}
.footer-main .footer-contact-links li:nth-child(3)::before{
    content: '\f095';
}
.footer-main .footer-contact-links li::before{
    font-weight: 700;
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    top: 0;
    left: 0;
}
.footer-main .quick-links a{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 20px;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    text-transform: capitalize;
}
.footer-main .quick-links a::before{
    content: '\f324';
    font-family: "Font Awesome 6 Pro";
    font-size: 10px;
    padding-right: 5px;
}
.footer-main .newsletter-form{
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 10px;
    padding: 18px 20px;
}
.footer-main .newsletter-form input{
    background-color: transparent;
    border: none;
    outline: none;
    font-size: 12px;
    width: 80%;
}
.footer-main .newsletter-form button{
    border: none;
    outline: none;
    background-color: transparent;
    width: 20%;
    text-align: right;
    color: #1d3654;
}
.copyright-footer{
    background: linear-gradient(0deg, rgba(24,46,73,1) 0%, rgba(39,71,108,1) 100%);
    color: #fff;
    text-align: center;
    padding: 30px 0;
}
/* 
    font-family: 'Outfit', sans-serif;
    font-family: 'Rubik', sans-serif;
*/
/************************** media-query **************************/
@media only screen and (min-width: 1921px) and (max-width: 7368px) {}
@media only screen and (min-width: 1600px) and (max-width: 1920px) {}
@media only screen and (min-width: 1445px) and (max-width: 1599px) {}
@media only screen and (min-width: 1366px) and (max-width: 1444px) {}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .best-customer-sec::before{
        height: calc(100% + 150px);
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .header-main .custom-nav-item .custom-nav-link{
        font-size: 14px;
    }
    .home-banner-main .booking-form-banner li .book-now{
        padding-left: 20px;
        font-size: 14px;
    }
    .best-customer-sec{
        padding: 50px 0 300px;
    }
    .best-customer-sec::before{
        left: 100px;
        background-position: bottom right;
    }
    .top-deal-sec{
        padding: 50px 0 0;
    }
    .top-deal-sec .sec-title{
        margin-bottom: 30px;
    }
    .how-it-works-sec::before{
        background-position: bottom left;
    }
    .how-it-works-sec{
        padding-top: 100px;
        padding-bottom: 30px;
    }
    .home-banner-main .booking-form-banner li{
        padding: 25px 20px;
    }
    .home-banner-main{
        display: block;
    }
    .home-banner-main .banner-text .book-now{
        margin-top: 25px;
    }
    .home-banner-main{
        min-height: 550px;
    }
    .how-it-works-sec .about-us-sec{
        margin-top: 40px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    
    
    .header-main .custom-nav-item{
        padding: 8px 10px;
    }
    .header-main .navbar-nav{
        padding: 20px 0 6px;
    }
    .header-main .custom-nav-item .custom-nav-link{
        text-align: center;
        padding: 6px 0;
        font-size: 14px;
    }
    .nav-link-icons{
        justify-content: center;
    }
    .header-main{
        padding: 10px 0;
    }
    .navbar-brand{
        width: 120px;
    }
    .home-banner-main{
        min-height: unset;
        display: block;
    }
    .home-banner-main .banner-text{
        width: 100%;
        padding-bottom: 30px;
    }
    .home-banner-main .banner-text .book-now {
        padding: 5px;
        padding-left: 20px;
        font-size: 14px;
        margin-top: 15px;
    }
    .home-banner-main .banner-text .book-now span{
        height: 35px;
        width: 35px;
    }
    .home-banner-main .booking-form-banner li{
        padding: 15px 20px;
    }
    .home-banner-main .booking-form-banner li::after{
        display: none;
    }
    .home-banner-main .booking-form-banner li .book-now{
        padding: 5px;
        padding-left: 30px;
        font-size: 14px;
        margin-top: 0;
        margin: 0;
    }
    .home-banner-main .booking-form-banner li .book-now span{
        height: 35px;
        width: 35px;
    }
    .home-banner-main .banner-text h3{
        font-size: 40px;
    }
    .home-banner-main .banner-text .seperator-line{
        margin: 12px 0;
    }
    .home-banner-main::before {
        display: none;
    }
    .home-banner-main .booking-form-banner li{
        width: 50%;
    }
    .home-banner-main .booking-form-banner li:nth-last-child(1){
        border: none;
        display: block;
    }
    .home-banner-main .booking-form-banner{
        position: relative;
        transform: translateY(0);
    }
    .how-it-works-sec{
        padding-top: 30px;
    }
    .how-it-works-sec .sec-title h3{
        font-size: 35px;
    }
    .how-it-works-sec .card-work-listing{
        padding-top: 15px;
    }
    .how-it-works-sec .card-works .card-works-head .icon{
        width: 60px;
        height: 60px;
    }
    .how-it-works-sec .card-works .card-works-head .icon img{
        width: 25px;
    }
    .how-it-works-sec .card-works .card-works-head .card-title{
        width: calc(100% - 60px);
    }
    .how-it-works-sec .card-works .card-works-head .card-title h4{
        font-size: 22px;
    }
    .how-it-works-sec .card-works{
        padding: 20px 20px 25px 25px;
        margin-bottom: 25px;
    }
    .how-it-works-sec .card-works .card-content{
        padding: 20px 0;
        font-size: 14px;
    }
    .how-it-works-sec .card-works .card-bottom .learn-more{
        padding: 5px;
        padding-left: 20px;
        font-size: 13px;
    }
    .how-it-works-sec .about-us-sec{
        margin-top: 15px;
    }
    .how-it-works-sec .about-us-sec .about-us-content{
        padding: 15px 0;
    }
    .how-it-works-sec .about-us-sec .about-us-content h3{
        font-size: 35px;
    }
    .top-deal-sec{
        padding: 20px 0 0;
    }
    .top-deal-sec .sec-title h3{
        font-size: 35px;
    }
    .top-deal-sec .sec-title{
        margin-bottom: 30px;
    }
    .top-deal-sec .card-top-deal .top-deal-img{
        padding: 20px 20px 0;
    }
    .top-deal-sec .card-top-deal .card-bottom ul{
        margin-bottom: 10px;
    }
    .top-deal-sec .card-top-deal .card-content{
        padding: 10px 20px 0;
    }
    .top-deal-sec .card-top-deal .card-content .product-title{
        font-size: 22px;
        margin-bottom: 10px;
    }
    .top-deal-sec .card-top-deal .card-content .pricing{
        font-size: 16px;
    }
    .top-deal-sec .card-top-deal .card-content .pricing span::after{
        font-size: 12px;
    }
    .top-deal-sec .card-top-deal .card-bottom ul li .text{
        font-size: 16px;
    }
    .top-deal-sec .card-top-deal .card-bottom a{
        font-size: 14px;
        height: 35px;
    }
    .best-customer-sec::before{
        background-position: bottom right;
    }
    .best-customer-sec{
        padding: 40px 0 300px;
    }
    .best-customer-sec h3{
        font-size: 35px;
    }
    .best-customer-sec img{
        margin-bottom: 15px;
    }
    .best-customer-sec .contact-us{
        padding: 5px;
        padding-left: 25px;
    }
    .testimonial-sec{
        padding: 30px 0;
    }
    .testimonial-sec .sec-title h3{
        font-size: 35px;
        margin-bottom: 10px;
    }
    .testimonial-sec .testimonial-slider .testimonial-item .testimonial-text{
        padding: 20px 45px 15px;
    }    
    .footer-main{
        padding: 40px 0;
    }
    .footer-main p{
        font-size: 14px;
        margin-bottom: 15px;
    }
    .footer-main .social-links{
        margin-bottom: 15px;
    }
    .footer-main h4{
        margin-bottom: 15px;
    }
    .footer-main .footer-contact-links li{
        padding: 0 0 15px 20px;
    }
    .footer-main .footer-contact-links li a{
        font-size: 14px;
    }
    .footer-main h5{
        font-size: 18px;
        margin: 20px 0;
    }
    .footer-main .quick-links a{
        font-size: 14px;
        margin-bottom: 15px;
    }
    .copyright-footer{
        font-size: 12px;
        padding: 15px 0;
    }
    .footer-main .newsletter-form{
        padding: 15px;
    }
    .testimonial-sec::before{
        top: 0;
    }
    .testimonial-sec .testimonial-slider .item{
        padding: 50px 90px 0;
    }
    .testimonial-sec .testimonial-slider .owl-prev{
        left: 55px;
        top: calc(50% - 80px);
    }
    .testimonial-sec .testimonial-slider .owl-next{
        right: 55px;
        top: calc(50% - 80px);
    }
    .testimonial-sec .testimonial-slider .testimonial-item .testimonial-text p{
        font-size: 18px;
    }
    .testimonial-sec .testimonial-slider .testimonial-item .testimonial-img{
        padding: 15px 0;
        margin-bottom: 10px;
    }
    .testimonial-sec .testimonial-slider .testimonial-item .testimonial-img .person-name{
        font-size: 20px;
    }


}
@media only screen and (min-width: 520px) and (max-width: 767px) {
    
    .header-main .custom-nav-item{
        padding: 8px 10px;
    }
    .header-main .navbar-nav{
        padding: 20px 0 6px;
    }
    .header-main .custom-nav-item .custom-nav-link{
        text-align: center;
        padding: 6px 0;
        font-size: 14px;
    }
    .nav-link-icons{
        justify-content: center;
    }
    .header-main{
        padding: 10px 0;
    }
    .navbar-brand{
        width: 120px;
    }
    .home-banner-main{
        min-height: unset;
        display: block;
    }
    .home-banner-main .banner-text{
        width: 100%;
        padding-bottom: 30px;
    }
    .home-banner-main .banner-text .book-now {
        padding: 5px;
        padding-left: 20px;
        font-size: 14px;
        margin-top: 15px;
    }
    .home-banner-main .banner-text .book-now span{
        height: 35px;
        width: 35px;
    }
    .home-banner-main .booking-form-banner li{
        padding: 18px 30px;
    }
    .home-banner-main .booking-form-banner li::after{
        display: none;
    }
    .home-banner-main .booking-form-banner li .book-now{
        padding: 5px;
        padding-left: 20px;
        font-size: 14px;
        margin-top: 0;
    }
    .home-banner-main .booking-form-banner li .book-now span{
        height: 35px;
        width: 35px;
    }
    .home-banner-main .banner-text h3{
        font-size: 30px;
    }
    .home-banner-main .banner-text p{
        font-size: 14px;
    }
    .home-banner-main .banner-text .seperator-line{
        margin: 12px 0;
    }
    .home-banner-main::before {
        display: none;
    }
    .home-banner-main .booking-form-banner li{
        width: 100%;
        border-bottom: 1px solid #0003;
    }
    .home-banner-main .booking-form-banner li:nth-last-child(1){
        border: none;
    }
    .home-banner-main .booking-form-banner{
        position: relative;
        transform: translateY(0);
    }
    .how-it-works-sec{
        padding-top: 30px;
    }
    .how-it-works-sec .sec-title h3{
        font-size: 28px;
    }
    .how-it-works-sec .card-work-listing{
        padding-top: 15px;
    }
    .how-it-works-sec .card-works .card-works-head .icon{
        width: 60px;
        height: 60px;
    }
    .how-it-works-sec .card-works .card-works-head .icon img{
        width: 25px;
    }
    .how-it-works-sec .card-works .card-works-head .card-title{
        width: calc(100% - 60px);
    }
    .how-it-works-sec .card-works .card-works-head .card-title h4{
        font-size: 20px;
    }
    .how-it-works-sec .card-works{
        padding: 20px 20px 36px 25px;
        margin-bottom: 25px;
    }
    .how-it-works-sec .card-works .card-content{
        padding: 20px 0;
        font-size: 14px;
    }
    .how-it-works-sec .card-works .card-bottom .learn-more{
        padding: 5px;
        padding-left: 20px;
        font-size: 13px;
    }
    .how-it-works-sec .about-us-sec{
        margin-top: 15px;
    }
    .how-it-works-sec .about-us-sec .about-us-content{
        padding: 15px 0;
    }
    .how-it-works-sec .about-us-sec .about-us-content h6{
        font-size: 16px;
    }
    .how-it-works-sec .about-us-sec .about-us-content h3{
        font-size: 28px;
    }
    .how-it-works-sec .about-us-sec .about-us-content p{
        width: 100%;
        font-size: 14px;
    }
    .top-deal-sec{
        padding: 20px 0 0;
    }
    .top-deal-sec .sec-title h6{
        font-size: 16px;
        margin-bottom: 0;
    }
    .top-deal-sec .sec-title h3{
        font-size: 28px;
    }
    .top-deal-sec .sec-title{
        margin-bottom: 30px;
    }
    .top-deal-sec .card-top-deal .top-deal-img{
        padding: 20px 20px 0;
    }
    .top-deal-sec .card-top-deal .card-bottom ul{
        margin-bottom: 10px;
    }
    .top-deal-sec .card-top-deal .card-content{
        padding: 10px 20px 0;
    }
    .top-deal-sec .card-top-deal .card-content .product-title{
        font-size: 22px;
        margin-bottom: 10px;
    }
    .top-deal-sec .card-top-deal .card-content .pricing{
        font-size: 16px;
    }
    .top-deal-sec .card-top-deal .card-content .pricing span::after{
        font-size: 12px;
    }
    .top-deal-sec .card-top-deal .card-bottom ul li .text{
        font-size: 16px;
    }
    .top-deal-sec .card-top-deal .card-bottom a{
        font-size: 14px;
        height: 35px;
    }
    .best-customer-sec::before{
        background-position: bottom right;
    }
    .best-customer-sec{
        padding: 40px 0 190px;
    }
    .best-customer-sec h3{
        font-size: 28px;
        margin-bottom: 15px;
    }
    .best-customer-sec img{
        margin-bottom: 15px;
    }
    .best-customer-sec p{
        width: 100%;
        font-size: 14px;
    }
    .best-customer-sec .contact-us{
        margin-top: 10px;
        padding: 5px;
        padding-left: 25px;
    }
    .testimonial-sec{
        padding: 30px 0;
    }
    .testimonial-sec .sec-title h3{
        font-size: 28px;
        margin-bottom: 10px;
    }
    .testimonial-sec .testimonial-slider .testimonial-item .testimonial-text{
        padding: 20px 20px 15px;
    }    
    .footer-main{
        padding: 40px 0;
    }
    .footer-main p{
        font-size: 14px;
        margin-bottom: 15px;
    }
    .footer-main .social-links{
        margin-bottom: 15px;
    }
    .footer-main h4{
        margin-bottom: 15px;
    }
    .footer-main .footer-contact-links li{
        padding: 0 0 15px 20px;
    }
    .footer-main .footer-contact-links li a{
        font-size: 14px;
    }
    .footer-main h5{
        font-size: 18px;
        margin: 20px 0;
    }
    .footer-main .quick-links a{
        font-size: 14px;
        margin-bottom: 15px;
    }
    .copyright-footer{
        font-size: 12px;
        padding: 15px 0;
    }
    .footer-main .newsletter-form{
        padding: 15px;
    }
    .testimonial-sec::before{
        top: 0;
    }
    .testimonial-sec .testimonial-slider .item{
        padding: 50px 25px 0;
    }
    .testimonial-sec .testimonial-slider .owl-prev{
        left: -13px;
        top: calc(50% - 80px);
    }
    .testimonial-sec .testimonial-slider .owl-next{
        right: -13px;
        top: calc(50% - 80px);
    }
    .testimonial-sec .testimonial-slider .testimonial-item .testimonial-text p{
        font-size: 16px;
    }
    .testimonial-sec .testimonial-slider .testimonial-item .testimonial-img{
        padding: 15px 0;
        margin-bottom: 10px;
    }
    .testimonial-sec .testimonial-slider .testimonial-item .testimonial-img .person-name{
        font-size: 20px;
    }

}
@media only screen and (min-width: 300px) and (max-width: 519px) {
    .header-main .custom-nav-item{
        padding: 8px 10px;
    }
    .header-main .navbar-nav{
        padding: 20px 0 6px;
    }
    .header-main .custom-nav-item .custom-nav-link{
        text-align: center;
        padding: 6px 0;
        font-size: 14px;
    }
    .nav-link-icons{
        justify-content: center;
    }
    .header-main{
        padding: 10px 0;
    }
    .navbar-brand{
        width: 120px;
    }
    .home-banner-main{
        min-height: unset;
        display: block;
    }
    .home-banner-main .banner-text{
        width: 100%;
        padding-bottom: 30px;
    }
    .home-banner-main .banner-text .book-now {
        padding: 5px;
        padding-left: 20px;
        font-size: 14px;
        margin-top: 15px;
    }
    .home-banner-main .banner-text .book-now span{
        height: 35px;
        width: 35px;
    }
    .home-banner-main .booking-form-banner li{
        padding: 18px 30px;
    }
    .home-banner-main .booking-form-banner li::after{
        display: none;
    }
    .home-banner-main .booking-form-banner li .book-now{
        padding: 5px;
        padding-left: 20px;
        font-size: 14px;
        margin-top: 0;
    }
    .home-banner-main .booking-form-banner li .book-now span{
        height: 35px;
        width: 35px;
    }
    .home-banner-main .banner-text h3{
        font-size: 30px;
    }
    .home-banner-main .banner-text p{
        font-size: 14px;
    }
    .home-banner-main .banner-text .seperator-line{
        margin: 12px 0;
    }
    .home-banner-main::before {
        display: none;
    }
    .home-banner-main .booking-form-banner li{
        width: 100%;
        border-bottom: 1px solid #0003;
    }
    .home-banner-main .booking-form-banner li:nth-last-child(1){
        border: none;
    }
    .home-banner-main .booking-form-banner{
        position: relative;
        transform: translateY(0);
    }
    .how-it-works-sec{
        padding-top: 30px;
    }
    .how-it-works-sec .sec-title h3{
        font-size: 28px;
    }
    .how-it-works-sec .card-work-listing{
        padding-top: 15px;
    }
    .how-it-works-sec .card-works .card-works-head .icon{
        width: 60px;
        height: 60px;
    }
    .how-it-works-sec .card-works .card-works-head .icon img{
        width: 25px;
    }
    .how-it-works-sec .card-works .card-works-head .card-title{
        width: calc(100% - 60px);
    }
    .how-it-works-sec .card-works .card-works-head .card-title h4{
        font-size: 20px;
    }
    .how-it-works-sec .card-works{
        padding: 20px 20px 36px 25px;
        margin-bottom: 25px;
    }
    .how-it-works-sec .card-works .card-content{
        padding: 20px 0;
        font-size: 14px;
    }
    .how-it-works-sec .card-works .card-bottom .learn-more{
        padding: 5px;
        padding-left: 20px;
        font-size: 13px;
    }
    .how-it-works-sec .about-us-sec{
        margin-top: 15px;
    }
    .how-it-works-sec .about-us-sec .about-us-content{
        padding: 15px 0;
    }
    .how-it-works-sec .about-us-sec .about-us-content h6{
        font-size: 16px;
    }
    .how-it-works-sec .about-us-sec .about-us-content h3{
        font-size: 28px;
    }
    .how-it-works-sec .about-us-sec .about-us-content p{
        width: 100%;
        font-size: 14px;
    }
    .top-deal-sec{
        padding: 50px 0 0;
    }
    .top-deal-sec .sec-title h6{
        font-size: 16px;
        margin-bottom: 0;
    }
    .top-deal-sec .sec-title h3{
        font-size: 28px;
    }
    .top-deal-sec .sec-title{
        margin-bottom: 30px;
    }
    .top-deal-sec .card-top-deal .top-deal-img{
        padding: 20px 20px 0;
    }
    .top-deal-sec .card-top-deal .card-bottom ul{
        margin-bottom: 10px;
    }
    .top-deal-sec .card-top-deal .card-content{
        padding: 10px 20px 0;
    }
    .top-deal-sec .card-top-deal .card-content .product-title{
        font-size: 18px;
        margin-bottom: 10px;
    }
    .top-deal-sec .card-top-deal .card-content .pricing{
        font-size: 15px;
    }
    .top-deal-sec .card-top-deal .card-content .pricing span::after{
        font-size: 10px;
    }
    .top-deal-sec .card-top-deal .card-bottom ul li .text{
        font-size: 16px;
    }
    .top-deal-sec .card-top-deal .card-bottom a{
        font-size: 14px;
        height: 35px;
        width: 230px;
    }
    .best-customer-sec::before{
        background-position: bottom right;
    }
    .best-customer-sec{
        padding: 40px 0 190px;
    }
    .best-customer-sec h3{
        font-size: 28px;
        margin-bottom: 15px;
    }
    .best-customer-sec img{
        margin-bottom: 15px;
    }
    .best-customer-sec p{
        width: 100%;
        font-size: 14px;
    }
    .best-customer-sec .contact-us{
        margin-top: 10px;
        padding: 5px;
        padding-left: 25px;
    }
    .testimonial-sec{
        padding: 30px 0;
    }
    .testimonial-sec .sec-title h3{
        font-size: 28px;
        margin-bottom: 10px;
    }
    .testimonial-sec .testimonial-slider .testimonial-item .testimonial-text{
        padding: 20px 20px 15px;
    }    
    .footer-main{
        padding: 40px 0;
    }
    .footer-main p{
        font-size: 14px;
        margin-bottom: 15px;
    }
    .footer-main .social-links{
        margin-bottom: 15px;
    }
    .footer-main h4{
        margin-bottom: 15px;
    }
    .footer-main .footer-contact-links li{
        padding: 0 0 15px 20px;
    }
    .footer-main .footer-contact-links li a{
        font-size: 14px;
    }
    .footer-main h5{
        font-size: 18px;
        margin: 20px 0;
    }
    .footer-main .quick-links a{
        font-size: 14px;
        margin-bottom: 15px;
    }
    .copyright-footer{
        font-size: 12px;
        padding: 15px 0;
    }
    .footer-main .newsletter-form{
        padding: 15px;
    }
    .testimonial-sec::before{
        top: 0;
    }
    .testimonial-sec .testimonial-slider .item{
        padding: 50px 25px 0;
    }
    .testimonial-sec .testimonial-slider .owl-prev{
        left: -13px;
        top: calc(50% - 80px);
    }
    .testimonial-sec .testimonial-slider .owl-next{
        right: -13px;
        top: calc(50% - 80px);
    }
    .testimonial-sec .testimonial-slider .testimonial-item .testimonial-text p{
        font-size: 16px;
    }
    .testimonial-sec .testimonial-slider .testimonial-item .testimonial-img{
        padding: 15px 0;
        margin-bottom: 10px;
    }
    .testimonial-sec .testimonial-slider .testimonial-item .testimonial-img .person-name{
        font-size: 20px;
    }
}