/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444;
  font-size: 17px !important;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
}
h1 {
  font-size: 32px;
}
h2 {
  font-size: 29px;
}
h3 {
  font-size: 26px;
}
h4 {
  font-size: 23px;
}
h5 {
  font-size: 20px;
}
h6 {
  font-size: 18px;
}
.serch-strip {
  background: #f9f9f9;
  padding: 15px;
  margin-bottom: 0px;
  position: sticky;
  bottom: 0;
}
a {
  color: #1D428A;
  text-decoration: none;
}
a:hover {
  color: #0D70DC;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 20px;
  bottom: 72px;
  z-index: 996;
  background: #06a74e;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #06a74e;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #06a74e;
  border-bottom: 1px solid #06a74e;
  transition: all .4s;
  z-index: 997;
  padding: 15px 0;
}
.fixed-top {
  position: sticky;
}
#header.header-scrolled {
  padding: 8px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#header .logo img {
  width: auto;
  max-height: 35px;
  transition: all 0.3s;
}
#header.header-scrolled .logo img {
  width: auto;
  max-height: 32px;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
  margin-left: 10px;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
  box-shadow: 0 0 0 0 #d2d4ff;
  transition: color .3s ease-in-out, box-shadow .3s ease-in-out;
}
.navbar a i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #fff;
  box-shadow: 0 0 0 2px #fff;
}
.navbar .getstarted, .navbar .getstarted:focus {
  background: #d2d4ff;
  font-size: 17px;
  padding: 7px 14px 7px 10px;
  margin-left: 10px;
  border-radius: 4px;
  color: #000 !important;
  font-weight: 700;
}
.navbar .getstarted i {
  margin-right: 5px;
  font-size: 16px;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #1D428A;
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
.blog-head {
  padding: 0;
  margin: 0 0 24px 0 !important;
}
.blog {
  background: #f4f4f4;
}
.blog-desc p {
  margin-top: 5px;
}
.blog-post {
  background: #ffffff;
  border: 1px solid #d9d9d9;
  padding: 14px;
}
.blog-desc h4 {
  font-size: 19px;
  margin: 15px 0 0 0;
}
.blog-desc h4 a {
  color: #333;
}
.blog-desc .more {
  padding: 7px 12px 5px 12px;
  font-size: 15px;
  font-weight: bold;
  text-transform: uppercase;
}
#main .blog a.more {
  color: #fff;
  text-decoration: none;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}
/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.mobile-nav-toggle.bi-x {
  color: #fff;
}
@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #0b2341;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #1D428A;
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
  display: inline-block;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #1D428A;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 68vh;
  overflow: hidden;
  position: relative;
}
#hero .carousel, #hero .carousel-inner, #hero .carousel-item {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
#hero .carousel-item {
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}
#hero .carousel-container {
  display: flex;
  align-items: center;
  position: absolute;
  top: 78px;
  width: 100%;
}
#hero .bnr-content {
  background-color: rgba(0, 0, 0, 0.08);
  padding: 22px;
  border: 2px solid #c5c5c5;
}
#hero h1 {
  margin: 0;
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
  color: #1d428a;
}
#hero p {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin-top: 10px;
  font-size: 24px;
}
#hero h4, #hero p {
  text-shadow: 2px 2px 0 #fff;
}
#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}
#hero .carousel-inner .carousel-item, #hero .carousel-inner .active.carousel-item-start, #hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}
#hero .carousel-inner .active, #hero .carousel-inner .carousel-item-next.carousel-item-start, #hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}
#hero .btn-get-started {
  background-color: #222;
  font-size: 25px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 6px 30px;
  border-radius: 25px;
  color: #d2d4ff;
  text-transform: uppercase;
  -webkit-animation: glowing 1.5s infinite;
  -moz-animation: glowing 1.5s infinite;
  -o-animation: glowing 1.5s infinite;
  animation: glowing 1.5s infinite;
  border: 1px solid #fff;
  font-weight: 700;
}
@keyframes glowing {
  50% {
    background-color: #147DE7;
    color: #fff;
  }
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 30px 0 30px 0;
}
.my-section-bg {
  background-color: #222;
  color: #fff;
}
.section-bg {
  background-color: #f6f6f6;
}
.section-title {
  padding-bottom: 25px;
}
ul.check {
  list-style: none;
  padding: 0;
}
ul.check li {
  padding: 5px 0;
  padding-left: 25px;
  position: relative;
}
ul.check li::before {
  content: "\f137";
  font-family: "bootstrap-icons";
  color: #06a74e;
  font-size: 16px;
  position: absolute;
  top: 9px;
  left: 0;
  line-height: 1;
}
#about .btn {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 5px;
  transition: 0.3s;
  line-height: 1;
  color: #1D428A;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #1D428A;
}
#about .btn:hover {
  background: #1D428A;
  color: #fff;
  text-decoration: none;
}
#why-us {
  padding: 0;
}
.why-us .content {
  padding: 30px 30px 15px 30px;
}
.why-us .content h3 {
  font-weight: 400;
  font-size: 34px;
  color: #123a6d;
}
.why-us .content h4 {
  font-size: 20px;
  margin-top: 5px;
}
.accordion-list ul {
  padding: 0;
  list-style: none;
}
.accordion-list li + li {
  margin-top: 15px;
}
.accordion-list .collapse:not(.show):first-child {
  display: block;
}
.accordion-list li {
  padding: 15px;
  background: #f4f4f4;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
}
.accordion-list li li {
  margin: 0;
  background-color: transparent;
  border: 0;
}
.accordion-list a {
  display: block;
  position: relative;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding-right: 30px;
  outline: none;
  color: #0b2341;
  cursor: pointer;
}
.accordion-list span {
  color: #215ac9;
  font-weight: 600;
  font-size: 18px;
  padding-right: 10px;
}
.accordion-list b {
  font-size: 18px;
}
.accordion-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}
.accordion-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}
.accordion-list .icon-show {
  display: none;
}
.accordion-list a.collapsed {
  color: #0b2341;
}
.accordion-list a.collapsed:hover {
  color: #1D428A;
}
.accordion-list a.collapsed .icon-show {
  display: inline-block;
}
.accordion-list a.collapsed .icon-close {
  display: none;
}
.why-us .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#0B2341 50%, rgba(96, 201, 255, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}
.why-us .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transform: translateX(-40%) translateY(-50%);
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.2);
}
.why-us .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(29, 66, 138, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}
.why-us .play-btn:hover::after {
  border-left: 15px solid #1D428A;
  transform: scale(20);
}
.why-us .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}
@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}
@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}
.services .icon-box {
  text-align: center;
  background: #fefefe;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
  padding: 50px 20px;
  transition: all ease-in-out 0.3s;
}
.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #f4f4f4;
  border-radius: 50%;
  transition: all 0.3s ease-out 0s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transform-style: preserve-3d;
  position: relative;
  z-index: 2;
}
.services .icon-box .icon i {
  color: #000;
  font-size: 28px;
}
.services .icon-box .icon::before {
  position: absolute;
  content: "";
  left: 3px;
  top: 3px;
  height: 103%;
  width: 103%;
  background: #06a74e;
  border-radius: 50%;
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
  z-index: 1;
}
.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}
.services .icon-box h4 a {
  color: #0b2341;
}
.services .icon-box p {
  line-height: 24px;
  margin-bottom: 0;
}
.services .icon-box:hover {
  background: #06a74e;
  border-color: #06a74e;
}
.services .icon-box:hover .icon {
  background: #fff;
}
.services .icon-box:hover .icon i {
  color: #06a74e;
}
.services .icon-box:hover .icon::before {
  background: #008A3D;
}
.services .icon-box:hover h4, .services .icon-box:hover p {
  color: #fff;
}
.cta {
  padding: 50px 0;
  background: #222;
}
.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}
.cta .cta-btn {
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 1px;
  padding: 6px 25px;
  border-radius: 25px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #d2d4ff;
  color: #d2d4ff;
  display: none;
}
.cta .cta-btn:hover {
  background: #d2d4ff;
  color: #000;
}
.faq .faq-item {
  margin: 20px 0;
  padding: 20px 0;
  border-bottom: 1px solid #e9f1fb;
}
.faq .faq-item i {
  color: #669ee5;
  font-size: 20px;
  float: left;
  line-height: 0;
  padding: 7px 0 0 0;
  margin: 0;
}
.faq .faq-item h4 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  margin: 0 0 10px 28px;
  font-family: "Open Sans", sans-serif;
}
.faq .faq-item p {
  font-size: 15px;
}
.contact .info-box {
  color: #0b2341;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 25px 0 30px 0;
  background: #fff;
}
.contact .info-box i {
  font-size: 28px;
  color: #05a94e;
  border-radius: 50%;
  padding: 4px 9px;
  border: 2px dotted #2dd87a;
}
.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 25px 0 15px 0;
}
.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.contact .info-box p a {
  color: #1D428A;
}
.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 25px;
  background: #fff;
}
.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}
.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form input, .contact .php-email-form textarea, .contact .php-email-form select {
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}
.contact .php-email-form input, .contact .php-email-form select {
  padding: 10px 15px;
}
.contact .php-email-form select:invalid, .contact .php-email-form select option[value=""] {
  color: #75757d;
}
.contact .php-email-form textarea {
  padding: 12px 15px;
}
.contact .php-email-form button[type=submit] {
  background: #06a74e;
  border: 0;
  padding: 10px 30px;
  border-radius: 4px;
  color: #fff;
  transition: 0.4s;
}
.contact .php-email-form button[type=submit]:hover {
  background: #09bb59;
}
.success-msg {
  border: 7px double #3ec565;
  padding: 60px;
  color: #1d428a;
}
#footer {
  background: #222;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 17px;
}
#footer .footer-top {
  padding: 25px 0 5px 0;
}
#footer .footer-top .footer-info {
  padding: 0 20px;
}
#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 8px 0;
  padding: 2px 0;
  line-height: 1;
  font-weight: 700;
}
#footer .footer-top .footer-info p {
  font-size: 17px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Open Sans", sans-serif;
}
#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 34px;
  transition: 0.3s;
  background-color: #06a74e;
}
#footer .footer-top .social-links a:hover {
  background-color: #666;
}
#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul li {
  position: relative;
  padding: 6px 0;
  padding-left: 22px;
}
#footer .footer-top .footer-links ul li::before {
  color: #fff;
  font-size: 17px;
  content: "\f135";
  font-family: "bootstrap-icons";
  position: absolute;
  top: 11px;
  left: 0;
  line-height: 1;
}
#footer .footer-links a {
  color: #fff;
}
#footer .footer-top .footer-links ul a:hover {
  color: #06a74e;
}
#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}
#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}
#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 20px 2px 20px;
  background: #1D428A;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}
#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #0D70DC;
}
#footer .copyright {
  border-top: 1px solid #505050;
  text-align: center;
  padding-top: 30px;
}
#disclaimer {
  font-size: 15px;
}
.blog-main .single-blog {
  padding: 15px;
  background-color: #f6f6f6;
  border: 1px solid #d5d5d5;
  margin-bottom: 24px;
}
.blog-text {
  margin: 15px 0 10px 0;
}
.blog-text h4 a {
  color: #444;
  text-decoration: none;
}
.post-information {
  padding: 20px 0;
}
.internal-section h1, .internal-section h2, .internal-section h3 {
  margin-bottom: 15px;
}
.internal-section a, #main p a {
  color: #06a74e;
}
.internal-section a:hover, #main p a:hover {
  text-decoration: underline;
  text-decoration-color: #000;
}
ol li::marker {
  font-weight: bold;
  color: #06a74e;
}
.entry-meta {
  font-size: 14px;
  margin-top: 12px;
  margin-bottom: 5px;
}
.nav-links {
  margin: 50px auto 10px auto;
}
.nav-links span, .nav-links a {
  padding: 5px 8px;
  border-radius: 4px;
  background-color: #06a74e;
  color: #fff;
}
.nav-links span.current, .nav-links a:hover {
  background-color: #222;
}
#sidebar {
  background-color: #f4f4f4;
  border: 1px solid #cdcdcd;
  padding: 10px 15px;
  margin-bottom: 15px;
  font-size: 16px;
}
#sidebar ul {
  padding: 0;
}
#sidebar h4 {
  margin: 15px 0;
  padding-bottom: 10px;
  border-bottom: 3px solid #06a74e;
}
#sidebar .widget-content ul {
  margin: 0 0 20px 0;
  list-style: none;
}
#sidebar .widget-content ul li {
  position: relative;
  padding: 8px 0;
  padding-left: 24px;
  border-bottom: 1px dotted #06a74e;
}
#sidebar .widget-content ul li:last-child {
  border-bottom: 0;
}
#sidebar .widget-content ul li::before {
  color: #06a74e;
  font-size: 19px;
  content: "\F135";
  font-family: "bootstrap-icons";
  position: absolute;
  top: 6px;
  left: 0;
}
#sidebar .widget-content ul li a {
  color: #444;
}
#sidebar a:hover {
  text-decoration: none;
}
#sidebar .wp-block-tag-cloud a {
  font-size: 14px !important;
  color: #000;
  padding: 1px 8px;
  display: inline-block;
  margin: 2px 0;
  border: 1.5px solid #06a74e;
}
.twoboxsectn.box {
  border: 1px solid #d3d3d3;
  padding: 10px;
  margin: 8px 0 20px;
  text-align: center;
}
.twoboxsectn.box .icon {
  font-size: 40px;
  color: #06a74e;
}
.twoboxsectn.box h3 {
  margin: 0 0 10px;
  color: #06a74e;
}
.twoboxsectn.box a {
  color: #333;
}
#product-bxs a {
  background: #fff;
  padding: 10px 12px;
  font-weight: 700;
  text-align: center;
  display: block;
  margin: 10px 0;
  border-top: 2px solid #06a74e;
  border-bottom: 4px solid #d9d9d9;
  border-radius: 0 0 6px 6px;
  color: #000;
}
#product-bxs a:hover {
  background: #06a74e;
  color: #fff;
  border-bottom-color: #027837;
  box-shadow: inset 0 0 7px rgba(255, 255, 255, 0.35);
}
.stripbox {
  border: 2px solid #06a74e;
  padding: 15px
}
input.search-submit {
  background: #06a74e !important;
  color: #fff !important;
  border: none;
  padding: 4px;
}
button.wp-block-search__button.wp-element-button {
  background: #333 !important;
  color: #fff !important;
}
#surveypopup .modal-dialog {
  max-width: 620px;
}
#surveypopup .modal-dialog .modal-content {
  border-radius: 0;
}
#surveypopup h2 {
  font-size: 30px;
}
#surveypopup h4 {
  font-size: 20px;
}
.dark-color {
  background: #2c262d;
  color: #fff;
  font-size: 16px;
  margin: 15px 0 20px 10px;
}
.dark-color:hover {
  background: #2c262d;
  color: #fff;
  border: #2c262d;
}
.light-color {
  background: #504b51;
  color: #fff;
  font-size: 16px;
  margin: 15px 0 20px 10px;
}
.light-color:hover {
  background: #504b51;
  color: #fff;
  border: #504b51;
}
.trusted-seal {
  position: fixed;
  left: 5px;
  bottom: 8px;
  z-index: 9999;
}

@media (max-width: 1024px) {
  .why-us .content, .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 992px) {
  #hero {
    height: 100vh;
  }
  #hero .carousel-container {
    text-align: center;
    top: 74px;
  }
  .why-us .content {
    padding-top: 30px;
  }
}
@media (max-width: 768px) {
  #header {
    padding: 10px 0;
  }
  #header .logo img {
    max-height: 26px;
    transition: all 0.4s;
  }
  #header.header-scrolled .logo img {
    max-height: 19px;
  }
  #hero {
    background-color: #f6f6f6;
    height: 80vh;
  }
  #hero .carousel-container {
    top: 145px;
  }
  #hero h2 {
    font-size: 30px;
  }
  .contact .php-email-form {
    margin-top: 24px;
  }
  #footer .footer-top .col-lg-3 {
    margin-bottom: 15px;
  }
  #footer .footer-top .footer-info {
    padding: 0;
  }
}



.social_icon h6 {
font-size: 21px;
color: #fff;
padding-top: 0px;
padding-bottom: 0px;
margin-bottom: 10px;
}
.social_icon .circle {
width: 40px;
height: 34px;
line-height: 35px;
color: #fff;
margin-right: 10px;
font-size: 25px;
}

.post-tags a {
background-color: #06a74e;
color: #fff;
font-size: 15px;
display: inline-block;
padding: 2px 8px;
margin-right: 5px;
margin-bottom: 5px;
border-radius: 3px;
} border-radius: 3px;
}