@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Poppins:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat',
        sans-serif;
}

.ff-poppins {
    font-family: 'Poppins',
        sans-serif !important;
}

.ff-playfair {
    font-family: 'Playfair Display',
        serif !important;
}

:root {
    /* FONT SIZE CLASS */
    --font-xsm: 13px;
    --font-sm: 14px;
    --font-md: 18px;
    --font-lg: 22px;
    --font-xl: 23px;
    --font-xxl: 32px;
    --font-3xl: 66px;
    /* COLOR CLASS */
    --color-white: #fff;
    --color-black: #000;
    --color-orange: #ff7219;
    --color-gray: #4d4d4f;
}

/* Media-queries-start */

@media (max-width: 1200px) {
    :root {
        --font-md: 18px;
        --font-lg: 21px;
        --font-xl: 22px;
        --font-xxl: 32px;
        --font-3xl: 55px;
    }
}

@media (max-width: 992px) {
    :root {
        --font-md: 17px;
        --font-lg: 19px;
        --font-xl: 20px;
        --font-xxl: 29px;
        --font-3xl: 45px;
    }
}

@media (max-width: 576px) {
    :root {
        --font-md: 16px;
        --font-lg: 17px;
        --font-xl: 18px;
        --font-xxl: 21px;
        --font-3xl: 30px;
    }
}

@media (min-width:1200px) {
    .py-85 {
        padding-top: 85px;
        padding-bottom: 85px;
    }


}

@media (min-width:1400px) {
    .py-xl-65 {
        padding-top: 65px;
        padding-bottom: 65px;
    }


}

/* Media-queries-end */
/*===================== font-size===================== */

/*====================== FONT SIZE CLASS START====================== */
.fs-xsm {
    font-size: var(--font-xsm) !important;
}

.fs-sm {
    font-size: var(--font-sm) !important;
}

.fs-md {
    font-size: var(--font-md) !important;
}

.fs-lg {
    font-size: var(--font-lg) !important;
}

.fs-xl {
    font-size: var(--font-xl) !important;
}

.fs-xxl {
    font-size: var(--font-xxl) !important;
}

.fs-3xl {
    font-size: var(--font-3xl) !important;
}

/*====================== FONT SIZE CLASS END====================== */

/*====================== FONT-weight SIZE CLASS START====================== */
.fw-normal {
    font-weight: 400 !important;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-semibold {
    font-weight: 600 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

/*====================== FONT-weight SIZE CLASS END====================== */

/*====================== COLOR  CLASS START====================== */
.text-italic {
    font-style: italic;
}

.text-white {
    color: var(--color-white) !important;
}

.text-black {
    color: var(--color-black) !important;
}

.text-orange {
    color: var(--color-orange) !important;
}

.text-gray {
    color: var(--color-gray) !important;
}

.bg-color-black {
    background-color: var(--color-black) !important;
}

.bg-color-white {
    background-color: var(--color-white) !important;
}

.bg-color-orange {
    background-color: var(--color-orange) !important;
}

/*====================== COLOR  CLASS END====================== */
/* COMMON CLASS START  */

.main-heading {
    font-size: var(--font-3xl);
    font-weight: 600;
    color: var(--color-orange);
}

.heading {
    font-size: var(--font-xxl);
    font-weight: 600;
    color: var(--color-black);
}

.sub-heading {
    font-size: var(--font-xl);
    font-weight: 500;
    color: var(--color-black);
    font-family: 'Poppins',
        sans-serif;
}

.main-para {
    font-size: var(--font-md);
    font-weight: 400;
    color: var(--color-black);
}

.para {
    font-size: var(--font-sm);
    font-weight: 400;
    color: var(--color-black);
}

.sub-para {
    font-size: var(--font-xsm);
    font-weight: 400;
    color: var(--color-black);
}


.nav-bar-btn {
    font-size: var(--font-md);
    font-weight: 600;
    color: var(--color-white);
    background-color: var(--color-orange);
    padding: 13px 15px;
    border-radius: 29px;
    border: 2px solid var(--color-orange);
    transition: all 0.4s ease-in-out;
}

.nav-bar-btn:hover {
    color: var(--color-orange);
    background-color: var(--color-white);

}

/* COMMON CLASS END  */

/* opacity and cursor-pointer CLASS START */

.cursor-pointer {
    cursor: pointer;
}

.opacity-07 {
    opacity: 0.7;
}

.opacity-05 {
    opacity: 0.5;
}

/* opacity and  cursor-pointer CLASS END */
.pdf-download-btn:hover {
    color: var(--color-orange) !important;
    text-decoration: underline !important;
}
















/* COMPONENT CLASS CSS START  */

.navbar-bg-color {
    z-index: 2;
    background: #FFFFFF;
    box-shadow: 5px 9px 44px rgba(0, 0, 0, 0.03);
}



.text-all-break {
    word-break: break-all;
}

.bg-orange-img {
    background-image: url("../img/png/bg-orange-img.png");
    background-position: bottom;
    background-size: 100% 90%;
    background-repeat: no-repeat;
}

.bg-img-footer {
    background-image: url("../img/png/footer-img.png");
    background-position: bottom;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.text-hover {
    transition: all 0.4s ease-in-out;
}

.text-hover:hover {
    color: var(--color-orange) !important;
}

.footer-icon-hovers svg {
    transform: translateY(0px);
    transition: all 0.4s ease-in-out;
}

.footer-icon-hovers:hover svg path {
    fill: var(--color-orange);

}

.footer-icon-hovers:hover svg {
    fill: var(--color-orange);
    transform: translateY(-3px);
}

.carousel-bg-shadow {
    background: #FFFFFF;
    box-shadow: 4px 5px 25px rgba(0, 0, 0, 0.08) !important;
}

.p-5-43 {
    padding: 5px 43px 6px 7px !important;
}

.p-5-26 {
    padding: 5px 26px 6px 7px !important;
}

.border-bottom-1 {
    border-bottom: 1px solid black !important;
    border: none;
}

.learn-more-btn {
    font-size: var(--font-md);
    border: 1px solid var(--color-white);
    border-radius: 0px 50px 50px 35px;
    background-color: transparent;
    color: var(--color-white);
    transition: all 0.4s ease-in-out;
    padding: 24px 26px 23px 7px;
}

.learn-more-btn:hover {
    background-color: var(--color-white);
    color: var(--color-orange);
}

.contact-us-btn {
    font-size: var(--font-md);
    border: 1px solid var(--color-orange);
    border-radius: 0px 50px 50px 35px;
    background-color: var(--color-orange);
    color: var(--color-white);
    transition: all 0.4s ease-in-out;
    padding: 24px 26px 23px 7px;
}

.contact-us-btn:hover {
    background-color: var(--color-white);
    color: var(--color-orange);
}

.contact-us-btn.contact-us-btn-svg path {
    transition: all 0.4s ease-in-out;
}

.contact-us-btn:hover .contact-us-btn-svg path {
    fill: var(--color-orange);
}

.contact-us-btn .contact-us-btn-svg-arrow {
    transition: all 0.4s ease-in-out;
}

.contact-us-btn:hover .contact-us-btn-svg-arrow {
    fill: var(--color-white) !important;
}

.box-bg-color {
    position: relative;
    background: #FFFFFF;
    border-radius: 5px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    border-bottom: 6px solid var(--color-orange);
    box-shadow: 6px 7px 42px rgba(0, 0, 0, 0.07);
}

/* .box-bg-color::after {
    content: "";
    position: absolute;
    width: 6px;
    height: 25%;
    right: -1px;
    background-color: var(--color-orange);
    top: 40%;
} */



.pervious-btn-hover {
    transition: all 0.4s ease-in-out;
}

.pervious-btn-hover:hover {
    fill: #F04900;
}

.pervious-btn-hover:hover .icon-hovers {
    fill: #FFFFFF;
}

@media (min-width:1198.98) {
    .mt-30 {
        margin-top: -30px;
    }


}



@media (min-width:575.98px) and (max-width:1200px) {
    .bg-orange-img {
        background-size: 100% 94%;
    }
}

@media (max-width:576px) {
    .bg-orange-img {
        background-size: 100% 97%;
    }

    .learn-more-btn-svg {
        width: 50px;
    }

    .p-sm-16 {
        padding: 0px 16px 0px 7px !important;
    }
}

.bg-img {
    background-image: url('../img/png/carousel-bg.png');
    background-repeat: no-repeat;


    justify-content: center;
    align-items: center;
    background-position: center;
    background-size: 100%;
}

.para-size {
    max-width: 425px;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
}

.carousel-btns {
    bottom: 20%;
    left: 50%;
    z-index: 2222;


}

.prev,
.next {
    cursor: pointer;
}

@media (max-width:576px) {
    .para-size {
        max-width: 300px;
        font-size: 16px;
    }
}

@media (max-width:360px) {
    .bg-img {
        background-image: none;
        background: linear-gradient(99.72deg, #FF721A -2.47%, #F04900 102.69%);
    }

    .bg-img .slick-slide {
        padding-top: 0px !important;
        padding-bottom: 0px !important;
    }
}

.z-index-2 {
    z-index: 2;
}

.z-index-1 {
    z-index: -1;
}

.contact-input label {
    color: var(--color-black);
    font-size: var(--font-lg);
}

.contact-input input {
    border: none;
    border-bottom: 1px solid var(--color-black);
    padding: 8px 0;
    font-size: var(--font-md);
}

.contact-input textarea {
    border: none;
    border-bottom: 1px solid var(--color-black);
    padding: 8px 0;
    font-size: var(--font-md);
}

.input {
    border: none;
    border-bottom: 1px solid black;
    padding: 29px 0;
    color: var(--color-black);
    font-size: var(--font-lg);
    max-width: 495px;
    width: 100%;
}

.input::placeholder {
    color: var(--color-black);
}

input:focus {
    outline: none;
}

textarea:focus {
    outline: none;
}

textarea {
    resize: none !important;
}

.overlay {
    background: url("../img/png/contact-us.png");
    background-position-x: right;
    background-position-y: center;
    background-repeat: no-repeat;
    background-size: 49% 110%;
}



@media (min-width:992px) and (max-width:1400px) {
    .overlay {
        background-size: 50% 100%;
    }
}

@media (max-width:992px) {
    .overlay {
        background-image: unset;
    }
}

.h-90 {
    height: 90%;
}










/* carousel css start */
.hero-carousel {
    background-image: url('../img/png/Frame\ 3.png');
    background-repeat: no-repeat;
    background-size: 110% 97%;
    padding-bottom: 84px;
}

.line-h-155 {
    line-height: 155%;
}

.line-h-100 {
    line-height: 100%;
}

/* .carousel-img-shadow {
  box-shadow: 13px 18px 51px rgba(151, 93, 93, 0.25) !important;
} */

.top-left-img {
    top: 15%;
    left: -1%;
    width: 59px;
    height: auto;
    position: absolute;

}

.top-center-img {
    width: 137px;
    height: 81px;
    position: absolute;
    left: 25%;
    top: -7%;
}

.bottom-left-img {
    position: absolute;
    width: 110px;
    height: 110px;
    bottom: 5%;
    left: -15%;
}

.right-end-img {
    position: absolute;
    right: -3%;
    bottom: 10%;
}

.play-icon-svg {
    cursor: pointer;
    z-index: 2;
    bottom: 14%;
    left: 13%;
}

.hero-carousel .slick-list {
    position: relative !important;
}

.hero-carousel .slick-dots {
    position: absolute !important;
    left: 25% !important;
    transform: rotate(302deg) !important;
    bottom: 0% !important;
}

.hero-carousel .slick-dots {
    list-style: none;
}


.hero-carousel .slick-dots li button {
    font-size: 0;
    border: none;
    width: 14px;
    height: 14px;
    background-color: #C4C4C4;
    border-radius: 50%;


}

.hero-carousel .slick-dots li button:focus,
.hero-carousel .slick-dots li button:hover {
    background-color: #F04900;
}



.hero-carousel .slick-dots [aria-selected="true"] {
    background-color: #F04900;

}




@media (max-width:575.98px) {
    .px-xs-0 {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }

    .hero-carousel {
        background-size: 113% 80%;
        background-position: left -35px bottom -0px;
        padding-bottom: 44px;
    }

    .play-icon-svg {
        left: 12%;
        bottom: 10%;
    }

    .play-icon-svg svg {
        width: 42px;
    }

    .hero-carousel .slick-dots {
        top: 100.5%;
        transform: rotate(110deg) !important;
        left: 47% !important;
    }

    .bottom-left-img {
        position: absolute;
        width: 70px;
        height: 70px;
        bottom: 5%;
        left: -5%;
    }

    .top-center-img {
        width: 100px;
        height: 60px;
        position: absolute;
        left: 25%;
        top: 0%;
    }
}

@media (min-width:576px) and (max-width:767.98px) {
    .hero-carousel {
        background-size: 113% 80%;
        background-position: left -45px bottom 20px;
    }

    .play-icon-svg {
        left: 12%;
        bottom: 12%;
    }

    .play-icon-svg svg {
        width: 60px;
    }

    .hero-carousel .slick-dots {
        top: 99% !important;
        transform: rotate(300deg) !important;
        left: 28% !important;
    }

    .bottom-left-img {
        position: absolute;
        width: 70px;
        height: 70px;
        bottom: 5%;
        left: -5%;
    }

    .top-center-img {
        width: 100px;
        height: 60px;
        position: absolute;
        left: 25%;
        top: 0%;
    }
}

@media (min-width:768px) and (max-width:991.98px) {
    .hero-carousel {
        background-size: 113% 80%;
        background-position: left -54px bottom 0px;
    }

    .hero-carousel .slick-dots {
        top: 94% !important;
        transform: rotate(300deg) !important;
        left: 28% !important;
    }
}

@media (min-width:992px) and (max-width:1199.98px) {
    .hero-carousel {
        background-size: 110% 97%;
        background-position: left -84px bottom 0px;
    }

    .play-icon-svg {
        left: 16%;
    }

    .hero-carousel .slick-dots {
        top: 92% !important;
        left: 28% !important;
    }
}

@media (min-width:1200px) and (max-width:1399.98px) {
    .hero-carousel {
        position: absolute;
        background-size: 110%;
        width: 50%;
        right: 0px;
        top: 0px;
        background-position: left -45px bottom 10px;
    }

    .play-icon-svg {
        left: 13%;
        bottom: 10%;
    }

    .play-icon-svg svg {
        width: 66px;
    }

    .hero-carousel .slick-dots {
        top: 94% !important;
        left: 24% !important;
    }
}

@media (min-width:1400px) and (max-width:1599.98px) {
    .hero-carousel {
        position: absolute;
        background-size: 110%;
        width: 50%;
        right: 0px;
        top: 0px;
        background-position: left -45px bottom 0px;
    }

    .play-icon-svg svg {
        width: 72px;
    }

    .hero-carousel .slick-dots {
        bottom: 0% !important;
    }

    .hero-carousel .slick-dots {
        bottom: -3.5% !important;
    }
}

@media (min-width:1600px) and (max-width:1799.98px) {
    .hero-carousel {
        position: absolute;
        background-size: 110%;
        width: 50%;
        right: 0px;
        top: 0px;
        background-position: left -55px bottom 0px;
    }

    .hero-carousel .slick-dots {
        bottom: -1% !important;
    }
}

@media (min-width:1800px) {
    .hero-carousel {
        position: absolute;
        background-size: 110%;
        width: 50%;
        right: 0px;
        top: 0px;
        background-position: left -65px bottom 0px;
    }
}

@media (max-width:1199.98px) {
    .h-100-before-xl {
        height: 100%;
    }
}

@media (min-width:1400px) {
    .w-xxl-655px {
        width: 655px !important;
    }

    .h-xxl-776px {
        height: 776px !important;
    }
}

/* carousel css end*/
/* COMPONENT CLASS CSS END   */

.box-1 {
    height: 270px;
    overflow-y: scroll;
}

.box-2 {
    height: 323px;
    overflow-y: scroll;
}

.box-3 {
    height: 240px;
    overflow-y: scroll;
}

/* width */
.what-we-do-box::-webkit-scrollbar {
    width: 6px;
    height: 145px;
}

/* Track */


/* Handle */
.what-we-do-box::-webkit-scrollbar-thumb {
    background: #FF721A;

}

/* Handle on hover */
.what-we-do-box::-webkit-scrollbar-thumb:hover {
    background: transparent;
}



.modal-dialog-scrollable .modal-body::-webkit-scrollbar {
    width: 6px;
    height: 145px;
}

/* Track */


/* Handle */
.modal-dialog-scrollable .modal-body::-webkit-scrollbar-thumb {
    background: #FF721A;

}

/* Handle on hover */
.modal-dialog-scrollable .modal-body::-webkit-scrollbar-thumb:hover {
    background: transparent;
}

@media (min-width:1600px) {
    .mt-150 {
        margin-top: 150px !important;
    }
}

@media (min-width:1920.98px) {
    .mt-xxl-320 {
        margin-top: 320px !important;
    }
}

.text-justify {
    text-align: justify;
}

.btn:focus {
    box-shadow: none !important;
}

.cursor-pointer-none {
    cursor: unset;
}