
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: #105299;
 /* 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: 15px;
    top: 0;
  }
  #header .logo {
    font-size: 28px;
  }
    
    section.slider-section {
   
    margin-top: 212px !important;
}
    
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul {
  display: flex;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 10px 0 10px 26px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #fff;
  transition: 0.3s;
    font-size: 14px;
    font-weight: 500;
  padding: 0 3px;
  font-family: "Open Sans", sans-serif;
}

.nav-menu > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -5px;
  left: 0;

  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.nav-menu a:hover:before, .nav-menu li:hover > a:before, .nav-menu .active > a:before {
  visibility: visible;
  width: 100%;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
 /* color: #1a1a1a;*/
    
        color: #ffc107;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 26px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #062b5b;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #106eea;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
    
 i.icofont-facebook {
    font-size: 15px !important;
  
    padding: 4px !important;
   
}
i.icofont-twitter {
    font-size: 15px !important;
  
    padding: 4px !important;
   
}

i.icofont-youtube {
    font-size: 15px !important;
  
    padding: 4px !important;
   
}   
    
}
.social.mr-auto {
 
    right: 61px !important;
}
/* Mobile Navigation */
.mobile-nav-toggle {
     position: fixed;
    right: 14px;
    top: 182px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}



.mobile-nav-toggle i {
  color: #fff;
}

.mobile-nav {
  position: fixed;
    top: 224px;
    right: 14px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #222222;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #106eea;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(9, 9, 9, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}


#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: 60px 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 {
  padding: 0px 0 60px;
}

.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: #4c4c4c;
    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;
    background: url('../img/bullet-icon-1.png') no-repeat 2px 7px transparent;
    line-height: 32px;
    list-style-type: none;
    margin: 0;
    padding: 0px 0px 2px 32px;
    vertical-align: middle;
}



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.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%);
}


.main-head > h4

{
     background-color: #c9e5ff;
    font-size: 21px;
    color: #424242;
    font-weight: 400;
    border: solid 1px #b5d7f5;
    padding: 7px 12px;   
    
 /*   background-color: #fba722;
    font-size: 21px;
    color: #fff;
    font-weight: 400;
    padding: 7px 12px;*/
    
}

.back-color-2 {
    background-color: #c9e5ff;
    box-shadow: inset 0px 0px 12px 0px rgb(0 0 0 / 10%);
}
.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;
}
.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: 142px;
}


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;
}