/*============================================== variables css ====================*/



/*============================================== common  style css ================*/


/*== section title ==*/
#our-page {
    padding: 70px 0px;
}

.section-title {
    margin-bottom: 65px;
}

.section-title h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    font-weight: normal !important;
    color: #333;
    text-align: center;
    font-family: "Roboto Slab", serif !important;
    font-optical-sizing: auto;
    font-style: normal;
}


.section-title h2:before {
    content: "";
    position: absolute;
    display: block;
    width: 160px;
    height: 1px;
    background:
        color-mix(in srgb, #999, transparent 60%);
    left: 0;
    right: 0;
    bottom: 1px;
    margin: auto;
}

.section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 60px;
    height: 3px;
    background: #000;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}


.section-info h2 {
    font-size: 24px !important;
    font-weight: 700;
    margin-bottom: 16px;
    font-weight: normal !important;
    color: #111;
    text-align: left;
    font-family: "Roboto Slab", serif !important;

}


    @media(max-width:425px) {
        .section-title {
    margin-bottom: 25px;
}
    }


/*== section-frame ==*/

.section-frame-left .section-left-image {
    position: relative;
    z-index: 1;
    padding: 17px;
}

.section-frame-left .section-left-image::before {
    content: "";
    position: absolute;
    z-index: 2;
    width: 40%;
    height: 100%;
    top: 0px;
    left: 0px;
    background-color: #cdeafa;
}

.section-left-image .left-image {
    position: relative;
    z-index: 5;
    overflow: hidden;
}


.section-frame-right .section-right-image {
    position: relative;
    z-index: 1;
    padding: 17px;
}

.section-frame-right .section-right-image::before {
    content: "";
    position: absolute;
    z-index: 2;
    width: 40%;
    height: 100%;
    top: 0px;
    right: 0px;
    background-color: #cdeafa;
}

.section-right-image .right-image {
    position: relative;
    z-index: 5;
    overflow: hidden;
}


/*============================================== Back to top button ===============*/

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 68px;
    z-index: 996;
    background: #000;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #63afe9;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*=========================================== Header ============*/






/*--------------------------  # Navigation Menu -------------------------------*/

/*======================================  Desktop Navigation  =======  */

.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 13px;
    font-size: 14px;
    color: #000;
    white-space: nowrap;
    transition: 0.3s;
    text-transform: uppercase;
}


.navbar .dropdown ul {
    display: block;
    position: absolute;
    top: calc(100% + 30px);
    margin: 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    transition: 0.3s;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    text-transform: none;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}



.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}

/*=======================================  Mobile Navigation ========== */


.mobile-nav-toggle {
    color: #0b2341;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block !important;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(4, 12, 21, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #0b2341;
}


.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}

/*---------------------------- # Hero Section  ----------------------------------*/


#hero {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
}


#hero .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    transition: 0.5s;
    line-height: 1;
    color: #fff;
    animation-delay: 0.8s;
    background: #ed502e;
    margin-top: 15px;
}

#hero .btn-get-started:hover {
    background: #ef6445;
}

@media (max-width: 992px) {
    #hero {
        height: 42vh;
        margin-top: 70px;
    }
    
    #header {
  z-index: 111111111111111111111111111111111122222222222222222222222222222222 !important;
  background: linear-gradient(to bottom, #fff, #fff, #fff) !important;
  padding: 12px 0px !important;
  transition: all 0.4s ease !important;
}

.logo_area img {
  width: 100% !important;
  filter: none;
}

.award-div {
  display: none !important;
}
}



@media (max-height: 425px) {
   
    
        #hero {
        height: 42vh;
        margin-top: 70px;
    }
    
    #header {
  z-index: 111111111111111111111111111111111122222222222222222222222222222222 !important;
background: linear-gradient(to bottom, #fff, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.01)) !important;  padding: 12px 0px !important;
  transition: all 0.4s ease !important;
}

.logo_area img {
  width: 100% !important;
  filter: none !important;
}

.award-div {
  display: none !important;
}
}


/*==============================================  new css styling by balkrushna ===== */

/*==============================================   why maptek page styling started*/
.why-maptek ul li {
    display: flex;
    margin-bottom: 4px;
    font-size: 16px;
}

.why-maptek ul li i {
    padding-top: 5px;
    width: 25px;
    font-size: 16px;
    padding-right: 10px;
    color: #444;
}

/*==============================================   why maptek page styling end*/






/*==============================================   award page styling start*/
.award-years {
    display: flex;
    justify-content: center;
}

.award-years h2 {
    font-size: 22px;
    width: fit-content;
    padding: 0px 17px 13px 17px;
    border-bottom: 1px solid #000;
    margin-bottom: 20px;
}

.award-image {
    border: 1px solid #ccc;
    padding: 4px;
    transition: all 0.5s ease-in;
    overflow: hidden;
}

.award-image img {
    transition: all 0.5s ease-in;
}

.award-image:hover img {
    transform: scale(1.05);
}

.award-dec {
    margin-top: 15px;
    padding: 0px 20px;
}

.award-dec p {
    text-align: center;
    font-weight: 600;
}

/*==============================================   award page styling end*/





/*=======================================   blog page styling start*/


/*=======================================   blog page styling end*/


