@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Marcellus&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Outfit:wght@100..900&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css");

:root {
    --theme-color: #297256;
    --lato-family: "Lato", serif;
    --dm-sans-family: "DM Sans", sans-serif;
    --outfit-family:"Outfit", sans-serif;
    --inter-family:"Inter", sans-serif;
}

body {
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-family: var(--lato-family);
    background: #fff;
    overflow-x: hidden;
}

p {
    margin-bottom: 0px;
}

html {
    scroll-behavior: smooth;
}

.owl-theme .owl-dots {
    display: none;
}

.owl-theme .owl-nav {
    display: block !important;
}

::-webkit-scrollbar {
    width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #666;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #ccc;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #ccc;
}

.btn:focus {
    box-shadow: none !important;
    border: none !important;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.btn-close:focus {
    box-shadow: none;
}

.btn:hover {
    color: #fff !important;
}

.accordion-button:focus {
    box-shadow: none;
}

a {
    color: #000;
    text-decoration: none;
}

ul,
ol {
    padding-left: 0px;
    list-style-type: none;
}

a:hover {
    color: initial;
}

input:focus,
select:focus,
textarea:focus {
    box-shadow: none !important;
}

.flex {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}

/*.full-width {
width: 100% !important;
}*/
.container {
    max-width: 95%;
}

.web-view {
    display: block;
}

.mobile-view {
    display: none;
}

.vertical-space-2 {
    height: 10px;
}

.vertical-space-5 {
    display: inline-block;
    width: 100%;
    height: 5px;
}

.vertical-space-8 {
    display: inline-block;
    width: 100%;
    height: 8px;
}

.vertical-space-10 {
    display: inline-block;
    width: 100%;
    height: 10px;
}

.vertical-space-12 {
    display: inline-block;
    width: 100%;
    height: 12px;
}

.vertical-space-15 {
    display: inline-block;
    width: 100%;
    height: 15px;
}

.vertical-space-20 {
    display: inline-block;
    width: 100%;
    height: 20px;
}

.vertical-space-30 {
    display: inline-block;
    width: 100%;
    height: 30px;
}

.vertical-space-40 {
    display: inline-block;
    width: 100%;
    height: 40px;
}

.vertical-space-50 {
    display: inline-block;
    width: 100%;
    height: 50px;
}

.vertical-space-60 {
    display: inline-block;
    width: 100%;
    height: 60px;
}

.vertical-space-65 {
    display: inline-block;
    width: 100%;
    height: 65px;
}

.vertical-space-70 {
    display: inline-block;
    width: 100%;
    height: 70px;
}

.vertical-space-80 {
    display: inline-block;
    width: 100%;
    height: 80px;
}

.vertical-space-90 {
    display: inline-block;
    width: 100%;
    height: 90px;
}

.vertical-space-100 {
    display: inline-block;
    width: 100%;
    height: 100px;
}

.vertical-space-120 {
    display: inline-block;
    width: 100%;
    height: 120px;
}

.vertical-space-150 {
    display: inline-block;
    width: 100%;
    height: 150px;
}

.fixed {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 9999;
    border-radius: 0px !important;
    background: #fff !important;
    transition: 0.5s all;
    animation: swip_down .5s linear 1;
    -webkit-box-shadow: 0 3px 5px rgba(106, 113, 124, 0.3);
    -moz-box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
    box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
}

@keyframes swip_down {
    from {
        transform: translate(0px, -50px);
        opacity: 0
    }

    to {
        transform: translate(0, 0);
        opacity: 1
    }
}

.fixed .navbar .container{
    max-width: 95% !important;
    margin:  0 auto !important;
}
.fixed .navbar .navbar-brand img{
    display: block;
}
.fixed  .navbar .nav-link{
    color: #000 !important;
}
.fixed  .navbar .navbar-nav{
    margin-left: auto !important
} 

/* From Uiverse.io by vinodjangid07 */ 
.Btn-Container {
    display: flex;
    width: 170px;
    height: fit-content;
    background-color: #fff;
    border-radius: 40px;
    justify-content: space-between;
    align-items: center;
    border: none;
    cursor: pointer;
  }
  .icon-Container {
    width: 45px;
    height: 45px;
    background: linear-gradient(90deg, #3e8f42 0%, #13536f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 3px solid #fff;
  }
  .Btn-Container .text {
    width: calc(170px - 45px);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.1em;
    letter-spacing: 1.2px;
  }
  .icon-Container svg {
    transition-duration: 1.5s;
  }
  .Btn-Container:hover .icon-Container svg {
    transition-duration: 1.5s;
    animation: arrow 1s linear infinite;
  }
  @keyframes arrow {
    0% {
      opacity: 0;
      margin-left: 0px;
    }
    100% {
      opacity: 1;
      margin-left: 10px;
    }
  }



  /* From Uiverse.io by vinodjangid07 */ 
.Btn-Container1 {
    display: flex;
    width: 190px;
    height: fit-content;
    background: var(--theme-color);
    border-radius: 40px;
    justify-content: space-between;
    align-items: center;
    border: none;
    cursor: pointer;
  }
  .icon-Container1 {
    width: 45px;
    height: 45px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 3px solid var(--theme-color)
  }
  .Btn-Container1 .text {
    width: calc(190px - 40px);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1em;
    letter-spacing: 1.2px;
  }
  .icon-Container1 svg {
    transition-duration: 1.5s;
  }
  .Btn-Container1:hover .icon-Container1 svg {
    transition-duration: 1.5s;
    animation: arrow 1s linear infinite;
  }
  @keyframes arrow {
    0% {
      opacity: 0;
      margin-left: 0px;
    }
    100% {
      opacity: 1;
      margin-left: 10px;
    }
  }
  


.header-main{
    width: 100%;
    z-index: 1;
}

.logo-left{
    background: #fff;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    z-index: 0;
    border-radius:0px 0px 10px 10px;
}
.logo-left img{
    width: 100px;
}
.top-header {
    background:var(--theme-color);
    font-family: var(--fira-sans-family);
    padding: 10px  0px;
}
.top-header .top-header-left ul {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 0px;
}
.top-header .top-header-left ul li{
    margin-right: 25px;
    position: relative;
}
.top-header .top-header-left ul li:not(:last-child):after{
    content: "";
    position: absolute;
    right: -14px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 15px;
    background: #ffffff90;
}
.top-header .top-header-left .top-header-link{
    font-size: 15px;
    font-weight: 400;
    line-height: 18px;
    color: #fff;
}
.top-header .top-header-right .desc-link{
    display: flex;
    justify-content: center;
    margin-bottom: 0px;
}
.top-header .top-header-right .desc-link li{
    margin-left: 25px;
    position: relative;
}
.top-header .top-header-right .desc-link li:not(:last-child):after{
    content: "";
    position: absolute;
    right: -14px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 15px;
    background: #fff;
}
.top-header .top-header-right .top-header-link{
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    color: #fff !important;
}
.top-header .top-header-left .top-header-link i{
    color: #fff;
    font-size: 14px;
    margin-right: 10px;
}
.top-header .social-icon{
    display: flex;
    justify-content: flex-end;
    margin-bottom: 0px;
}
.top-header .social-icon li{
    margin-left: 15px;
}
.top-header .social-icon li a i{
    color: #fff;
    font-size: 13px;
    margin-right: 3px;
}
.top-header .follow-link{
    padding: 0px 20px;
    font-size: 14px;
    color: #fff;
}
.top-header  .social ul li {
    list-style-type: none;
    padding-left: 8px;
    color: #666;
}
.top-header  .social ul {
    display: flex;
    padding-left: 0px;
    justify-content: flex-end;
    position: relative;
    z-index: 1;
    margin-bottom: 0px;
}
.top-header  .social i {
    color: #fff;
    text-align: center;
    font-size: 14px;
    text-align: center;
    border-radius: 0px;
        margin:0px 5px 0px 0px;
}
.main-section{
    background-color: #fff;
    background-image: url(../images/216.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100vh;
    z-index: 0;
}
.main-header .navbar{
    padding:  10px 0px;
    width: 100%;
    position: relative;
    z-index: 1020;
     font-family: var(--fira-sans-family);
    
}
.main-header .navbar .container{
    max-width: 100%;
    padding: 0px;
    margin: 0;
}
.main-header .navbar .navbar-collapse{
    position: relative;
}
.main-header .navbar-brand{
    margin: 0;
}
.main-header .navbar-brand img{
    width: 50px;
    display: none;
    margin: 0;
}
.main-header .navbar .nav-link{
    font-size: 15px;
    color: #fff;
    padding: 15px 0px;
    position: relative;
    font-weight: 500;
    position: relative;
}
.main-header .navbar li.dropdown .nav-link:after {
    position: absolute;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 10px;
    margin-left: 4px;
    margin-top: 7px;
    opacity: .9;
    color: #fff;
}

.main-header .navbar .nav-item{
    padding-right:25px;
}
.main-header .navbar .main-header-contact .icon{
    font-size: 24px;
    color: #8a8a8a;
    text-align: left;
}
.main-header .navbar .main-header-contact ul{
    margin-bottom: 0px;
    display: flex;
    justify-content: end;
}
.main-header .navbar .main-header-contact ul li{
    padding:0px 25px;
    position: relative;
}
.main-header .navbar .main-header-contact ul li:last-child{
    padding-left: 25px;
    padding-right: 0px;
}
.main-header .navbar .main-header-contact ul li:not(:last-child):after{
    content: "";
    position: absolute;
    width: 1px;
    height: 26px;
    background: #d5dce4;
    top: 50%;
    transform: translateY(-50%);
    right: 0px;
}
.main-header .navbar .main-header-contact .contact-text{
    font-size: 15px;
    color: var(--theme-color);
    font-weight: 500;
}
.main-header .navbar .main-header-contact .phone-number{
    font-size: 16px;
    color: #000;
    font-weight: 400;
}
.main-header .navbar .main-header-contact .icon{
    margin-right: 10px;
    color: var(--theme-color);
    text-align: center;
    width: 45px;
    height: 45px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    float: left;
}
.main-header .navbar .main-header-contact .text{
    float: right;
}
.main-header .navbar .nav-item.dropdown .dropdown-toggle::after{
    border: none;
}
.main-header .navbar .nav-item  .dropdown-menu{
     border: none;
     border-top: 3px solid var(--main-color);
    border-radius: 0px;
    background: #fff;
    padding: 0px 10px;
    max-width: 100%;
    box-shadow: 0 3px 25px 0 rgba(0,0,0,.07),0 0 0 rgba(0,0,0,.1) inset;
}
.main-header .navbar .dropdown .dropdown-menu .dropdown-item{
    font-size: 15px;
    line-height: 20px;
    font-weight: 400;
    display: block;
    padding: 12px 20px;
    text-align: left;
    color: #000;
    border-top: 1px solid rgba(0,43,92,.04);
    transition: all .5s ease;
    -moz-transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    background: transparent;
}

.main-header .navbar .dropdown .dropdown-menu .dropdown-item:hover{
    color: var(--main-color)!important;
}
.main-header .navbar .dropdown:hover > ul.dropdown-menu{
    display: block !important;
    animation: swip_left .5s linear 1;
}

.main-header .navbar .dropdown .dropdown-menu li:last-child{
    border-bottom: none;
}
.main-header  .input-group{
    position: relative;
    z-index: 1;
    background: #f2f2f2;
    border-radius: 5px;
}
.banner  .input-group .form-control , .page-banner  .input-group .form-control{
   background: #f9f9f9;
   border: none !important;
   box-shadow: none !important;
   outline: none !important;
   font-size: 15px;
   font-weight: 400;
   padding: 12px 20px;
   border-radius: 5px;
   color: #000;
   font-family: var(--yantramanav-family);
}
.banner .input-group .form-control::placeholder , .page-banner .input-group .form-control::placeholder{
    color: #000;
}
.banner  .input-group-text , .page-banner  .input-group-text{ 
    background: var(--theme-color) ;
    border-radius: 5px !important;
    color: #fff;
    font-size: 16px;
    padding: 8px 20px;
    text-align: center;
      font-family: var(--yantramanav-family);
}
@keyframes bg-anim {
    0% {
        -webkit-clip-path: inset(0 100% 0 0);
        clip-path: inset(0 100% 0 0);
        opacity: 1
    }

    80% {
        -webkit-clip-path: inset(0 0 0 0);
        clip-path: inset(0 0 0 0);
        opacity: 1
    }

    to {
        opacity: 0
    }
}
.main-header .navbar  .social a {
    cursor: pointer;
}
.main-header .navbar  .social i:hover{
    color: #3F4096;
}
@keyframes swip_left {
    from {
        transform: translate(0px, 50px);
        opacity: 0
    }

    to {
        transform: translate(0,0);
        opacity: 1
    }
}
.header-btn{
    background: var(--main-color);
    padding: 10px 25px;
    color: #fff;
    font-size: 15px;
    border: none;
    margin-bottom: 25px;
}
.header-btn:hover , .header-btn:focus{
    background: var(--main-color);
    color: #fff;
}
.banner{
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-left: auto;
    height: 100vh;
    background: url(../images/banner.webp);
    background-size: cover;
    background-position: right;
}
.banner  .banner-img{
    position: relative;
    padding: 50px 0px;
    z-index: 1;
}
.banner .star-rating {
    display: flex;
    justify-content: flex-start;
    margin-top: 5px;
}
.banner .star-rating i {
    font-size: 10px;
    color:#fff;
    margin: 0px 2px 10px 2px;
}
.banner-subtitle{
     font-size: 14px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 15px;
    position: relative;  
    display: inline-block;

    text-transform: uppercase;
}

.banner  .banner-title{
    font-size: 50px;
    font-weight: 700;
    color: #fff;
    line-height: 65px;
    margin-bottom: 15px;   
    font-family: var(--inter-family);
}

.banner  .banner-text{
    font-size: 17px;
    font-weight: 400;
    color: #fff;
    line-height: 28px;
    margin-bottom: 15px;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.banner .img-box{
    width: 100%;
    height: 450px;
    position: relative;
}
.banner .img-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.learn-wrapper{
    position: absolute;
    right: 0;
    bottom: 0;
    background: var(--theme-color);
    border-radius: 20px 0px 0px 0px;
}
.learn-wrapper .learn-more{
    position: relative;
    padding: 15px 30px;
}
.pbmit-sticky-corner svg path{
    fill: var(--theme-color);
}
.pbmit-bottom-left-corner{
    position: absolute;
    bottom: 0;
    left: -30px;
    width: 30px;
    height: 30px;
}
.pbmit-top-right-corner{
    position: absolute;
    top: -30px;
    right: 0;
    width: 30px;
    height: 30px;
}
.learn-btn{
    font-size: 16px;
    color: #fff !important;
    display: flex;
    align-items: center;
}
.learn-btn i{
    margin-right: 6px;
    font-size: 20px;
}
.main-subtitle{
    font-size: 16px;
    color:var(--theme-color);
    letter-spacing: 2px;
    margin-bottom: 25px;
    font-weight: 500;
    text-transform: uppercase;
}
.main-subtitle img{
    width: 25px;
    margin-right: 10px;
}
.main-title{
    font-size: 40px;
    color: #000;
     font-family: var(--inter-family);
    margin-bottom: 25px;
    font-weight: 500;
    text-transform: capitalize;
}
.main-text{
    font-size: 16px;
    color: #666;
    line-height: 28px;
    margin-bottom: 15px;
}
.wrap-line{
    position: relative;
    margin-bottom: 15px;
}
.wrap-title{
    font-size: 16px;
    color: #fff;
    line-height: 28px;
    margin-bottom: 0px;
    font-family: var(--inter-family);
    background: var(--theme-color);
    display: inline-block;
    padding: 10px 20px;
    border-radius: 20px 20px 0px 0px;
    position: relative;
    font-weight: 400;
}
.wrap-line::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80%;
    height: 2px;
    background: var(--theme-color);
}
.about-detail{
    padding: 50px 0px;
}
.about-detail .img-box{
    width: 100%;
    height: 300px;
}

.about-detail .img-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;

}


.about-detail .img-box-1{
    width: 100%;
    height: 450px;
}

.about-detail .img-box-1 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-mask-image: url(../images/about-left-mask.png);
    -webkit-mask-size: contain;
    -webkit-mask-position: center center;
    -webkit-mask-repeat: no-repeat;
    border-radius: 30px 30px 30px 30px;
}



.artical-detail{
    padding: 50px 0px;
}

.sidebar .sidebar-widget{
	position: relative;
	display: block;
	margin-bottom: 50px;
}

.sidebar .sidebar-widget:last-child{
	margin-bottom: 10px;
}

.sidebar .services-widget ul{
	position: relative;
	display: block;
}

.sidebar .services-widget ul li{
	position: relative;
	display: block;
	margin-bottom: 15px;
}

.sidebar .services-widget ul li:before{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 0%;
	height: 100%;
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}

.sidebar .services-widget ul li:hover:before,
.sidebar .services-widget ul li.active:before{
	width: 100%;
}

.sidebar .services-widget ul li a{
	position: relative;
	display: block;
    border: 1px solid #efefef;
	padding: 10px 20px;
    border-radius: 50px;
	padding-right: 50px;
	line-height: 25px;
	color: #222222;
	font-size: 15px;
	font-weight: 500;
	text-transform: capitalize;
	z-index: 1;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.sidebar .services-widget ul li a:before{
	content: "\f061";
	font-family: 'Font Awesome 5 Free';
	position: absolute;
	right: 3px;
	top: 50%;
    transform: translateY(-50%);
	line-height: 40px;
    border-radius: 50%;
    background: var(--theme-color);
    color: #fff;
	height: 40px;
	width: 40px;
	text-align: center;
	font-size: 14px;
	font-weight: 700;
}

.special-issue-list .special-issue-title{
    font-size: 24px;
    color: #0054a6 !important;
    margin-bottom: 20px;
    font-weight: bold;
}
.special-issue-list .special-issue-card{
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 20px;
}
.special-issue-list .special-issue-card .img-box{
    text-align: center;
}
.special-issue-list .special-issue-card .img-box img{
    width: 90%;
}
.special-issue-list .special-issue-card .special-issue-desc{
    margin-bottom: 0px;
}
.special-issue-list .special-issue-card .special-issue-desc li{
    margin-bottom: 10px;
    color: #444;
    font-weight: 400;
    font-size: 14px;
    font-family: var(--inter-family);
}
.special-issue-list .special-issue-card .special-issue-desc li:last-child{
    margin-bottom: 0px;
}
.special-issue-list .special-issue-card .special-issue-desc li a{
    color: #444;
    text-decoration: underline;
}
.special-issue-list .special-issue-card .special-issue-desc li span{
    color:#000;
    font-weight: 500;
    margin-right: 5px;
    font-size: 15px;
}
.special-issue-list .special-issue-card .special-issue-desc li .title{
    /*color: var(--theme-color);*/
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.special-issue-list .special-issue-card .special-issue-desc li.green{
    color: #3F9041;
}
.view-link{
    padding: 0px;
    border: none !important;
    color: #e15f78 !important;
    text-decoration: underline;
    font-size: 15px;
}
.view-link img{
    width: 25px;
    margin-right: 10px;
}
.view-link:hover{
    color: #e15f78 !important;
}

 .book-form{
    background: #2972561a;
    padding: 25px;
    border-radius: 20px;
}
 .book-form .form-title{
    font-size: 20px;
    color: var(--theme-color);
    font-weight: 500;
    font-family: var(--inter-family);
    margin-bottom: 20px;
}
 .book-form .form-control ,  .book-form .form-select{
    padding: 12px 20px ;
    border-radius: 50px;
}
 .book-form  .form-btn{
    display: inline-block;
    outline: 0;
    border: 0;
    cursor: pointer;
    padding: 12px 32px;
    border-radius: 30px;
    color: #fff;
    font-size: 15px;
    background: var(--theme-color);
    width: 100%;
    transition: box-shadow 0.15s ease,transform 0.15s ease;
}              
  .book-form  .form-btn:hover {
background: var(--theme-color) !important    ;
    color: #fff;
}


.journal-detail{
    padding: 50px 0px;
    background: #f9f9f9;
}
.infra-title{
    font-size: 20px;
    color: #000;
     font-family: var(--inter-family);
    margin-bottom: 25px;
    font-weight: 500;
    text-transform: capitalize;
}
.infra-list li{
    font-size: 16px;
    color: #666;
    line-height: 28px;
    margin-bottom: 15px;
}
.journal-detail .img-box{
    width: 100%;
    height: 300px;
}
.journal-detail .img-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.journal-detail .content-list li{
    font-size: 16px;
    font-weight: 500;
    color: #676767;
    line-height: 28px;
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
}
.journal-detail .content-list li::after{
    content: "\f101";
    position: absolute;
    left: 0px;
    top: 0;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--theme-color);
}
.journal-detail img{
    mix-blend-mode: multiply;
    filter: contrast(1);
}

.content-detail{
    padding: 50px 0px;
}
.content-detail .content-box{
    background: var(--theme-color);
    padding: 35px;
    border-radius: 20px;
    position: relative;
    z-index: 0;
}
.content-detail .content-box::after{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../images/demo1-slider-patern.png);
    background-repeat: no-repeat;
    background-position: right;
    opacity: 0.26;
    z-index: -1;
}
.content-detail .content-box .box-title{
    font-size: 30px;
    color: #fff;
     font-family: var(--inter-family);
    margin-bottom: 15px;
    font-weight: 500;
    text-transform: capitalize;
}
.content-detail .content-box .box-text{
    font-size: 16px;
    color: #fff;
    line-height: 28px;
    margin-bottom: 15px;
}


.gallery{
    padding: 30px 0px;
    width: 100%;
}
.gallery .gallery-card{
    transition: 0.5s all;
}
.gallery .gallery-card .plus-icon i{
    width: 60px;
    height: 70px;
    clip-path:polygon(0 25%, 50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%);
    z-index: 1;
    background: var(--theme-color);
    line-height: 70px;
    text-align: center;
    font-size: 18px;
    color: #fff;
    position: relative;
    top: 5px;
}
.gallery .gallery-card .plus-icon{
    content: "";
    width: 70px;
    height: 80px;
    clip-path:polygon(0 25%, 50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%);
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 1;
    background: #fff;
    line-height: 70px;
    text-align: center;
    font-size: 18px;
    color: #fff;
    transform: translateY(50px);
    display: none;
    opacity: 0;
}
.gallery .gallery-card:hover .plus-icon{
    display: block;
    transform: translateY(0px);
    opacity: 1;
}
.gallery .gallery-card .plus-icon i:hover{
   background: #0081B6;
}
.gallery .gallery-card .card-img{
    width: 100%;
    height: 400px;
    position: relative;
}
.gallery .gallery-card .card-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}
.gallery .gallery-card .card-img::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(179.97deg, rgba(14, 99, 255, 0) 20.71%, var(--theme-color) 90.16%);
    transition: 0.3s all;
}
.gallery .gallery-card:hover .card-img::after{
    height: 100%;
}
.gallery .gallery-card .card-overlay{
    position: relative;
    opacity: 0;
    transition: 0.5s all;
}
.gallery .gallery-card:hover .card-overlay{
    opacity: 1;
}
.gallery .gallery-card .card-content{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 20px;
    z-index: 2;
}
.gallery .gallery-card .card-content .card-title{
    font-size: 22px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 400;
}
.gallery .gallery-card .card-content .card-subtitle{
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 15px;
}
.gallery .gallery-card .card-content .card-subtitle i{
    font-size: 14px;
    margin-right: 5px;
}


.our-engineers{
    padding: 60px 0px;
}
.our-engineers .engineer-title{
    font-size: 20px;
    color: #000;
     font-family: var(--inter-family);
    margin-bottom: 25px;
    font-weight: 500;
    text-transform: capitalize;
}
.our-engineers .engineers-list .card{
    border-radius: 0px;
    border: none;
}
.our-engineers .engineers-list{
    margin-top: 40px;
}
.our-engineers .engineers-list .card .card-img-top{
    border-radius: 0px;
    width: 100px;
    margin:  0 auto;
}
.our-engineers .engineers-list .card  .card-title{
    font-size: 18px;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    margin: 10px 0px;
}
.our-engineers .engineers-list .card  .card-text{
    font-size: 15px;
    text-align: center;
    color: #666666;
    margin-bottom: 10px;
}
.our-engineers .engineers-list .card  .card-text a{
    color: var(--theme-color);
    text-decoration: underline;
}

.sustainble-detail{
    padding: 50px 0px 50px;
}
.sustainble-detail .sustain-text{
    font-size: 16px;
    color: #74BEB4;
    font-style: italic;
    line-height: 28px;
    margin-bottom: 0px;
}
.sustainble-detail .arrow{
    margin-top: 20px;
    margin-bottom: 20px;
}
.sustainble-detail .arrow img{
    width: 100px;
}
.sustainble-detail .img-box img{
    width: 100%;
    border-radius: 12px;
}
.sustainble-detail .sustain-box .icon{
    width: 60px;
    height: 60px;
    background: #74BEB4;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}
.sustainble-detail .sustain-box .icon-1{
    background: var(--main-color) !important;
}
.sustainble-detail .sustain-box .icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
    filter: brightness(0) invert(1);
}
.sustainble-detail .sustain-box .card-title{
    font-size: 22px;
    font-style: normal;
     line-height: 28px;
    color: #000;
    font-weight: 500;
    font-family: var(--inter-family);
    margin-bottom: 10px;
}
.sustainble-detail .sustain-box .card-text{
    font-size: 15px;
    color: #666;
    line-height: 28px;
    margin-bottom: 0px;
}

.footer-detail{
    background-color: #121516;
    padding: 30px 0px 0px;
    position: relative;
    z-index: 0;
}
.footer-detail::after{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/demo1-slider-patern.png);
    background-size: contain;
    background-repeat: repeat;
    background-position: right;
    opacity: 0.15;
    z-index: -1;
}
.footer-detail .footer-main-title{
    font-size: 40px;
    font-weight: 500;
    font-family: var(--marcellus-family);
    color: #fff;
    padding-bottom: 15px;
    position: relative;
}
.footer-detail .footer-content{
    padding:0px 10px;
    position: relative;
    z-index: 1;
}
.footer-detail  .footer-logo{
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}
.footer-detail .footer-logo img{
    width: 130px;
    filter: brightness(0) invert(1);
}
.footer-detail .footer-content  .social-icon ul{
    display: flex;
    justify-content: flex-start;
    margin-bottom: 0px;
    padding-top: 15px;
}
.footer-detail .footer-content  .social-icon li{
    margin-right: 10px;
}
.footer-detail .footer-content  .social-icon li a i{
    color: #fff;
    font-size: 16px;
    width: 45px;
    height: 45px;
    line-height: 45px;
    background: transparent;
    border: 1px solid #eee;
    border-radius: 50%;
    text-align: center;
}
.footer-detail .footer-content  .social-icon li a i:hover{
    color: #fff;
    border-color: #eee;
    background: var(--main-color);
}

.footer-detail .footer-title{
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    position: relative;
    font-family: var(--marcellus-family);
    margin-bottom: 15px;
}
.footer-detail.footer-text{
    font-size: 15px;
    line-height: 25px;
    color: #fff;
    font-weight: 400;
}
.footer-detail .footer-quick-links{
    display: flex;
    align-items: center;
    margin-bottom: 0px;
    flex-wrap: wrap;
}
.footer-detail .footer-quick-links .footer-item:not(:last-child){
    padding-right: 25px;
}


.footer-detail .footer-quick-links .footer-item .footer-link{
    font-size: 15px;
    color: #fff;
    font-weight: 400;
}
.footer-detail.footer-list li a:hover{
 color: #FFCB05;
}
.footer-detail .footer-contact-list{
    margin-bottom: 0px;
    padding-top: 0px;
}
.footer-detail .footer-contact-list li{
    padding-bottom: 12px;
}
.footer-detail .footer-contact-list .footer-contact{
    color: #ffff;
    font-size: 15px;
    font-weight:400;
}
.footer-detail .footer-contact-list .footer-contact i{
    margin-right: 10px;
}
.footer-detail .footer-contact-list .footer-contact b{
    font-weight: 700;
}
.footer-detail .feedback-title{
    font-size: 26px;
    font-weight: 500;
    color: #fff;
    position: relative;
    font-family: var(--marcellus-family);
    margin-bottom: 25px;
}
.footer-detail .input-container {
    width: 100%;
    transition: 0.1s all;
    -webkit-transition: all .4s;
    transition: all .4s;
}
.footer-detail .input-container input , .footer-detail .input-container textarea{
    padding: 12px;
}

 .footer-bottom{
    margin-top: 30px;
    padding: 15px 0px;
    position: relative;
    z-index: 1;
    border-top: 1px solid #ffffff14;
}
.footer-bottom .copyright-text{
    font-size: 15px;
    color: #fff;
    font-weight: 400;
    margin-bottom: 0px;
}
.footer-bottom .copyright-text a{
  color: var(--theme-color);
}

.page-banner{
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-left: auto;
    height: 100%;
    background: url(../images/banner.webp);
    background-size: cover;
    z-index: 1;
}

.page-banner  .banner-title{
    font-size: 50px;
    font-weight: 700;
    color: #fff;
    line-height: 65px;
    margin-bottom: 15px;   
    font-family: var(--inter-family);
}

.page-banner .banner-content{
    padding: 30px 0px;
    text-align: center;
}
.page-banner .banner-content .banner-title{
    font-size: 40px;
    margin-bottom: 15px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: var(--inter-family);
}
.page-banner .banner-content .breadcrumb{
    justify-content: center;
    font-size: 14px;
    text-transform: uppercase;
}
.page-banner .banner-content .breadcrumb .breadcrumb-item{
    color: #fff;
}
.page-banner .banner-content .breadcrumb .breadcrumb-item::before{
    color: #fff;
}
.page-banner .banner-content .breadcrumb .breadcrumb-item a{
    color: #fff;
   
}


.public-charges{
    padding: 50px 0px;
}
.public-charges .box{
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
}
.public-charges .box .box-title{
    font-size: 28px;
    font-style: normal;
     line-height: 28px;
    color: var(--theme-color);
    font-weight: 500;
    font-family: var(--inter-family);
    margin-bottom: 20px;
    text-transform: capitalize;
}
.public-charges .box .box-text{
    font-size: 17px;
    color: #666;
    line-height: 28px;
    margin-bottom: 15px;
}
.public-charges .box .box-text span{
    color: var(--theme-color);
    text-decoration: underline;
}
.public-charges .box .box-text:last-child{
    margin-bottom: 0px;
}



.public-charges p{
    font-size: 28px;
    font-style: normal;
     line-height: 13px;
    color: var(--theme-color);
    font-weight: 500;
    font-family: var(--inter-family);
    margin-bottom: 20px;
    text-transform: capitalize;
}
.public-charges h5{
    font-size: 17px;
    color: #666;
    line-height: 28px;
    margin-bottom: 15px;
}



.public-charges .box-1{
    background: var(--theme-color);
    padding: 30px;
    border-radius: 10px;
    position: relative;
    z-index: 0;
}
.public-charges .box-1::after{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../images/demo1-slider-patern.png);
    background-repeat: no-repeat;
    background-position: right;
    opacity: 0.26;
    z-index: -1;
}
.public-charges .box-1 .box-title{
    font-size: 28px;
    font-style: normal;
     line-height: 28px;
    color: #fff;
    font-weight: 500;
    font-family: var(--inter-family);
    margin-bottom: 20px;
    text-transform: capitalize;
}
.public-charges .box-1 .box-text{
    font-size: 16px;
    color: #fff;
    line-height: 26px;
    margin-bottom: 0px;
}
.public-charges .box-1 .box-text span{
    text-decoration: underline;
}
.public-charges .box-1 .box-text:last-child{
    margin-bottom: 0px;
}



.ck_editor .content-box p
{
    font-size: 16px;
    color: #fff;
    line-height: 28px;
    margin-bottom: 15px;
}


.ck_editor .content-box h5
{
    font-size: 30px;
    color: #fff;
    font-family: var(--inter-family);
    margin-bottom: 15px;
    font-weight: 500;
    text-transform: capitalize;
}

.contact{
    padding: 60px 0px;
}
.contact .contact-left , .contact .contact-right{
    padding: 0px 30px;
}
.contact .contact-title{
    font-weight: 400;
    line-height: 1.25em;
    margin: 0 0 20px 0;
    color: var(--black-color);
    font-size: 30px;
    font-weight: 600;
    font-family: var(--teko-family);
}
.contact .contact-title span{
    color: var(--main-color);
    position: relative;
}
.contact .contact-title span:before {
    width: 100%;
    height: 15px;
    background: url(../images/line-bottom.png);
    content: "";
    display: inline-block;
    position: absolute;
    bottom: -2px;
    left: 4px;
    background-repeat: no-repeat;
}
.contact .contact-text{
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75em;
    color: #666;
    font-family: var(--roboto-family);
    margin-bottom: 20px;
}
.contact .contact-detail{
    display: flex;
    margin-bottom: 25px;
}
.contact .contact-detail .icon{
    font-size: 30px;
    color: var(--main-color);
    text-align: center;
    position: relative;
    z-index: 1;
}
.contact .contact-detail .icon::before {
    content: "";
    position: absolute;
    left: -16px;
    top: 5px;
    background: #f9f9f9;
    width: 45px;
    height: 45px;
    line-height: 48px;
    border-radius: 50%;
    z-index: -1;
}
.contact .contact-detail .text{
    margin-left: 15px;
}
.contact .contact-detail .text .reservation-text{
    font-size: 18px;
    color: var(--theme-color);
    font-weight: 400;
    line-height: 2em;
    margin: 0px;
    margin-bottom: 10px;
    font-family: var(--teko-family);
}
.contact .contact-detail .text .reservation-title{
    margin: 0;
    line-height: inherit;
    margin-top: -5px;
}
.contact .contact-detail .text .reservation-title a{
    font-size: 16px;
    color: #666;
    margin-right: 10px;
}
.contact .get-title{
    font-weight: 600;
    line-height: 1.25em;
    margin: 0 0 20px 0;
    color: var(--black-color);
    font-size: 24px;
    font-family: var(--teko-family);
}
.contact form .form-label{
    color: #1D66A7;
    font-weight: 600;
}
.contact form .form-control{
    max-width: 100%;
    padding: 10px ;
    height: auto;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-width: 0 0 1px;
    border-style: solid;
    display: block;
    width: 100%;
    border-radius: 0px;
    font-size: 15px;
    font-weight: 400;
    color: #666d81;
    background-image: none;
    border: none;
    font-family: var(--roboto-family);
    border-color: ease-in-out .15s, box-shadow ease-in-out .15s;
}
.contact .form-control:focus ~ .input-container {
    border-color: #2c6dff !important;
}
.contact .input-container {
    display: -ms-flexbox; /* IE10 */
    display: flex;
    width: 100%;
    margin-bottom: 15px;
    border-bottom: 1px solid #ececec;
    transition: 0.1s all;
    -webkit-transition: all .4s;
    transition: all .4s;
  }
  
  .icon {
    color: var(--main-color);
    min-width: 20px;
    line-height: 50px;
    font-size: 16px;
  }
  
  .input-field {
    width: 100%;
    padding: 10px;
    outline: none;
    border: none;
  }
  
  .input-field:focus {
    border: none;
  }


#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    font-size: 14px;
    border: none;
    outline: none;
    background-color: var(--theme-color);
    color: #fff;
    cursor: pointer;
    width: 50px;
    text-align: center;
    height: 50px;
    line-height: 50px;
    border-radius: 5px;
}

#myBtn::after {
    position: absolute;
    z-index: -1;
    content: "";
    top: 100%;
    left: 5%;
    height: 10px;
    width: 90%;
    opacity: 1;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
}

#myBtn:hover {
    background-color: var(--theme-color);
}


/*new*/

.mob-contact li:first-child{
     border-top: 1px solid gray;
     border-color: #297256 ;
}

.mob-contact li a{
    color: #297256 !important;
}

.mob-contact li a i{
    margin-right: 10px;
} 


@media screen and (max-width:1199px){
    .mean-container .mean-nav ul li a {
      text-transform : lowercase;
  }
    
}


@media (min-width:2000px) {}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .web-view {
        display: none;
    }

    .mobile-view {
        display: block;
    }

    .mobile-header {
        padding: 10px 0px;
        background: #fff;
    }

    .mobile-header .logo img {
        width: 80px;
    }

    
    .mobile-header .offcanvas {
        width: 360px;
    }

    .mobile-header .offcanvas .logo img {
        width: 80px;
    }

    .toggler {
        color: var(--theme-color);
        font-size: 30px;
        border: none;
        text-align: center;
        padding: 0px;
    }

    .toggler:focus,
    .toggler:hover {
        color: var(--theme-color);
        background: transparent;
    }

    .mobile-header .social ul {
        justify-content: flex-start;
    }

    .mobile-header .offcanvas-body {
        line-height: initial;
    }
    .banner{
        background-position: left;
        height: auto;
    }
    .banner .banner-title , .main-title , .footer-detail .footer-main-title , .page-banner .banner-content .banner-title{
        font-size: 30px;
        line-height: 40px;
    }

}

@media screen and (min-width: 768px) and (max-width: 991.98px) {
    .web-view {
        display: none;
    }

    .mobile-view {
        display: block;
    }

    .mobile-header {
        padding: 10px 0px;
        background: #fff;
    }

    .mobile-header .logo img {
        width: 80px;
    }

    
    .mobile-header .offcanvas {
        width: 360px;
    }

    .mobile-header .offcanvas .logo img {
        width: 80px;
    }

    .toggler {
        color: var(--theme-color);
        font-size: 30px;
        border: none;
        text-align: center;
        padding: 0px;
    }

    .toggler:focus,
    .toggler:hover {
        color: var(--theme-color);
        background: transparent;
    }

    .mobile-header .social ul {
        justify-content: flex-start;
    }

    .mobile-header .offcanvas-body {
        line-height: initial;
    }
    .banner{
        background-position: left;
        height: auto;
    }
    .banner .banner-title , .main-title , .footer-detail .footer-main-title , .page-banner .banner-content .banner-title{
        font-size: 30px;
        line-height: 40px;
    }


}

@media only screen and (max-width: 575.98px) {
    .web-view {
        display: none;
    }

    .mobile-view {
        display: block;
    }

    .mobile-header {
        padding: 10px 0px;
        background: #fff;
    }

    .mobile-header .logo img {
        width: 60px;
    }

    
    .mobile-header .offcanvas {
        width: 360px;
    }

    .mobile-header .offcanvas .logo img {
        width: 60px;
    }

    .toggler {
        color: var(--theme-color);
        font-size: 30px;
        border: none;
        text-align: center;
        padding: 0px;
    }

    .toggler:focus,
    .toggler:hover {
        color: var(--theme-color);
        background: transparent;
    }

    .mobile-header .social ul {
        justify-content: flex-start;
    }

    .mobile-header .offcanvas-body {
        line-height: initial;
    }
    .banner{
        background-position: left;
        height: auto;
    }
    .banner .banner-title , .main-title , .footer-detail .footer-main-title , .page-banner .banner-content .banner-title{
        font-size: 30px;
        line-height: 40px;
    }
    .app-section .media-img li img{
        width: 130px;
        height: auto;
    }
    .app-section .app-box::before{
        display: none;
    }
    .content-detail .content-box img{
        padding: 0px;
    }
    .testimonial{
        padding: 150px 0px 50px;
    }
    .app-section{
        padding: 0px;
    }
    .app-section .app-box{
        padding: 30px;
    }
}



}


