* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

body {
  font-size: 62.5%;
  font-family: "Roboto", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.clear {
  clear: both;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.text-center {
  text-align: center;
}

h2 {
  font-family: "Oswald", sans-serif;
  font-size: 3em;
  font-weight: 900;
  color: #38c6d0;
  letter-spacing: -0.1px;
  line-height: 1.35em;
  margin-bottom: 20px;
}
@media screen and (max-width: 1400px) {
  h2 {
    font-size: 2.6em;
  }
}
@media screen and (max-width: 540px) {
  h2 {
    font-size: 2.2em;
  }
}
h2 span {
  text-transform: none;
  color: #000000;
  font-weight: 300;
  display: block;
}

.subhead {
  width: 60%;
  margin: 0 auto;
}
@media screen and (max-width: 860px) {
  .subhead {
    width: 80%;
  }
}
@media screen and (max-width: 540px) {
  .subhead {
    width: 100%;
  }
}

p {
  font-size: 1.7em;
  color: #000000;
  font-weight: 400;
  line-height: 1.6em;
  margin-bottom: 15px;
}
@media screen and (max-width: 1400px) {
  p {
    font-size: 1.5em;
  }
}

a.cta,
span.cta {
  font-size: 1.7em;
  background-color: #051a28;
  font-weight: 900;
  color: #fff;
  padding: 12px 14px 11px 14px;
  display: inline-block;
  border-radius: 8px;
  transition: all 0.1s ease-in-out;
}
@media screen and (max-width: 1400px) {
  a.cta,
  span.cta {
    font-size: 1.5em;
  }
}
a.cta:hover,
span.cta:hover {
  background-color: #38c6d0;
  color: #051a28;
}

.wrapper {
  max-width: 1000px;
  width: 95%;
  margin: 0 auto;
  display: table;
  padding: 0;
}

.hamburger-menu {
  position: absolute;
  width: 38px;
  height: 40px;
  top: -2px;
  right: 2.5%;
  transition-duration: 0.5s;
  cursor: pointer;
  display: none;
  z-index: 1200;
}
@media screen and (max-width: 860px) {
  .hamburger-menu {
    display: block;
  }
}
.hamburger-menu .icon {
  transition-duration: 0.5s;
  position: absolute;
  height: 3px;
  width: 34px;
  top: 24px;
  background-color: #fff;
}
.hamburger-menu .icon::before {
  transition-duration: 0.5s;
  position: absolute;
  width: 34px;
  height: 3px;
  background-color: #fff;
  content: "";
  top: -10px;
}
.hamburger-menu .icon::after {
  transition-duration: 0.5s;
  position: absolute;
  width: 34px;
  height: 3px;
  background-color: #fff;
  content: "";
  top: 10px;
}
.hamburger-menu.open .icon {
  transition-duration: 0.5s;
  background: transparent;
}
.hamburger-menu.open .icon::before {
  transform: rotateZ(45deg) scaleX(1.25) translate(6px, 6px);
}
.hamburger-menu.open .icon::after {
  transform: rotateZ(-45deg) scaleX(1.25) translate(6px, -6px);
}

header {
  position: absolute;
  top: 16px;
  width: 100%;
  background: #051a28;
  height: 58px;
  z-index: 21;
}
@media screen and (max-width: 1400px) {
  header {
    height: 50px;
  }
}
@media screen and (max-width: 860px) {
  header {
    height: 45px;
  }
}
header .wrapper {
  position: relative;
}
header a.logo {
  width: 95px;
  position: absolute;
  top: -15px;
  left: 0;
}
@media screen and (max-width: 1400px) {
  header a.logo {
    width: 90px;
  }
}
@media screen and (max-width: 860px) {
  header a.logo {
    width: 70px;
  }
}
header a.logo img {
  width: 100%;
}
header .menus {
  float: right;
}
@media screen and (max-width: 860px) {
  header .menus {
    display: none;
    position: absolute;
    top: 45px;
    right: 0;
    width: 220px;
    background: #051a28;
  }
}
@media screen and (max-width: 540px) {
  header .menus {
    width: 100%;
  }
}
header .menus.open {
  display: block;
}
header .menus ul li {
  display: inline-block;
  position: relative;
}
@media screen and (max-width: 860px) {
  header .menus ul li {
    width: 100%;
  }
}
header .menus ul li a {
  font-size: 1.8em;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  padding: 20px 22px 16px 22px;
  display: inline-block;
  line-height: 1.2em;
  transition: all 0.1s ease-in-out;
}
@media screen and (max-width: 1400px) {
  header .menus ul li a {
    font-size: 1.6em;
    padding: 16px 22px 15px 22px;
  }
}
@media screen and (max-width: 540px) {
  header .menus ul li a {
    width: 100%;
    font-size: 1.4em;
  }
}
header .menus ul li:hover {
  background-color: #1a3d54;
}
header .menus ul li:hover ul {
  display: block;
}
header .menus ul li ul {
  position: absolute;
  top: 100%;
  left: 0;
  width: 250px;
  background-color: #051a28;
  display: none;
}
@media screen and (max-width: 1400px) {
  header .menus ul li ul {
    width: 220px;
  }
}
@media screen and (max-width: 860px) {
  header .menus ul li ul {
    position: relative;
    background-color: #0f2b3e;
  }
}
@media screen and (max-width: 540px) {
  header .menus ul li ul {
    width: 100%;
  }
}
header .menus ul li ul li {
  width: 100%;
}
header .menus ul li ul li a {
  font-size: 1.6em;
  font-weight: 700;
  padding: 15px 22px;
  display: inline-block;
  line-height: 1.2em;
  text-transform: capitalize;
  border-bottom: 1px solid #1a3d54;
  width: 100%;
}
@media screen and (max-width: 1400px) {
  header .menus ul li ul li a {
    font-size: 1.5em;
  }
}
header .menus ul li ul li a:hover {
  background-color: #1a3d54;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
footer {
  margin-top: 80px;
  background-color: #141414;
  padding: 40px 0 150px 0;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1400px) {
  footer {
    margin-top: 40px;
    padding: 40px 0 100px 0;
  }
}
@media screen and (max-width: 540px) {
  footer {
    padding: 40px 0 60px 0;
  }
}
footer .wrapper {
  display: flex;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 540px) {
  footer .wrapper {
    flex-direction: column;
  }
}
footer .col {
  width: 35%;
  padding-right: 5%;
}
@media screen and (max-width: 860px) {
  footer .col {
    width: 36%;
  }
}
@media screen and (max-width: 540px) {
  footer .col {
    width: 100%;
  }
}
footer .col:last-child {
  width: 30%;
  text-align: right;
  padding-right: 0;
}
@media screen and (max-width: 860px) {
  footer .col:last-child {
    width: 30%;
  }
}
@media screen and (max-width: 540px) {
  footer .col:last-child {
    width: 100%;
    text-align: left;
  }
}
footer p,
footer a {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}
footer a:hover {
  text-decoration: underline;
}
footer strong {
  font-weight: 900;
}
footer ul.footerLink li {
  margin-bottom: 20px;
}
footer ul.footerLink li a {
  font-weight: 900;
}
footer ul.footerLink li ul {
  margin-top: 10px;
}
footer ul.footerLink li ul li {
  margin-bottom: 8px;
  padding-left: 25px;
}
footer ul.footerLink li ul li:last-child {
  margin-bottom: 0;
}
footer ul.footerLink li ul li a {
  font-weight: 500;
}
footer .marquee {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  position: absolute;
  bottom: -30px;
  left: 0;
  border: none;
  outline: none;
}
footer .marquee span {
  text-transform: uppercase;
  will-change: transform;
  transform: translateX(0);
  white-space: nowrap;
  animation: marquee 45s linear infinite;
  font-size: 25em;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  color: #1b1b1b;
  line-height: 1em;
  border: none;
  outline: none;
}
@media screen and (max-width: 1400px) {
  footer .marquee span {
    font-size: 20em;
  }
}
@media screen and (max-width: 540px) {
  footer .marquee span {
    font-size: 15em;
  }
}

#banner {
  position: relative;
}
#banner .swiper-slide {
  position: relative;
}
#banner .swiper-slide::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 10;
  content: "";
}
#banner .swiper-slide img {
  width: 100%;
  float: left;
}
#banner .swiper-pagination-bullet {
  width: 22px;
  height: 4px;
  border-radius: 0;
  background-color: #ffffff;
  opacity: 1;
  margin: 0 6px 10px 6px;
}
#banner .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #38c6d0;
}
#banner .bannerText {
  font-size: 2.8em;
  font-weight: 300;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 19;
  transform: translateY(-50%);
  text-transform: uppercase;
  width: 100%;
  font-family: "Oswald", sans-serif;
  line-height: 2.4em;
}
@media screen and (max-width: 860px) {
  #banner .bannerText {
    font-size: 2em;
    line-height: 1.5em;
  }
}
@media screen and (max-width: 540px) {
  #banner .bannerText {
    position: relative;
    transform: translateY(0);
    color: #000;
    margin-top: 25px;
    font-size: 1.8em;
    line-height: 1.4em;
  }
}
#banner .bannerText .wrapper {
  position: relative;
}
#banner .bannerText h1 {
  color: #38c6d0;
  font-size: 2.1em;
  font-weight: 900;
  margin-top: -10px;
}
@media screen and (max-width: 860px) {
  #banner .bannerText h1 {
    font-size: 1.6em;
    line-height: 1.25em;
    margin-top: 0px;
  }
}
@media screen and (max-width: 540px) {
  #banner .bannerText h1 {
    font-size: 1.4em;
    line-height: 1.25em;
  }
}

#insideBanner {
  position: relative;
  background-repeat: no-repeat;
  background-position: center top;
  background-attachment: fixed;
  height: 385px;
}
@media screen and (max-width: 1400px) {
  #insideBanner {
    height: 300px;
  }
}
@media screen and (max-width: 860px) {
  #insideBanner {
    height: 250px;
  }
}
@media screen and (max-width: 540px) {
  #insideBanner {
    height: 200px;
  }
}
#insideBanner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
}
#insideBanner .bannerText {
  font-size: 2.8em;
  font-weight: 300;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 19;
  transform: translateY(-50%);
  text-transform: uppercase;
  width: 100%;
  font-family: "Oswald", sans-serif;
  line-height: 2.4em;
  text-align: center;
}
@media screen and (max-width: 1400px) {
  #insideBanner .bannerText {
    font-size: 2.5em;
    padding: 50px 2.5% 0 2.5%;
    line-height: 2.2em;
  }
}
@media screen and (max-width: 860px) {
  #insideBanner .bannerText {
    font-size: 2em;
    line-height: 1.5em;
  }
}
@media screen and (max-width: 540px) {
  #insideBanner .bannerText {
    font-size: 1.7em;
    line-height: 1.4em;
    padding: 60px 2.5% 0 2.5%;
  }
}
#insideBanner .bannerText .wrapper {
  position: relative;
}
#insideBanner .bannerText h1 {
  color: #38c6d0;
  font-size: 2.1em;
  font-weight: 900;
  margin-top: -10px;
}
@media screen and (max-width: 1400px) {
  #insideBanner .bannerText h1 {
    font-size: 1.8em;
  }
}
@media screen and (max-width: 860px) {
  #insideBanner .bannerText h1 {
    font-size: 1.6em;
    line-height: 1.25em;
    margin-top: 0px;
  }
}
@media screen and (max-width: 540px) {
  #insideBanner .bannerText h1 {
    font-size: 1.4em;
    line-height: 1.25em;
  }
}

#whatsApp {
  position: fixed;
  bottom: 0;
  right: 20px;
  background-color: #051a28;
  border-radius: 8px 8px 0 0;
  z-index: 20;
}
#whatsApp a {
  font-size: 1.5em;
  font-weight: 900;
  color: #fff;
  padding: 9px 15px;
  align-items: center;
  display: flex;
}
#whatsApp a img {
  width: 23px;
  margin-left: 7px;
  display: inline-block;
}

.sections {
  padding: 40px 0;
}

#homeAbt .wrapper {
  position: relative;
}
#homeAbt .content {
  float: right;
  width: 65%;
  position: relative;
  z-index: 3;
  border-radius: 9px;
  background-color: rgb(255, 255, 255);
  box-shadow: 2px 3.464px 5px 0px rgba(0, 0, 0, 0.2);
  padding: 50px 40px;
  margin-top: 85px;
}
@media screen and (max-width: 860px) {
  #homeAbt .content {
    width: 100%;
    margin-top: 300px;
  }
}
@media screen and (max-width: 540px) {
  #homeAbt .content {
    margin-top: 150px;
    padding: 30px 20px;
  }
}
#homeAbt .imgBox {
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  z-index: 1;
}
@media screen and (max-width: 860px) {
  #homeAbt .imgBox {
    width: 80%;
    left: 10%;
  }
}
@media screen and (max-width: 540px) {
  #homeAbt .imgBox {
    width: 90%;
    left: 5%;
  }
}
#homeAbt .imgBox .img1 {
  position: absolute;
  top: 160px;
  left: 0;
  width: 50%;
  z-index: 2;
}
@media screen and (max-width: 860px) {
  #homeAbt .imgBox .img1 {
    top: 50px;
    left: 0%;
  }
}
@media screen and (max-width: 540px) {
  #homeAbt .imgBox .img1 {
    top: 30px;
    display: none;
  }
}
#homeAbt .imgBox .img2 {
  position: absolute;
  top: 0;
  left: 20%;
  width: 80%;
  z-index: 1;
}
@media screen and (max-width: 860px) {
  #homeAbt .imgBox .img2 {
    left: auto;
    right: 0%;
    width: 60%;
  }
}
@media screen and (max-width: 540px) {
  #homeAbt .imgBox .img2 {
    width: 100%;
  }
}

#homePrd .cateList {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 860px) {
  #homePrd .cateList {
    flex-direction: column;
    align-items: center;
  }
}
#homePrd .cateList li {
  width: 48%;
  overflow: hidden;
  border-radius: 8px;
}
@media screen and (max-width: 860px) {
  #homePrd .cateList li {
    width: 70%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 540px) {
  #homePrd .cateList li {
    width: 100%;
  }
}
#homePrd .cateList li a {
  position: relative;
  width: 100%;
  float: left;
}
#homePrd .cateList li a .imgBox {
  position: relative;
  width: 100%;
  float: left;
}
#homePrd .cateList li a .imgBox:before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  top: 0;
  z-index: 2;
  transition: all 0.1s ease-in-out;
}
#homePrd .cateList li a .imgBox img {
  width: 100%;
  float: left;
}
#homePrd .cateList li a .text {
  position: absolute;
  top: 50%;
  left: 0;
  padding: 0 5%;
  width: 100%;
  text-align: center;
  transform: translateY(-50%);
  color: #fff;
  z-index: 4;
}
#homePrd .cateList li a .text h3 {
  font-size: 2.4em;
  font-weight: 900;
  margin-bottom: 15px;
}
@media screen and (max-width: 1400px) {
  #homePrd .cateList li a .text h3 {
    font-size: 2em;
  }
}
#homePrd .cateList li a .text p {
  font-size: 1.4em;
  line-height: 1.6em;
  color: #fff;
  margin-bottom: 0;
  opacity: 0;
  height: 0;
  transition: all 0.1s ease-in-out;
}
#homePrd .cateList li a:hover .imgBox:before {
  background-color: rgba(0, 0, 0, 0.9);
}
#homePrd .cateList li a:hover .text p {
  opacity: 1;
  height: auto;
}
#homePrd .customSolutions {
  width: 45%;
  margin: 56px auto 0;
  text-align: center;
}
@media screen and (max-width: 860px) {
  #homePrd .customSolutions {
    width: 75%;
    margin: 35px auto 0;
  }
}
@media screen and (max-width: 540px) {
  #homePrd .customSolutions {
    width: 100%;
  }
}
#homePrd .customSolutions h4 {
  font-size: 1.8em;
  color: #38c6d0;
  border-bottom: 2px solid #38c6d0;
  font-weight: 900;
  display: inline-block;
  padding-bottom: 6px;
  margin-bottom: 15px;
}
#homePrd .customSolutions a.cta {
  display: inline-flex;
  align-items: center;
}
#homePrd .customSolutions a.cta img {
  width: 23px;
  margin-left: 6px;
}

#homeWhy .list,
#homeWhy .list2 {
  display: grid;
  grid-template-columns: auto auto;
}
@media screen and (max-width: 540px) {
  #homeWhy .list,
  #homeWhy .list2 {
    grid-template-columns: auto;
  }
}
#homeWhy .list li,
#homeWhy .list2 li {
  padding: 0 5%;
  display: inline-block;
  vertical-align: top;
  margin-bottom: 30px;
}
@media screen and (max-width: 540px) {
  #homeWhy .list li,
  #homeWhy .list2 li {
    padding: 0%;
  }
}
#homeWhy .list li img,
#homeWhy .list2 li img {
  height: 50px;
  margin-bottom: 15px;
}
#homeWhy .list li h5,
#homeWhy .list2 li h5 {
  font-family: "Oswald", sans-serif;
  font-size: 2.4em;
  font-weight: 500;
  color: #000000;
  margin-bottom: 15px;
}
@media screen and (max-width: 1400px) {
  #homeWhy .list li h5,
  #homeWhy .list2 li h5 {
    font-size: 1.8em;
  }
}
#homeWhy .list li p,
#homeWhy .list2 li p {
  font-size: 1.6em;
  margin-bottom: 0;
}
@media screen and (max-width: 1400px) {
  #homeWhy .list li p,
  #homeWhy .list2 li p {
    font-size: 1.5em;
  }
}
#homeWhy .list2 li {
  width: 75%;
  margin: 0 auto;
}
@media screen and (max-width: 540px) {
  #homeWhy .list2 li {
    width: 100%;
  }
}
#homeWhy h6 {
  font-family: "Oswald", sans-serif;
  font-size: 2.5em;
  font-weight: 600;
  color: #e4576a;
  margin-bottom: 30px;
  display: inline-block;
  border-bottom: 2px solid #e4576a;
  padding-bottom: 5px;
}
@media screen and (max-width: 1400px) {
  #homeWhy h6 {
    font-size: 2em;
  }
}

#homeExpert ul {
  margin-top: 35px;
  margin-bottom: 15px;
}
#homeExpert ul li {
  display: inline-block;
  vertical-align: top;
  width: 25%;
  position: relative;
  margin: 0 3% 25px 3%;
}
@media screen and (max-width: 540px) {
  #homeExpert ul li {
    width: 45%;
    margin: 0 2% 20px 2%;
  }
}
#homeExpert ul li::before {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 10%;
  width: 80%;
  height: 2px;
  background-color: #000;
}
#homeExpert ul li p {
  margin-bottom: 0;
}

#insidePage {
  margin: 45px 0 20px 0;
}
@media screen and (max-width: 860px) {
  #insidePage {
    margin: 25px 0;
  }
}
#insidePage ul.cateList {
  margin-top: 30px;
  display: grid;
  grid-template-columns: auto auto;
}
@media screen and (max-width: 860px) {
  #insidePage ul.cateList {
    display: inline-block;
  }
}
#insidePage ul.cateList li {
  width: 93%;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 40px;
}
@media screen and (max-width: 860px) {
  #insidePage ul.cateList li {
    margin-bottom: 20px;
    border-radius: 0;
    display: inline-block;
    vertical-align: top;
    width: 47%;
  }
  #insidePage ul.cateList li:nth-child(even) {
    float: right;
  }
}
@media screen and (max-width: 540px) {
  #insidePage ul.cateList li {
    width: 100%;
  }
}
#insidePage ul.cateList li a {
  position: relative;
  width: 100%;
  float: left;
}
#insidePage ul.cateList li a .imgBox {
  position: relative;
  width: 100%;
  float: left;
}
#insidePage ul.cateList li a .imgBox:before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(255, 255, 255, 0) 100%);
  top: 0;
  z-index: 2;
  transition: all 0.1s ease-in-out;
}
@media screen and (max-width: 860px) {
  #insidePage ul.cateList li a .imgBox:before {
    display: none;
  }
}
#insidePage ul.cateList li a .imgBox img {
  width: 100%;
  float: left;
}
#insidePage ul.cateList li a .text {
  position: absolute;
  top: 50%;
  left: 0;
  padding: 0 5%;
  width: 100%;
  text-align: center;
  transform: translateY(-50%);
  color: #fff;
  z-index: 4;
}
@media screen and (max-width: 860px) {
  #insidePage ul.cateList li a .text {
    position: relative;
    transform: none;
    top: 0;
    display: inline-block;
    padding: 0 2%;
  }
}
#insidePage ul.cateList li a .text h3 {
  font-size: 2.4em;
  font-weight: 900;
  margin-bottom: 0;
}
@media screen and (max-width: 1400px) {
  #insidePage ul.cateList li a .text h3 {
    font-size: 2em;
  }
}
@media screen and (max-width: 860px) {
  #insidePage ul.cateList li a .text h3 {
    color: #000;
    margin-top: 15px;
  }
}
#insidePage ul.cateList li a .text p {
  font-size: 1.4em;
  line-height: 1.6em;
  color: #fff;
  margin-bottom: 15px;
  margin-top: 15px;
  display: none;
}
@media screen and (max-width: 860px) {
  #insidePage ul.cateList li a .text p {
    display: block;
    color: #000;
  }
}
#insidePage ul.cateList li a .text span {
  display: none;
  color: #051a28;
  background-color: #38c6d0;
}
@media screen and (max-width: 860px) {
  #insidePage ul.cateList li a .text span {
    display: inline-block;
  }
}
#insidePage ul.cateList li a:hover .imgBox:before {
  background-color: rgba(0, 0, 0, 0.9);
}
#insidePage ul.cateList li a:hover .text p {
  display: block;
}
#insidePage ul.cateList li a:hover .text span {
  display: inline-block;
}
#insidePage ul.list {
  margin-top: 35px;
  margin-bottom: 15px;
}
#insidePage ul.list li {
  display: inline-block;
  vertical-align: top;
  width: 25%;
  position: relative;
  margin: 0 3% 25px 3%;
  text-align: center;
}
@media screen and (max-width: 540px) {
  #insidePage ul.list li {
    width: 45%;
    margin: 0 2% 20px 2%;
  }
}
#insidePage ul.list li::before {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 10%;
  width: 80%;
  height: 2px;
  background-color: #000;
}
#insidePage ul.list li p {
  margin-bottom: 0;
}
#insidePage .insideContent {
  max-width: 860px;
}
#insidePage .insideContent .productImg {
  float: left;
  width: 40%;
  margin-right: 35px;
  margin-bottom: 15px;
}
@media screen and (max-width: 860px) {
  #insidePage .insideContent .productImg {
    width: 50%;
    margin-right: 25px;
  }
}
@media screen and (max-width: 540px) {
  #insidePage .insideContent .productImg {
    width: 100%;
    margin: 0 0 20px 0;
  }
}
#insidePage .relatableProducts {
  background-color: #f8f8f8;
  padding: 40px 0 20px 0;
  margin-top: 50px;
}
@media screen and (max-width: 860px) {
  #insidePage .relatableProducts .cateList {
    margin-top: 10px;
  }
}
#insidePage h5 {
  font-size: 1.7em;
  color: #000000;
  font-weight: 900;
  line-height: 1.6em;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}
#insidePage h5::before {
  position: absolute;
  content: "";
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000;
}
@media screen and (max-width: 1400px) {
  #insidePage h5 {
    font-size: 1.5em;
  }
}
#insidePage ol {
  counter-reset: item;
  list-style: none;
  padding-left: 0;
  margin-top: 10px;
}
#insidePage ol li {
  position: relative;
  padding-left: 17px;
}
#insidePage ol li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background-color: #000;
}
@media screen and (max-width: 1400px) {
  #insidePage ol li::before {
    font-size: 1.5em;
  }
}
#insidePage .iconText ul {
  display: flex;
  flex-direction: row;
  width: 100%;
  text-align: center;
  margin-top: 15px;
  margin-bottom: 25px;
}
@media screen and (max-width: 640px) {
  #insidePage .iconText ul {
    flex-direction: column;
  }
}
#insidePage .iconText ul li {
  padding: 20px 25px;
  box-shadow: 1px 0px 18px #e5e5e5;
  width: 34%;
  margin: 0 1.5%;
  border-radius: 20px;
}
#insidePage .iconText ul li h4 {
  font-family: "Oswald", sans-serif;
  font-size: 1.7em;
  font-weight: 500;
  color: #e4576a;
  margin-bottom: 10px;
}
@media screen and (max-width: 640px) {
  #insidePage .iconText ul li {
    padding: 20px;
    width: 100%;
    margin: 0 0 25px 0 !important;
  }
}
#insidePage .iconText ul li:first-child {
  margin-left: 0;
}
#insidePage .iconText ul li:last-child {
  margin-right: 0;
}
@media screen and (max-width: 640px) {
  #insidePage .iconText ul li:last-child {
    margin-bottom: 0 !important;
  }
}
#insidePage .iconText ul li p {
  margin-bottom: 0;
}
#insidePage .iconText ul li img {
  margin-bottom: 15px;
}

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

a.cta2 {
  color: #000;
  font-size: 14px;
  font-weight: 500;
}
a.cta2:hover {
  text-decoration: underline;
}

.contactIcon {
  width: 25px;
  margin-right: 5px;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 3px;
}/*# sourceMappingURL=style.css.map */