html, body {
  font-family: Prime, serif;
  font-family: Oxanium, serif;
  font-family: Lato, sans-serif;
  color: #3b3b3b;
}

p {
  color: #555555;
  font-weight: 500;
  font-size: 1.1em;
}

.navbar {
  padding: 15px;
  box-shadow: 0px 0px 20px 2px rgb(37, 41, 40);
  z-index: 3;
}
.navbar .navbar-brand img {
  height: 60px;
}
.navbar .nav-item {
  color: #3c4644;
  font-weight: 800;
  position: relative;
}
.navbar .nav-item .nav-link {
  font-size: 1.6em;
  font-family: Baiti, sans-serif;
  font-variant: small-caps;
}
.navbar .nav-item .nav-link:after {
  content: "";
  position: relative;
  display: block;
  height: 2px;
  width: 0px;
  background: #3c4644;
  transition: width 0.2s ease-in-out;
  border-radius: 2px;
}
.navbar .nav-item .nav-link.active, .navbar .nav-item .nav-link:hover {
  color: #3c4644;
}
.navbar .nav-item .nav-link.active:after, .navbar .nav-item .nav-link:hover:after {
  width: 100%;
  transition: width 0.2s ease-in-out;
}

.btn-primary-round {
  border-radius: 30px;
  border: 3px solid #3c4644;
  background: #ffffff;
  color: #3b3b3b;
  font-weight: 900;
  font-size: 1.2em;
  box-shadow: 1px 2px 6px 2px #1b2321;
  padding: 10px 15px;
  display: flex;
  transition: all 0.3s ease-in;
  align-items: center;
  justify-content: space-evenly;
  min-width: 10em;
}
.btn-primary-round:hover {
  color: #ffffff;
  transition: all 0.2s ease-in;
}

.btn-primary-round-inverted {
  border-radius: 30px;
  border: 3px solid #3c4644;
  background: #3c4644;
  color: #ffffff;
  font-weight: 900;
  font-size: 1.2em;
  box-shadow: 1px 2px 6px 2px #1b2321;
  padding: 10px 15px;
  display: flex;
  transition: all 0.3s ease-in;
  align-items: center;
  justify-content: space-evenly;
  min-width: 10em;
}
.btn-primary-round-inverted:hover {
  color: #3c4644;
  transition: all 0.2s ease-in;
}

.bg-light .btn-primary-round {
  box-shadow: 1px 2px 6px 2px rgba(50, 91, 84, 0.25);
}

.btn-products:after, .btn-services:after, .btn-send:after {
  content: "";
  height: 1.9em;
  width: 1.9em;
  margin: 0 5px;
  display: inline-block;
  position: relative;
}
.btn-products:hover, .btn-services:hover, .btn-send:hover {
  background: #3c4644;
}

.btn-products:after {
  background: url("../../assets/images/icons/products.svg") no-repeat center;
  background-size: contain;
  transition: all 0.2s ease-in;
  bottom: 0.1em;
}
.btn-products:hover:after {
  background: url("../../assets/images/icons/products-invert.svg") no-repeat center;
  background-size: contain;
  transition: all 0.2s ease-in;
}

.btn-services:after {
  background: url("../../assets/images/icons/services.svg") no-repeat center;
  background-size: contain;
  transition: all 0.2s ease-in;
}
.btn-services:hover:after {
  background: url("../../assets/images/icons/services-invert.svg") no-repeat center;
  background-size: contain;
  transition: all 0.2s ease-in;
}

.btn-send:after {
  background: url("../../assets/images/icons/send.svg") no-repeat center;
  background-size: contain;
  top: 2px;
}

.section-padding {
  padding: 70px 20px;
}

.highlight {
  color: #3c4644;
  font-weight: 700;
}

@font-face {
  font-family: Prime;
  src: url("../fonts/Prime-Light/Prime Regular.otf");
}
@font-face {
  font-family: Oxanium;
  src: url("../fonts/Oxanium-Light/oxanium/Oxanium-ExtraLight.ttf");
}
@font-face {
  font-family: OxaniumBold;
  src: url("../fonts/Oxanium-Light/oxanium/Oxanium-Regular.ttf");
}
@font-face {
  font-family: Lato;
  src: url("../fonts/lato/Lato-Regular.ttf");
}
@font-face {
  font-family: Baiti;
  src: url("../fonts/MS/microsoft-yi-baiti-regular.ttf");
}
.intro h1 {
  font-weight: 900;
  color: #3c4644;
}
.intro h4 {
  font-family: OxaniumBold, serif;
  font-size: 2em;
}

.coverage-org {
  position: relative;
}
.coverage-org h2 {
  width: 100%;
  text-align: center;
  color: #ffffff;
  text-shadow: #1a3f39 0px 0px 16px;
  font-family: Oxanium, serif;
  z-index: 1;
  font-size: 3em;
  font-weight: 900;
}
.coverage-org h4 {
  width: 100%;
  text-align: center;
  color: #ffffff;
  text-shadow: #1a3f39 0px 0px 16px;
  font-family: Oxanium, serif;
  z-index: 1;
  font-size: 2em;
  font-weight: 500;
}
.coverage-org .org-sum {
  background: url("../../assets/images/bg-org.jpg") no-repeat center;
  box-shadow: 1px 2px 6px 2px #1b2321;
  background-size: cover;
  position: relative;
  display: flex;
  justify-content: center;
  align-content: center;
}
.coverage-org .org-sum:before {
  content: "";
  background: radial-gradient(circle, rgba(73, 130, 121, 0.96) 177px, rgba(73, 130, 121, 0.9) 65%), radial-gradient(rgba(255, 255, 255, 0), rgba(175, 175, 175, 0));
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.coverage-org .org-sum-text {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  padding: 40px 60px;
  background: #396f66;
  box-shadow: 1px 2px 6px 2px #1b2321;
  color: #ffffff;
}
.coverage-org .org-sum-text h2 {
  margin-bottom: 40px;
  font-size: 2.5em;
  width: 100%;
  text-align: center;
}
.coverage-org .org-sum-text p {
  padding-left: 30px;
  color: #ffffff;
  position: relative;
}
.coverage-org .org-sum-text p:before {
  content: "";
  display: flex;
  position: absolute;
  left: 0px;
  top: 9px;
  height: 0.5px;
  width: 20px;
  background: white;
}

.coverage-indiv {
  position: relative;
}
.coverage-indiv h2 {
  width: 100%;
  text-align: center;
  color: #ffffff;
  text-shadow: #1a3f39 0px 0px 16px;
  font-family: Oxanium, serif;
  z-index: 1;
  font-size: 3em;
  font-weight: 900;
}
.coverage-indiv h4 {
  width: 100%;
  text-align: center;
  color: #ffffff;
  text-shadow: #1a3f39 0px 0px 16px;
  font-family: Oxanium, serif;
  z-index: 1;
  font-size: 2em;
  font-weight: 500;
}
.coverage-indiv .indiv-sum {
  background: url("../../assets/images/bg-indiv.jpg") no-repeat center;
  box-shadow: 1px 2px 6px 2px #1b2321;
  background-size: cover;
  position: relative;
  display: flex;
  justify-content: center;
  align-content: center;
}
.coverage-indiv .indiv-sum:before {
  content: "";
  background: radial-gradient(circle, rgba(73, 130, 121, 0.96) 177px, rgba(73, 130, 121, 0.9) 65%), radial-gradient(rgba(255, 255, 255, 0), rgba(175, 175, 175, 0));
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.coverage-indiv .indiv-sum-text {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  padding: 40px 60px;
  background: #396f66;
  box-shadow: 1px 2px 6px 2px #1b2321;
}
.coverage-indiv .indiv-sum-text h2 {
  margin-bottom: 40px;
  font-size: 2.5em;
  width: 100%;
  text-align: center;
}
.coverage-indiv .indiv-sum-text p {
  padding-left: 30px;
  color: #ffffff;
  position: relative;
}
.coverage-indiv .indiv-sum-text p:before {
  content: "";
  display: flex;
  position: absolute;
  left: 0px;
  top: 9px;
  height: 0.5px;
  width: 20px;
  background: white;
}

.line-below {
  padding-bottom: 30px;
}
.line-below:after {
  content: "";
  background: #ffffff;
  display: block;
  position: relative;
  width: 30%;
  height: 2px;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 3px;
}

.line-below-dark {
  padding-bottom: 30px;
}
.line-below-dark:after {
  content: "";
  background: #3c4644;
  display: block;
  position: relative;
  width: 30%;
  max-width: 250px;
  height: 2px;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 3px;
}

.cta {
  position: relative;
  overflow-x: hidden;
}
.cta h1 {
  font-size: 3.5em;
  font-weight: 900;
  font-family: Baiti, serif;
  word-spacing: -10px;
}
.cta h2 {
  color: #ffffff;
  font-size: 2.5em;
  font-family: Baiti, serif;
  word-spacing: -10px;
}
.cta h4 {
  color: #ffffff;
  font-family: Baiti, serif;
  word-spacing: -10px;
}
.cta .cta-inner {
  z-index: 1;
}
.cta:before {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 0;
}
.cta.bg-green {
  background: #3c4644;
  box-shadow: 1px 2px 6px 2px #1b2321;
}
.cta.bg-green h1 {
  color: #ffffff;
  font-family: Baiti, serif;
  word-spacing: -10px;
}
.cta.bg-green h2 {
  color: #ffffff;
  font-family: Baiti, serif;
  word-spacing: -10px;
}
.cta.bg-green:before {
  background: url(../images/bg-top.png) no-repeat center;
  filter: invert(1) grayscale(16) brightness(2.5);
  opacity: 0.02;
  background-size: 80%;
  right: -20%;
  top: 0;
}
.cta.bg-light {
  background: #ffffff;
}
.cta.bg-light h1 {
  color: #3c4644;
  font-family: Baiti, serif;
  word-spacing: -10px;
}
.cta.bg-light h2 {
  color: #3c4644;
  font-family: Baiti, serif;
  word-spacing: -10px;
}
.cta.bg-light:before {
  background: url(../images/bg-top.png) no-repeat center;
  opacity: 0.02;
  background-size: 80%;
  left: -10%;
  top: 0;
}

.title-section {
  background: #3c4644;
  box-shadow: 1px 2px 6px 2px #1b2321;
  position: relative;
  overflow-x: hidden;
  z-index: 1;
}
.title-section:before {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 124%;
  background: url(../images/bg-ele-lines.png) no-repeat center;
  filter: invert(1) grayscale(16) brightness(2.5) drop-shadow(2px 4px 30px white);
  opacity: 0.03;
  background-size: 113%;
  right: -69%;
  top: 0px;
  z-index: 0;
}
.title-section h1 {
  font-weight: 900;
  color: #ffffff;
  font-family: Baiti, serif;
  word-spacing: -10px;
}
.title-section h2 {
  color: #ffffff;
  font-family: Baiti, serif;
  word-spacing: -5px;
}
.title-section h4 {
  color: #ffffff;
  font-family: Baiti, serif;
  word-spacing: -5px;
}

.individ-sum {
  background: url("../../assets/images/bg-indiv.jpg") no-repeat center;
  background-size: cover;
}

.banner-img {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  width: 100%;
  height: 600px;
  background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), url(../images/bg-3.jpg) no-repeat center 3%;
  background-size: cover;
}
.banner-img:before {
  content: "";
  background: radial-gradient(circle, rgba(60, 70, 68, 0.58) 0px, rgba(255, 255, 255, 0) 65%), radial-gradient(rgba(255, 255, 255, 0), rgba(175, 175, 175, 0));
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.banner-img h1 {
  color: #ffffff;
  font-family: Baiti, serif;
  z-index: 1;
  font-size: 5em;
  text-align: center;
  width: 100%;
  font-weight: 600;
  text-shadow: #1a3f39 0px 0px 15px, #1a3f39 0px 0px 6px, #1a3f39 0px 0px 40px;
}
.banner-img h1 span {
  display: inline-block;
  width: 15px;
}
.banner-img h3 {
  color: #ffffff;
  text-shadow: #1a3f39 0px 0px 15px, #1a3f39 0px 0px 15px, #1a3f39 0px 0px 40px;
  font-family: Oxanium, serif;
  z-index: 1;
  font-size: 2em;
  text-align: center;
  width: 100%;
}

.banner-img-about {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  width: 100%;
  height: 300px;
  background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), url(../images/bg-2.jpg) no-repeat center;
  background-size: cover;
}
.banner-img-about:before {
  content: "";
  background: radial-gradient(circle, rgba(60, 70, 68, 0.8) 0px, rgba(255, 255, 255, 0) 65%), radial-gradient(rgba(255, 255, 255, 0), rgba(175, 175, 175, 0));
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.banner-img-about h1 {
  color: #ffffff;
  font-weight: 900;
  text-shadow: #1a3f39 0px 0px 15px, #1a3f39 0px 0px 6px, #1a3f39 0px 0px 40px;
  font-family: Baiti, serif;
  z-index: 1;
  font-size: 5em;
  text-align: center;
  width: 100%;
}
.banner-img-about h3 {
  color: #ffffff;
  text-shadow: #1a3f39 0px 0px 16px;
  font-family: Oxanium, serif;
  z-index: 1;
  font-size: 2em;
  text-align: center;
  width: 100%;
}

#why-container {
  display: flex;
  flex-wrap: wrap;
  padding-top: 80px;
  padding-bottom: 80px;
}
#why-container h1 {
  text-align: center;
  font-weight: 900;
  color: #3c4644;
  font-family: Baiti, serif;
  word-spacing: -10px;
}
#why-container .why-item {
  display: flex;
  justify-content: center;
  align-content: flex-start;
  flex-wrap: wrap;
  text-align: center;
  padding: 20px;
  box-shadow: 10px 10px 15px rgba(255, 255, 255, 0.5), -10px -10px 15px rgba(70, 70, 70, 0.12), 1px 2px 13px rgba(70, 70, 70, 0.18);
  border-radius: 30px;
  margin: 15px;
  position: relative;
  transition: all 0.3s ease-in-out;
}
#why-container .why-item .why-image {
  height: 125px;
  width: 125px;
  padding: 20px;
  margin: 40px auto;
  border-radius: 80px;
  border: #3c4644 solid 5px;
  box-shadow: -11px -14px 33px rgba(138, 149, 147, 0.3882352941);
  transition: all 0.3s ease-in-out;
}
#why-container .why-item .why-image.why-one {
  background: url("../images/icons/secure.svg") no-repeat center;
  background-color: #f9f9f9;
  background-size: 55px;
}
#why-container .why-item .why-image.why-two {
  background: url("../images/icons/max.svg") no-repeat center;
  background-color: #f9f9f9;
  background-size: 55px;
}
#why-container .why-item .why-image.why-three {
  background: url("../images/icons/confidence.svg") no-repeat center;
  background-color: #f9f9f9;
  background-size: 55px;
}
#why-container .why-item .why-image.why-four {
  background: url("../images/icons/simple.svg") no-repeat center;
  background-color: #f9f9f9;
  background-size: 55px;
}
#why-container .why-item h2 {
  width: 100%;
  color: #3c4644;
  margin-bottom: 20px;
  font-weight: 700;
  opacity: 0.8;
  transition: all 0.3s ease-in-out;
}
#why-container .why-item p {
  margin-bottom: 30px;
}
#why-container .why-item:after, #why-container .why-item:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  margin-left: auto;
  margin-right: auto;
  height: 17px;
  width: 80%;
  background-color: #3c4644;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  transition: all 0.3s ease-in-out;
  box-shadow: rgba(60, 70, 68, 0.7411764706) -1px -1px 10px;
}
#why-container .why-item:before {
  content: "";
  top: 0;
  height: 17px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
}
#why-container .why-item:hover {
  box-shadow: 10px 10px 15px rgba(255, 255, 255, 0.5), -10px -10px 15px rgba(70, 70, 70, 0.12), 1px 2px 13px rgba(70, 70, 70, 0.28);
  transition: all 0.3s ease-in-out;
}
#why-container .why-item:hover .why-image {
  box-shadow: -11px -14px 13px rgba(138, 149, 147, 0.3882352941);
  transform: scale(90%);
  transition: all 0.3s ease-in-out;
}
#why-container .why-item:hover:after, #why-container .why-item:hover:before {
  box-shadow: rgba(0, 0, 0, 0.14) -1px -1px 10px, rgba(0, 0, 0, 0.24) -1px -1px 4px inset, rgba(0, 0, 0, 0.19) -1px -1px 5px inset, -1px -1px 3px 1px #1a1c1c;
  transition: all 0.3s ease-in-out;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  width: 90%;
  height: 20px;
  margin-bottom: 10px;
}
#why-container .why-item:hover:before {
  margin-top: 10px;
}
#why-container .why-item:hover h2 {
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

#values-outer-container {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.69), rgba(255, 255, 255, 0.68), rgba(241, 241, 241, 0.68), rgba(234, 234, 234, 0.6)), url("../images/bg/why-bg.jpg");
  background-size: cover;
}

#values-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 80px;
  padding-bottom: 80px;
}
#values-container h1 {
  text-align: center;
  font-weight: 900;
  color: #3c4644;
  font-family: Baiti, serif;
  word-spacing: -10px;
}
#values-container .value-item {
  display: flex;
  justify-content: center;
  align-content: flex-start;
  flex-wrap: wrap;
  text-align: center;
  padding: 20px;
  background: linear-gradient(180deg, #ffffff, #ffffff, #f1f1f1, #eaeaea, #eaeaea, #ffffff);
  box-shadow: 10px 10px 15px rgba(255, 255, 255, 0.5), -10px -10px 15px rgba(70, 70, 70, 0.12), 1px 2px 13px rgba(70, 70, 70, 0.18);
  border-radius: 30px;
  margin: 15px;
  position: relative;
  transition: all 0.3s ease-in-out;
  border: #ffffff solid 4px;
}
#values-container .value-item .value-inner {
  display: inline-block;
  width: 85%;
}
#values-container .value-item .value-image {
  height: 125px;
  width: 125px;
  padding: 20px;
  margin: 40px auto;
  border-radius: 80px;
  border: #ffffff solid 3px;
  background-image: conic-gradient(at 30% -35%, grey, white, grey);
  box-shadow: -11px -14px 33px rgba(138, 149, 147, 0.3882352941);
  transition: all 0.3s ease-in-out;
}
#values-container .value-item .value-image.value-one {
  background: url("../images/icons/person.svg") no-repeat center;
  background-size: 55px;
}
#values-container .value-item .value-image.value-two {
  background: url("../images/icons/sun.svg") no-repeat center;
  background-size: 55px;
}
#values-container .value-item .value-image.value-three {
  background: url("../images/icons/scissors.svg") no-repeat center;
  background-size: 55px;
}
#values-container .value-item .value-image.value-four {
  background: url("../images/icons/shieldvalue.svg") no-repeat center;
  background-size: 55px;
}
#values-container .value-item .value-image.value-five {
  background: url("../images/icons/trophy.svg") no-repeat center;
  background-size: 55px;
}
#values-container .value-item .value-image.value-six {
  background: url("../images/icons/directions.svg") no-repeat center;
  background-size: 55px;
}
#values-container .value-item .value-image.value-seven {
  background: url("../images/icons/innovative.svg") no-repeat center;
  background-size: 55px;
}
#values-container .value-item h2 {
  display: inline-block;
  width: 85%;
  color: #3c4644;
  margin-bottom: 20px;
  font-weight: 700;
  opacity: 0.8;
  font-size: 1.5em;
  transition: all 0.3s ease-in-out;
}
#values-container .value-item p {
  display: inline-block;
  margin-bottom: 30px;
  width: 85%;
}
#values-container .value-item:before {
  content: "";
  display: inline-block;
  position: relative;
  background: #3c4644 url(../images/bg-ele-lines-trans.png) no-repeat 40% 45%;
  background-size: 1200%;
  top: 0;
  width: 15%;
  height: 100%;
  border-radius: 40px;
  transition: all 0.3s ease-in-out;
  box-shadow: inset #151515 1px 1px 12px 1px, white 1px 1px 4px 4px;
  transform: scaleX(100%);
}
#values-container .value-item:hover {
  box-shadow: 10px 10px 15px rgba(255, 255, 255, 0.5), -10px -10px 15px rgba(70, 70, 70, 0.12), 1px 2px 13px rgba(70, 70, 70, 0.28);
  transition: all 0.3s ease-in-out;
}
#values-container .value-item:hover .value-item {
  background: linear-gradient(180deg, #ffffff, #e0dfdf, #eaeaea, #ffffff);
}
#values-container .value-item:hover:before {
  box-shadow: none;
  transition: all 0.3s ease-in-out;
  transform: scaleX(85%);
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  width: 15%;
  height: 100%;
}
#values-container .value-item:hover h2 {
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

#products-outer-container {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.39), rgba(255, 255, 255, 0.38), rgba(241, 241, 241, 0.38), rgba(234, 234, 234, 0.3)), url("../images/bg/products-bg.jpg");
  background-size: cover;
}

#products-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 80px;
  padding-bottom: 80px;
}
#products-container h1 {
  text-align: center;
  font-weight: 900;
  color: #3c4644;
  font-family: Baiti, serif;
  word-spacing: -10px;
  margin-bottom: 50px;
}
#products-container .product-item {
  display: flex;
  justify-content: center;
  align-content: flex-start;
  flex-wrap: wrap;
  text-align: center;
  background: linear-gradient(180deg, #ffffff, #ffffff, #f1f1f1, #eaeaea, #eaeaea, #ffffff);
  box-shadow: 10px 10px 15px rgba(255, 255, 255, 0.5), -10px -10px 15px rgba(70, 70, 70, 0.12), 1px 2px 13px rgba(70, 70, 70, 0.18);
  border-radius: 30px;
  margin: 15px;
  margin-bottom: 80px;
  position: relative;
  transition: all 0.3s ease-in-out;
  border: #ffffff solid 4px;
}
#products-container .product-item .product-inner {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-top: 25px;
  min-height: 320px;
}
#products-container .product-item .product-inner ul {
  width: 100%;
  padding-left: 0;
}
#products-container .product-item .product-inner ul li {
  list-style: none;
}
#products-container .product-item .product-inner .btn {
  align-self: flex-end;
  padding: 8px;
  font-size: 1em;
}
#products-container .product-item .product-image {
  height: 110px;
  width: 110px;
  padding: 20px;
  margin: 40px auto;
  border-radius: 80px;
  border: #ffffff solid 3px;
  position: absolute;
  top: -80px;
  left: calc(50% - 55px);
  background-image: conic-gradient(at 30% -35%, grey, white, grey);
  box-shadow: -11px -14px 33px rgba(60, 70, 68, 0.58);
  transition: all 0.3s ease-in-out;
}
#products-container .product-item .product-image.product-one {
  background: url("../images/icons/car.svg") no-repeat center, conic-gradient(at 45% -35%, grey, white, grey);
  background-size: 55px;
}
#products-container .product-item .product-image.product-two {
  background: url("../images/icons/business.svg") no-repeat center, conic-gradient(at 45% -35%, grey, white, grey);
  background-size: 55px;
}
#products-container .product-item .product-image.product-three {
  background: url("../images/icons/person.svg") no-repeat center, conic-gradient(at 45% -35%, grey, white, grey);
  background-size: 55px;
}
#products-container .product-item .product-image.product-four {
  background: url("../images/icons/shield.svg") no-repeat center, conic-gradient(at 45% -35%, grey, white, grey);
  background-size: 55px;
}
#products-container .product-item .product-image.product-five {
  background: url("../images/icons/boat.svg") no-repeat center, conic-gradient(at 45% -35%, grey, white, grey);
  background-size: 55px;
}
#products-container .product-item .product-image.product-six {
  background: url("../images/icons/guide.svg") no-repeat center, conic-gradient(at 45% -35%, grey, white, grey);
  background-size: 55px;
}
#products-container .product-item .product-image.product-seven {
  background: url("../images/icons/innovative.svg") no-repeat center, conic-gradient(at 45% -35%, grey, white, grey);
  background-size: 55px;
}
#products-container .product-item h2 {
  display: inline-block;
  width: 100%;
  color: #3c4644;
  margin-bottom: 20px;
  font-weight: 700;
  opacity: 0.8;
  font-size: 1.5em;
  transition: all 0.3s ease-in-out;
}
#products-container .product-item p {
  display: inline-block;
  margin-bottom: 30px;
  width: 85%;
}
#products-container .product-item:before {
  content: "";
  display: inline-block;
  position: relative;
  background: #3c4644 url(../images/bg-ele-lines-trans.png) no-repeat 40% 45%;
  background-size: 224%;
  top: 0;
  width: 100%;
  height: 100px;
  border-radius: 20px 20px 0 0;
  transition: all 0.3s ease-in-out;
  transform: scaleX(100%);
}
#products-container .product-item:hover {
  box-shadow: 10px 10px 15px rgba(255, 255, 255, 0.5), -10px -10px 15px rgba(70, 70, 70, 0.12), 1px 2px 13px rgba(70, 70, 70, 0.28);
  transition: all 0.3s ease-in-out;
}
#products-container .product-item:hover .value-item {
  background: linear-gradient(180deg, #ffffff, #e0dfdf, #eaeaea, #ffffff);
}
#products-container .product-item:hover h2 {
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

#services-outer-container {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.39), rgba(255, 255, 255, 0.38), rgba(241, 241, 241, 0.38), rgba(234, 234, 234, 0.3)), url("../images/bg/services-bg.jpg");
  background-size: cover;
}

#services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 80px;
  padding-bottom: 80px;
}
#services-container h1 {
  text-align: center;
  font-weight: 900;
  color: #3c4644;
  font-family: Baiti, serif;
  word-spacing: -10px;
  margin-bottom: 50px;
}
#services-container .service-item {
  display: flex;
  justify-content: center;
  align-content: flex-start;
  flex-wrap: wrap;
  text-align: center;
  background: linear-gradient(180deg, #ffffff, #ffffff, #f1f1f1, #eaeaea, #eaeaea, #ffffff);
  box-shadow: 10px 10px 15px rgba(255, 255, 255, 0.5), -10px -10px 15px rgba(70, 70, 70, 0.12), 1px 2px 13px rgba(70, 70, 70, 0.18);
  border-radius: 30px;
  margin: 15px;
  margin-bottom: 80px;
  position: relative;
  transition: all 0.3s ease-in-out;
  border: #ffffff solid 4px;
}
#services-container .service-item .service-inner {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 20px;
  padding-top: 25px;
  min-height: 315px;
}
#services-container .service-item .service-inner ul {
  width: 100%;
  padding-left: 0;
}
#services-container .service-item .service-inner ul li {
  list-style: none;
}
#services-container .service-item .service-inner .btn {
  align-self: flex-end;
  padding: 8px;
  font-size: 1em;
}
#services-container .service-item .service-image {
  height: 110px;
  width: 110px;
  padding: 20px;
  margin: 40px auto;
  border-radius: 80px;
  border: #ffffff solid 3px;
  position: absolute;
  top: -80px;
  left: calc(50% - 55px);
  background-image: conic-gradient(at 30% -35%, grey, white, grey);
  box-shadow: -11px -14px 33px rgba(60, 70, 68, 0.58);
  transition: all 0.3s ease-in-out;
}
#services-container .service-item .service-image.service-one {
  background: url("../images/icons/personalinsurance.svg") no-repeat center, conic-gradient(at 45% -35%, grey, white, grey);
  background-size: 55px;
}
#services-container .service-item .service-image.service-two {
  background: url("../images/icons/calendar.svg") no-repeat center, conic-gradient(at 45% -35%, grey, white, grey);
  background-size: 55px;
}
#services-container .service-item .service-image.service-three {
  background: url("../images/icons/loyalty.svg") no-repeat center, conic-gradient(at 45% -35%, grey, white, grey);
  background-size: 55px;
}
#services-container .service-item .service-image.service-four {
  background: url("../images/icons/scale.svg") no-repeat center, conic-gradient(at 45% -35%, grey, white, grey);
  background-size: 55px;
}
#services-container .service-item .service-image.service-five {
  background: url("../images/icons/thinking.svg") no-repeat center, conic-gradient(at 45% -35%, grey, white, grey);
  background-size: 55px;
}
#services-container .service-item .service-image.service-six {
  background: url("../images/icons/directions.svg") no-repeat center, conic-gradient(at 45% -35%, grey, white, grey);
  background-size: 55px;
}
#services-container .service-item h2 {
  display: inline-block;
  width: 100%;
  color: #3c4644;
  margin-bottom: 10px;
  font-weight: 700;
  opacity: 0.8;
  font-size: 1.5em;
  transition: all 0.3s ease-in-out;
}
#services-container .service-item p {
  display: inline-block;
  margin-bottom: 30px;
  width: 85%;
}
#services-container .service-item:before {
  content: "";
  display: inline-block;
  position: relative;
  background: #3c4644 url(../images/bg-ele-lines-trans.png) no-repeat 40% 45%;
  background-size: 224%;
  top: 0;
  width: 100%;
  height: 100px;
  border-radius: 20px 20px 0 0;
  transition: all 0.3s ease-in-out;
  transform: scaleX(100%);
}
#services-container .service-item:hover {
  box-shadow: 10px 10px 15px rgba(255, 255, 255, 0.5), -10px -10px 15px rgba(70, 70, 70, 0.12), 1px 2px 13px rgba(70, 70, 70, 0.28);
  transition: all 0.3s ease-in-out;
}
#services-container .service-item:hover .value-item {
  background: linear-gradient(180deg, #ffffff, #e0dfdf, #eaeaea, #ffffff);
}
#services-container .service-item:hover h2 {
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

.bg-light h1, .bg-light h2, .bg-light h3, .bg-light h4 {
  color: #3c4644;
}

.contact-form .form-control, .contact-form .form-select {
  color: #3c4644;
  border-radius: 0;
  border: none;
  border-bottom: 1px #3c4644 solid;
  background: transparent;
}
.contact-form .form-control:active, .contact-form .form-control:focus, .contact-form .form-select:active, .contact-form .form-select:focus {
  box-shadow: none;
  border: none;
  border-bottom: 2px #3c4644 solid;
}
.contact-form .dropdown-item-text {
  font-weight: 900;
}
.contact-form label {
  color: #3c4644;
}
.contact-form .form-floating > .form-control:focus ~ label::after, .contact-form .form-floating > .form-control:not(:placeholder-shown) ~ label::after, .contact-form .form-floating > .form-select ~ label::after {
  background-color: transparent;
}

footer {
  box-shadow: 1px 2px 6px 2px #1b2321;
}
footer .footer-container {
  background: #3c4644;
  box-shadow: 1px 2px 6px 2px #1b2321;
  position: relative;
}
footer .footer-container h5 {
  color: #ffffff;
}
footer .footer-container span {
  color: #ffffff;
}
footer .footer-container a {
  color: #ffffff;
  text-decoration: none;
}
footer .footer-container:before {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  background: url(../images/bg-top.png) no-repeat center;
  filter: invert(1) grayscale(16) brightness(2.5);
  opacity: 0.02;
  background-size: 80%;
  left: -20%;
  top: 0;
  z-index: 0;
}
footer .footer-container .footer-section {
  z-index: 9;
}
footer #copyright {
  display: flex;
  justify-content: center;
}
footer #copyright p {
  color: #757575;
}
footer #copyright a {
  color: #3c4644;
}

.jean-profile {
  background: url("../images/jean.jpeg") no-repeat center center;
  background-size: cover;
  filter: grayscale(1) brightness(1) contrast(0.7);
}

#liveToast {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
  margin-top: 25px;
  margin-right: 25px;
  margin-left: auto;
  color: #ffffff;
  background: #2b3533;
}

.grecaptcha-badge {
  z-index: 1;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background-color: #888;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}

.bg-green {
  background: #3c4644;
}

/*# sourceMappingURL=main.css.map */
