@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');



@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}




:root {
    --color: #1d2475;
    --white: white;
    --black: black;

}

.reviews {
    overflow-x: hidden;
}


.our-class-1 a{
  color:var(--color);
  text-decoration: none;
}

/*/////////////// Top Nav //////////////////// */


.top-nav {
    width: 100%;
    height: 45px;
    /* background-image: url(../Images/TEMP-NAV/G.jpg); */
    background-position: center;
    background-color: #1d2475;
    background-size: cover;
    padding: 1%;
    color: var(--color);
    text-align: center;

}

.top-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.top-container .topNav-social {
    width: 20%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-container .topNav-social span {
    color: white;
    margin-left: 20px;
    font-family: "DM Sans", sans-serif !important;
    font-weight: 600;
}

.top-container .topNav-social a {
    color: white;
    font-size: 14px;

}

.top-container .topNav-social a:hover {
    color: var(--color);
}

.top-container .topNav-conatact a {
    font-size: 15px;
    color: white;
    text-decoration: none;
}

.top-container .topNav-conatact span {
    color: white;
    margin-left: 90px;
    font-weight: 600;
    font-family: "DM Sans", sans-serif !important;
}

.top-container .topNav-conatact a:hover {
    color: #414143;
}

/* .top-container .topNav-conatact i{
    margin-left:5px;
} */
.topNav-conatact {
    width: 25%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-right: 75px;

}

.top-container .topNav-conatact a:hover {
    color: black;
}

.top-container .topNav-social a:hover {
    color: black;
}



/*/////////////// NAvbar section /////////////////////////////////////// */

.navbar {
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: space-between;
    background-color: transparent;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    /* position: sticky !important;  */
    top: 0 !important;
    font-family: "DM Sans", sans-serif !important;
}

.nav-overlay {
    width: 100%;
    height: 100%;
    /* background-image: url(../Images/TEMP-NAV/P.jpg); */
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.3;
    z-index: -1;
}

/* navbar for logo  */
.navbar .nav_brand {
    width: 12%;
    height: 100%;
}

.navbar .nav_brand .nav-logo {
    width: 100%;
    height: 100%;
    margin-left: 90px;
}

.navbar .nav_brand .nav-logo img {
    width: 50%;
    height: 100%;

}

/*////////////// for menus //////// */

.navbar .nav-menus {
    width: 50%;
    display: flex;
    align-items: center;

}

.navbar .nav-menus .nav-item {
    width: 100%;
    display: flex;
    gap: 30px;
    align-items: center;
    margin-bottom: 0;
}

.navbar .nav-menus .nav-item li {
    list-style: none;
    position: relative;
    display: inline-block;
}

.navbar .nav-menus .nav-item li .dropdown {
    /* display: none; */
    position: absolute;
    width: 240px;
    top: 100%;
    left: 0;
    padding-left: 0;
    z-index: 999 !important;
    text-align: center;
    opacity: 0;
    transition: opacity 1s ease, transform 1s ease;
    transform: translateY(-10px);
    background-color: var(--color);
}

.navbar .nav-menus .nav-item li .dropdown li:hover {
    background-color: var(--color);
}

.navbar .nav-menus .nav-item li .dropdown li:hover a {
    color: var(--white);
}

.navbar .nav-menus .nav-item li:hover .dropdown {
    display: inline;
    background-color: var(--color);
    opacity: 1;
    transform: translateY(10px);
}

.navbar .nav-menus .nav-item li .dropdown li {

    width: 100%;
}

.navbar .nav-menus .nav-item li .dropdown li a {
    padding: 2%;
    font-size: 16px;
}



.navbar .nav-menus ul li a {
    color: var(--black);
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 1s;
    gap: 5px;
}

.navbar .nav-menus ul li a:hover {
    color: var(--color);
}

.navbar .nav-menus ul li a span {
    position: relative;

}


.navbar .nav-menus ul li a span i {
    position: absolute;
    font-weight: 900;
    color: var(--color);
}


.navbar .nav-menus ul li a:hover .fa-plus {
    scale: 0;
    rotate: 180deg;
}

/* hamburger  */

.navbar .ham-1 {
    padding: 2%;
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: none;
    display: none;
    position: relative;
}

.navbar .ham-1 div {
    width: 30px;
    height: 2px;
    transition: 0.5s;
    margin-bottom: 25%;
    background-color: #1d2475 !important;
}

.h-cross1 {
    margin-top: 0;
    transform: rotate(45deg);
    margin-bottom: 0 !important;
    position: absolute;
    width: 70% !important;
    height: 2px !important;

}

.h-cross2 {
    margin-bottom: 0 !important;
    margin-top: 0;
    position: absolute;
    display: none;
    width: 70% !important;
    height: 2px !important;
}

.h-cross3 {
    transform: rotate(-45deg);
    position: absolute;
    margin-top: 0;
    width: 70% !important;
    height: 2px !important;
    margin-bottom: 0 !important;

}

.pro-active {
    left: 0% !important;
    top: 60px !important;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    z-index: 5;
}


/*///////////////////////// HERO SECTION //////////////////////// */

.hero-section {
    width: 100%;
    height: 85vh;
    margin-bottom: 5%;
    position: relative;
    z-index: -1;
}


.hero-section .carousel {
    height: 100%;

}

.hero-section .carousel .carousel-inner {
    position: relative;
}

.hero-section .carousel .carousel-inner .carousel-item {
    width: 100%;
    height: 100%;
    position: relative;

}


.hero-section .carousel .carousel-inner .carousel-item .carousel-caption {
    position: absolute;
    top: 0;
    left: 50%;
    width: 80%;
    height: 100%;
    transform: translate(-50%, 0);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.hero-section .carousel .carousel-inner .hero-overlay {
    width: 100%;
    height: 100%;
    background-color: var(--black);
    position: absolute;
    left: 0;
    top: 0;
    opacity: 50%;

}

.hero-section .carousel button {
    position: absolute;
    z-index: 555 !important;
    display: none;
}

.hero-section .carousel .carousel-inner .carousel-item img {
    width: 100%;
    height: 85vh;
    object-fit: cover;
}

.carousel-caption h1 span {
    font-size: 40px;
    font-weight: 600;
    color: var(--white);
    font-family: "DM Sans", sans-serif !important;

}

.carousel-caption h2 {
    font-weight: 700;
}


.about-1 {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: auto;
}

.about-2 {
    width: 47%;
    height: auto;
}

.about-2 h3 {
    color: var(--color);
    font-size: 25px;
    font-family: "DM Sans", sans-serif !important;
    font-weight: 600;
}

.about-2 h2 {
    color: var(--black);
    font-weight: 600;
    font-size: 34px;
    font-family: "DM Sans", sans-serif !important;
}

.about-2 .about-ownerAdmin h5{
    font-weight: 700;
    color: var(--color);
    text-transform: uppercase;
}

.about-2 .about-ownerAdmin h5 span{
    font-family: "DM Sans", sans-serif !important;
    font-weight: 700;
    color: #b44daf;
}


.about-2 img {
    width: 100%;
    height: 400px;
}

.about-2 p {
    font-family: "Archivo", sans-serif;
}

.variation-1 {
    display: flex;
    width: 80%;
}

.variation {
    width: 47%;
}

.variation h5 {
    font-family: "Archivo", sans-serif;
    font-size: 18px;
}

.variation i {
    font-size: 16px;
    padding-right: 8px;
    color: var(--color);

}

.our-class h3 {
    text-align: center;
    margin-top: 60px;
    color: var(--color);
    font-weight: 600;
    font-size: 25px;
    font-family: "DM Sans", sans-serif !important;
}

.our-class h2 {
    text-align: center;
}

.our-class p {
    text-align: center;
}


.our-class-1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    height: auto;
    margin-top: 25px;
}

.our-class-2 {
    margin-top: 20px;
    text-align: center;
    width: 30%;

    padding: 20px;
}

.our-class-2 h4 {
    font-family: "DM Sans", sans-serif !important;
    font-weight: 600;
}

.our-class-2 h6 {
    color: var(--color);
}

.our-class-2 p {
    font-family: "Archivo", sans-serif;
    color: #7a7a7a;

}

.our-class-2 img {
    width: 17%;
    margin-bottom: 10px;

}

.class-3 {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.our-class-2:hover {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    animation: float 2s infinite linear !important;

}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}




.why-choose {
    margin-top: 80px;
    background-image: url(../Images/Pics/whychoose-img.jpg);
    width: 100%;
    height: 350px;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.why-ch {
    display: flex;
    justify-content: space-between;
    width: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.why-choose-1 {
    width: 47%;
    margin-top: 50px;


}

.why-choose-1 {
    width: 100%;
    height: auto;


}

.why-choose-1 h3 {
    color: var(--white);
    font-size: 25px;
    font-family: "DM Sans", sans-serif !important;
}

.why-choose-1 h4 {
    color: var(--white);
    font-family: "DM Sans", sans-serif !important;
    font-size: 30px;
}

.sec-1 {
    margin-top: 7%;
    padding-left: 170px;
    display: flex;
    justify-content: flex-end;
}


.btn {
    background-color: #1d2475 !important;
    height: 45px;
}


.btn-a {
    width: auto;
    margin-top: 2%;
    padding: 1% 1.5%;
    background-color: #ff7703 !important;
    color: var(--black) !important;

    text-decoration: none;
    border-radius: 5px;
    font-family: "Archivo", sans-serif;
}

.btn a {
    color: var(--white);
    text-decoration: none !important;
}

.btn:hover a {
    color: var(--white);
    background-color: var(--blue);
}

.btn:hover {
    background-color: var(--black) !important;

}



.why-choose-od {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: auto;
    margin-top: -40px;
    position: relative;
    z-index: 1;

}

.why-choose-od-1 {
    width: 22%;
    height: auto;
    text-align: center;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 26px;
    background-color: white;
}

.why-choose-od-1 img {
    width: 20%;
    margin-bottom: 8px;
}


.why-choose-od-1 p {
    color: #7a7a7a;
}

.why-choose-od-1 h4 {
    color: var(--black);
    font-weight: 600;
    font-size: 24px;
}


.faq {
    text-align: center;
    margin-top: 70px;
    margin-bottom: 10px;
    font-family: "DM Sans", sans-serif !important;

}

.achieve img {
    width: 25%;
}

.faq h2 {
    color: var(--color);
    font-weight: 700;
    font-size: 24px;
    font-family: "DM Sans", sans-serif;
}


.accordion-item h2 {
    font-family: "DM Sans", sans-serif;
}




.reviews {
    text-align: center;
}

.reviews h2 {
    margin-top: 40px;
    font-size: 25px;
    margin-bottom: 25px;
    color: var(--blue);
    font-weight: 600;
}

.dMfzQA {
    margin-top: 40px;
}

.huflDf {
    line-height: 1.32;
    text-wrap: balance;
    font-size: 24px;
    font-weight: bold;
    font-style: normal;
    color: var(--color);

}





/* footer area one */
.footer-area-one .footer-area-one-bg {
    padding: 80px 0 0px 0;
    background-color: var(--color);
    margin-top: 80px;
}

.footer-logo img {
    height: 80px;
}

.footer-widget h4 {
    font-family: "DM Sans", sans-serif;

}

.footer-area-one .footer-widget .footer-content {
    margin-top: 30px;
}

.footer-area-one .footer-widget .footer-content p {
    color: var(--white);
    font-family: 'Roboto', sans-serif;
}

.footer-area-one .footer-widget .footer-content .social {
    margin-top: 40px;
}

.footer-area-one .footer-widget .footer-content .social ul {
    display: flex;
}

.footer-area-one .footer-widget .footer-content .social li {
    display: flex;
    width: 30px;
    margin-right: 10px;
}

.footer-area-one .footer-widget .footer-content .social a {
    width: 30px;
    height: 30px;
    color: var(--color);
    text-align: center;
    line-height: 30px;
    border-radius: 5px;
    background-color: white;
}


.footer-area-one .footer-widget .footer-content .social a:hover {
    background-color: var(--color);
    color: white;
}

.footer-area-one .footer-widget .footer-title {
    margin-bottom: 40px;
    font-size: 24px;
    color: white;
    margin-top: 20px;
}

.footer-area-one .footer-widget p {
    color: var(--white);
    font-family: 'Roboto', sans-serif;
}

.footer-area-one .footer-widget .footer-link ul li {
    margin-bottom: 10px;
}

.footer-area-one .footer-widget .footer-link a {
    color: #ffffffcc;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
}

.footer-area-one .footer-widget .footer-link a i {
    font-size: 14px;
    margin-right: 10px;
}

.footer-area-one .footer-widget .footer-link a:hover {
    color: var(--black);
}

.footer-area-one .footer-widget .footer-address ul li {
    margin-bottom: 20px;
}

.footer-area-one .footer-widget .footer-address ul li .icon {
    margin-right: 20px;
}

.footer-area-one .footer-widget .footer-address ul li .icon i {
    width: 40px;
    height: 40px;
    color: var(--color);
    font-size: 20px;
    text-align: center;
    line-height: 40px;
    border-radius: 5px;
    background-color: white;
}

.footer-area-one .footer-widget .footer-address ul li .content a {
    color: #ffffffcc;
    display: block;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
}

/* 
.footer-area-one .footer-widget .footer-address ul li .content a:hover {
    color: var(--color);
} */

.footer-area-one .footer-widget .footer-newsletter {
    margin-top: 30px;
}

.footer-area-one .footer-widget .footer-newsletter input {
    width: 100%;
    height: 57px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    padding: 0 110px 0 15px;
    border: 0;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid transparent;
    transition: var(--transision);
}

.footer-area-one .footer-widget .footer-newsletter input:focus {
    border-color: rgba(255, 102, 0, 0.5);
}

.footer-area-one .footer-widget .footer-newsletter p {
    font-family: 'Roboto', sans-serif;
}

.footer-area-one .footer-widget .footer-newsletter button {
    width: 75px;
    height: 47px;
    border-radius: 5px;
    background-color: var(--color);
    color: var(--white);
    border: 0;
    font-size: 20px;
    top: 45%;
    right: 5px;
    transform: translateY(-50%);
    transition: var(--transision);
}

.footer-area-one .footer-widget .footer-newsletter button:hover {
    background-color: var(--white);
    color: var(--color);
}

.footer-bottom {
    border-top: 1px solid #333F4D;
    margin-top: 60px;
    padding: 30px 0;


}

.footer-bottom a {
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
}

.footer-bottom a {
    color: #ffffffcc;
}

.footer-bottom a span {
    font-size: 18px;
    color: var(--color);
}

.footer-bottom .links ul li {
    display: inline-block;
}

.footer-bottom .links ul li {
    margin-left: 30px;
}

.footer-bottom .links ul li:first-child {
    margin-left: 0px;
}

.footer-bottom .links ul li a {
    color: #ffffffcc;
    ;
}

.footer-bottom .links ul li a:hover {
    color: var(--color);
}

/* footer area two */

.footer-area-two .footer-area-two-bg {
    padding: 80px 0 0px 0;
    background-color: var(--black);
}

.footer-area-two .footer-widget .footer-content {
    margin-top: 20px;
}

.footer-area-two .footer-widget .footer-content p {
    color: var(--white);
}

.footer-area-two .footer-widget .footer-content .social {
    margin-top: 30px;
}

.footer-area-two .footer-widget .footer-content .social li {
    display: inline-block;
    margin-right: 15px;
}

.footer-area-two .footer-widget .footer-content .social a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-area-two .footer-widget .footer-content .social a:hover {
    color: var(--primary);
}

.footer-area-two .footer-widget .footer-title {
    margin-bottom: 30px;
    font-size: 24px;
    color: var(--white);
    margin-top: 20px;
}

.footer-area-two .footer-widget p {
    color: var(--white);
}

.footer-area-two .footer-widget .footer-link ul li {
    margin-bottom: 10px;

}

.footer-area-two .footer-widget .footer-link ul li a {
    text-decoration: none !important;
}

.footer-area-two .footer-widget .footer-link a {
    color: var(--white);


}

.footer-area-two .footer-widget .footer-link a i {
    font-size: 14px;
    margin-right: 10px;
}

.footer-area-two .footer-widget .footer-link a:hover {
    color: var(--primary)
}

.footer-area-two .footer-widget .footer-newsletter {
    margin-top: 30px;
}

.footer-area-two .footer-widget .footer-gallery ul {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.footer-area-two .footer-widget .footer-gallery ul li {
    width: 30%;
}

.footer-area-two .footer-widget .footer-gallery ul li img {
    width: 100%;
}

.footer-area-two .footer-bottom p {
    color: var(--white);
}

.footer-area-two .footer-bottom .links ul li a {
    color: var(--white);
}

.footer-bottom a span {
    color: white !important;
}

ul {
    padding-left: 0rem;
    list-style-type: none;

}




/* reveal */


/* reveal 2*/

.reveal2 {
    position: relative;
    transform: translateX(-500px);
    opacity: 0;
    transition: all 1s ease;
}

.reveal2.active {
    transform: translateX(0px);
    opacity: 1;
}

/* reveal 3*/

.reveal3 {
    position: relative;
    transform: translateY(200px);
    opacity: 0;
    transition: all 1s ease;
}

.reveal3.active {
    transform: translateY(0px);
    opacity: 1;
}


.syb-sec {
    margin-top:40px;
    text-align: center;
}

.syb-sec h3{
    color: var(--color);
    font-size:24px;
    margin-bottom:15px;
}

.syb-sec h5{
    font-size:17px;
    color:rgb(27, 27, 27); 
}



 

.up-content {
    position: fixed;
    right: 20px;
    z-index: 555;
    bottom: 40px;
    text-decoration: none;
}

.up-content .up-arrow {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    border: 2px solid #1d2475;
    justify-content: center;
    background-color: #1d2475;
}

.up-content .up-arrow i {
    font-size: 20px;
    color: var(--white);
}

.pno {
    position: fixed;
    z-index: 555;
    bottom: 30px;
    left: 20px;
    text-decoration: none;
    scale: 0.8;
}

.pno .phone {
    width: 60px;
    height: 60px;
    background-color: #1d2475;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    border: 2px solid var(--color);
    border-radius: 50%;
}















/*//////////////////////////// Mediaquery //////////////////////*/



@media screen and (max-width:991px) {
    .navbar .ham-1 {
        display: flex;
    }


    .navbar .nav-menus {
        width: 80%;
        position: absolute;
        background-color: var(--color);
        top: 60px;
        left: -100%;
        text-align: center;
        padding: 0%;
        min-height: auto;
        transition: 1s;
        z-index: 5;

    }

    .navbar .nav-menus ul {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 60px;
        padding: 3%;
        height: 100%;
    }

    .navbar .nav-menus ul li {
        list-style: none;
        width: 100%;
    }


    .navbar .nav-menus ul li a {
        color: var(--white);
        text-decoration: none;
        font-size: 14px;
        font-weight: 700;
        display: flex;
        text-align: justify !important;
        align-items: center;
        justify-content: space-evenly;
        transition: 1s;
        gap: 5px;
    }

    .navbar .nav-menus ul li a span {
        position: relative;
        z-index: 2;
    }


    .navbar .nav-menus ul li a span i {
        position: absolute;
        font-weight: 900;
        color: var(--white);
    }



    .navbar .nav-menus .nav-item li .dropdown {
        display: none;
        position: relative;
        width: 100%;
        min-height: 280px;
        top: 100%;
        right: 0;
        padding-left: 0;
        z-index: 999;
        text-align: justify;
        opacity: 0;
        transition: opacity 1s ease, transform 1s ease;
        transform: translateY(-10px);
        background-color: var(--white);
    }

    .navbar .nav-menus .nav-item li:hover .dropdown {
        display: block;
        background-color: var(--white);
        opacity: 1;
        transform: translateY(0);
    }

}

/* //////////////////////////////////////////////////////////////////////////////////////////// */



@media screen and (max-width:320px) {


    /*/////////////// Top Nav //////////////////// */


    .top-nav {
        width: 100%;
        /* background-image: url(../Images/TEMP-NAV/G.jpg); */
        background-position: center;
        background-color: #1d2475;
        background-size: cover;
        padding: 1%;
        color: var(--color);
    }

    .top-container {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }

    .top-container .topNav-social {
        width: 20%;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
    }

    .top-container .topNav-social span {
        font-size: 10px;
        margin-left: 0px;
    }

    .top-container .topNav-social i {
        font-size: 10px;
        gap: 0 !important;
    }

    .top-container .topNav-social a {
        color: var(--white);
    }

    .top-container .topNav-social a:hover {
        color: var(--color);
    }

    .top-container .topNav-conatact a {
        color: var(--white);
        font-size: 10px;
    }

    .top-container .topNav-conatact span {
        font-size: 10px;
        margin-left: 0px;
    }

    .top-container .topNav-conatact a:hover {
        color: var(--color);
    }

    .topNav-conatact {
        width: 40%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        margin-right: 0px;
    }


    .navbar .nav-menus .nav-item li .dropdown {
        display: none;
        position: relative;
        width: 100%;
        min-height: 280px;
        top: 100%;
        right: 0;
        padding-left: 0;
        z-index: 999;
        text-align: justify;
        opacity: 0;
        transition: opacity 1s ease, transform 1s ease;
        transform: translateY(-10px);
        background-color: var(--white);
    }

    .navbar .nav-menus .nav-item li:hover .dropdown {
        display: block;
        background-color: var(--white);
        opacity: 1;
        transform: translateY(0);
    }

    /* navbar for logo  */
    .navbar .nav_brand {
        width: 22%;
        height: 100%;
    }



    .navbar .nav_brand .nav-logo {
        width: 100%;
        height: 100%;
        margin-left: 20px;
    }

    .navbar .nav_brand .nav-logo img {
        width: 100%;
        height: 100%;
    }



    /*///////////////////////// HERO SECTION //////////////////////// */

    .hero-section {
        width: 100%;
        height: 60vh;
        margin-bottom: 5%;
        position: relative;
        z-index: -1;
    }


    .hero-section .carousel {
        height: 100%;

    }

    .hero-section .carousel .carousel-inner {
        position: relative;
    }

    .hero-section .carousel .carousel-inner .carousel-item {
        width: 100%;
        height: 100%;
        position: relative;

    }


    .hero-section .carousel .carousel-inner .carousel-item .carousel-caption {
        position: absolute;
        top: 0;
        left: 50%;
        width: 80%;
        height: 100%;
        transform: translate(-50%, 0);
        z-index: 4;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }


    .hero-section .carousel .carousel-inner .hero-overlay {
        width: 100%;
        height: 100%;
        background-color: var(--black);
        position: absolute;
        left: 0;
        top: 0;
        opacity: 50%;

    }

    .hero-section .carousel button {
        position: absolute;
        z-index: 555 !important;
        display: none;
    }

    .hero-section .carousel .carousel-inner .carousel-item img {
        width: 100%;
        height: 60vh;
        object-fit: cover;
    }

    .carousel-caption h1 span {
        font-size: 40px;
        font-weight: 600;
        color: var(--color);
    }

    .carousel-caption h2 {
        font-weight: 700;
    }




    .about-1 {
        display: flex;
        flex-direction: column-reverse;
        justify-content: space-between;
        width: 100%;
        height: auto;
        margin-top: 40px;
    }

    .about-2 {
        width: 100%;
        height: auto;
    }

    .about-2 h3 {
        color: var(--color);
        font-size: 25px;
        font-family: "DM Sans", sans-serif !important;
        font-weight: 600;
    }

    .about-2 h2 {
        color: var(--black);
        font-weight: 600;
        font-size: 25px;
        font-family: "DM Sans", sans-serif !important;
    }

    .about-2 img {
        width: 100%;
        height: auto;
        margin-top: 15px;
    }

    .about-2 p {
        font-family: "Archivo", sans-serif;
    }

    .variation-1 {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .variation {
        width: 100%;
    }

    .variation h5 {
        font-family: "Archivo", sans-serif;
        font-size: 18px;
    }

    .variation i {
        font-size: 16px;
        padding-right: 8px;
        color: var(--color);

    }


    .our-class h3 {
        text-align: center;
        margin-top: 40px;
    }

    .our-class h2 {
        text-align: center;
    }

    .our-class p {
        text-align: center;
    }


    .our-class-1 {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: space-between;
        width: 100%;
        height: auto;
        margin-top: 15px;
    }

    .our-class-2 {
        margin-top: 20px;
        text-align: center;
        width: 100%;

        padding: 10px;
    }

    .our-class-2 h4 {
        font-family: "DM Sans", sans-serif !important;
        font-weight: 600;
    }

    .our-class-2 h6 {
        color: var(--color);
    }

    .our-class-2 p {
        font-family: "Archivo", sans-serif;
        color: #7a7a7a;

    }

    .our-class-2 img {
        width: 15%;
        margin-bottom: 10px;

    }

    .class-3 {
        box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    }

    .our-class-2:hover {
        box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
        animation: float 2s infinite linear !important;

    }

    @keyframes float {
        0% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-10px);
        }

        100% {
            transform: translateY(0);
        }
    }



    .why-choose {
        margin-top: 80px;
        background-image: url(../Images/Pics/whychoose-img.jpg);
        width: 100%;
        height: 350px;
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
    }

    .why-ch {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 80%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .why-choose-1 {
        width: 47%;
        margin-top: 20px;


    }

    .why-choose-1 {
        width: 100%;
        height: auto;


    }

    .why-choose-1 h3 {
        color: var(--color);
        font-size: 25px;
        font-family: "DM Sans", sans-serif !important;
    }

    .why-choose-1 h4 {
        color: var(--white);
        font-family: "DM Sans", sans-serif !important;
        font-size: 30px;
    }

    .sec-1 {
        margin-top: 7%;
        padding-left: 10px;
        display: flex;
        justify-content: flex-start;
    }


    .btn {
        background-color: #1d2475 !important;
        height: 45px;
    }


    .btn-a {
        width: auto;
        margin-top: 2%;
        padding: 1% 1.5%;
        background-color: #ff7703 !important;
        color: var(--black) !important;

        text-decoration: none;
        border-radius: 5px;
        font-family: "Archivo", sans-serif;
    }

    .btn a {
        color: var(--white);
        text-decoration: none !important;
    }

    .btn:hover a {
        color: var(--white);
        background-color: var(--blue);
    }

    .btn:hover {
        background-color: var(--black) !important;

    }



    .why-choose-od {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 100%;
        height: auto;
        margin-top: -20px;
        position: relative;
        z-index: 1;

    }

    .why-choose-od-1 {
        width: 100%;
        height: auto;
        text-align: center;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
        padding: 22px;
        background-color: white;
        margin-bottom: 20px;
    }

    .why-choose-od-1 img {
        width: 20%;
        margin-bottom: 8px;
    }


    .why-choose-od-1 p {
        color: #7a7a7a;
    }

    .why-choose-od-1 h4 {
        color: var(--black);
        font-weight: 700;
        font-size: 24px;
    }



    .faq {
        text-align: center;
        margin-top: 20px;
        margin-bottom: 10px;
        font-family: "DM Sans", sans-serif !important;

    }



    .footer-area-one .footer-widget .footer-newsletter button {
        width: 75px;
        height: 47px;
        border-radius: 5px;
        background-color: var(--color);
        color: var(--white);
        border: 0;
        font-size: 20px;
        top: 45%;
        right: 5px;
        transform: translateY(-50%);
        transition: var(--transision);
    }








}

@media screen and (min-width:321px) and (max-width:425px) {


    /*/////////////// Top Nav //////////////////// */


    .top-nav {
        width: 100%;
        /* background-image: url(../Images/TEMP-NAV/G.jpg); */
        background-position: center;
        background-color: #1d2475;
        background-size: cover;
        padding: 1%;
        color: var(--color);
    }

    .top-container {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }

    .top-container .topNav-social {
        width: 20%;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
    }

    .top-container .topNav-social span {
        font-size: 10px;
        margin-left: 0px;
    }

    .top-container .topNav-social i {
        font-size: 10px;
        gap: 0 !important;
    }

    .top-container .topNav-social a {
        color: var(--white);
    }

    .top-container .topNav-social a:hover {
        color: var(--color);
    }

    .top-container .topNav-conatact a {
        color: var(--white);
        font-size: 10px;
    }

    .top-container .topNav-conatact span {
        font-size: 10px;
        margin-left: 0px;
    }

    .top-container .topNav-conatact a:hover {
        color: var(--color);
    }

    .topNav-conatact {
        width: 40%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        margin-right: 0px;
    }


    .navbar .nav-menus .nav-item li .dropdown {
        display: none;
        position: relative;
        width: 100%;
        min-height: 280px;
        top: 100%;
        right: 0;
        padding-left: 0;
        z-index: 999;
        text-align: justify;
        opacity: 0;
        transition: opacity 1s ease, transform 1s ease;
        transform: translateY(-10px);
        background-color: var(--white);
    }

    .navbar .nav-menus .nav-item li:hover .dropdown {
        display: block;
        background-color: var(--white);
        opacity: 1;
        transform: translateY(0);
    }


    /* navbar for logo  */
    .navbar .nav_brand {
        width: 22%;
        height: 100%;
    }



    .navbar .nav_brand .nav-logo {
        width: 100%;
        height: 100%;
        margin-left: 30px;
    }

    .navbar .nav_brand .nav-logo img {
        width: 100%;
        height: 100%;
    }



    /*///////////////////////// HERO SECTION //////////////////////// */

    .hero-section {
        width: 100%;
        height: 60vh;
        margin-bottom: 5%;
        position: relative;
        z-index: -1;
    }


    .hero-section .carousel {
        height: 100%;

    }

    .hero-section .carousel .carousel-inner {
        position: relative;
    }

    .hero-section .carousel .carousel-inner .carousel-item {
        width: 100%;
        height: 100%;
        position: relative;

    }


    .hero-section .carousel .carousel-inner .carousel-item .carousel-caption {
        position: absolute;
        top: 0;
        left: 50%;
        width: 80%;
        height: 100%;
        transform: translate(-50%, 0);
        z-index: 4;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }


    .hero-section .carousel .carousel-inner .hero-overlay {
        width: 100%;
        height: 100%;
        background-color: var(--black);
        position: absolute;
        left: 0;
        top: 0;
        opacity: 50%;

    }

    .hero-section .carousel button {
        position: absolute;
        z-index: 555 !important;
        display: none;
    }

    .hero-section .carousel .carousel-inner .carousel-item img {
        width: 100%;
        height: 60vh;
        object-fit: cover;
    }

    .carousel-caption h1 span {
        font-size: 40px;
        font-weight: 600;
        color: var(--color);
    }

    .carousel-caption h2 {
        font-weight: 700;
    }





    .about-1 {
        display: flex;
        flex-direction: column-reverse;
        justify-content: space-between;
        width: 100%;
        height: auto;
        margin-top: 40px;
    }

    .about-2 {
        width: 100%;
        height: auto;
    }

    .about-2 h3 {
        color: var(--color);
        font-size: 25px;
        font-family: "DM Sans", sans-serif !important;
        font-weight: 600;
    }

    .about-2 h2 {
        color: var(--black);
        font-weight: 600;
        font-size: 25px;
        font-family: "DM Sans", sans-serif !important;
    }

    .about-2 img {
        width: 100%;
        height: auto;
        margin-top: 15px;
    }

    .about-2 p {
        font-family: "Archivo", sans-serif;
    }

    .variation-1 {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .variation {
        width: 100%;
    }

    .variation h5 {
        font-family: "Archivo", sans-serif;
        font-size: 18px;
    }

    .variation i {
        font-size: 16px;
        padding-right: 8px;
        color: var(--color);

    }


    .our-class h3 {
        text-align: center;
        margin-top: 40px;
    }

    .our-class h2 {
        text-align: center;
    }

    .our-class p {
        text-align: center;
    }


    .our-class-1 {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: space-between;
        width: 100%;
        height: auto;
        margin-top: 15px;
    }

    .our-class-2 {
        margin-top: 20px;
        text-align: center;
        width: 100%;

        padding: 10px;
    }

    .our-class-2 h4 {
        font-family: "DM Sans", sans-serif !important;
        font-weight: 600;
    }

    .our-class-2 h6 {
        color: var(--color);
    }

    .our-class-2 p {
        font-family: "Archivo", sans-serif;
        color: #7a7a7a;

    }

    .our-class-2 img {
        width: 15%;
        margin-bottom: 10px;

    }

    .class-3 {
        box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    }

    .our-class-2:hover {
        box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
        animation: float 2s infinite linear !important;

    }

    @keyframes float {
        0% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-10px);
        }

        100% {
            transform: translateY(0);
        }
    }





    .why-choose {
        margin-top: 80px;
        background-image: url(../Images/Pics/whychoose-img.jpg);
        width: 100%;
        height: 350px;
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
    }

    .why-ch {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 80%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .why-choose-1 {
        width: 47%;
        margin-top: 20px;


    }

    .why-choose-1 {
        width: 100%;
        height: auto;


    }

    .why-choose-1 h3 {
        color: var(--color);
        font-size: 25px;
        font-family: "DM Sans", sans-serif !important;
    }

    .why-choose-1 h4 {
        color: var(--white);
        font-family: "DM Sans", sans-serif !important;
        font-size: 30px;
    }

    .sec-1 {
        margin-top: 7%;
        padding-left: 10px;
        display: flex;
        justify-content: flex-start;
    }


    .btn {
        background-color: #1d2475 !important;
        height: 45px;
    }


    .btn-a {
        width: auto;
        margin-top: 2%;
        padding: 1% 1.5%;
        background-color: #ff7703 !important;
        color: var(--black) !important;

        text-decoration: none;
        border-radius: 5px;
        font-family: "Archivo", sans-serif;
    }

    .btn a {
        color: var(--white);
        text-decoration: none !important;
    }

    .btn:hover a {
        color: var(--white);
        background-color: var(--blue);
    }

    .btn:hover {
        background-color: var(--black) !important;

    }



    .why-choose-od {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 100%;
        height: auto;
        margin-top: -20px;
        position: relative;
        z-index: 1;

    }

    .why-choose-od-1 {
        width: 100%;
        height: auto;
        text-align: center;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
        padding: 20px;
        background-color: white;
        margin-bottom: 20px;
    }

    .why-choose-od-1 img {
        width: 20%;
        margin-bottom: 8px;
    }


    .why-choose-od-1 p {
        color: #7a7a7a;
    }

    .why-choose-od-1 h4 {
        color: var(--black);
        font-weight: 700;
        font-size: 24px;
    }


    .faq {
        text-align: center;
        margin-top: 20px;
        margin-bottom: 10px;
        font-family: "DM Sans", sans-serif !important;

    }


    .footer-area-one .footer-widget .footer-newsletter button {
        width: 75px;
        height: 47px;
        border-radius: 5px;
        background-color: var(--color);
        color: var(--white);
        border: 0;
        font-size: 20px;
        top: 45%;
        right: 5px;
        transform: translateY(-50%);
        transition: var(--transision);
    }
















}


@media screen and (min-width:426px) and (max-width:600px) {


    /*/////////////// Top Nav //////////////////// */


    .top-nav {
        width: 100%;
        /* background-image: url(../Images/TEMP-NAV/G.jpg); */
        background-position: center;
        background-color: #1d2475;
        background-size: cover;
        padding: 1%;
        color: var(--color);
    }

    .top-container {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }

    .top-container .topNav-social {
        width: 20%;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
    }

    .top-container .topNav-social span {
        font-size: 10px;
        margin-left: 0px;
    }

    .top-container .topNav-social i {
        font-size: 10px;
        gap: 0 !important;
    }

    .top-container .topNav-social a {
        color: var(--white);
    }

    .top-container .topNav-social a:hover {
        color: var(--color);
    }

    .top-container .topNav-conatact a {
        color: var(--white);
        font-size: 10px;
    }

    .top-container .topNav-conatact span {
        font-size: 10px;
        margin-left: 0px;
    }

    .top-container .topNav-conatact a:hover {
        color: var(--color);
    }

    .topNav-conatact {
        width: 40%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        margin-right: 0px;
    }


    .navbar .nav-menus .nav-item li .dropdown {
        display: none;
        position: relative;
        width: 100%;
        min-height: 280px;
        top: 100%;
        right: 0;
        padding-left: 0;
        z-index: 999;
        text-align: justify;
        opacity: 0;
        transition: opacity 1s ease, transform 1s ease;
        transform: translateY(-10px);
        background-color: var(--white);
    }

    .navbar .nav-menus .nav-item li:hover .dropdown {
        display: block;
        background-color: var(--white);
        opacity: 1;
        transform: translateY(0);
    }


    /* navbar for logo  */
    .navbar .nav_brand {
        width: 17%;
        height: 100%;
    }



    .navbar .nav_brand .nav-logo {
        width: 100%;
        height: 100%;
        margin-left: 30px;
    }

    .navbar .nav_brand .nav-logo img {
        width: 100%;
        height: 100%;
    }



    /*///////////////////////// HERO SECTION //////////////////////// */

    .hero-section {
        width: 100%;
        height: 60vh;
        margin-bottom: 5%;
        position: relative;
        z-index: -1;
    }


    .hero-section .carousel {
        height: 100%;

    }

    .hero-section .carousel .carousel-inner {
        position: relative;
    }

    .hero-section .carousel .carousel-inner .carousel-item {
        width: 100%;
        height: 100%;
        position: relative;

    }


    .hero-section .carousel .carousel-inner .carousel-item .carousel-caption {
        position: absolute;
        top: 0;
        left: 50%;
        width: 80%;
        height: 100%;
        transform: translate(-50%, 0);
        z-index: 4;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }


    .hero-section .carousel .carousel-inner .hero-overlay {
        width: 100%;
        height: 100%;
        background-color: var(--black);
        position: absolute;
        left: 0;
        top: 0;
        opacity: 50%;

    }

    .hero-section .carousel button {
        position: absolute;
        z-index: 555 !important;
        display: none;
    }

    .hero-section .carousel .carousel-inner .carousel-item img {
        width: 100%;
        height: 60vh;
        object-fit: cover;
    }

    .carousel-caption h1 span {
        font-size: 40px;
        font-weight: 600;
        color: var(--color);
    }

    .carousel-caption h2 {
        font-weight: 700;
    }




    .about-1 {
        display: flex;
        flex-direction: column-reverse;
        justify-content: space-between;
        width: 100%;
        height: auto;
        margin-top: 40px;
    }

    .about-2 {
        width: 100%;
        height: auto;
    }

    .about-2 h3 {
        color: var(--color);
        font-size: 25px;
        font-family: "DM Sans", sans-serif !important;
        font-weight: 600;
    }

    .about-2 h2 {
        color: var(--black);
        font-weight: 600;
        font-size: 25px;
        font-family: "DM Sans", sans-serif !important;
    }

    .about-2 img {
        width: 100%;
        height: auto;
        margin-top: 15px;
    }

    .about-2 p {
        font-family: "Archivo", sans-serif;
    }

    .variation-1 {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .variation {
        width: 100%;
    }

    .variation h5 {
        font-family: "Archivo", sans-serif;
        font-size: 18px;
    }

    .variation i {
        font-size: 16px;
        padding-right: 8px;
        color: var(--color);

    }


    .our-class h3 {
        text-align: center;
        margin-top: 40px;
    }

    .our-class h2 {
        text-align: center;
    }

    .our-class p {
        text-align: center;
    }


    .our-class-1 {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: space-between;
        width: 100%;
        height: auto;
        margin-top: 15px;
    }

    .our-class-2 {
        margin-top: 20px;
        text-align: center;
        width: 100%;

        padding: 10px;
    }

    .our-class-2 h4 {
        font-family: "DM Sans", sans-serif !important;
        font-weight: 600;
    }

    .our-class-2 h6 {
        color: var(--color);
    }

    .our-class-2 p {
        font-family: "Archivo", sans-serif;
        color: #7a7a7a;

    }

    .our-class-2 img {
        width: 15%;
        margin-bottom: 10px;

    }

    .class-3 {
        box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    }

    .our-class-2:hover {
        box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
        animation: float 2s infinite linear !important;

    }

    @keyframes float {
        0% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-10px);
        }

        100% {
            transform: translateY(0);
        }
    }



    .why-choose {
        margin-top: 80px;
        background-image: url(../Images/Pics/whychoose-img.jpg);
        width: 100%;
        height: 350px;
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
    }

    .why-ch {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 80%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .why-choose-1 {
        width: 47%;
        margin-top: 20px;


    }

    .why-choose-1 {
        width: 100%;
        height: auto;


    }

    .why-choose-1 h3 {
        color: var(--color);
        font-size: 25px;
        font-family: "DM Sans", sans-serif !important;
    }

    .why-choose-1 h4 {
        color: var(--white);
        font-family: "DM Sans", sans-serif !important;
        font-size: 30px;
    }

    .sec-1 {
        margin-top: 7%;
        padding-left: 10px;
        display: flex;
        justify-content: flex-start;
    }


    .btn {
        background-color: #1d2475 !important;
        height: 45px;
    }


    .btn-a {
        width: auto;
        margin-top: 2%;
        padding: 1% 1.5%;
        background-color: #ff7703 !important;
        color: var(--black) !important;

        text-decoration: none;
        border-radius: 5px;
        font-family: "Archivo", sans-serif;
    }

    .btn a {
        color: var(--white);
        text-decoration: none !important;
    }

    .btn:hover a {
        color: var(--white);
        background-color: var(--blue);
    }

    .btn:hover {
        background-color: var(--black) !important;

    }



    .why-choose-od {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 100%;
        height: auto;
        margin-top: -20px;
        position: relative;
        z-index: 1;

    }

    .why-choose-od-1 {
        width: 100%;
        height: auto;
        text-align: center;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
        padding: 20px;
        background-color: white;
        margin-bottom: 20px;
    }

    .why-choose-od-1 img {
        width: 20%;
        margin-bottom: 8px;
    }


    .why-choose-od-1 p {
        color: #7a7a7a;
    }

    .why-choose-od-1 h4 {
        color: var(--black);
        font-weight: 700;
        font-size: 24px;
    }


    .faq {
        text-align: center;
        margin-top: 20px;
        margin-bottom: 10px;
        font-family: "DM Sans", sans-serif !important;

    }


    .footer-area-one .footer-widget .footer-newsletter button {
        width: 75px;
        height: 47px;
        border-radius: 5px;
        background-color: var(--color);
        color: var(--white);
        border: 0;
        font-size: 20px;
        top: 45%;
        right: 5px;
        transform: translateY(-50%);
        transition: var(--transision);
    }






}




@media screen and (min-width:601px) and (max-width:768px) {




    /*/////////////// Top Nav //////////////////// */


    .top-nav {
        width: 100%;
        /* background-image: url(../Images/TEMP-NAV/G.jpg); */
        background-position: center;
        background-color: #1d2475;
        background-size: cover;
        padding: 1%;
        color: var(--color);
    }

    .top-container {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }

    .top-container .topNav-social {
        width: 20%;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
    }

    .top-container .topNav-social span {
        font-size: 10px;
        margin-left: 0px;
    }

    .top-container .topNav-social i {
        font-size: 10px;
        gap: 0 !important;
    }

    .top-container .topNav-social a {
        color: var(--white);
    }

    .top-container .topNav-social a:hover {
        color: var(--color);
    }

    .top-container .topNav-conatact a {
        color: var(--white);
        font-size: 10px;
    }

    .top-container .topNav-conatact span {
        font-size: 10px;
        margin-left: 0px;
    }

    .top-container .topNav-conatact a:hover {
        color: var(--color);
    }

    .topNav-conatact {
        width: 40%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        margin-right: 0px;
    }


    .navbar .nav-menus .nav-item li .dropdown {
        display: none;
        position: relative;
        width: 100%;
        min-height: 280px;
        top: 100%;
        right: 0;
        padding-left: 0;
        z-index: 999;
        text-align: justify;
        opacity: 0;
        transition: opacity 1s ease, transform 1s ease;
        transform: translateY(-10px);
        background-color: var(--white);
    }

    .navbar .nav-menus .nav-item li:hover .dropdown {
        display: block;
        background-color: var(--white);
        opacity: 1;
        transform: translateY(0);
    }




    /* navbar for logo  */
    .navbar .nav_brand {
        width: 12%;
        height: 100%;
    }



    .navbar .nav_brand .nav-logo {
        width: 100%;
        height: 100%;
        margin-left: 30px;
    }

    .navbar .nav_brand .nav-logo img {
        width: 100%;
        height: 100%;
    }



    /*///////////////////////// HERO SECTION //////////////////////// */

    .hero-section {
        width: 100%;
        height: 60vh;
        margin-bottom: 5%;
        position: relative;
        z-index: -1;
    }


    .hero-section .carousel {
        height: 100%;

    }

    .hero-section .carousel .carousel-inner {
        position: relative;
    }

    .hero-section .carousel .carousel-inner .carousel-item {
        width: 100%;
        height: 100%;
        position: relative;

    }


    .hero-section .carousel .carousel-inner .carousel-item .carousel-caption {
        position: absolute;
        top: 0;
        left: 50%;
        width: 80%;
        height: 100%;
        transform: translate(-50%, 0);
        z-index: 4;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }


    .hero-section .carousel .carousel-inner .hero-overlay {
        width: 100%;
        height: 100%;
        background-color: var(--black);
        position: absolute;
        left: 0;
        top: 0;
        opacity: 50%;

    }

    .hero-section .carousel button {
        position: absolute;
        z-index: 555 !important;
        display: none;
    }

    .hero-section .carousel .carousel-inner .carousel-item img {
        width: 100%;
        height: 60vh;
        object-fit: cover;
    }

    .carousel-caption h1 span {
        font-size: 40px;
        font-weight: 600;
        color: var(--color);
    }

    .carousel-caption h2 {
        font-weight: 700;
    }




    .about-1 {
        display: flex;
        flex-direction: column-reverse;
        justify-content: space-between;
        width: 100%;
        height: auto;
        margin-top: 40px;
    }

    .about-2 {
        width: 100%;
        height: auto;
    }

    .about-2 h3 {
        color: var(--color);
        font-size: 25px;
        font-family: "DM Sans", sans-serif !important;
        font-weight: 600;
    }

    .about-2 h2 {
        color: var(--black);
        font-weight: 600;
        font-size: 25px;
        font-family: "DM Sans", sans-serif !important;
    }

    .about-2 img {
        width: 100%;
        height: auto;
        margin-top: 15px;
    }

    .about-2 p {
        font-family: "Archivo", sans-serif;
    }

    .variation-1 {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .variation {
        width: 100%;
    }

    .variation h5 {
        font-family: "Archivo", sans-serif;
        font-size: 18px;
    }

    .variation i {
        font-size: 16px;
        padding-right: 8px;
        color: var(--color);

    }


    .our-class h3 {
        text-align: center;
        margin-top: 40px;
    }

    .our-class h2 {
        text-align: center;
    }

    .our-class p {
        text-align: center;
    }


    .our-class-1 {
        display: flex;
        flex-direction: column !important;
        flex-wrap: wrap;
        justify-content: space-between;
        width: 100%;
        height: auto;
        margin-top: 15px;
    }

    .our-class-2 {
        margin-top: 20px;
        text-align: center;
        width: 100%;

        padding: 10px;
    }

    .our-class-2 h4 {
        font-family: "DM Sans", sans-serif !important;
        font-weight: 600;
    }

    .our-class-2 h6 {
        color: var(--color);
    }

    .our-class-2 p {
        font-family: "Archivo", sans-serif;
        color: #7a7a7a;

    }

    .our-class-2 img {
        width: 15%;
        margin-bottom: 10px;

    }

    .class-3 {
        box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    }

    .our-class-2:hover {
        box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
        animation: float 2s infinite linear !important;

    }

    @keyframes float {
        0% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-10px);
        }

        100% {
            transform: translateY(0);
        }
    }






    .why-choose {
        margin-top: 80px;
        background-image: url(../Images/Pics/whychoose-img.jpg);
        width: 100%;
        height: 350px;
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
    }

    .why-ch {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 80%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .why-choose-1 {
        width: 47%;
        margin-top: 20px;


    }

    .why-choose-1 {
        width: 100%;
        height: auto;


    }

    .why-choose-1 h3 {
        color: var(--color);
        font-size: 25px;
        font-family: "DM Sans", sans-serif !important;
    }

    .why-choose-1 h4 {
        color: var(--white);
        font-family: "DM Sans", sans-serif !important;
        font-size: 30px;
    }

    .sec-1 {
        margin-top: 7%;
        padding-left: 10px;
        display: flex;
        justify-content: flex-start;
    }


    .btn {
        background-color: #1d2475 !important;
        height: 45px;
    }


    .btn-a {
        width: auto;
        margin-top: 2%;
        padding: 1% 1.5%;
        background-color: #ff7703 !important;
        color: var(--black) !important;

        text-decoration: none;
        border-radius: 5px;
        font-family: "Archivo", sans-serif;
    }

    .btn a {
        color: var(--white);
        text-decoration: none !important;
    }

    .btn:hover a {
        color: var(--white);
        background-color: var(--blue);
    }

    .btn:hover {
        background-color: var(--black) !important;

    }



    .why-choose-od {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 100%;
        height: auto;
        margin-top: -20px;
        position: relative;
        z-index: 1;

    }

    .why-choose-od-1 {
        width: 100%;
        height: auto;
        text-align: center;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
        padding: 20px;
        background-color: white;
        margin-bottom: 20px;
    }

    .why-choose-od-1 img {
        width: 20%;
        margin-bottom: 8px;
    }


    .why-choose-od-1 p {
        color: #7a7a7a;
    }

    .why-choose-od-1 h4 {
        color: var(--black);
        font-weight: 700;
        font-size: 24px;
    }


    .faq {
        text-align: center;
        margin-top: 20px;
        margin-bottom: 10px;
        font-family: "DM Sans", sans-serif !important;

    }



    

    .footer-area-one .footer-widget .footer-newsletter button {
        width: 75px;
        height: 47px;
        border-radius: 5px;
        background-color: var(--color);
        color: var(--white);
        border: 0;
        font-size: 20px;
        top: 45%;
        right: 5px;
        transform: translateY(-50%);
        transition: var(--transision);
    }






}




@media screen and (min-width:769px) and (max-width:900px) {



    /*/////////////// Top Nav //////////////////// */


    .top-nav {
        width: 100%;
        /* background-image: url(../Images/TEMP-NAV/G.jpg); */
        background-position: center;
        background-color: #1d2475;
        background-size: cover;
        padding: 1%;
        color: var(--color);
    }

    .top-container {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }

    .top-container .topNav-social {
        width: 20%;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
    }

    .top-container .topNav-social span {
        font-size: 10px;
        margin-left: 0px;
    }

    .top-container .topNav-social i {
        font-size: 10px;
        gap: 0 !important;
    }

    .top-container .topNav-social a {
        color: var(--white);
    }

    .top-container .topNav-social a:hover {
        color: var(--color);
    }

    .top-container .topNav-conatact a {
        color: var(--white);
        font-size: 10px;
    }

    .top-container .topNav-conatact span {
        font-size: 10px;
        margin-left: 0px;
    }

    .top-container .topNav-conatact a:hover {
        color: var(--color);
    }

    .topNav-conatact {
        width: 40%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        margin-right: 0px;
    }


    .navbar .nav-menus .nav-item li .dropdown {
        display: none;
        position: relative;
        width: 100%;
        min-height: 280px;
        top: 100%;
        right: 0;
        padding-left: 0;
        z-index: 999;
        text-align: justify;
        opacity: 0;
        transition: opacity 1s ease, transform 1s ease;
        transform: translateY(-10px);
        background-color: var(--white);
    }

    .navbar .nav-menus .nav-item li:hover .dropdown {
        display: block;
        background-color: var(--white);
        opacity: 1;
        transform: translateY(0);
    }




    /* navbar for logo  */
    .navbar .nav_brand {
        width: 10%;
        height: 100%;
    }



    .navbar .nav_brand .nav-logo {
        width: 100%;
        height: 100%;
        margin-left: 30px;
    }

    .navbar .nav_brand .nav-logo img {
        width: 100%;
        height: 100%;
    }



    /*///////////////////////// HERO SECTION //////////////////////// */

    .hero-section {
        width: 100%;
        height: 60vh;
        margin-bottom: 5%;
        position: relative;
        z-index: -1;
    }


    .hero-section .carousel {
        height: 100%;

    }

    .hero-section .carousel .carousel-inner {
        position: relative;
    }

    .hero-section .carousel .carousel-inner .carousel-item {
        width: 100%;
        height: 100%;
        position: relative;

    }


    .hero-section .carousel .carousel-inner .carousel-item .carousel-caption {
        position: absolute;
        top: 0;
        left: 50%;
        width: 80%;
        height: 100%;
        transform: translate(-50%, 0);
        z-index: 4;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }


    .hero-section .carousel .carousel-inner .hero-overlay {
        width: 100%;
        height: 100%;
        background-color: var(--black);
        position: absolute;
        left: 0;
        top: 0;
        opacity: 50%;

    }

    .hero-section .carousel button {
        position: absolute;
        z-index: 555 !important;
        display: none;
    }

    .hero-section .carousel .carousel-inner .carousel-item img {
        width: 100%;
        height: 60vh;
        object-fit: cover;
    }

    .carousel-caption h1 span {
        font-size: 40px;
        font-weight: 600;
        color: var(--color);
    }

    .carousel-caption h2 {
        font-weight: 700;
    }






    .about-1 {
        display: flex;
        flex-direction: column-reverse;
        justify-content: space-between;
        width: 100%;
        height: auto;
        margin-top: 40px;
    }

    .about-2 {
        width: 100%;
        height: auto;
    }

    .about-2 h3 {
        color: var(--color);
        font-size: 25px;
        font-family: "DM Sans", sans-serif !important;
        font-weight: 600;
    }

    .about-2 h2 {
        color: var(--black);
        font-weight: 600;
        font-size: 25px;
        font-family: "DM Sans", sans-serif !important;
    }

    .about-2 img {
        width: 100%;
        height: auto;
        margin-top: 15px;
    }

    .about-2 p {
        font-family: "Archivo", sans-serif;
    }

    .variation-1 {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .variation {
        width: 100%;
    }

    .variation h5 {
        font-family: "Archivo", sans-serif;
        font-size: 18px;
    }

    .variation i {
        font-size: 16px;
        padding-right: 8px;
        color: var(--color);

    }


    .our-class h3 {
        text-align: center;
        margin-top: 40px;
    }

    .our-class h2 {
        text-align: center;
    }

    .our-class p {
        text-align: center;
    }


    .our-class-1 {
        display: flex;
        flex-direction: column !important;
        flex-wrap: wrap;
        justify-content: space-between;
        width: 100%;
        height: auto;
        margin-top: 15px;
    }

    .our-class-2 {
        margin-top: 20px;
        text-align: center;
        width: 100%;

        padding: 10px;
    }

    .our-class-2 h4 {
        font-family: "DM Sans", sans-serif !important;
        font-weight: 600;
    }

    .our-class-2 h6 {
        color: var(--color);
    }

    .our-class-2 p {
        font-family: "Archivo", sans-serif;
        color: #7a7a7a;

    }

    .our-class-2 img {
        width: 15%;
        margin-bottom: 10px;

    }

    .class-3 {
        box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    }

    .our-class-2:hover {
        box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
        animation: float 2s infinite linear !important;

    }

    @keyframes float {
        0% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-10px);
        }

        100% {
            transform: translateY(0);
        }
    }




    .why-choose {
        margin-top: 80px;
        background-image: url(../Images/Pics/whychoose-img.jpg);
        width: 100%;
        height: 350px;
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
    }

    .why-ch {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 80%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .why-choose-1 {
        width: 47%;
        margin-top: 20px;


    }

    .why-choose-1 {
        width: 100%;
        height: auto;


    }

    .why-choose-1 h3 {
        color: var(--color);
        font-size: 25px;
        font-family: "DM Sans", sans-serif !important;
    }

    .why-choose-1 h4 {
        color: var(--white);
        font-family: "DM Sans", sans-serif !important;
        font-size: 30px;
    }

    .sec-1 {
        margin-top: 7%;
        padding-left: 10px;
        display: flex;
        justify-content: flex-start;
    }


    .btn {
        background-color: #1d2475 !important;
        height: 45px;
    }


    .btn-a {
        width: auto;
        margin-top: 2%;
        padding: 1% 1.5%;
        background-color: #ff7703 !important;
        color: var(--black) !important;

        text-decoration: none;
        border-radius: 5px;
        font-family: "Archivo", sans-serif;
    }

    .btn a {
        color: var(--white);
        text-decoration: none !important;
    }

    .btn:hover a {
        color: var(--white);
        background-color: var(--blue);
    }

    .btn:hover {
        background-color: var(--black) !important;

    }



    .why-choose-od {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 100%;
        height: auto;
        margin-top: -20px;
        position: relative;
        z-index: 1;

    }

    .why-choose-od-1 {
        width: 100%;
        height: auto;
        text-align: center;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
        padding: 20px;
        background-color: white;
        margin-bottom: 20px;
    }

    .why-choose-od-1 img {
        width: 20%;
        margin-bottom: 8px;
    }


    .why-choose-od-1 p {
        color: #7a7a7a;
    }

    .why-choose-od-1 h4 {
        color: var(--black);
        font-weight: 700;
        font-size: 24px;
    }


    .faq {
        text-align: center;
        margin-top: 20px;
        margin-bottom: 10px;
        font-family: "DM Sans", sans-serif !important;

    }


    

    .footer-area-one .footer-widget .footer-newsletter button {
        width: 75px;
        height: 47px;
        border-radius: 5px;
        background-color: var(--color);
        color: var(--white);
        border: 0;
        font-size: 20px;
        top: 45%;
        right: 5px;
        transform: translateY(-50%);
        transition: var(--transision);
    }









}


@media screen and (min-width:992px) and (max-width:1024px) {



    /*/////////////// Top Nav //////////////////// */


    .top-nav {
        width: 100%;
        /* background-image: url(../Images/TEMP-NAV/G.jpg); */
        background-position: center;
        background-color: #1d2475;
        background-size: cover;
        padding: 1%;
        color: var(--color);
    }

    .top-container {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }

    .top-container .topNav-social {
        width: 20%;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
    }

    .top-container .topNav-social span {
        font-size: 10px;
        margin-left: 0px;
    }

    .top-container .topNav-social i {
        font-size: 10px;
        gap: 0 !important;
    }

    .top-container .topNav-social a {
        color: var(--white);
    }

    .top-container .topNav-social a:hover {
        color: var(--color);
    }

    .top-container .topNav-conatact a {
        color: var(--white);
        font-size: 10px;
    }

    .top-container .topNav-conatact span {
        font-size: 10px;
        margin-left: 0px;
    }

    .top-container .topNav-conatact a:hover {
        color: var(--color);
    }

    .topNav-conatact {
        width: 40%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        margin-right: 0px;
    }


    /* navbar for logo  */
    .navbar .nav_brand {
        width: 10%;
        height: 100%;
    }


    .navbar .nav-menus {
        width: 70%;
    }

    .navbar .nav-menus .nav-item {
        width: 100%;
        display: flex;
        gap: 30px;
    }

    .navbar .nav-menus .nav-item li .dropdown {
        display: none;
        position: relative;
        width: 100%;
        min-height: 280px;
        top: 100%;
        right: 0;
        padding-left: 0;
        z-index: 999;
        text-align: justify;
        opacity: 0;
        transition: opacity 1s ease, transform 1s ease;
        transform: translateY(-10px);
        background-color: var(--white);
    }

    .navbar .nav-menus .nav-item li:hover .dropdown {
        display: block;
        background-color: var(--white);
        opacity: 1;
        transform: translateY(0);
    }



    .navbar .nav_brand .nav-logo {
        width: 100%;
        height: 100%;
        margin-left: 30px;
    }

    .navbar .nav_brand .nav-logo img {
        width: 100%;
        height: 100%;
    }



    /*///////////////////////// HERO SECTION //////////////////////// */

    .hero-section {
        width: 100%;
        height: 60vh;
        margin-bottom: 5%;
        position: relative;
        z-index: -1;
    }


    .hero-section .carousel {
        height: 100%;

    }

    .hero-section .carousel .carousel-inner {
        position: relative;
    }

    .hero-section .carousel .carousel-inner .carousel-item {
        width: 100%;
        height: 100%;
        position: relative;

    }


    .hero-section .carousel .carousel-inner .carousel-item .carousel-caption {
        position: absolute;
        top: 0;
        left: 50%;
        width: 80%;
        height: 100%;
        transform: translate(-50%, 0);
        z-index: 4;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }


    .hero-section .carousel .carousel-inner .hero-overlay {
        width: 100%;
        height: 100%;
        background-color: var(--black);
        position: absolute;
        left: 0;
        top: 0;
        opacity: 50%;

    }

    .hero-section .carousel button {
        position: absolute;
        z-index: 555 !important;
        display: none;
    }

    .hero-section .carousel .carousel-inner .carousel-item img {
        width: 100%;
        height: 60vh;
        object-fit: cover;
    }

    .carousel-caption h1 span {
        font-size: 40px;
        font-weight: 600;
        color: var(--color);
    }

    .carousel-caption h2 {
        font-weight: 700;
    }


    .btn {
        background-color: #1d2475 !important;
        height: 45px;
    }






}