
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #106eea;
}

a:hover {
  color: #3b8af2;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto", sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #106eea;
  border-top-color: #e2eefd;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: #106eea;
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #3284f1;
  color: #fff;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #106eea;
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  color: #fff;
}

#topbar.topbar-scrolled {
  top: -40px;
}

#topbar .contact-info a {
  line-height: 1;
  color: #fff;
  transition: 0.3s;
}

#topbar .contact-info a:hover {
  text-decoration: underline;
}

#topbar .contact-info i {
  padding-right: 4px;
  margin-left: 15px;
}

#topbar .contact-info i:first-child {
  margin-left: 0;
}

#topbar .social-links a {
  color: rgba(255, 255, 255, 0.6);
  padding-left: 15px;
  display: inline-block;
  line-height: 1px;
  transition: 0.3s;
}

#topbar .social-links a:hover {
  color: #fff;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    
        background: #1e69b0;
 /* background: #539af7;*/
  transition: all 0.5s;
  z-index: 997;
    padding: 3px 0;
  top: 40px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.fixed-top.top-custm {
    background-color: #fff;
}
#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.8px;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: #222222;
}

#header .logo a span {
  color: #106eea;
}

#header .logo img {
  max-height: 40px;
}

@media (max-width: 992px) {
  #header {
    padding: 28px;
    top: 0;
  }
  #header .logo {
    font-size: 28px;
  }
    
    section.slider-section {
   
    margin-top: 258px !important;
}
    
.counter-box {

    max-width: 40%;
    margin-left: 20px;
        min-height: 106px !important;
    margin-bottom: 20px;
}    
    .col-md-4.col-lg-2.col-sm-6 {
        display: contents;
}
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
/* Modern Responsive Navigation Menu with Dropdown Icons and Stylish Hover */

.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.nav-menu > ul > li {
  position: relative;
  padding: 10px 10px;
}

.nav-menu a {
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  padding: 6px 12px;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease-in-out;
  border-radius: 5px;
  line-height: 1.4;
}

.nav-menu > ul > li > a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 20%;
  width: 60%;
  height: 2px;
  
  opacity: 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: all 0.3s ease;
}

.nav-menu > ul > li:hover > a {
  background-color: #44ac4f;
  color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.nav-menu > ul > li:hover > a::after,
.nav-menu > ul > li.active > a::after {
  opacity: 1;
  transform: scaleX(1);
}

/* Dropdown Style */
.nav-menu .drop-down > a::after {
  content: "\25BE"; /* ▼ */
  font-size: 12px;
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.nav-menu .drop-down:hover > a::after {
  transform: rotate(180deg);
}

.nav-menu .drop-down ul {
  position: absolute;
  left: 0;
  top: 100%;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  min-width: 250px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease-in-out;
  z-index: 99;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  visibility: visible;
  top: calc(100% + 4px);
}

.nav-menu .drop-down li {
  position: relative;
}

.nav-menu .drop-down ul a {
  color: #333;
  padding: 10px 18px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: 0.3s ease;
  border-radius: 4px;
}

.nav-menu .drop-down ul a:hover {
  background-color: #f5f5f5;
  color: #00c853;
}

/* Sub Dropdown */
.nav-menu .drop-down .drop-down > a::after {
  content: "\25B8"; /* ▸ */
  font-size: 12px;
  position: absolute;
  right: 12px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: 100%;
  margin-left: 1px;
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  visibility: visible;
}

/* Mobile Styles */
@media (max-width: 992px) {
  .nav-menu {
    display: none;
  }
.social.mr-auto {
  
    right: inherit !important;
}
  .mobile-nav-toggle {
display: block;
        position: fixed;
        top: 210px;
        right: 4px;
        font-size: 24px;
        z-index: 9998;
        background: none;
        border: none;
        color: #00c853;
        cursor: pointer;
  }

  .mobile-nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px;
    z-index: 9999;
    display: none;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  }

  .mobile-nav a {
    color: #333;
    font-weight: 500;
    padding: 10px;
    display: block;
    border-radius: 4px;
    transition: 0.3s ease;
  }

  .mobile-nav a:hover {
    background-color: #f1f1f1;
    color: #00c853;
  }

  .mobile-nav .drop-down > a::after {
    content: "\25BE";
    float: right;
    transition: transform 0.3s;
  }

  .mobile-nav .drop-down.active > a::after {
    transform: rotate(180deg);
  }

  .mobile-nav .drop-down ul {
    display: none;
    padding-left: 15px;
  }

  .mobile-nav .drop-down.active ul {
    display: block;
  }

  .mobile-nav-active .mobile-nav {
    display: flex;
  }
}

/* Optional: Mobile Overlay */
.mobile-nav-overly {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9997;
  display: none;
}

.mobile-nav-active .mobile-nav-overly {
  display: block;
}

#hero {
  width: 100%;
  height: 75vh;
  background: url("../img/hero-bg.jpg") top left;
  background-size: cover;
  position: relative;
}

#hero:before {
  content: "";
  background: rgba(255, 255, 255, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  position: relative;
  padding-top: 132px;
}

@media (max-width: 992px) {
  #hero .container {
    padding-top: 58px;
  }
}

#hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #222222;
  font-family: "Poppins", sans-serif;
}

#hero h1 span {
  color: #106eea;
}

#hero h2 {
  color: #555555;
  margin: 5px 0 30px 0;
  font-size: 24px;
  font-weight: 400;
}

#hero .btn-get-started {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #106eea;
}

#hero .btn-get-started:hover {
  background: #247cf0;
}

#hero .btn-watch-video {
  font-size: 16px;
  display: inline-block;
  padding: 10px 25px 8px 40px;
  transition: 0.5s;
  margin-left: 25px;
  color: #222222;
  position: relative;
  font-weight: 600;
}

#hero .btn-watch-video i {
  color: #106eea;
  font-size: 32px;
  position: absolute;
  left: 0;
  top: 7px;
  transition: 0.3s;
}

#hero .btn-watch-video:hover {
  color: #106eea;
}

#hero .btn-watch-video:hover i {
  color: #3b8af2;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero {
    height: 100vh;
  }
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  #hero .btn-get-started, #hero .btn-watch-video {
    font-size: 13px;
  }
}

@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}


section {
  padding: 35px 0;
  overflow: hidden;
}

.section-title {
    text-align: center;
  padding-bottom: 30px;

}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: #e7f1fd;
  color: #106eea;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
}

.section-title h3 {
  margin: 15px 0 0 0;
  font-size: 30px;
  font-weight: 500;
}

.section-title h3 span {
  color: #106eea;
}

.section-title p {
  margin: 15px auto 0 auto;
  font-weight: 600;
}

@media (min-width: 1024px) {
  .section-title p {
    width: 50%;
  }
}


.featured-services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}

.featured-services .icon-box::before {
  content: '';
  position: absolute;
  background: #cbe0fb;
  right: 0;
  left: 0;
  bottom: 0;
  top: 100%;
  transition: all 0.3s;
  z-index: -1;
}

.featured-services .icon-box:hover::before {
  background: #93c160;
  top: 0;
  border-radius: 0px;
}

.featured-services .icon {
  margin-bottom: 15px;
}

.featured-services .icon i {
  font-size: 48px;
  line-height: 1;
  color: #106eea;
  transition: all 0.3s ease-in-out;
}

.featured-services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.featured-services .title a {
  color: #111;
}

.featured-services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

.featured-services .icon-box:hover .title a, .featured-services .icon-box:hover .description {
  color: #fff;
}

.featured-services .icon-box:hover .icon i {
  color: #fff;
}




.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;

     /*background: rgb(0 123 255 / 50%);*/
}

.counts .count-box-2 {
  padding: 60px 3px 24px 8px;
  width: 100%;
  position: relative;
}
.counts .count-box i {

}

.counts .count-box span {
    font-size: 36px;
    display: block;
    font-weight: 600;
    color: #000;
    text-shadow: 0px 0 #fff, 0px 0 #fff, 0 0px #fff, 0 0px #fff, 1px 1px #fff, -1px -1px #fff, 1px -1px #fff, -1px 1px #fff;
}

.mid-line
{
    border-top: 1px solid #a3a3a3;
}
.counts .count-box h5 {

    font-size: 16px;
    color: #fff;
}

.counts .count-box p {
    padding: 0;
    margin: 0;
    font-family: "Roboto", sans-serif;
    font-size: 13px;
    color: #fff;
}




/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;

  box-shadow: 0 0 30px rgba(214, 215, 216, 0.3);
  padding:5px 0 30px 17px;
}



/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
padding: 0;
    color: #ffffff;
    font-size: 14px;
    background: #0d3e6e;
    padding-top: 40px;
}


@media (max-width: 768px) {
  #footer .copyright, #footer .credits {
    float: none;
    text-align: center;
    padding: 2px 0;
  }
    .carousel-item {
    height: 150px !important;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
	
	select#translatedata {
    width: 130px !important;
    font-size: 10px !important;
}
	
	.drop-down-lang {
    left: 1% !important;
    top: 86% !important;
}
    
}


.cont {
    font-size: 20px;
    color: #51be78;
    margin-bottom: 30px;
}

section.slider-section {
    padding: 0px 0;
        margin-top: 148px;
}


.footlink ul i
{
        padding-right: 2px;
    color: #106eea;
    font-size: 18px;
    line-height: 1;
    
}

.imglist ul {
    margin-left: -36px;
}
.imglist li {
    font-size: 16px;
    padding: 0px;
    background: url('../img/bullet-icon.png') no-repeat 2px 7px transparent;
    line-height: 32px;
    list-style-type: none;
    margin: 0;
    padding: 0px 0px 2px 32px;
    vertical-align: middle;
}


.imglist1 ul {
    margin-left: -36px;
}

.imglist1 li {
    font-size: 16px;
    padding: 0px;
 
    line-height: 32px;
    list-style-type: none;
    margin: 0;
   
    vertical-align: middle;
}

.imglist1 li a {
    color: #fff;
    font-size: 14px;
}

.imglist1 li a:hover {
    color: #7cac4b;
  
}


.footer-heading {
    text-decoration: underline;
}
section#about {
    background-color: #fff;
}

.count-box.orage {
    background: #ff9f2d;
}

.count-box.green {
    background: #78b52f;
}

.count-box.blue {
    background: #016bbd;
}

.social.mr-auto {
    position: absolute;
    right: 30px;
}

i.icofont-twitter {
        font-size: 20px;
    color: #0062cc;
    padding: 6px;
    margin-right: 12px;
    background-color: #ffffff;
    border-radius: 50%;
}

i.icofont-facebook {
       font-size: 20px;
    color: #0062cc;
    padding: 6px;
    margin-right: 12px;
    background-color: #ffffff;
    border-radius: 50%;
}
i.fab.fa-x-twitter {
    font-size: 20px;
    color: #0062cc;
    padding: 6px;
    margin-right: 12px;
    background-color: #ffffff;
    border-radius: 50%;
}

i.fab.fa-x-twitter:hover {
       font-size: 20px;
    color: #fff;
    padding: 6px;
    margin-right: 12px;
    background-color: #000;
    border-radius: 50%;
}


i.icofont-linkedin {
       font-size: 20px;
    color: #0062cc;
    padding: 6px;
    margin-right: 12px;
    background-color: #ffffff;
    border-radius: 50%;
}

i.icofont-instagram {
       font-size: 20px;
    color: #0062cc;
    padding: 6px;
    margin-right: 12px;
    background-color: #ffffff;
    border-radius: 50%;
}

i.icofont-instagram:hover {
       font-size: 20px;
    color: #fff;
    padding: 6px;
    margin-right: 12px;
    background-color: #000;
    border-radius: 50%;
}

i.icofont-youtube-play {
       font-size: 20px;
    color: #0062cc;
    padding: 6px;
    margin-right: 12px;
    background-color: #ffffff;
    border-radius: 50%;
}

i.icofont-youtube-play:hover {
       font-size: 20px;
    color: #fff;
    padding: 6px;
    margin-right: 12px;
    background-color: #000;
    border-radius: 50%;
}


i.icofont-linkedin:hover {
       font-size: 20px;
    color: #fff;
    padding: 6px;
    margin-right: 12px;
    background-color: #000;
    border-radius: 50%;
}



i.icofont-facebook:hover {
       font-size: 20px;
    color: #fff;
    padding: 6px;
    margin-right: 12px;
    background-color: #000;
    border-radius: 50%;
}
i.icofont-twitter:hover {
       font-size: 20px;
    color: #fff;
    padding: 6px;
    margin-right: 12px;
    background-color: #000;
    border-radius: 50%;
}

i.icofont-youtube:hover {
       font-size: 20px;
    color: #fff;
    padding: 6px;
    margin-right: 12px;
    background-color: #000;
    border-radius: 50%;
}

i.icofont-youtube {
        font-size: 20px;
    color: #0062cc;
    padding: 6px;
    margin-right: 12px;
    background-color: #ffffff;
    border-radius: 50%;
}

/*.notice {
    padding: 7px 10px;
    background-color: #ededed;
    border-left: 2px solid #ffc107;
    margin-bottom: 10px;
    -webkit-box-shadow: 0 5px 8px -6px rgb(0 0 0 / 20%);
    -moz-box-shadow: 0 5px 8px -6px rgba(0,0,0,.2);
    box-shadow: 0 5px 8px -6px rgb(0 0 0 / 20%);
}
*/
.notice {
  background-color: #e8f0fb; /* soft light blue */
  padding: 10px 15px;
       border-bottom: 2px solid #1a44ad; 
    
  /*border-left: 4px solid #1a44ad;*/
  border-radius: 6px;
  margin-bottom: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: background-color 0.3s ease;
  font-size: 14px;
  color: #333;
}

.notice:hover {
  background-color: #dce8f9;
}


.main-head > h4

{
     background: rgb(44 156 80 / 28%);
  font-size: 21px;
  color: #245a3f;
  font-weight: 500;
  padding: 14px 20px;
  border: 1px solid rgba(88, 179, 117, 0.3);
  border-radius: 10px;
margin-bottom: 15px;
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;   
    
 /*   background-color: #fba722;
    font-size: 21px;
    color: #fff;
    font-weight: 400;
    padding: 7px 12px;*/
    
}

.back-color-2 {
    background-color: #8ec8e5;
    box-shadow: inset 0px 0px 12px 0px rgb(0 0 0 / 10%);
    padding-bottom: 61px;
}
.col-lg-6.col-md-6.mt-5.mt-md-0.pt-4 {
    margin-bottom: 36px;
}

.serviceBox1{
background: url(../img/biodivercity_home.jpg);
    background-repeat: no-repeat;
    padding: 30px 25px;
    transition: all 0.6s ease 0s;
    background-size: cover;
    
    position: relative;
    overflow: hidden;
    /* background: #fff; */
    box-shadow: 0 0 29px 0 rgb(68 88 144 / 12%);
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
    z-index: 1;
}

.serviceBox2{
background: url(../img/climate-change-home.jpg);
    background-repeat: no-repeat;
    padding: 30px 25px;
    transition: all 0.6s ease 0s;
    background-size: cover;
    
    position: relative;
    overflow: hidden;
    /* background: #fff; */
    box-shadow: 0 0 29px 0 rgb(68 88 144 / 12%);
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
    z-index: 1;
}

.serviceBox3{
background: url(../img/land-home.jpg);
    background-repeat: no-repeat;
    padding: 30px 25px;
    transition: all 0.6s ease 0s;
    background-size: cover;
    
    position: relative;
    overflow: hidden;
    /* background: #fff; */
    box-shadow: 0 0 29px 0 rgb(68 88 144 / 12%);
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
    z-index: 1;
}

.serviceBox .service-icon{
      width: 100px;
    height: 100px;
    line-height: 105px;
    border-radius: 50%;
    background: #fff;
    display: inline-block;
  
    color: #26b9d3;
    text-align: center;
    opacity: 0.5;
}
.serviceBox .title{
     font-size: 24px;
    color: #fff;
    line-height: 0px;
    margin: 30px 0;
}
.serviceBox .sub-title{
    font-size: 20px;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 12px;
}
.serviceBox .description {
    font-size: 16px;
    color: #fff;
    line-height: 22px;
    margin: 20px 0 0px 0px;
        min-height: 114px;
}
.serviceBox .read{
    display: inline-block;
    width: 124px;
    height: 50px;
    position: relative;
    overflow: hidden;
    font-size: 20px;
    color: #2795a8;
    background: #fff;
    line-height: 50px;
    text-align: center;
    text-transform: uppercase;
    z-index: 1;
    transition: all 0.3s ease 0s;
}
.serviceBox .read:hover{
    color: #fff;
}
.serviceBox .read:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background: #26b9d3;
    color: #fff;
    z-index: -1;
    transition: all 0.3s ease 0s;
}
.serviceBox .read:hover:before {
    top: 0;
}
@media screen and (max-width: 990px){
    .serviceBox{ margin-bottom: 30px; }
    .serviceBox .description{ margin: 20px 0; }
}

.client-1 {
  height: 350px;
  background-image: url("../img/land-bac-2.jpg");
  -webkit-transition: background-image 0.5s linear;
  background-size: cover;
}

.client-1:hover {
  background-image: url("../img/land-new.jpg");
}

.client-2 {
  height: 350px;
  background-image: url("../img/landscapes-new-2.jpg");
  -webkit-transition: background-image 0.5s linear;
  background-size: cover;
}

.client-2:hover {
  background-image: url("../img/landscapes-new.jpg");
}

.client-3 {
  height: 350px;
  background-image: url("../img/marine-habitat-new-2.jpg");
  -webkit-transition: background-image 0.5s linear;
  background-size: cover;
}

.client-3:hover {
  background-image: url("../img/marine-habitat-new.jpg");
}

.client-4 {
  height: 350px;
  background-image: url("../img/emissions-new-2.jpg");
  -webkit-transition: background-image 0.5s linear;
  background-size: cover;
}

.client-4:hover {
  background-image: url("../img/emissions-new.jpg");
}

.client-5 
{
  height: 350px;
  background-image: url("../img/beni-2.jpg");
  -webkit-transition: background-image 0.5s linear;
  background-size: cover;
}

.client-5:hover {
  background-image: url("../img/beni.jpg");
}


.col-lg-2.col-md-6.mt-5.mt-lg-0 {
    min-width: 20%;
}
.col-md-12.mt-3 {
    padding-bottom: 30px;
}
main#main {
    margin-top: 215px;
}
.inner-head {
    text-align: center;
}

element.style {
}
.drop-down-lang {
    display: inline-flex;
    position: absolute;
    left: 56%;
    /* right: 50%; */
    top: 24%;
    /* transform: translatex(-50%); */
    /* flex-direction: row; */
    /* justify-content: center !important; */
}

/*custom css */

.modal-content-form {
    position: relative;
    background-color: #ffffff;
    /* border: 1px solid #999999; */
    /* border: 1px solid rgba(0, 0, 0, 0.2); */
    border-radius: 0;
    outline: none;
    -webkit-box-shadow: 0 3px 9px rgb(0 0 0 / 50%);
    box-shadow: 0 2px 13px rgb(0 0 0 / 24%);
    background-clip: padding-box;
    width: 100%;
}
.modal-header-form {
     /* border-bottom: 1px solid #105299; */
   background: #68b8f7;
    /* min-height: 16.4286px; */
    padding: 6px 15px;
    color: #fff;
}

.close-form {
  float: right;
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: .2;
  filter: alpha(opacity=20);
}
.modal-body-form {
  position: relative;
  padding: 20px;
}
.modal-footer-form {
  padding: 19px 20px 20px;
  margin-top: 0;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}

.error-message
{
	color:red;
	font-size:12px;
}
#mobile-valid
{
	color:green;
	font-size:12px;
}
#folio-invalid
{
	color:red;
	font-size:12px;
}

nav.navbar-expand.navbar-light.navbar-bg {
    border-bottom: solid 1px #dbdbdb;
    box-shadow: 0px 2px 15px rgb(0 0 0 / 10%);
}


li.nav-item.dropdown {
    /* background-color: #dee2e6; */
    border-radius: 5px;
    border: solid 1px #cbcbcb;
    /* padding: 1px 10px; */
    list-style: none;
}
.row.text-center.top-head {
  
    padding: 14px 10px;
    margin-bottom: 20px;
    background: rgb(141,209,242);
/*    background: linear-gradient(23deg, rgba(141,209,242,1) 0%, rgba(88,138,244,1) 100%);*/
    background: #68b8f7;
}
div#loginbox {
    padding-bottom: 30px;
}
.input-group {
  
    margin-bottom: 29px;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: #ffffff;
    background-color: #6482a3;
    border-color: #dee2e6 #dee2e6 #fff;
}

a.nav-link {
    background-color: #e7a326;
    color: #fff;
    margin-right: 3px;
}

.col-lg-3.col-md-6.filter-app {
    margin-bottom: 23px;
}
.portfolio-container {
    height: auto !important;
}

.sgp-heading {
  position: relative;
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #222;
  text-align: center;
  margin: 0 auto 30px;
  display: inline-block;
  padding-bottom: 14px;
}

.sgp-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 3px;
  width: 100px;
  background-color: #58b375;
  border-radius: 2px;
}

.image-stack {
    position: relative;
    width: 100%;
    z-index: 2;
}


.image-stack__item--bottom {
    position: absolute;
    right: 10%;
    top: -50%;
    width: 65%;
    z-index: -1;
}

.image-stack__item--top {
    padding-top: 20px;
    padding-right: 30%;
    width: 70%;
}

.image-stack img {
    width: 100%;
    display: block;
    border: 10px;
}
.image-stack__item--top img {
    border: 10px solid #fff;
    -webkit-box-shadow: 0 15px 30px -18px rgba(0, 0, 0, 0.2);
    box-shadow: 0 15px 30px -18px rgba(0, 0, 0, 0.2);
}



    .announcement-section {
background: #eeeeee;
    padding: 10px 8px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    max-width: 900px;
    margin: auto;
    }

    .section-heading {
      font-size: 24px;
      font-weight: 600;
      color: #1a44ad;
      border-bottom: 2px solid #e3eefa;
      padding-bottom: 10px;
      margin-bottom: 30px;
    }

    .announcement-list {
      position: relative;
      margin-left: 10px;
    }

    .announcement-card {
      position: relative;
      display: flex;
      align-items: flex-start;
      margin-bottom: 20px;
      padding-left: 20px;
      border-left: 3px solid #58b375;
    }

    .announcement-dot {
      position: absolute;
      left: -8px;
      top: 5px;
      width: 14px;
      height: 14px;
      background-color: #58b375;
      border-radius: 50%;
      border: 3px solid #fff;
      box-shadow: 0 0 0 2px #58b37544;
    }

    .announcement-content a {
      font-size: 15px;
      color: #222;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      line-height: 1.4;
      transition: all 0.3s ease;
    }

    .announcement-content a:hover {
      color: #1a44ad;
      text-decoration: underline;
    }

    .announcement-content img {
      height: 18px;
      margin-left: 8px;
    }

    @media (max-width: 600px) {
      .announcement-section {
        padding: 20px 15px;
      }
      .announcement-content a {
        font-size: 14px;
      }
    }

@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1230px;
    }
}

.innerpage img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.8s ease;
}