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

body {
    font-family: 'Poppins', sans-serif;
    background-color: #faf0e6;
    color: #333333;
}

h1,
h2 {
    margin-bottom: 10px;
}

h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #333333;
}

h2 {
    font-size: 1.5rem;
    font-weight: 500;
}

p {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #333333;
}

.clear-float {
    clear: both;
}

.beta-banner {
    text-align: center;
    padding: 8px 0px;
    font-size: 15px;
    font-weight: 500;
    background-color: #f5cba7;
    position: fixed;
    top:0;
    left: 0;
    right: 0;
    z-index: 999;
}

/* -------------------------------------------- Navigation Bar */
nav {
    background-color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .logo img {
    height: 50px;
}

nav .nav-links {
    list-style: none;
    display: flex;
}

nav .nav-links li {
    margin: 0 15px;
}

nav .nav-links li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav .nav-links li a:hover {
    color: #ff7b00;
}

.login-btn {
    background-color: #ff7b00;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.login-btn:hover {
    background-color: #ff5400;
}


/* --------------------- mobile menu --------------- */
.mobile-temp-menu {
    display: none;
    border-bottom: 1px solid #E0E0E0;
    position: fixed;
    left:0;
    top:0;
    right:0;
    height: 45px;
    z-index: 999 !important;
    background-color: white;
  }
  
  .mobile-temp-menu img {
    float: left;
    height: 35px;
    margin-left: 3%;
    margin-top: 5px;
  }
  
  
  .mobile-temp-menu button {
    float: right;
    font-size: 26px;
    border: 1px solid transparent;
    background-color: transparent;
    margin-top: 8px;
    margin-right: 3%;
  }
  
  .hidden-mobile-menu-bg {
    position: fixed;
    z-index: 99999;
    background-color: black;
    opacity: 0.2;
    top:0;
    right:0;
    bottom:0;
    left:0;
    display: none;
  }
  
  .hidden-mobile-menu {
    display: none;
    position: fixed;
    z-index: 99999999;
    background-color: white;
    top:0;
    right:0;
    bottom:0;
    width: 70%;
    transition: 0.2s !important;
    padding-top: 40px;
  }
  
  #mobile-close-btn {
    font-size: 28px !important;
    border: 1px solid transparent !important;
    background-color: transparent !important;
    margin-top: 8px !important;
    margin-right: 10px !important; 
    position: absolute;
    right:0;
    top:0;
  }
  
  .hidden-mobile-menu a {
    display: block;
    text-decoration: none;
    color: gray;
    font-size: 16px;
    padding: 15px 20px;
  }

  .login-btn-mobile {
    margin-top: 5px;
    background-color: orange;
    color: white !important;
    width: 85%;
  }
  
  .hidden-mobile-menu a:hover {
    transition: 0.2s;
    color: #303030;
    background-color: #EAEDED;
  }
  
  .hidden-mobile-menu a i {
    padding: 0px;
    display: inline-block;
    margin: 0px;
    vertical-align: middle;
    margin-top: -4px;
    font-size: 20px;
    margin-right: 5px;
  }

/* -------------------------------------------- Header Section */
header {
    background: linear-gradient(120deg, #ff7b00, #ff5400);
    color: white;
    padding: 90px 50px;
    text-align: center;
}

#home h1 {
    font-size: 45px;
    margin-bottom: 15px;
    margin-top: 10px;
    color: white;
}

#home p {
    font-size: 20px;
    color: #faf0e6;
}

#home a {
    text-decoration: none;
}

.btn-holder {
    margin-top: 40px !important;
    margin-bottom: 25px !important;
}

.cta-btn {
    background-color: #f39c12;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-right: 5px;
    margin-left: 5px;
    display: inline-block;
}

.cta-btn img {
    height: 20px;
    border-radius: 3px;
    vertical-align: middle;
    margin-top: -4px;
    margin-right: 10px;
}

.cta-btn:hover {
    background-color: #ba4a00;
}

/* -------------------------------------------- Video Section */
.video-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    text-align: center;
}

.video-section-frame {
    border-radius: 8px;
    height: 60vh;
    margin-top: 20px;
    margin-bottom: 10px;
    width: 110%;
}

.video-wrap h2 {
    font-size: 30px;
    margin-bottom: 15px;
    margin-top: 10px;
}

.video-wrap p {
    font-size: 20px;
}

/* -------------------------------------------- Benefits */
.container-benefits {
    background-color: white;
    padding: 50px 0px;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 10px;
}

.container-benefits h2 {
    font-size: 35px;
    margin-bottom: 20px;
}

.container-benefits p {
    font-size: 20px;
    width: 55%;
    margin: 0 auto;
    margin-bottom: 25px;
    text-align: left;
    word-spacing: 1px;
}



/* -------------------------------------------- Testimonials */
.photo-gallery-banner {
    margin: 0 auto;
    background-color: transparent;
    padding-top: 50px;
    padding-bottom: 20px;
    border: 1px solid transparent;

}

.photo-gallery-banner h3 {
    color: #ff7b00;
    margin-bottom: 10px;
    font-size: 18px;
    margin-left: 10%;
}

.photo-gallery-banner h2 {
    margin-bottom: 25px;
    font-size: 35px;
    margin-left: 10%;
    color: black;
}

.gallery-row-testimonial {
    width: 80%;
    margin: 0 auto;
}

.left-testimonial {
    background-color: white;
    height: 300px;
    border-radius: 8px;
    display: inline-block;
    width: 40%;
    margin-right: 5%;
    margin-bottom: 10px;
    vertical-align: top;

    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.right-testimonial {
    background-color: white;
    color: white;
    padding: 0px 50px;
    display: inline-block;
    width: 46%;
    margin-right: 2%;
    text-align: left;
    vertical-align: top;
    border-radius: 8px;
    height: auto;
    min-height: 250px;
}

.right-testimonial h3 {
    margin-top: 45px;
    margin-left: 0px;
    margin-bottom: 20px !important;
}

.right-testimonial span {
    color: #F4D03F;
}

.right-testimonial span i {
    color: #F4D03F;
}

.right-testimonial p {
    margin-top: 10px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.right-testimonial a {
    color: #ff7b00;
    text-decoration: none;
}

.right-testimonial a:hover {
    text-decoration: underline;
}

.gallery-row {}

.portfolio-start-a {
    font-weight: 600;
    background-color: #ff7b00;
    border-radius: 25px;
    padding: 15px 30px !important;
    font-weight: 600 !important;
    color: white !important;
    text-decoration: none;
    text-align: center;
    display: block;
    width: 250px;
    margin: 0 auto;
    margin-top: 50px;
}

.portfolio-start-a:hover {
    background-color: black;
    transition: 0.2s;
    border-bottom: 2px solid #ff5400;
}

/* --------------------------------------------  Pricing Section */
.pricing-wrapper {
    padding-top: 80px;
    padding-bottom: 100px;
}

.pricing-header {
    width: 45%;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 60px;
}

.pricing-header h1 {
    margin-bottom: 15px;
    color: #262421;
    font-size: 50px;
}

.cents {
    font-size: 25px;
    font-weight: bolder;
}

.cross-price {
    color: #bdc3c7;
    text-decoration: line-through;
    font-size: 25px;
    font-weight: 300 !important;

}

.pricing-header p {
    color: #262421;
}

.packages {
    text-align: center;
}

.package-box {
    border: 1px solid #E8E8E8;
    border-radius: 6px;
    display: inline-block;
    width: 35%;
    text-align: left;
    margin-right: 1%;
    margin-left: 1%;
    padding: 30px 30px;
    background-color: #FAFBFC;
}

.package-box h3 {
    margin-bottom: 10px;
}

#desc {
    margin-bottom: 30px;
    color: #626567;
}

.package-box h2 {
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #E5E7E9;
    font-size: 40px;
}

.package-box h2 span {
    font-weight: 400;
}

.package-box h4 {
    margin-bottom: 30px;
}

.package-box p {
    margin-bottom: 15px;
}

.package-box p i {
    padding: 0px;
    margin: 0px;
    display: inline-block;
    vertical-align: middle;
    margin-top: -3px;
    font-size: 18px;
    color: #ff5400;
}

.package-box a {
    display: block;
    background-color: #ff5400;
    margin-top: 50px;
    color: white;
    text-decoration: none;
    text-align: center;
    padding: 10px 0px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.package-box a:hover {
    background-color: #262421 !important;
    color: white !important;
    transition: 0.2s;
}

#detail {
    font-size: 15px;
    font-style: italic;
    color: #ff5400;
}

.package-blue {
    background-color: #ff5400 !important;
    color: white !important;
    border-color: #ff5400 !important;
}

.package-blue p,
.package-blue p i {
    color: white !important;
}

.package-blue a {
    background-color: white !important;
    color: black !important;
}




/* -------------------------------------------------  FAQ  */
.faq-bg {
    background-color: white;
}

.faq-banner {
    width: 90%;
    margin: 0 auto;
    padding-top: 50px;
    padding-bottom: 50px;
}

.faq-left {
    border: 1px solid transparent;
    display: inline-block;
    width: 45%;
    vertical-align: top;
}

.faq-left h2 {
    font-size: 50px;
    margin-bottom: 30px;
}

.faq-img {
    height: 350px;
    width: 90%;
    background-color: #E5E7E9;
    border-radius: 6px;

    background-position: center;
    position: relative;

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.faq-right {
    display: inline-block;
    width: 53%;
    vertical-align: top;
}

.accordion {
    background-color: #F7F7F7;
    color: #262421;
    font-weight: 500;
    cursor: pointer;
    padding: 30px 20px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 18px;
    transition: 0.4s;
    margin-bottom: 10px;
}

.active,
.accordion:hover {
    background-color: #ccc;
}

.panel {
    margin-bottom: 20px;
    display: none;
    background-color: white;
    overflow: hidden;
    padding: 10px 20px;
}

.panel p {
    line-height: 1.5;
}

.panel p a {
    text-decoration: none;
    color: #1F55B3;
}

/* -------------------------------------------------  CTA  */
.cta-banner {
    height: 55vh;
    background-position: center;
    position: relative;

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.cta-bg-opacity {
    position: absolute;
    background-color: #262421;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0.7;
    z-index: 9 !important;
}

.cta-text {
    position: absolute;
    opacity: 1;
    background-color: transparent;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99 !important;
    color: white;
    margin: 0 auto;
    text-align: center;
    margin-top: 12vh;
    width: 50%;
}

.cta-text h2 {
    font-weight: 900;
    font-size: 50px;
    margin-bottom: 60px;
}

.cta-text a {
    color: white !important;
    margin-right: 10px;
    margin-left: 10px;
    text-decoration: none;
    border: 1px solid #ff7b00;
    padding: 15px 20px;
    font-size: 18px;
    background-color: #ff7b00;
}

.cta-text a:hover {
    background-color: #262421;
    border-color: #262421;
    transition: 0.2s;
}

.cta-link-2 {
    background-color: transparent !important;
    border: 1px solid white !important;
}

.cta-link-2:hover {
    background-color: white !important;
    color: #ff7b00 !important
}

/* -------------------------------------------- footer */
.footer {
    background-color: #FAFBFC;
    padding-top: 30px;
    padding-bottom: 100px;
}

.footer-left-box {
    border: 1px solid transparent;
    width: 40%;
    display: inline-block;
    vertical-align: top;
    margin-left: 3%;
    margin-right: 1%;
}

.footer-logo {}

.footer-logo img {
    height: 120px;
    margin-bottom: 20px;
}

.footer-left-box p {
    width: 30%;
    color: #262421;

    margin: 0;
    width: 70%;
    font-size: 17px;
    line-height: 1.5em;
    text-align: inherit;

    margin-left: 30px;
    margin-bottom: 40px;
}

.footer-left-box a {
    margin-left: 30px;
    display: block;
    color: #262421;
    text-decoration: none;
    font-size: 16px;
    font-weight: 300;
}

.footer-left-box a:hover {
    text-decoration: underline;
}

.footer-left-box a i {
    padding: 0px;
    margin: 0px;
    display: inline-block;
    vertical-align: middle;
    margin-top: -3px;
    margin-right: 5px;

}

.footer-right-box {
    border: 1px solid transparent;
    width: 53%;
    display: inline-block;
    vertical-align: top;
    margin-top: 40px;
}

.footer-col-big {
    width: 38%;
    display: inline-block;
    vertical-align: top;
    color: #262421;
}

.footer-col {
    width: 30%;
    display: inline-block;
    vertical-align: top;
    color: #262421;
}

.footer-col h3,
.footer-col-big h3 {
    font-weight: 900;
}

.footer-col a,
.footer-col-big a {
    font-weight: 300;
    text-decoration: none;
    color: #262421;
    display: block;
    margin-top: 18px;
}

.footer-col a i {
    font-size: 18px;
    padding: 0px;
    margin: 0px;
    display: inline-block;
    vertical-align: middle;
    margin-top: -3px;
    margin-right: 5px;
}

.footer-col a:hover,
.footer-col-big a:hover {
    text-decoration: underline;
}

.footer-bottom {
    height: 70px;
    background-color: #FAFBFC;
    border-top: 1px solid #E5E7E9;
}

.footer-bottom p {
    padding-top: 28px;
    margin-left: 5%;
    color: #262421;
    font-weight: 300;
}


/* For 4K screens and higher */
@media only screen and (min-width: 2560px) {

}

/* For Laptops (Large Desktops) */
@media only screen and (min-width: 1024px) and (max-width: 2559px) {
    
}

/* For Tablets (Portrait and Landscape) */
@media only screen and (min-width: 768px) and (max-width: 1023px) {
    nav .nav-links li {
        margin: 0 10px;
    }

    .video-section {
        margin-top: 50px;
    }
    
    .video-section-frame {
        height: 40vh;
        width: 80%;
    }

    .right-testimonial {
        padding: 10px 25px;
    }
    
    .right-testimonial h3 {
        margin-top: 20px;
    }

    .cta-btn {
        display: block;
        margin: 0 auto;
        width: 90%;
        margin-bottom: 20px;
    }

    .cta-text {
        margin-top: 11vh;
        width: 50%;
    }

    .cta-text h2 {
        font-size: 45px;
    }

    .package-box {
        width: 42%;
        padding: 30px 30px;
    }
    
    .pricing-header {
        width: 60%;
    }

    .pricing-header h1 {
        font-size: 40px;
    }

    .footer-left-box {
        width: 95%;
        display: block;
        margin: 0 auto;
    }

    .footer-logo img {
        height: 130px;
    }

    .footer-right-box {
        width: 85%;
        display: block;
        margin: 0 auto;
    }

    .footer-left-box p {
        font-size: 15px;
    }

    .footer-col a i {
        font-size: 16px;
        margin-right: 1px;
    }

    .footer-col a {
        font-size: 15px;
    }
    

}

/* For Mobile Devices (Portrait and Landscape) */
@media only screen and (max-width: 767px) {
    .mobile-temp-menu {
        display: block;
    }

    .top-nav {
        display: none !important;
    }

    #home {
        padding: 90px 35px;
        padding-bottom: 50px !important;
    }

    #home h1 {
        font-size: 40px;
        margin-top: 5px;
    }
    
    #home p {
        font-size: 19px;
        margin-bottom: 30px;
    }
    
    .cta-btn {
        display: block;
        margin: 0 auto;
        width: 90%;
        margin-bottom: 20px;
    }

    .video-section {
        margin-top: 50px;
    }
    
    .video-section-frame {
        height: 25vh;
        width: 80%;
    }

    .video-wrap h2 {
        font-size: 26px;
        width: 90%;
        margin: 0 auto;
        margin-bottom: 20px;
    }
    
    .video-wrap p {
        font-size: 18px;
        width: 90%;
        margin: 0 auto;
    }

    .container-benefits p {
        width: 85%;
    }

    .right-testimonial {
        padding: 10px 30px;
        display: block;
        width: 100%;
        margin: 0 auto;
        margin-bottom: 20px;
    }
    
    .right-testimonial h3 {
        margin-top: 15px;
    }

    .pricing-header {
        width: 90%;
    }

    .pricing-header h1 {
        font-size: 35px;
    }

    .package-box {
        display: block;
        width: 80%;
        margin: 0 auto;
        margin-bottom: 30px;
        padding: 30px 15px;
    }
    .package-box p {
        font-size: 14.5px;
    }

    .pricing-wrapper {
        padding-top: 50px;
        padding-bottom: 40px;
    }

    .faq-banner {
        width: 90%;
        padding-top: 35px;
    }
    
    .faq-left {
        display: block;
        width: 100%;
    }
    
    .faq-left h2 {
        font-size: 30px;
        text-align: center;
    }
    
    .faq-img {
        height: 150px;
        width: 100%;
        margin-bottom: 20px;
    }
    
    .faq-right {
        display: block;
        width: 100%;
    }
    
    .accordion {
        font-size: 17px;
    }

    .panel p {
        font-size: 16px;
    }

    .cta-banner {
        height: auto;
        padding-top: 20vh;
        padding-bottom: 20vh;
    }
    
    .cta-text {
        margin-top: 8vh;
        width: 80%;
    }
    
    .cta-text h2 {
        font-size: 35px;
        margin-bottom: 40px;
    }

    .footer {
        padding-top: 4vh;
        padding-bottom: 20px;
    }

    .footer-left-box {
        width: 90%;
        display: block;
        margin-left: 2%;
        margin-right: 0%;
        margin: 0 auto !important;
        text-align: left !important;
    }

    .footer-logo img {
        height: 100px;
    }

    .footer-left-box p {
        width: 100%;
        font-size: 16px;
        margin-left: 0px;
        margin-bottom: 10px;
    }

    .footer-left-box a {
        margin-left: 0px;
    }

    .footer-right-box {
        width: 95%;
        display: block;
        margin: 0 auto !important;
        margin-top: 20px !important;
        padding-top: 10px;
    }

    .footer-col-big {
        width: 90%;
        display: block;
        margin: 0 auto;
        margin-bottom: 50px !important;
    }

    .footer-col {
        width: 90% !important;
        display: block;
        margin: 0 auto;
        margin-bottom: 50px !important;
    }

    .footer-bottom {
        padding-bottom: 20px;
    }

    .footer-bottom p {
        margin-right: 0%;
        font-size: 16px;
        margin-bottom: 1px !important;
    }

}