@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Baloo+Bhaina+2:wght@500&family=IBM+Plex+Sans:ital,wght@0,100;1,400&family=Roboto+Slab&display=swap');


body {
    line-height: 1.8;
    /* font-family: Gill Sans, sans-serif; */
    /* font-weight: 400; */
    font-family: Montserrat, sans-serif;
}

body.hidden-scroling {
    overflow-y: hidden;
}

* {
    margin: 0;
    box-sizing: border-box;
}

.container1 {
    width: 100%;
    margin-top: 0;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}


/* HEADER HAI YAHA PE  */

.header {
    /* position: fixed; */
    width: 100%;
    left: 0;
    top: 0;
    z-index: 999;
    padding: 0px;
    margin-top: 0;
    /* padding: 15px 0; */
}

.header-main {
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    /* padding: 15px 0; */
    /* border-radius: 10px; */
    box-shadow: 0 2px 5px rgb(0, 0, 0, 0.2);
}

.header .logo {
    padding: 0;
    margin-top: 1rem;
    /* margin-right: 3rem; */
}

.header .logo2 {
    padding: 0;
    margin-top: 1rem;
    margin-bottom: 1rem;
    margin-right: 3rem;
    padding-top: 5px;
}


@media (max-width:767px) {

    .header .logo2 {
        min-height: 50px;

    }
}


@media (max-width:1023px) {

    .header .logo2 {
        min-height: 50px;

    }
}

@media (max-width:1600px) {

    .header .logo2 {
        min-height: 50px;

    }
}



.header .logo a {
    font-size: 18px;
    text-transform: capitalize;
    color: #fff;
    font-weight: 600;
    font-family: Montserrat, sans-serif;
}

.header .logo a img {
    width: 100%;
    height: 50px !important;
    /* padding-right: 2rem !important; */
}

.header .nav-menu {
    padding: 0 50px;
    margin: 0 100px;
}

.header .menu>.menu-item {
    display: inline-block;
    margin-left: 10px;
    position: relative;
}

.header .menu>.menu-item>a {
    display: block;
    text-decoration: none;
    padding: 12px 0;
    font-size: 18px;
    color: #725e5e;
    font-family: Gill Sans, sans-serif;
    font-weight: 400;
    transition: all 0.3s ease;
}

.header .menu>.menu-item>.sub-menu>.menu-item:hover>a,
.header .menu>.menu-item:hover>a {
    color: #f27430;
}

.header .menu>.menu-item>.sub-menu {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    width: 220px;
    position: absolute;
    left: 0;
    top: 100%;
    background-color: #ffffff;
    padding: 10px 0;
    border-top: 3px solid #39b7ff;
    transform: translateY(10px);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

@media (min-width: 992px) {
    .header .menu>.menu-item-has-children:hover>.sub-menu {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .header .menu>.menu-item-has-children:hover>a .plus:after {
        transform: translate(-50%, -50%) rotate(0deg);
    }
}

.header .menu>.menu-item>.sub-menu>.menu-item {
    display: block;
}

.header .menu>.menu-item>.sub-menu>.menu-item>a {
    display: block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    transition: all 0.3s ease;
    text-transform: capitalize;
}

.header .open-nav-menu {
    height: 34px;
    width: 40px;
    margin-right: 15px;
    margin-top: 5px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.header .open-nav-menu span {
    display: block;
    height: 3px;
    width: 24px;
    background-color: #39b7ff;
    position: relative;
}

.header .open-nav-menu span:before,
.header .open-nav-menu span:after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #39b7ff;
    box-sizing: border-box;
}

.header .open-nav-menu span:before {
    top: -7px;
}

.header .open-nav-menu span::after {
    top: 7px;
}

.header .close-nav-menu {
    height: 40px;
    width: 40px;
    background-color: #ffffff;
    margin: 0 0 15px 15px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
}

.header .close-nav-menu img {
    width: 16px;
}

.header .menu-overlay {
    position: fixed;
    z-index: 999;
    background-color: rgba(0, 0, 0, 0.5);
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.header .menu-overlay.active {
    visibility: visible;
    opacity: 1;
}


/* responsive ka sara material yaha pe hai  */

@media (max-width: 1160px) {
    .header .nav-menu {
        position: fixed;
        right: -300px;
        visibility: hidden;
        width: 280px;
        height: 100%;
        top: 0;
        overflow-y: auto;
        z-index: 1000;
        padding: 15px 0;
        background-color: #222222;
        transition: all 0.5s ease;
    }

    .header .nav-menu.open {
        visibility: visible;
        right: -110px;
    }

    .header .menu>.menu-item {
        display: block;
        margin: 0;
    }

    .header .menu>.menu-item-has-children>a {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header .menu>.menu-item>a {
        color: #ffffff;
        padding: 12px 15px;
        border-bottom: 1px solid #333333;
    }

    .header .menu>.menu-item:first-child>a {
        border-top: 1px solid #333333;
    }

    .header .menu>.menu-item>a .plus:before,
    .header .menu>.menu-item>a .plus:after {
        background-color: #ffffff
    }

    .header .menu>.menu-item-has-children.active>a .plus:after {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    .header .menu>.menu-item>.sub-menu {
        width: 100%;
        position: relative;
        opacity: 1;
        visibility: visible;
        border: none;
        background-color: transparent;
        box-shadow: none;
        transform: translateY(0px);
        padding: 0px;
        left: auto;
        top: auto;
        max-height: 0;
        overflow: hidden;
    }

    .header .menu>.menu-item>.sub-menu>.menu-item>a {
        padding: 12px 45px;
        color: #ffffff;
        border-bottom: 1px solid #333333;
    }

    .header .close-nav-menu,
    .header .open-nav-menu {
        display: flex;
    }
}



.ebat {
    padding: 20px 30px;
    text-decoration: none;
    color: white;
    background-color: #f27430;
    /* font-weight: 600; */
}

/* crousal start from here  */

#img1 {

    width: 100%;
    display: block;
    min-height: 40vh;
    background-image: url("../images/exploredull.png");
    background-position: center top;
    background-size: cover;

}

.heading h1 {
    padding-top: 7rem;
    align-items: center;
    text-align: center;
    color: #fff;
    font-weight: 600;
}


/* .carousel-caption {
    margin-bottom: 30px;
} */



/* the about section content css is starts from here  */


.padding-bottom-50 {
    padding-bottom: 50px;
}

.padding-top-80 {
    padding-top: 80px;
}

.margin-top-50 {
    margin-top: 50px;
}

.margin-bottom-30 {
    margin-bottom: 30px !important;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .ag-about .about-video {
        margin-bottom: 110px;
    }
}

.ag-about .about-video {
    background: url(../images/v_c.png);
    background-repeat: no-repeat;
    background-size: 75% 100%;
    height: 467px;
    position: relative;
    background-position-x: 70px;
}

.ag-about .about-video .video-1 {
    float: right;
    padding-bottom: 30px;
}

.ag-about .about-video .video-1 img {
    border-radius: 8px;
    width: 370px;
    height: 440px;
    margin-top: -45px;
    box-shadow: 1px 0 20px rgba(0, 0, 0, .1);
}

.video-1 img {
    height: auto;
    max-width: 100%;
    border: none;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}


.ag-about .about-video .video-2 {
    float: left;
    position: absolute;
    bottom: -90px;
}

.ag-about .about-video .video-2 img {
    border-radius: 8px;
    width: 370px;
    height: 390px;
    -webkit-box-shadow: 0 -1px 12px -4px rgba(0, 0, 0, .75);
    -moz-box-shadow: 0 -1px 12px -4px rgba(0, 0, 0, .75);
    box-shadow: 0 -1px 12px -4px rgba(0, 0, 0, .75);
}


.ag-about .about-content {
    padding: 22px;
    margin-top: 4rem;
    margin-bottom: 0 !important;
}

.abcont{
    margin-top: 0 !important;
}


.ag-about .about-content h3 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
}

.clr-theme {
    color: #C98F30;
}

div.about-content p {
    text-align: justify;
}

.ptag{
    text-align: justify;
}

.abcon{
    align-items: center;
    text-align: center;

}

p:not(:last-child) {
    margin-bottom: 1rem;
}

.ag-about .about-content .cal-action {
    margin-top: 35px;
}


.list-unstyled {
    padding-left: 0;
    list-style: none;
}

 .cal-action ul li {
    margin-right: 20px;
}

.cal-action ul li i {
    color: #C98F30;

    float: left;
    font-size: 40px;
    line-height: 38px;
    margin-right: 10px;
}

 .cal-action ul li div.est {
    float: left;
}
.ext-det {
    line-height: 15px;
}

.icon{
    height: 40px;
    width: 40px;
}

.icon1{
    padding-left: 7px;
}

@media (max-width: 600px) {
    .video-top{
        display: none;
    }

    .about-content{
        margin-top: 0;
    }
    .margin-top-50{
        margin-top: 0;
    }
    .padding-top-80{
        padding-top: 0;
    }
    p{
        font-size: large;
    }
}


/* about div style start from here  */
#aboutdiv {
    margin-top: 4rem;
    padding: 10px;
    background-color: #000000;
    min-height: 40vh;
}


.ab-head {
    margin-top: 1rem;
    text-align: center;
    align-items: center;
}

.a-head {
    font-weight: 600;
    font-size: 39px;
    color: #000;
}

.ab-para {
    margin-top: 2rem;
    text-align: center;
    align-items: center;

}

.a-para {
    color: #fff;
}

.counter {
    margin-top: 5rem;
    margin-bottom: 2rem;
}

.margin-bottom-30 {
    margin-bottom: 30px !important;
}

.counter-inner span img {
    float: left;
    width: 64px;
    height: 64px;
    margin-right: 10px;
    /* margin-left: 30px; */
}

.min-count {
    position: relative;
    margin-top: 8px;
}

.ag-counter {
    color: #000;
    font-size: 28px;
}

.min-count p {
    line-height: 18px;
    font-size: 16px;
    margin-bottom: 0;
    margin-top: 5px;
    color: #000;
}
.ag-counte {
    color: #000;
    font-size: 30px;
    font-weight: bold;
}


.counter-inner .ag-counter {
    font-size: 30px;
    font-weight: bold;
    animation: counterAnimation 2s ease-out;
    animation-fill-mode: both;
}

@keyframes counterAnimation {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}




/* the card section is start form here  */
.custom-padding {
    padding-top: 80px;
    padding-bottom: 50px;
}


.text-center {
    text-align: center !important;
}


.sec-heading {
    max-width: 700px;
    margin-bottom: 40px;
    position: relative;
    
}


.sec-heading h2 {
    font-size: 34px;
    font-weight: 600 !important;
}


.our-process-cycle {
    text-align: center;
    padding: 30px;
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
    -webkit-transition: all .5s;
    transition: all .5s;
    background-color: #fff;
    -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, .05);
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, .05);
    border-radius: 4px;
}


@media (min-width: 992px) and (max-width: 1199px){
.our-process-cycle h3{
    font-size: 19px;
}
}


.our-process-cycle h3 {
    margin-bottom: 15px;
    font-weight: 500;
}

.our-process-cycle p {
    margin-bottom: 18px;
    color: #375174 !important;
}

.our-process-cycle span {
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    border-radius: 0 0 0 30px;
    font-size: 20px;
    line-height: 60px;
}

.our-process-cycle span {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background-color: #04b8e5;
    border-radius: 50%;
    color: #fff;
    font-weight: 600;
    -webkit-transition: all .5s;
    transition: all .5s;
}


/*============ the footer section is starts from here ============ */
