
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root{
  --primary:#0a2846;
  --secondary:#b88e28;
  --accent-green:#0e6b2e;
}
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}
.getstarted{
  background: var(--primary);
}
a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  color: var(--secondary);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto", sans-serif;
}
.section-pd-top{
  padding-top: 70px;
}
.section-pd-btn{
  padding-bottom: 70px;
}
.section-pd-btn-produ{
  padding-bottom: 50px;
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--secondary);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: var(--secondary);
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
}
select.sn-language-ch{
  display: none;
}
.sn-stiky-nav {
    border-bottom: 1px solid #e5e5e5;
}
#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.sn-hader-bnt{
  padding: 10px 0px;
}

#header .logo a {
  color: #fff;
}
#header .logo img {
  max-height: 100px;
  width: 100%;
}
.bi{
  color: var(--secondary);
  font-size: 25px;
}
/* Top Header Section Strat */

header .sn-header-top {
  background: var(--primary);
  padding: 13px 0px;
}
.sn-header-top .header-top-links ul {
  display: flex;
  gap: 16px;
  margin: 0px;
  padding: 0px;
}

.header-top-links ul li,
a {
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  list-style-type: none;
}

.header-top-links li > i {
  color: #fff;
  margin-right: 5px;
  font-size: 15px;
}
.header-top-links li a:hover {
  color: var(--secondary);
}
.sn-header-top-social-icon a i {
  font-size: 14px;
}
span.social-icon-title {
  font-size: 15px;
  color: #fff;
  font-weight: 500;
 
}
.sn-header-top-social-icon a {
  font-size: 16px;
  margin: 0px 0px 0px 15px;
  color:#ffffff9c;
}
.sn-header-top-social-icon a:hover {
  color: #fff;
}
.sn-header-top-social-icon {
  text-align: end;
}
/* Sticky Nav Bar Style */
.sn-stiky-nav.is-sticky {
  position: fixed !important;
  top: 0;
  width: 100%;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.35s ease-out;
  background-color: #fff;
  z-index: 999;
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
/* Sticky Nav Bar Style end*/
/* Top Header Section End */
/*--------------------------------------------------------------
# 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;
}
.navbar > ul > li {
  white-space: nowrap;
  padding: 10px 0 10px 22px;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #545454b5;
  white-space: nowrap;
  transition: 0.3s;
  text-transform: uppercase;
  position: relative;
}
.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: -6px;
  left: 0;
  background-color: var(--primary);
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}
.navbar a:hover:before, .navbar li:hover > a:before, .navbar .active:before {
  visibility: visible;
  width: 100%;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #000;
}
.navbar .getstarted, .navbar .getstarted:focus {
  padding: 8px 25px;
  margin-left: 35px;
  border-radius: 4px;
  color: #fff;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  border: 2px solid var(--primary);
}
.navbar .getstarted:hover, .navbar .getstarted:focus:hover {
  color: #fff;
  background: var(--primary);
}
.navbar .getstarted:hover:before, .navbar li:hover > .getstarted:before {
  visibility: hidden;
}
.language-selector { margin-left: 22px; }
#languageSwitcher {
  border: 1px solid #d5dde3;
  border-radius: 4px;
  background: #fff;
  color: var(--primary);
  font: 600 13px "Roboto", sans-serif;
  padding: 7px 26px 7px 10px;
  cursor: pointer;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 22px;
  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;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #2a2a2a;
}
.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: var(--primary);
}
.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;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #000;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.mobile-nav-toggle.bi-x {
  color: var(--primary);
}

@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: rgb(255, 255, 255);
  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: #2a2a2a;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: var(--primary);
}
.navbar-mobile > ul > li {
  white-space: nowrap;
  padding: 0;
}
.navbar-mobile a:hover:before, .navbar-mobile li:hover > a:before, .navbar-mobile .active:before {
  visibility: hidden;
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
  color: var(--primary);
  padding-left: 15px;
}
.navbar-mobile .language-selector { margin: 10px 20px; }
.navbar-mobile #languageSwitcher { width: 100%; }
.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: var(--primary);
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background-color: rgba(17, 17, 17, 0.8);
  overflow: hidden;
  padding: 0;
}
#hero .carousel-item {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  transition: 0.3;
}
#hero .carousel-item::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#hero .carousel-content {
  text-align: center;
}
#hero h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
}
#hero h2 span {
  color: var(--primary);
}
#hero p {
  width: 80%;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #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 .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}
#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#hero .carousel-control-next-icon:hover, #hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}
#hero .carousel-indicators{
bottom: 30px;
}
#hero .carousel-indicators li {
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}
#hero .carousel-indicators li.active {
  opacity: 1;
  background: var(--primary);
}
#hero .btn-get-started {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 32px 12px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  text-transform: uppercase;
  border: 2px solid var(--primary);
  background: var(--primary);
}
#hero .btn-get-started:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: #fff;
}
@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
  }
}
@media (min-width: 1024px) {
  #hero p {
    width: 60%;
  }
  #hero .carousel-control-prev, #hero .carousel-control-next {
    width: 5%;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/


.section-bg {
  background-color: #f1f1f1;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}
.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: var(--primary);
}
.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content {
  padding: 30px 0;
}
.about .content h3 {
  font-weight: 700;
  font-size: 34px;
}
.about .content p {
  margin-bottom: 0;
}
.about .content .icon-box {
  margin-top: 25px;
}
.about .content .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
}
.about .content .icon-box i {
  font-size: 48px;
  float: left;
  color: var(--primary);
}
.about .content .icon-box p {
  font-size: 15px;
  color: #848484;
  margin-left: 60px;
}
.about .image {
  background: url("../img/home-about-sec-img.webp") center center no-repeat;
  background-size: cover;
  min-height: 400px;
}
@media (max-width: 991px) {
  .about .image {
    text-align: center;
  }
  .about .image img {
    max-width: 80%;
  }
}
@media (max-width: 667px) {
  .about .image img {
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/

.counts .count-box {
  padding: 30px;
  width: 100%;
  border: 1px solid #e5e5e5;
  border-radius: 5px;
}
.counts .count-box i {
  display: block;
  font-size: 44px;
  color: var(--primary);
  float: left;
  line-height: 0;
}
.counts .count-box span {
  font-size: 48px;
  line-height: 40px;
  display: block;
  font-weight: 700;
  color: #2a2a2a;
  margin-left: 60px;
}
.counts .count-box p {
  padding: 15px 0 0 0;
  margin: 0 0 0 60px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  color: #505050;
}
.counts .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #505050;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}
.counts .count-box a:hover {
  color: #777777;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding: 15px 0;
  text-align: center;
}
.clients img {
  max-width: 45%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
  filter: grayscale(100);
}
.clients img:hover {
  filter: none;
  transform: scale(1.15);
}
@media (max-width: 768px) {
  .clients img {
    max-width: 40%;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  margin-bottom: 20px;
  text-align: center;
}
.services .icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 50%;
  transition: 0.5s;
  color: var(--primary);
  overflow: hidden;
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.15);
}
.services .icon i {
  font-size: 36px;
  line-height: 0;
}
.services:hover .icon {
  box-shadow: 0px 0 25px rgba(92, 159, 36, 0.3);
}
.services .title {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 18px;
  position: relative;
  padding-bottom: 15px;
}
.services .title a {
  color: #444444;
  transition: 0.3s;
}
.services .title a:hover {
  color: var(--primary);
}
.services .title::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 2px;
  background: var(--primary);
  bottom: 0;
  left: calc(50% - 25px);
}
.services .description {
  line-height: 24px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .box {
  padding: 50px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: all ease-in-out 0.3s;
}
.why-us .box span {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #8ed851;
}
.why-us .box h4 {
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
  color: #2a2a2a;
}
.why-us .box p {
  color: #aaaaaa;
  font-size: 15px;
  margin: 0;
  padding: 0;
}
.why-us .box:hover {
  background: var(--primary);
  padding: 30px 30px 70px 30px;
  box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.18);
}
.why-us .box:hover span, .why-us .box:hover h4, .why-us .box:hover p {
  color: #fff;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}
.portfolio .portfolio-item.product-is-hidden {
  display: none !important;
}
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}
.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 15px 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
}
.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  color: #fff;
  background: var(--primary);
}
.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}
.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(42, 42, 42, 0.7);
  border-radius: 10px;
  box-shadow: 0 8px 22px rgba(10, 40, 70, .09);
}
.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(42, 42, 42, 0.7);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}
.portfolio .portfolio-wrap img {
  transition: all ease-in-out 0.3s;
  object-fit: cover;
  width: 100%;
  aspect-ratio: 4 / 3;
}
.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
}
.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}
.portfolio .portfolio-wrap .portfolio-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  font-style: italic;
}
.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}
.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  margin: 0 5px 0 0;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}
.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: var(--secondary);
}
.portfolio .portfolio-wrap:hover::before {
  opacity: 1;
}
.portfolio .portfolio-wrap:hover img {
  transform: scale(1.2);
}
.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/

.portfolio-details {
  padding-top: 40px;
}
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}
.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid var(--primary);
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--primary);
}
.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(42, 42, 42, 0.08);
}
.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}
.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}
.portfolio-details .portfolio-description {
  padding-top: 30px;
}
.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}
.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  background: #fff;
  padding-bottom: 60px;
}
.team .member {
  text-align: center;
  margin-bottom: 20px;
  background: #343a40;
  position: relative;
}
.team .member .member-info {
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}
.team .member .member-info-content {
  margin-top: -50px;
  transition: margin 0.2s;
}
.team .member:hover .member-info {
  background: rgba(0, 0, 0, 0.7);
  opacity: 1;
  transition: 0.4s;
}
.team .member:hover .member-info-content {
  margin-top: 0;
  transition: margin 0.4s;
}
.team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
  color: #fff;
}
.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #fff;
}
.team .member .social {
  margin-top: 15px;
}
.team .member .social a {
  transition: color 0.3s;
  color: #fff;
}
.team .member .social a:hover {
  color: var(--primary);
}
.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #f7f7f7;
  text-align: center;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.pricing .box h3 {
  font-weight: 400;
  padding: 15px;
  margin-top: 15px;
  font-size: 18px;
  font-weight: 600;
  color: #2a2a2a;
}
.pricing .box h4 {
  font-size: 42px;
  color: var(--primary);
  font-weight: 500;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 20px;
}
.pricing .box h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}
.pricing .box h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}
.pricing .box ul {
  padding: 0;
  list-style: none;
  color: #2a2a2a;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}
.pricing .box ul li {
  padding-bottom: 16px;
}
.pricing .box ul i {
  color: var(--primary);
  font-size: 18px;
  padding-right: 4px;
}
.pricing .box ul .na {
  color: #ccc;
  text-decoration: line-through;
}
.pricing .box .btn-wrap {
  padding: 15px;
  text-align: center;
}
.pricing .box .btn-buy {
  display: inline-block;
  padding: 10px 40px 12px 40px;
  border-radius: 4px;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-size: 14px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}
.pricing .box .btn-buy:hover {
  background: var(--primary);
  color: #fff;
}
.pricing .recommended {
  background: var(--primary);
}
.pricing .recommended h3, .pricing .recommended h4, .pricing .recommended h4 span, .pricing .recommended ul, .pricing .recommended ul .na {
  color: #fff;
}
.pricing .recommended .btn-buy {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}
.pricing .recommended .btn-buy:hover {
  background: #fff;
  border-color: #fff;
  color: var(--primary);
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0 100px;
}
.faq .faq-list ul {
  padding: 0;
  list-style: none;
}
.faq .faq-list li + li {
  margin-top: 15px;
}
.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}
.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}
.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #9cdc66;
}
.faq .faq-list .icon-show, .faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}
.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}
.faq .faq-list .icon-show {
  display: none;
}
.faq .faq-list a.collapsed {
  color: #343a40;
}
.faq .faq-list a.collapsed:hover {
  color: var(--primary);
}
.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}
.faq .faq-list a.collapsed .icon-close {
  display: none;
}
@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .contact-info {
  margin-bottom: 20px;
  text-align: center;
}
.contact .contact-info i {
  font-size: 48px;
  display: inline-block;
  margin-bottom: 10px;
  color: var(--primary);
}
.contact .contact-info address, .contact .contact-info p {
  margin-bottom: 0;
  color: #000;
}
.contact .contact-info h3 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
  text-transform: uppercase;
  color: #999;
}
.contact .contact-info a {
  color: #000;
}
.contact .contact-info a:hover {
  color: var(--primary);
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  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: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .loading {
  display: none;
  background: #fff;
  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 #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  height: auto;
  padding: 10px 15px;
  border-radius: 4px;
}
.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: var(--primary);
}
.contact .php-email-form button[type=submit] {
  background: var(--primary);
  border: 0;
  padding: 10px 30px 12px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}
.border-contact{
border: 1px solid #ddd;
}
.contact .php-email-form button[type=submit]:hover {
  background: var(--secondary);
}
.sn-form-btn {
    margin-top: 16px;
    display: inline-block;
    width: 100%;
}
 form.php-email-form {
    margin-top: 60px;
}
.form.sn-contact-form h2 {
    margin-bottom: 35px;
    text-align: center;
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (min-width: 768px) {
  .cont-col {
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
  }
  .contact .contact-address, .contact .contact-phone, .contact .contact-email {
    padding: 20px 0;
  }
 
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f6f6f6;
  min-height: 40px;
  margin-top: 80px;
}
.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 400;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.breadcrumbs ol li + li {
  padding-left: 10px;
}
.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #444444;
  content: "/";
}
@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: var(--primary);
  padding: 0 0 20px 0;
  color: #fff;
  font-size: 14px;
}
h3.dn-ft-heading {
    margin-bottom: 25px;
    font-size: 21px;
    color: #fff;
}
#footer .footer-top {
  background: var(--primary);
  border-bottom: 1px solid #ffffff4e;
  padding: 70px 0 70px 0;
}

#footer .footer-top .footer-info h3 {
  padding: 2px 0 2px 0;
  line-height: 1;
}
a.ft-logo-mr {
    margin-bottom: 15px;
    display: inline-block;
}
#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 29px;
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
  color: #fff;
}
#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #ffffff;
  color: #000000;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .footer-top .social-links a:hover {
  background: var(--secondary);
  color: #fff;
  text-decoration: none;
}
#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #fff;
  font-size: 18px;
  line-height: 1;
}
#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
#footer .footer-top .footer-links ul a:hover {
  color: var(--secondary);
}
#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;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: var(--primary);
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}
#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #6ab82a;
}
#footer .copyright {
  text-align: center;
  padding-top: 20px;
}
#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}


/******** responsve design *********/

@media only screen and (min-width: 768px) and (max-width: 1024px){
.sn-header-top-social-icon{
  display: none;
}
.sn-header-top .header-top-links ul{
  justify-content: space-between;
}
select.getstarted{
  color: #fff !important;
}
section#counts .row {
    gap: 20px 0px;
}
}
@media only screen and (min-width: 320px) and (max-width: 767px){
.sn-header-top-social-icon{
  display: none;
}
.header-top-links ul li:nth-child(2),.header-top-links ul li:nth-child(1) {
    display: none;
}
.sn-header-top .header-top-links ul{
  justify-content: space-between;
}
select.getstarted{
  color: #fff !important;
}
.about .content{
  padding-bottom: 0px;
}
section#counts .row {
    gap: 20px 0px;
}
.martop-0{
  padding-top: 0px !important;
}
select.sn-language-ch {
  display: block;
    color: #fff;
    width: 95px;
    background: var(--primary);
    border: 1px solid #e5e5e587;
}
}
/*--------------------------------------------------------------
# TESTATEK Brand Additions
--------------------------------------------------------------*/
a.ft-logo-mr {
  background: #ffffff;
  padding: 12px 18px;
  border-radius: 8px;
  line-height: 0;
}
a.ft-logo-mr img {
  max-width: 220px;
}
.logo img {
  max-width: 220px;
}
@media (max-width: 575px) {
  .logo img { max-width: 165px; }
  a.ft-logo-mr img { max-width: 165px; }
}
.about .content .icon-box:nth-child(2n) i {
  color: var(--accent-green);
}
.counts {
  background: linear-gradient(180deg, #ffffff 0%, #f6f8f5 100%);
}
.section-title h2 {
  position: relative;
  padding-bottom: 14px;
}
.section-title h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 70px;
  height: 3px;
  background: var(--secondary);
}
.contact-address i, .contact-phone i, .contact-email i {
  color: var(--accent-green) !important;
}
.footer-badge-strip {
  background: var(--accent-green);
  color: #fff;
  text-align: center;
  font-size: 13px;
  letter-spacing: .5px;
  padding: 8px 10px;
}

/* Testimonial cards (no stock client photos) */
.team .member {
  background: #f6f8f5;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  min-height: 260px;
  padding: 10px;
}
.team .member .member-info.static-quote {
  opacity: 1;
  position: relative;
  top: auto; bottom: auto; left: auto; right: auto;
  background: transparent;
  padding: 20px 15px;
}
.team .member .member-info-content {
  margin-top: 0;
}
.team .member .member-info-content::before {
  content: "\201C";
  font-family: Georgia, serif;
  font-size: 50px;
  color: var(--secondary);
  line-height: 1;
  display: block;
  margin-bottom: 5px;
}
.team .member h4 {
  color: var(--primary);
}
.team .member span {
  color: #555;
  font-style: normal;
}

/* Inner page title banner */
.page-title-hero {
  background: linear-gradient(rgba(10,40,70,.88), rgba(10,40,70,.88)), url("../img/slide/slider-3.webp") center/cover no-repeat;
  padding: 90px 0 60px 0;
  text-align: center;
  color: #fff;
}
.page-title-hero h1 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 8px;
}
.page-title-hero p {
  color: var(--secondary);
  font-size: 16px;
  letter-spacing: .5px;
  margin: 0;
}

/* Products catalogue */
.product-intro {
  padding: 64px 0 30px;
  background: linear-gradient(180deg, #f7f9fb 0%, #fff 100%);
}
.product-eyebrow {
  display: inline-block;
  color: var(--secondary);
  font-size: 12px;
  letter-spacing: 1.4px;
  font-weight: 700;
  margin-bottom: 10px;
}
.product-intro h2 {
  color: var(--primary);
  font-size: clamp(27px, 4vw, 38px);
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 14px;
}
.product-intro p { max-width: 680px; margin: 0; line-height: 1.8; }
.product-assurance {
  background: #fff;
  border: 1px solid #e8edf1;
  border-radius: 12px;
  padding: 20px 24px;
  box-shadow: 0 10px 28px rgba(10, 40, 70, .08);
}
.product-assurance div { display: flex; align-items: center; gap: 13px; padding: 9px 0; color: #53606d; }
.product-assurance i { color: var(--secondary); font-size: 22px; }
.product-assurance strong { color: var(--primary); }
.portfolio.section-pd-top { padding-top: 42px; }
.portfolio #portfolio-flters { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; margin-bottom: 34px; }
.portfolio #portfolio-flters li { border: 1px solid #dce4ea; border-radius: 999px; margin: 0; padding: 10px 16px; color: var(--primary); background: #fff; }
.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active { border-color: var(--primary); background: var(--primary); color: #fff; }
.portfolio #portfolio-flters li:focus-visible { outline: 3px solid rgba(184, 142, 40, .42); outline-offset: 2px; }
.glightbox-clean .gclose { background: var(--secondary) !important; opacity: 1 !important; width: 44px; height: 44px; top: 18px; right: 18px; border-radius: 50%; box-shadow: 0 3px 15px rgba(0,0,0,.35); }
.glightbox-clean .gclose:hover { background: var(--primary) !important; transform: scale(1.06); }
@media (max-width: 767px) {
  .page-title-hero { padding: 70px 0 45px; }
  .page-title-hero h1 { font-size: 29px; }
  .product-intro { padding: 45px 0 20px; }
  .portfolio #portfolio-flters { justify-content: flex-start; gap: 7px; }
  .portfolio #portfolio-flters li { font-size: 12px; padding: 9px 12px; }
  .portfolio .portfolio-item { margin-bottom: 20px; }
  .glightbox-clean .gclose { top: 12px; right: 12px; }
}

.map-frame {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0,0,0,.08);
}

.product-cta {
  background: var(--primary);
  padding: 60px 0;
  color: #fff;
}
.product-cta h3 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 14px;
}
.product-cta p {
  color: #dfe6ee;
  margin-bottom: 24px;
}
.product-cta .btn-get-started {
  background: var(--secondary);
  color: #fff;
  border-radius: 4px;
  padding: 10px 26px;
  display: inline-block;
  transition: .3s;
}
.product-cta .btn-get-started:hover {
  background: #fff;
  color: var(--primary);
}

/* Refined site-wide presentation */
body { background: #fff; color: #52606d; line-height: 1.7; }
h1, h2, h3, h4, h5, h6 { color: var(--primary); letter-spacing: -.2px; }
.sn-stiky-nav { background: rgba(255,255,255,.97); }
#header .logo img { max-height: 78px; }
.navbar a { font-weight: 600; letter-spacing: .15px; }
.navbar > ul > li > a { position: relative; }
.navbar > ul > li > a:hover::after, .navbar > ul > li > a.active::after { left: 17px; width: calc(100% - 34px); }
.section-title { padding-bottom: 36px; }
.section-title h2 { font-size: clamp(27px, 3vw, 35px); letter-spacing: -.5px; text-transform: none; margin-bottom: 9px; }
.section-title p { color: #72808d; }
#hero .carousel-item::before { background: linear-gradient(90deg, rgba(5,26,46,.82), rgba(5,26,46,.53)); }
#hero .carousel-content { max-width: 850px; padding: 0 20px; }
#hero h2 { font-size: clamp(34px, 5vw, 58px); line-height: 1.1; text-shadow: 0 3px 20px rgba(0,0,0,.18); margin-bottom: 20px; }
#hero p { font-size: 17px; line-height: 1.75; max-width: 690px; }
#hero .btn-get-started, .product-cta .btn-get-started { border-radius: 999px; padding: 13px 28px; font-weight: 700; letter-spacing: .6px; box-shadow: 0 8px 18px rgba(10,40,70,.25); }
.trust-strip { position: relative; z-index: 2; margin-top: -35px; }
.trust-strip .row { background: #fff; border-radius: 12px; box-shadow: 0 12px 30px rgba(10,40,70,.14); overflow: hidden; }
.trust-strip .col-md-4 { display: flex; align-items: center; gap: 13px; padding: 18px 25px; border-right: 1px solid #edf0f2; }
.trust-strip .col-md-4:last-child { border: 0; }
.trust-strip i { color: var(--secondary); font-size: 28px; }
.trust-strip span { display: flex; flex-direction: column; font-size: 13px; color: #6f7c88; line-height: 1.45; }
.trust-strip strong { color: var(--primary); font-size: 15px; }
.about .content h3 { color: var(--primary); font-size: clamp(28px, 3vw, 37px); line-height: 1.2; }
.about .image { border-radius: 12px; box-shadow: 0 16px 34px rgba(10,40,70,.14); overflow: hidden; }
.about .content .icon-box { padding: 18px; border-radius: 9px; transition: .25s ease; }
.about .content .icon-box:hover { background: #f7f9fa; transform: translateY(-3px); }
.about .content .icon-box i { color: var(--secondary); }
.about-secondary { padding-bottom: 70px; }
.sn-about-page {
    flex-direction: row-reverse;
    
}
.about-page-sec{
background: #f7f9fb;
}
.about-secondary .about-secondary-content { padding: 10px 35px 10px 0; }
.about-secondary .content p { margin-bottom: 3px; }
.about-secondary .content .icon-box { background: #fff; margin-top: 22px; box-shadow: 0 7px 18px rgba(10,40,70,.06); }
.about-secondary-image { min-height: 100%; border-radius: 12px; background: linear-gradient(rgba(10,40,70,.28), rgba(10,40,70,.28)), url("../img/OUR COMMITMENt-img.webp") center/cover; box-shadow: 0 16px 34px rgba(10,40,70,.14); }
.about-page-secondary { padding-top: 70px; }
.about-page-secondary .about-secondary-image { background-image: linear-gradient(rgba(10,40,70,.32), rgba(10,40,70,.32)), url("../img/OUR STRENGTHS-about-img.webp"); }
.about-contact-link { display: inline-flex; align-items: center; gap: 9px; margin: 26px 0 0 18px; color: var(--primary); font-weight: 700; }
.about-contact-link i { color: var(--secondary); transition: transform .2s ease; }
.about-contact-link:hover i { transform: translateX(4px); }
.about .about-details-copy { display: none; }
.about-story { padding: 76px 0;  }
.about-story h2 { font-size: clamp(27px, 3vw, 38px); font-weight: 700; line-height: 1.22; margin-bottom: 17px; }
.about-story p { color: #596875; line-height: 1.8; margin-bottom: 14px; }
.about-story-highlight { height: 100%; min-height:400px ; border-radius: 12px; padding: 40px; display: flex; flex-direction: column; justify-content: flex-end; background: linear-gradient(145deg, rgba(10,40,70,.96), rgba(10,40,70,.79)), url("../img/we-work-img.webp") center/cover; color: #fff; box-shadow: 0 15px 32px rgba(10,40,70,.18); }
.about-story-highlight i { font-size: 34px; color: var(--secondary); margin-bottom: auto; }
.about-story-highlight span { color: #e6bd59; letter-spacing: 1.5px; font-weight: 700; font-size: 12px; margin-bottom: 10px; }
.about-story-highlight h2 { color: #fff; margin: 0; }
.about-principles { padding: 76px 0; }
.principle-card { height: 100%; padding: 29px; border: 1px solid #e6ecf0; border-radius: 12px; background: #fff; box-shadow: 0 8px 22px rgba(10,40,70,.06); transition: .25s ease; }
.principle-card:hover { transform: translateY(-5px); box-shadow: 0 15px 28px rgba(10,40,70,.12); }
.principle-card i { display: inline-flex; width: 48px; height: 48px; align-items: center; justify-content: center; border-radius: 50%; background: #fff8e8; color: var(--secondary); font-size: 23px; }
.principle-card h3 { font-size: 21px; margin: 19px 0 8px; }
.principle-card p { margin: 0; color: #687783; line-height: 1.75; }
.counts { background: #f7f9fb; padding: 65px 0; }
.counts .count-box { background: #fff; border: 0; border-radius: 10px; box-shadow: 0 7px 20px rgba(10,40,70,.07); transition: .25s ease; }
.counts .count-box:hover { transform: translateY(-5px); box-shadow: 0 13px 25px rgba(10,40,70,.13); }
.counts .count-box i { color: var(--secondary); }
.portfolio .portfolio-wrap { border: 1px solid #edf0f2; }
.sourcing-process { background: var(--primary); padding: 80px 0; margin-top: 34px; }
.sourcing-process .section-title h2, .sourcing-process .section-title p { color: #fff; }
.sourcing-process .section-title p { color: #d5e0ea; }
.process-card { position: relative; height: 100%; padding: 30px; border: 1px solid rgba(255,255,255,.18); border-radius: 12px; background: rgba(255,255,255,.06); color: #dbe5ed; }
.process-card span { position: absolute; right: 24px; top: 18px; color: rgba(255,255,255,.15); font-size: 45px; font-weight: 700; }
.process-card i { font-size: 30px; color: var(--secondary); }
.process-card h3 { color: #fff; font-size: 21px; margin: 17px 0 9px; }
.process-card p { margin: 0; line-height: 1.7; }
.team { padding-bottom: 75px; }
.team .member { height: 100%; border-radius: 10px; overflow: hidden; box-shadow: 0 8px 22px rgba(10,40,70,.08); }
.team .member .member-info.static-quote { position: relative; inset: auto; padding: 28px 24px; min-height: 230px; background: #fff; }
.team .member-info-content { position: static !important; transform: none !important; }
.team .member h4 { font-size: 15px; color: var(--secondary); text-transform: uppercase; letter-spacing: 1px; }
.team .member span { color: #596875; line-height: 1.7; }
.contact .contact-info { border: 0; border-radius: 12px; box-shadow: 0 8px 24px rgba(10,40,70,.08); overflow: hidden; margin-bottom: 44px; }
.contact .contact-info > div { padding: 12px; }
.contact .contact-info i { color: var(--secondary); }
.contact .contact-info h3 { color: var(--primary); }
.page-title-hero h1{
  color: #fff;
}
.form.sn-contact-form { max-width: 850px; margin: 0 auto; padding: 35px; border: 1px solid #e9eef2; border-radius: 12px; box-shadow: 0 12px 28px rgba(10,40,70,.08); }
form.php-email-form { margin-top: 0; }
.contact .php-email-form input, .contact .php-email-form textarea { padding: 13px 15px; border-color: #dce4ea; }
.contact .php-email-form button[type=submit] { border-radius: 999px; padding: 13px 30px; font-weight: 700; }
#footer, #footer .footer-top { background: #061d32; }
#footer .footer-top { padding: 65px 0 50px; }
#footer .footer-badge-strip { color: #fff; background: var(--secondary); font-weight: 700; letter-spacing: 1.3px; }
@media (max-width: 767px) {
  #header .logo img { max-height: 58px; }
  #hero, #hero .carousel-item { height: 78vh; min-height: 510px; }
  #hero p { width: 100%; font-size: 15px; }
  .trust-strip { margin: 0; }
  .trust-strip .row { border-radius: 0; box-shadow: none; }
  .trust-strip .col-md-4 { border-right: 0; border-bottom: 1px solid #edf0f2; }
  .trust-strip .col-md-4:last-child { border-bottom: 0; }
  .about .image { min-height: 280px; }
  .about-secondary { padding: 55px 0; }
  .about-secondary .about-secondary-content { padding: 0; }
  .about-secondary-image { min-height: 280px; }
  .about-story, .about-principles { padding: 55px 0; }
  .about-story-highlight { min-height: 250px; padding: 28px; }
  .form.sn-contact-form { padding: 24px 18px; }
  .sourcing-process { padding: 55px 0; }
}
section#about{
  padding-bottom: 70px;
}
