@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

:root {
    --white: #fff;
    --black: #000;
    --primary: #f98101;
    --secondary: #333333;
}
html {
    scroll-behavior: smooth;
    height: 100%;
    overflow-x: hidden;
  }
/* .playfair-display-<uniquifier> {
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
  } */
.body-scroll::-webkit-scrollbar {
    width: 5px;
}

.body-scroll::-webkit-scrollbar-track {
    border-radius: 50px !important;
    background: #dff5ff8a !important;
}

.body-scroll::-webkit-scrollbar-thumb {
    border-radius: 50px !important;
    background: #131921 !important;
}

.body-scroll::-webkit-scrollbar-thumb:hover {
    background: #000000 !important;
}

body {
    overflow-x: hidden;
}

* {
    font-family: "Montserrat", sans-serif;;
     /*font-family: "Poppins", sans-serif;*/
    text-decoration: none !important;
    list-style: none !important;
}

p {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.8;

}

/* ------ */

header {
    /* position: fixed; */
    width: 100%;
    padding: 20px 0px;

    top: 0px;
    z-index: 2;
    transition: 0.6s ease-in-out;
    background: #000;
}

.nav-active {
    background-color: #121212;
    padding: 20px 0;
    position: fixed;
    box-shadow: 1px 2px 8px var(--primary);
}

.nav-book .navbrand img {
    width: 200px;
}

.head-ul {
    display: flex;
    gap: 1.2rem;
    align-items: center;
}

.btn-head {

    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
transition: 0.5s ease-in;
}
.btn-head:hover h4 span,
.btn-head:hover h4{
    color: var(--primary);
}
.btn-head h4 {
    margin: 0;
    font-size: 0.9rem;
    color: #fff;
}

.btn-head h4 span {
    display: block;
    font-size: 0.75rem;
    color: #aaa;
}

.btn-head i {
    font-size: 1.9rem;
}




.themeBtn {
    background-color: var(--primary);
    color: white;
    border: 1px solid transparent;
    border-radius: 30px;
    margin: 0;
    transition: all .5s ease-in-out;
    position: relative;
    z-index: 1;
    padding: 1rem 2rem;
    display: block;
    width: fit-content;
}

.themeBtn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: #131921;
    width: 0;
    height: 100%;
    margin: auto;
    transition: .5s all;
    z-index: -1;
    border-radius: 30px;
}

.themeBtn:hover {
    color: white;
}

.themeBtn:hover::after {
    width: 100%;
}

.change-btn {
    background: #131921;
    color: var(--white);
    border-color: var(--primary);

}

.change-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    width: 0;
    height: 100%;
    margin: auto;
    transition: .5s all;
    z-index: -1;
    border-radius: 30px;
}

.change-btn:hover::after {
    width: 100%;
}

/* .#f98101 */

/* banner-section */
.banner-section .content-banner h1 {
    font-size: 3.0625rem;
    font-weight: bold;
    color: var(--white);
    font-family: "Montserrat", sans-serif;
    text-align: left;
    text-transform: uppercase;
}

.banner-section .content-banner {
    position: relative;
}

.banner-section .content-banner h1 span {
    color: var(--primary);
    font-family: "Montserrat", sans-serif;
}

.banner-section .content-banner p {
    color: var(--white);
}

.content-banner ul {
    padding: 0;
}

.content-banner ul li {
    color: var(--white);
    position: relative;
    font-size: 1.1rem;
    padding: 0.3rem 0 0.3rem 1rem;
}

.content-banner ul li::before {
    content: '';
    position: absolute;
    background: var(--primary);
    width: 8.2px;
    height: 2px;
    top: 1rem;
    left: 0;
}

.banner-section {
    background: var(--black);
    padding: 6.5rem 0 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.banner-section .overlay {
    top: 1.1rem;
    left: 0;
    z-index: -1;
    position: absolute;
    /* top:80px; */
}

.banner-section .overlay img {
    height: 90vh;
    width: 95%;
}

.form-banner h2 {
    color: var(--primary);
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 10px;
    line-height: 39px;
    animation: blink1 1s cubic-bezier(0.4, 0, 1, 1) infinite;

}

@keyframes blink1 {

    0%,
    100% {
        color: var(--primary);
    }

    50% {
        color: #000000;
    }
}

.form-banner {
    background: #fff;
    padding: 3.4rem 3.4rem;
    margin: 0 0rem 0 5rem;
}

.form-banner p {
    color: var(--black);
    font-size: 1.2rem;
    font-weight: 400;
}

.form-banner form textarea {
    height: 80px !important;
}

.form-banner form textarea,
.form-banner form input {
    border-radius: 0;
    font-size: 12px;
    color: #a3a3a3;
    font-weight: 500;
    margin: 0 0 7px;
    height: 41px;
    border: 0;
    background-color: #f1f1f1;
    width: 100%;
    padding: 1rem;
}

.banner-btn {
    display: flex;

}

.banner-section .brand-logo {
    margin: 2rem 0 5rem;
}

/* ------ */
.section-brand {
    background: var(--primary);
    padding: 2.4rem 0;
}

.section-brand .brandslider .swiper-wrapper {
    display: flex;
    align-items: normal;
}

.section-brand .brandslider .swiper-wrapper .swiper-slide {

    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

/* ---- */
.section-about {
    padding: 6rem 0;
}

.heading-h2 {
    font-size: 3.525rem;

    font-weight: 400;
    font-family: "Montserrat", sans-serif;
    text-align: left;
    text-transform: capitalize;
}

.section-about .content h2 span {
    color: var(--primary);
    font-family: "Montserrat", sans-serif;
}

.section-about .about-content {
    display: flex;
    gap: 7rem;
    margin: 2rem 0;
    /* justify-content: center; */
}
.section-print .about-content ul li,
.section-about .about-content ul li {
    font-size: 1rem;
    padding: 5px 0;
}
.section-print .about-content ul li i,
.section-about .about-content ul li i {
    color: var(--primary);
    padding-right: 0.5rem;
}

.section-about .justify-img {
    display: flex;
    /* justify-content: center; */
}

/* -section-pkg-- */
.section-pkg {
    padding: 4rem 0;
    background: aliceblue;
}

.section-pkg .content p {
    width: 80%;
}
.testimonialSec h2 span,
.section-print h2 span,
.section-book h2 span,
.section-pkg h2 span {
    color: var(--primary);
    font-family: "Montserrat", sans-serif;
}

/* -- */
.section-book {
    padding: 4rem 0;
}

.section-book p {
    color: #212529;
}
.section-project{
    padding: 4rem 0;
}
.section-project .content {
text-align: center;
    /*height: 520px;*/
    background: aliceblue;
    padding: 2rem 1rem;
    margin:10px;
    cursor: pointer;
    transition: 0.2s linear;
    border-radius: 20px;
    box-shadow: 0 0 7px rgba(0, 150, 255, 0.5);
}
.section-project .content:hover
{
    background: var(--primary);
    
    h4{color: white;}
    p{color: white;}
    
}
.section-project .content:hover img {
    filter: invert(76%) sepia(99%) saturate(2%) hue-rotate(150deg) brightness(114%) contrast(100%);
}
.section-project .content p{
    overflow-y: auto;
    height: 270px;
  }
  .section-project .content figure img{
    filter: brightness(0) saturate(100%) invert(44%) sepia(97%) saturate(2514%) hue-rotate(1deg) brightness(101%) contrast(109%);
  }
  /* Scrollbar width */
  .section-project .content p::-webkit-scrollbar{
    width: 8px;
  }
  
  /* Scrollbar track */
  .section-project .content p::-webkit-scrollbar-track{
    background: #f1f1f1;
  }
  
  /* Scrollbar thumb (var(--primary)) */
  .section-project .content p::-webkit-scrollbar-thumb{
    background: var(--primary);
    border-radius: 10px;
  }
  
  /* Hover par black */
  .section-project .content p::-webkit-scrollbar-thumb:hover{
    background: black;
  }
  

.section-project .content h4 {
    padding: 1rem 0;
}


.what-we-do{
    padding: 4rem 0;
}
.what-we-do ul li {
    text-align: center;
    background: aliceblue;
    display: inline-block;
    border-radius: 13px;
    transition: all 0.4s ease;
    margin: 1rem 0;
    width: 240px;
    height: 200px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
.what-we-do ul li:hover {
    background: var(--primary);
}
.what-we-do ul {
    display: flex;
    justify-content: space-between;
    /* flex-flow: wrap; */
}
.filter-img {
    filter: brightness(0) saturate(100%) invert(44%) sepia(97%) saturate(2514%) hue-rotate(1deg) brightness(101%) contrast(109%);
}
.what-we-do ul li:hover img, .what-we-do ul li:hover h4 {
    filter: brightness(0.1);
    color: #000;
}
.swiper-container {
    overflow: hidden;
}

.section-demo{
   background: linear-gradient(267.57deg, #f98101 -3.55%, #f98101 100.02%);
    padding: 4rem 0;
    margin: 5rem 0;
}
.section-demo .img-absolute{
    position: relative;
}
.section-demo .img-absolute img{
    position: absolute;
    top: -297px;
}
.section-demo p,
.section-demo h2{
    color: var(--white);
}
.section-demo .themeBtn{
    border-color: #fff;
    margin-right: 1rem;
}

.ul-style{
    display: flex;
}

.testimonialSec{
    padding: 4rem 0;
}
.testimonialSec h6{
    color: var(--primary);
}
.testimonialSec .reviewBox p {
    font-style: italic;
    margin: 2rem 0;
    text-align: center;
}
.contect-section{
    position: relative;
    padding: 6rem 0 15rem;
}
.contect-section textarea{
    height: 90px !important;
}
.contect-section textarea,
.contect-section input{
    width: 100%;
height: 3.5rem;
padding-left: 1rem;
color: #000;
margin: 0.5rem 0;
border-radius: 7px;
border: none;
background: #e9ebed;
}
.contect-section .contactBg {
    position: absolute;
    right: 0;
    top: -50px;
}

footer {
    background: #0d0402;
    padding: 2rem 0;
}
footer ul li, footer ul li a, footer p {
    color: #fff;
}
footer p span {
    color: var(--primary);
}


/* #overlayModal {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000001;
    display: none;
    background-color: rgb(0, 0, 0, 0.6);
  } */
  .front-line-box {
    background: #3293fc17;
    padding: 10px 10px;
    display: flex;
    margin: 0 0 20px;
    min-height: 220px !important;
    max-height: 220px !important;
    overflow-y: auto;
    border-radius: 20px;
}
.front-line-box p{
    font-size: 0.925rem;
}
  /* popup-form */

.halloween-popup h2,
.halloween-popup h3 {
    font-size: 24px !important;
    color: #fff;
    margin-top: 20px;
    margin-bottom: 10px;
}

.modal {
    background: rgba(0, 0, 0, .6);
    z-index: 9999999 !important
}

.halloween-popup {
    width: 970px;
    height: 519px;
    background: url(./image/background-popup-002.jpg) 100% 95%/cover no-repeat #000;
    border-radius: 10px;
    padding: 3rem;
    position: relative;
    /* top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); */
    animation: 1.2s linear infinite filter-shadow;
    overflow: hidden
}

@keyframes filter-shadow {

    0%,
    100% {
        filter: unset
    }

    50% {
        filter: drop-shadow(2px 4px 6px black)
    }
}
.halloween-popup-inner {
    width: 40%;
    position: absolute;
    top: 0;
    right: 40px;
    z-index: 33
}
.halloween-popup-inner .halloween_btn {
    font-family: Poppins, sans-serif;
    width: 100%;
    height: 52px;
    border: none;
    border-radius: 4px
}
.halloween-popup h3 {
    background: hsl(0deg 0% 0% / 80%);
    padding: 15px !important;
    text-align: center;
    animation: blink1 1s cubic-bezier(0.4, 0, 1, 1) infinite;
}
.halloween-popup h3 span {
    padding: 10px;
    border-radius: 8px;
    display: block;
    background: var(--white);
}
.halloween-popup-inner .halloween_btn {
    margin-top: 10px;
    background-color: var(--primary);
    color: #fff;
    display: block;
    font-size: 18px;
    font-weight: 700;
    position: relative;
    cursor: pointer;
    transition: .6s linear
}
.halloween-popup-inner .halloween_btn:hover {
    background-color: #fff;
    border: 3px solid var(--theme-color);
    color: #000
}

.halloween-popup-inner .halloween_btn:hover::after {
    animation: 1.3s linear forwards halloween-cap
}
.halloween-popup textarea,
.halloween-popup input, .halloween-popup-inner .halloween_btn {
    font-family: Poppins, sans-serif;
    width: 100%;
    height: 52px;
    border: none;
    border-radius: 4px;
    margin: 0.4rem 0;
    padding: 1rem;
}
.halloween-popup textarea,
.halloween-popup .halloween-filed input {
    font-size: 14px;
    margin: 5px 0;
    padding: 0 21px;
}

@keyframes filter-shadow {

    0%,
    100% {
        filter: unset
    }

    50% {
        filter: drop-shadow(2px 4px 6px black)
    }
}
@keyframes halloween-cap {
    0% {
        transform: rotateY(180deg)
    }

    50% {
        transform: translateY(-10px)
    }

    100% {
        transform: translateY(0)
    }
}

.fancybox-slide--html .fancybox-close-small {
    color: currentColor;
    padding: 3px;
    right: 0;
    top: 5px;
    margin: 0;
    width: 30px;
    height: 28px;
    background: #fff;
}
/* ----- */
/* #popupOverlay{
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: rgba(0,0,0,0.6);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:9999;
}

#popupform{
    background:#fff;
    padding:30px;
    border-radius:10px;
    width:400px;
    max-width:90%;
} */
#popupOverlay{
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: rgba(0,0,0,0.6);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:999999;
}

.popup-close{
    background: aliceblue;
    position: absolute;
    right: 7px;
    top: 7px;
    padding: 0.4rem;
    border-radius: 78%;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    z-index: 1;
    cursor: pointer;
}


.section-thanks{
    height: 69vh;
    text-align: center;
}
.header-heading{
    padding: 6rem 0;
}
.header-heading .themeBtn{
    display: flex;
    justify-content: center;
}