
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  scroll-behavior: smooth;
  transition: all .5s linear;
}


body{
	background: #ecf0f3;
	color:#3c3e41;
	font-family: 'Poppins', sans-serif;
}

a {
  color: #03045e;
  text-decoration: none;
}

a:hover {
      color:#ffffff;
}

html::-webkit-scrollbar{width:9px; height:10px; background-color:rgba(0, 0, 0, 0)}
html::-webkit-scrollbar-thumb{background-color:#03045e; border-radius:9px;}
::-moz-scrollbar{width:9px; height:0; background-color:rgba(0, 0, 0, 0)}
::-moz-scrollbar-thumb{background-color:#03045e; border-radius:9px;}
::-o-scrollbar{width:9px; height:0; background-color:rgba(0, 0, 0, 0)}
::-o-scrollbar-thumb{background-color:#03045e; border-radius:9px;}


h1, h2, h3, h4, h5, h6 {
 font-family: 'Montserrat', sans-serif;

}



/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.mt-40{
	margin-top:40px;
}

.section-header {
  text-align: center;
  padding-bottom: 40px;
}
.section-header h2 {
         font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #03045e;
    
}
.section-header p {
  margin: 0 auto;
  color: var(--color-secondary-light);
}
@media (min-width: 1280px) {
  .section-header p {
    max-width: 80%;
  }
}


.btnn{
	    font-size: 16px;
    background: linear-gradient(145deg, #e2e8ec, #ffffff);
    padding: 12px 24px;
    border-radius: 4px;
    transition: 0.3s;
    box-shadow: 5px 5px 15px #D1D9E6, -5px -5px 15px #ffffff;
    font-weight: 600;
    color: #3c3e41;
    font-family: 'Montserrat', sans-serif;
}

.btnn-one{
	
    background:#03045e;
    color:#fff;
}


/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}
.header.sticked {
 background-color: #ECF0F3;
    box-shadow: 10px 10px 19px rgba(0, 0, 0, 0.1);
  
}
.header .logo img {
  /* max-height: 54px; */
  /* margin-right: 6px; */
}
.header .logo h1 {
  font-size: 32px;
  font-weight: 300;
  color: var(--color-secondary);
 
}
.header .logo h1 span {
  color: var(--color-primary);
  font-weight: 500;
}
.header .btn-getstarted, .header .btn-getstarted:focus {
  font-size: 16px;
  padding: 12px 24px;
  border-radius: 4px;
  transition: 0.3s;
  box-shadow: 5px 5px 15px #D1D9E6, -5px -5px 15px #ffffff;
  font-weight: 600;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
}
.header .btn-getstarted:hover, .header .btn-getstarted:focus:hover {
      background: #03045e;
    color: #ffffff;
    transform: translateY(-2px);
}
@media (max-width: 1279px) {
  .header .btn-getstarted, .header .btn-getstarted:focus {
    margin-right: 50px
  }
}

/*--------------------------------------------------------------
# Desktop Navigation 
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
    position: relative;
  }
  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  .navbar li {
    position: relative;
  }
  .navbar > ul > li {
    white-space: nowrap;
  }
  .navbar a, .navbar a:focus {
        display: flex;
    align-items: center;
    justify-content: space-between;
    text-transform: uppercase;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
    color: #3c3e41;
    font-family: 'Montserrat', sans-serif;
  }
  .navbar a i, .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }
  .navbar > ul > li > a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--color-primary);
    visibility: hidden;
    transition: all 0.3s ease-in-out 0s;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out 0s;
  }
  
  .dropdown{
	      transition: 0.3s !important;
  }
  .navbar a:hover:before, .navbar li:hover > a:before, .navbar .active:before {
    visibility: visible;
    transform: scaleX(0.7);
	transition: all 0.3s ease-in-out;
  }
  .navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
    color: var(--color-primary);
  }
  .navbar .dropdown a:hover:before, .navbar .dropdown:hover > a:before, .navbar .dropdown .active:before {
    visibility: hidden;
  }
  .navbar .dropdown a:hover, .navbar .dropdown .active, .navbar .dropdown .active:focus, .navbar .dropdown:hover > a {
    color: var(--color-white);
    background: var(--color-secondary);
  }
  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 0;
    top: 100%;
    margin: 0;
    padding: 0 0 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: var(--color-secondary);
    transition: all 0.3s ease-in-out 0s;
  }
  .navbar .dropdown ul li {
    min-width: 200px;
  }
  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 400;
    color: rgba(var(--color-white-rgb), 0.5);
  }
  .navbar .dropdown ul a i {
    font-size: 12px;
  }
  .navbar .dropdown ul a:hover, .navbar .dropdown ul .active, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
    color: var(--color-white);
    background: var(--color-primary);
  }
  .navbar .dropdown:hover > ul {
    opacity: 1;
    visibility: visible;
	transition: all .5s linear;

    
  }
 
  .navbar .megamenu {
    position: static;
  }
  .navbar .megamenu ul {
    right: 0;
    padding: 10px;
    display: flex;
	
  }
  .navbar .megamenu ul li {
    flex: 1;
  }
  .navbar .megamenu ul li a, .navbar .megamenu ul li:hover > a {
    color: rgba(var(--color-white-rgb), 0.5);
    background: none;
  }
  .navbar .megamenu ul li a:hover, .navbar .megamenu ul li .active, .navbar .megamenu ul li .active:hover {
    color: var(--color-white);
    background: var(--color-primary);
  }
  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }
  .navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
	transition: all 0.3s ease-in-out 0s;
  }
}
@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}
/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 60%;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }
  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 10px 0;
    margin: 0;
    background: #ecf0f3;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  background: linear-gradient(145deg, #e2e8ec, #ffffff);
    box-shadow: 5px 5px 15px #d1d9e6, -5px -5px 15px #ffffff;}
  .navbar a, .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 500;
    color: rgba(var(--color-white-rgb), 0.7);
    white-space: nowrap;
    transition: 0.3s;
  }
  .navbar a i, .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }
  .navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
    color: var(--color-white);
  }
  .navbar .dropdown ul, .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    border: 1px solid rgba(var(--color-secondary-light-rgb), 0.3);
  }
  .navbar .dropdown > .dropdown-active, .navbar .dropdown .dropdown > .dropdown-active {
    display: block;
	  transition: all 0.5s ease-in-out;
  }

  .mobile-nav-toggle {
    display: block !important;
    color: var(--color-secondary);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    top: 45px;
    z-index: 9999;
    right: 20px;
  }
  .mobile-nav-toggle.bi-x {
    color: var(--color-white);
  }

  .mobile-nav-active {
    overflow: hidden;
    z-index: 9995;
    position: relative;
  }
  .mobile-nav-active .navbar {
    left: 0;
  }
  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(var(--color-secondary-rgb), 0.8);
    z-index: 9996;
  }
}

.form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #ecf0f3;
    background-clip: padding-box;
    border: 1px solid #90958b;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.form-control:focus {
    color: #212529;
    background-color: transparent;
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(13,110,253,.25);
}

.what-we-do{
	padding-top:0;
	}
	
	.what-we-do h6{
		text-align:center;
		width:60%;
		margin-left:auto;
		margin-right:auto;
	}

.what-we-do p {
     font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #03045e;
  text-align: center;
  overflow: hidden;
}
.what-we-do p span.typed-text {
  font-weight: 700;
  color: #3c3e41;
}
.what-we-do p span.cursor {
  display: inline-block;
  background-color: #ccc;
  margin-left: 0.1rem;
  width: 3px;
  animation: blink 1s infinite;
}
.what-we-do p span.cursor.typing {
  animation: none;
}
@keyframes blink {
  0%  { background-color: #ccc; }
  49% { background-color: #ccc; }
  50% { background-color: transparent; }
  99% { background-color: transparent; }
  100%  { background-color: #ccc; }
}


/*--------------------------------------------------------------
# service
--------------------------------------------------------------*/
.banner{
	margin:150px 0 60px 0;
border-bottom: 1px solid #c9cccf;}

.banner-text{
}

.banner-text .subtitle {
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
    display: block;
    margin-bottom: 20px;
}

.banner-text h2 {
  
    font-weight: 700;
    font-size: 65px;
    line-height: 75px;
    margin-bottom: 22px;
}

.banner-text h4{
	font-weight:bold;
	font-size:28px;
	
}

.banner-text h6 {
   font-weight: 700;
    font-size: 16px;
}

.banner-text p{
	width:80%;
}

.banner-text h2 span {
	color:#03045e;
}

.banner-img {
    padding:30px;
    transition: 0.5s all ease-in-out;
    border-radius: 10px;
    text-align: center;
    position: relative;
    z-index: 1;
    background: linear-gradient(145deg, #e2e8ec, #ffffff);
    box-shadow: 5px 5px 15px #D1D9E6, -5px -5px 15px #ffffff;
}

.mt-50{
	margin-top:50px;
}
.social-share-inner-left h4{
	margin-bottom:20px;
	font-weight:500;
	font-size:20px;
}
 .social-links a {
  font-size: 18px;
  display: inline-block;


  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
box-shadow: 5px 5px 15px #d1d9e6, -5px -5px 15px #ffffff;
background: linear-gradient(145deg, #e2e8ec, #ffffff);
 }
.social-links a:hover {
     background: #03045e;
    color: #ffffff;
	transform: translateY(-5px);
}
/*--------------------------------------------------------------
# service
--------------------------------------------------------------*/

.service{
	padding-top:0;
}

.service_box{
    text-align: left;
    padding: 35px 50px 35px 50px;
    transition: 0.5s all ease-in-out;
    position: relative;
    border-radius: 10px;
    position: relative;
    z-index: 1;
    height: 100%;
	background:linear-gradient(145deg, #e2e8ec, #ffffff);
	box-shadow:5px 5px 15px #D1D9E6, -5px -5px 15px #ffffff;
}

.service_box:hover{
background: #03045e;
color: #ffffff;
transform: translateY(-2px);
}

.service_box .icon {
    margin-bottom: 26px;
}

.service_box h4{
    
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 20px;
   
}


.service_box p{
	    font-size: 16px;
    line-height: 28px;
 
    margin-bottom: 22px;
   
}

.download-form{
		box-shadow: 5px 5px 15px #d1d9e6, -5px -5px 15px #ffffff;
		background: linear-gradient(145deg, #e2e8ec, #ffffff);
		padding: 50px 15px;
		text-align:
		center;
	margin:30px 0;
	border-radius:10px;
}

.download-form h4{
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 40px;
}

/*--------------------------------------------------------------
# Testimonial
--------------------------------------------------------------*/
.testimonial-box{
	box-shadow: 5px 5px 15px #d1d9e6, -5px -5px 15px #ffffff;
    background: linear-gradient(145deg, #e2e8ec, #ffffff);
}

.review{
    font-size: 16px;
    font-weight: 400;
    padding: 30px 0 ;
}
.name{
      font-size: 20px;
    color: #03045e;
    margin: 0;
    font-weight: 600;
}
.job{
   
    font-size: 14px;
}
.carousel-inner{
    max-width: 800px;
}
.fa-minus {
    font-size: 14px;
}
.carousel-indicators {
    bottom: -20px;
    right: 0;
    margin: 0;
}

.carousel-indicators [data-bs-target ] {
    height: 10px;
    border: 2px solid black;
    width: 10px;
    background-color: inherit;
    border-radius: 50%;
}
.carousel-indicators .active{
    border: 2px solid transparent;
    background-color:#c1e718;
}
.left{
    color: rgb(20, 20, 20);
    font-weight: 600;
}
.right{
    color: rgb(12, 12, 12);
    font-weight: 600;
}
.carousel-control-next, .carousel-control-prev {
    position: relative;

}
@media (max-width:560px) {
    .review{
        font-size: 14px;
        font-weight: 600;
    }
    .name{
        font-size: 13px;
    }
    .job{
        font-size: 10px;
    }
    .right{
        font-size: 12px;
    }
    .left{
        font-size: 12px;
    }
    .carousel-indicators [data-bs-target ] {
        height: 8px;
        border: 1px solid black;
        width: 8px;
        background-color: inherit;
        border-radius: 50%;
    }
    .carousel-indicators .active{
        border: 1px solid transparent;
        background-color:#c1e718;
    }
	.download-form {
    padding: 50px 15px;
   }
   .section-header h2 {
    font-size:40px;
}
.service_box {
   
    padding: 30px;
   
}
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .map {
  margin-bottom: 40px;
}
.contact .map iframe {
  border: 0;
  width: 100%;
  height: 400px;
}
.contact .info {
  padding: 40px;
  box-shadow: 5px 5px 15px #D1D9E6, -5px -5px 15px #ffffff;
  overflow: hidden;
  background:linear-gradient(145deg, #e2e8ec, #ffffff);
}
.contact .info h3 {
  font-weight: 700;
  font-size: 24px;
}

.contact .form-box{
	
    background: linear-gradient(145deg, #e2e8ec, #ffffff);
    box-shadow: 5px 5px 15px #D1D9E6, -5px -5px 15px #ffffff;
    padding: 40px;
}
.contact .info p {
  color: var(--color-secondary-light);
  margin-bottom: 30px;
  font-size: 15px;
}
.contact .info-item + .info-item {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid rgba(var(--color-secondary-rgb), 0.15);
}
.contact .info-item i {
  font-size: 24px;
  color: #03045e;
  transition: all 0.3s ease-in-out;
  margin-right: 20px;
}
.contact .info-item h4 {
  padding: 0;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #03045e;
}
.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
  color: var(--color-secondary-light);
}
.contact .php-email-form {
  width: 100%;
  background: var(--color-white);
}
.contact .php-email-form .form-group {
  padding-bottom: 8px;
}
.contact .php-email-form .error-message {
  display: none;
  color: var(--color-white);
  background: var(--color-red);
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}
.contact .php-email-form .sent-message {
  display: none;
  color: var(--color-white);
  background: var(--color-green);
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .loading {
  display: none;
  background: var(--color-white);
  text-align: center;
  padding: 15px;
}
.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--color-green);
  border-top-color: var(--color-white);
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
.contact .php-email-form input[type=text], .contact .php-email-form input[type=email], .contact .php-email-form textarea {
  border-radius: 0px;
  box-shadow: none;
  font-size: 14px;
}
.contact .php-email-form input[type=text]:focus, .contact .php-email-form input[type=email]:focus, .contact .php-email-form textarea:focus {
  border-color: var(--color-secondary-light);
}
.contact .php-email-form input[type=text], .contact .php-email-form input[type=email] {
  height: 48px;
  padding: 10px 15px;
}
.contact .php-email-form textarea {
  padding: 10px 12px;
  height: 130px;
}
.contact .php-email-form button[type=submit] {
 
    border: 0;
    padding: 13px 50px;
    transition: 0.4s;
    border-radius: 0;
    background:#03045e;
    box-shadow: 5px 5px 15px #d1d9e6, -5px -5px 15px #ffffff;
	font-family: 'Montserrat', sans-serif;
	font-weight:600;
}
.contact .php-email-form button[type=submit]:hover {
    background: #03045e;
    color: #ffffff;
	transform: translateY(-5px);
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}



/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  color: var(--color-white);
  font-size: 14px;
}
.footer .footer-content {
  background: var(--color-secondary);
  padding: 60px 0 30px 0;
}
.footer .footer-content .footer-info {
  margin-bottom: 30px;
}
.footer .footer-content .footer-info h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}
.footer .footer-content .footer-info h3 span {
  color: var(--color-primary);
}
.footer .footer-content .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: var(--font-primary);
  color: var(--color-white);
}
.footer .footer-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-white);
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 15px;
}
.footer .footer-content h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-primary);
  bottom: 0;
  left: 0;
}
.footer .footer-content .footer-links {
  margin-bottom: 30px;
}
.footer .footer-content .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-content .footer-links ul i {
  padding-right: 2px;
  color: var(--color-white);
  font-size: 12px;
  line-height: 1;
}
.footer .footer-content .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
.footer .footer-content .footer-links ul li:first-child {
  padding-top: 0;
}
.footer .footer-content .footer-links ul a {
  color: rgba(var(--color-white-rgb), 0.7);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
.footer .footer-content .footer-links ul a:hover {
  color: var(--color-white);
}
.footer .footer-content .footer-newsletter form {
  margin-top: 30px;
  background: var(--color-white);
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}

.footer .footer-legal {
    padding: 25px 0;
    border-top: 1px solid #d0d3d4;
}
.footer .footer-legal .credits {
  padding-top: 4px;
  font-size: 13px;
  color: var(--color-white);
}
.footer .footer-legal .credits a {
  color: var(--color-primary-light);
}
.footer .footer-legal .social-links a {
  font-size: 18px;
  display: inline-block;


  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
box-shadow: 5px 5px 15px #d1d9e6, -5px -5px 15px #ffffff;
background: linear-gradient(145deg, #e2e8ec, #ffffff);
 }
.footer .footer-legal .social-links a:hover {
     background: #03045e;
    color: #ffffff;
	transform: translateY(-5px);
}


.wrapper{
  width:100%;
}
.wrapper h2{
  font-weight: 700;
    font-size: 24px;
}
.wrapper form{
  
}
.wrapper form.disabled{
  pointer-events: none;
  opacity: 0.7;
}
form .dbl-field{
  display: flex;
  margin-bottom: 25px;
  justify-content: space-between;
}
.dbl-field .field{
  height: 50px;
  display: flex;
  position: relative;
  width: calc(100% / 2 - 13px);
}
.wrapper form i{
  position: absolute;
  top: 50%;
  left: 18px;
  color: #ccc;
  font-size: 17px;
  pointer-events: none;
  transform: translateY(-50%);
}
form .field input,
form .message textarea{
  width: 100%;
  height: 100%;
  outline: none;
  padding: 0 18px 0 18px;
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid #ccc;
}
.field input::placeholder,
.message textarea::placeholder{
  color: #ccc;
}
.field input:focus,
.message textarea:focus{
  padding-left: 47px;
  border: 2px solid #0D6EFD;
}
.field input:focus ~ i,
.message textarea:focus ~ i{
  color: #0D6EFD;
}
form .message{
  position: relative;
}
form .message i{
  top: 30px;
  font-size: 20px;
}
form .message textarea{
  min-height: 130px;
  max-height: 230px;
  max-width: 100%;
  min-width: 100%;
  padding: 15px 20px 0 48px;
}
form .message textarea::-webkit-scrollbar{
  width: 0px;
}
.message textarea:focus{
  padding-top: 14px;
}
form .button-area{
  margin: 25px 0;
  display: flex;
  align-items: center;
}
.button-area button{
  color: #fff;
  border: none;
  outline: none;
  font-size: 18px;
  cursor: pointer;
  border-radius: 5px;
  padding: 13px 25px;
  background: #03045e;
  transition: background 0.3s ease;
}
.button-area button:hover {
    background: #051d75;
}
.button-area span{
  font-size: 17px;
  margin-left: 30px;
  display: none;
}

.field input:focus, .message textarea:focus {
    padding-left: 47px;
    border: 2px solid #051d75;
}

@media (max-width: 600px){
  .wrapper header{
    text-align: center;
  }
  .wrapper form{
    
    
  }
  form .dbl-field{
    flex-direction: column;
    margin-bottom: 0px;
  }
  form .dbl-field .field{
    width: 100%;
    height: 45px;
    margin-bottom: 20px;
  }
  form .message textarea{
    resize: none;
  }
  form .button-area{
    margin-top: 20px;
    flex-direction: column;
  }
  .button-area button{
    width: 100%;
    padding: 11px 0;
    font-size: 16px;
  }
  .button-area span{
    margin: 20px 0 0;
    text-align: center;
  }
}

.be-off-search {
    background: #4dc247;
    width: 50px;
    position: fixed;
    height: 50px;
    color: #fff;
    border-radius: 25px;
    z-index: 3;
    left: 5%;
    bottom: 8%;
}

.be-menu-bar {
    width: 30px;
    display: inline-block;
    position: absolute;
    right: 11px;
    font-size: 38px;
    top: 50%;
    margin-top: -28px;
    text-align: center;
}

.be-off-search a {
    color: #fff;
}

.head_li{
	font-weight:bold;
}

@media (max-width:767px) {

.header .logo img {
   max-height: 54px;
   margin-right: 6px; 
}
.mobile-nav-toggle {
    display: block !important;
    color: var(--color-secondary);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    top: 32px;
    z-index: 9999;
    right: 20px;
}
}


@media (max-width:420px) {
.banner-text h2 span {
    color: #03045e;
    font-size: 40px;
}
.banner-text h2 {
    line-height:44px;
}
}