body{
  margin: 0;
  padding: 0;
  font-family: "raleway", sans-serif;
  color: #666;
  font-size: 14px;
  line-height: 20px;
}

/* ==========================
   General
============================= */
a {
  color: #003b8b;
  text-decoration: none;
}
a:hover {
  color: #fba301;
  text-decoration: none;
}
.btn-default {
  color: #333;
  background-color: #29abe2;
  border-color: #29abe2;
  border-radius: 0;
  color: #fff;
  padding: 6px 35px;
  font-weight: bold;
}
.btn-default:hover {
  background-color: #fba301;
  border-color: #fba301;
  color: #fff;
}
.bg-grey {
  background-color: #e9e9e9;
}
.pbot-main {
  padding-bottom: 10px;
}
.pbot-main:after {
  content: "";
  display: block;
  clear: both;
}
.p-main {
  padding: 40px 0;
}
.pos-relative {
  position: relative;
}
.page-title {
  text-align: center;
  margin-bottom: 40px;
  margin-top: 40px;
}
.page-title .lead {
  font-size: 30px;
  color: #003b8b;
  line-height: 34px;
  font-family: raleway, sans-serif;
  font-weight: 700;
}
.page-title .sublead {
  font-size: 14px;
  color: #666666;
  line-height: 20px;
  font-family: raleway, sans-serif;
  font-weight: 400;
}

/* ==========================
2. Navbar
============================= */
.navbar {
  display: flex;
  justify-content: space-between;
}

.nav-logo,
.nav-info {
  width: 50%;
}

.nav-info {
  display: flex;
  justify-content: flex-end;
  padding-top: 8px;
}
.logo {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 1px;
}

.navbar {
  margin-bottom: 0;
}

.hero-button {
  text-align: center;
  margin-top: 32px;
}

.hero-button a {
  border: 1px solid #003b8b;
  /* border-radius: 25px; */
  font-size: 20px;
  color: white;
  padding: 13px 25px;
  font-weight: 700;
  background-color: #003b8b;
  opacity: 0.8;
}

.hero-button a:hover {
  background-color: #fba301;
  transition: all 0.2s ease-in-out;
}

.navbar-main {
  background-color: #fff;
  border-color: transparent;
  -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.05);
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.05);
}
.header-top {
  background-color: #003b8b;
  color: #fff;
  height: 45px;
}
.navbar-main.stiky .header-top {
  display: none;
}
.navbar-main.stiky .navbar-brand {
  margin-top: -15px;
}
.navbar-main .navbar-brand > img {
  padding-top: 1px;
  width: 90%;
  -webkit-transition: 0.2s all linear;
  transition: 0.2s all linear;
}
.navbar-main .nav > li > a {
  position: relative;
  display: block;
  padding: 10px 22px;
}
.navbar-main .navbar-nav > li > a {
  padding-top: 35px;
  min-height: 100px;
  font-size: 14px;
  line-height: 22px;
  color: #333;
  background-color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  -webkit-transition: 0.2s all linear;
  transition: 0.2s all linear;
}
.navbar-main.stiky .navbar-nav > li > a {
  padding-top: 20px;
  min-height: 60px;
}
.navbar-main .navbar-nav > li > a:hover,
.navbar-main .navbar-nav > li > a:focus,
.navbar-main .navbar-nav > li > a:active {
  color: #003b8b;
  border-bottom: #003b8b;
  transition: all 1s ease-out;
  /* background-color: #f8f8f8; */
}

.navbar-brand {
  height: 0;
  padding: 0;
}

.navbar-main .navbar-nav > li.active a {
  color: #0071bc;
  background-color: #f8f8f8;
}
.navbar-toggle .icon-bar {
  background-color: #29abe2;
}
.dropdown-menu {
  border: 0;
  border-bottom: 4px solid #29abe2;
  border-radius: 0;
}
.dropdown-menu > li > a {
  padding: 10px 20px;
}
.info {
  margin-top: 10px;
}
.info a {
  color: #fff;
}
.info a:hover {
  color: #fba301;
}
.info .info-item {
  display: inline-table;
  margin-right: 80px;
}
.info .info-item:last-child {
  margin-right: 0;
}
.info .info-item .fa {
  margin-right: 10px;
}
.top-sosmed {
  margin-top: 8px;
}
.top-sosmed span {
  width: 30px;
  height: 30px;
  text-align: center;
  background-color: #fff;
  color: #003b8b;
  /* display: inline-table; */
  padding-top: 7px;
  border-radius: 50%;
  margin-right: 10px;
}
.top-sosmed span:hover {
  background-color: #fba301;
  color: #fff;
  transition: all 0.2s ease-in-out;
}
.top-sosmed span.fa {
  font-size: 18px;
}

.clearfix {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ==========================
3. Banner
============================= */

/* CSS */
.video-container {
  position: relative;
  height: 50vh;
  min-height: 350px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.video-container video {
  /* position: relative; */
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 10;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 20;
}

.overlay-content {
  position: relative;
  z-index: 55;
  color: white;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.heading-title-new {
  font-size: 2.5rem;
  font-weight: bold;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .video-container {
    height: 60vh;
  }

  .overlay-content {
    padding: 1.5rem;
    text-align: center;
  }

  .heading-title-new {
    font-size: 2rem;
  }

  .overlay-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .video-container {
    height: 60vh;
  }

  .heading-title-new {
    font-size: 1.5rem;
  }

  .overlay-content {
    /* padding: 1rem; */
  }

  .overlay-content p {
    font-size: 0.95rem;
  }
}

/* .video-container {
  position: relative;

  align-items: center;
  justify-content: center;

  height: 50vh;
  overflow: hidden;
}

video {
  position: absolute;
  z-index: 10;
  width: 100%;
 
  max-width: none;
  top: 0;
}

.overlay-content {
  position: absolute;
  padding: 175px 75px;
  z-index: 55;
  color: white;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  
  justify-content: center;
}
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); 
  z-index: 20;
} */
.heading-title-new {
  font-size: 45px !important;
}
.banner {
  background: linear-gradient(135deg, #121212, #1e1e1e, #292929);
  background-image: url("images/hero/hero-bg.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-heading {
  color: #fff;
  font-weight: 800;
  font-size: 60px;
  text-align: center;
}

.banner-text {
  color: #fff;
  font-weight: 300;
  font-size: 30px;
  text-align: center;
}
.banner .imgbg {
  height: 550px;
}
.banner .imgbg img {
  display: none;
}

/* ==========================
4. Why Choose Us
============================= */

.about {
  padding: 60px 0;
}
.why-item-wrap {
  padding: 80px 0;
  clear: both;
}
.why-item-wrap:after {
  content: "";
  display: block;
  clear: both;
}
.why-item {
  text-align: center;
  width: 80%;
  margin: 0 auto;
}
.why-item .icon {
  background-color: #003b8b;
  width: 80px;
  height: 80px;
  text-align: center;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  padding-top: 25px;
  margin: 0 auto;
}
.why-item:hover .icon {
  /* background-color: #fba301; */
}
.why-item .icon .fa {
  font-size: 30px;
  color: #fff;
}
.why-item .ket {
  font-size: 14px;
  color: #666;
  margin-top: 40px;
}
.why-item .ket h4 {
  font-size: 18px;
  color: #333;
  font-weight: 700;
  margin-bottom: 30px;
}
.title-page {
  color: #003b8b;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}
.about-img {
  margin-bottom: 20px;
}

.about-img {
  border-radius: 30px;
}

.about-img img {
  margin-left: auto;
  margin-right: auto;
}
.about-wrap {
  margin-left: 20px;
}
.founder-box {
  margin-top: 20px;
  margin-bottom: 40px;
}
.founder-box .title-page {
  margin-bottom: 5px;
}

/* ==========================
            Products
============================= */
.products {
  /* padding: 60px 0; */
  background-color: #f6f6f6;
  margin: 60px;
  border-radius: 30px;
  background: linear-gradient(155deg, #f6f6f6 50%, #003b8b 50%);
  /* padding: 20px 0; */
  border-radius: 10px;
  color: white;
}

.products .lead {
  /* padding-bottom: 30px; */
  font-size: 30px;
  color: #003b8b;
  line-height: 34px;
  font-family: raleway, sans-serif;
  font-weight: 700;
  text-align: center;
}

.product-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.product-row {
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
}

figure.snip1177 {
  font-family: "Raleway", Arial, sans-serif;
  position: relative;
  overflow: hidden;
  margin: 10px;
  min-width: 220px;
  max-width: 310px;
  /* min-width: 20px;
  max-width: 30px; */
  width: 100%;
  background: #000000;
  text-align: center;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  border-radius: 30px;
}
figure.snip1177 * {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
figure.snip1177 img {
  vertical-align: top;
  max-width: 100%;
}
figure.snip1177 div {
  position: absolute;
  top: 50%;
  left: 50%;
  display: table;
  padding: 0 20px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
figure.snip1177 div:before,
figure.snip1177 div:after {
  position: absolute;
  display: block;
  width: 0%;
  height: 100%;
  content: "";
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 0.8;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
figure.snip1177 div:before {
  right: -150%;
}
figure.snip1177 div:after {
  left: -150%;
}
figure.snip1177 h3 {
  color: white;
  text-transform: uppercase;
  font-weight: 400;
  margin: 0;
  opacity: 0;
}
figure.snip1177 h3 span {
  font-weight: 800;
  display: block;
}
figure.snip1177 a {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
}
figure.snip1177:hover img,
figure.snip1177.hover img {
  opacity: 0.6;
  -webkit-filter: grayscale(100%);
  filter: grayscale(10%);
}
figure.snip1177:hover h3,
figure.snip1177.hover h3 {
  opacity: 1;
}
figure.snip1177:hover div,
figure.snip1177.hover div {
  opacity: 1;
}
figure.snip1177:hover div:before,
figure.snip1177.hover div:before,
figure.snip1177:hover div:after,
figure.snip1177.hover div:after {
  width: 150%;
}

@keyframes slides {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.logos {
  overflow: hidden;
  padding: 30px 0px;
  white-space: nowrap;
  position: relative;
}

.logos:before,
.logos:after {
  position: absolute;
  top: 0;
  content: "";
  width: 250px;
  height: 100%;
  z-index: 2;
}

.logos:before {
  left: 0;
  background: linear-gradient(
    to left,
    rgba(255, 255, 255, 0),
    rgb(255, 255, 255)
  );
}

.logos:after {
  right: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0),
    rgb(255, 255, 255)
  );
}

.logo_items {
  display: inline-block;
  animation: 35s slides infinite linear;
}

.logos:hover .logo_items {
  animation-play-state: paused;
}

.logo_items img {
  height: 100px;
  margin-right: 30px;
  margin-left: 30px;
}

/* ==========================
    Contact
============================= */
.services {
  background-color: #f6f6f6;
  margin: 60px;
  border-radius: 30px;
}

.shake {
  margin-bottom: 40px;
}
.shake:after {
  clear: both;
  width: 100%;
  display: block;
  content: "";
}
.shake .form-control {
  padding: 24px 12px;
  border-radius: 0;
}
.shake .btn-default {
  padding: 15px 25px;
  /* float: right; */
  background-color: #003b8b;
  border-color: #003b8b;
  border-radius: 0;
  color: #fff;
  font-weight: bold;
}
.shake .btn-default:active,
.shake .btn-default:visited,
.shake .btn-default:hover {
  background-color: #fba301;
  border-color: #fba301;
  color: #fff;
  transition: all 0.2s ease-in-out;
}
p.help-block.text-danger li {
  display: block;
  font-family: "Roboto Condensed", sans-serif;
  color: #f00;
}
.alert-danger {
  color: #333031;
  background-color: #ffedc4;
  border-color: #f00;
}

.contact-container {
  width: 100%;
}

.contact-img {
  border-radius: 30px;
}

.contact-address {
  margin-top: 40px;
}
.contact-address-item {
  margin-bottom: 40px;
}
.contact-address-heading {
  color: #003b8b;
  font-weight: 700;
  margin-bottom: 10px;
}
.maps-wraper {
  position: relative;
}
.maps {
  width: 100%;
  height: 300px;
  display: block;
  background: #ccc;
  position: relative;
}
#google-container {
  position: relative;
  width: 100%;
  height: 500px;
  background-color: #000;
}
#cd-google-map {
  position: relative;
  overflow: hidden;
}
#cd-google-map .col-md-12 {
  padding: 0;
}
#cd-google-map .address {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  padding: 20px 0;
  background-color: rgba(5, 5, 5, 0.9);
}
#cd-google-map .address .address-item {
  position: relative;
  padding-left: 44px;
}
#cd-google-map .address .address-item i {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 0;
  left: 4px;
  color: #fcfcfc;
  font-size: 22px;
  text-align: center;
  line-height: 24px;
}
#cd-zoom-in,
#cd-zoom-out {
  height: 32px;
  width: 32px;
  cursor: pointer;
  margin-left: 10px;
  background-color: #003b8b;
  background-repeat: no-repeat;
  background-size: 32px 64px;
  background-image: url("../images/cd-icon-controller.svg");
}
.no-touch #cd-zoom-in:hover,
.no-touch #cd-zoom-out:hover {
  background-color: #0071bc;
}
#cd-zoom-in {
  background-position: 50% 0;
  margin-top: 10px;
  margin-bottom: 1px;
}
#cd-zoom-out {
  background-position: 50% -32px;
}

/* ==========================
    Footer
============================= */
.fcopy {
  background-color: #003b8b;
  color: #fff;
  text-align: center;
  padding: 20px 20px;
}
.f-desc {
  border-top: 1px solid rgb(167, 166, 166);
  background-color: #252525;
  color: #fff;
  padding: 50px 0;
}

.footer-item {
  line-height: 20px;
  color: #999999;
  font-weight: 400;
  margin-bottom: 20px;
  min-height: 250px;
}
.footer-sosmed {
  margin-top: 20px;
}
.footer-sosmed .item {
  width: 30px;
  height: 30px;
  text-align: center;
  background-color: #003b8b;
  color: #fff;
  display: inline-table;
  padding-top: 6px;
  border-radius: 50%;
}
.footer-sosmed .item:hover {
  background-color: #fba301;
}
.footer-sosmed .item .fa {
  font-size: 16px;
}
.footer-logo {
  margin-bottom: 10px;
}
.footer-title {
  font-size: 18px;
  line-height: 22px;
  color: #003b8b;
  font-family: raleway, sans-serif;
  font-weight: 400;
  position: relative;
  padding: 10px 0;
  margin-bottom: 40px;
}
.footer-title:after {
  position: absolute;
  content: "";
  width: 50px;
  height: 10px;
  border-bottom: 1px solid #003b8b;
}
.footer-blog-item {
  padding-left: 30px;
  margin-bottom: 15px;
}
.footer-blog-item:before {
  font-family: FontAwesome;
  content: "\f105";
  color: #003b8b;
  float: left;
  padding-left: -20px;
  margin-left: -26px;
  font-size: 16px;
}
.footer-blog-item .footer-blog-lead {
  line-height: 20px;
  color: #999999;
  font-weight: 400;
}
.footer-blog-item .footer-blog-lead a {
  color: #999999;
}
.footer-blog-item .footer-blog-lead a:hover {
  color: #fba301;
}
.footer-blog-item .footer-blog-date {
  font-size: 12px;
  line-height: 17px;
  color: #003b8b;
  font-family: raleway, sans-serif;
  font-weight: 400;
  margin-top: 5px;
}

.footer-form .form-control {
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
}

.footer-getintouch-item {
  clear: both;
  margin-bottom: 10px;
  content: "";
}
.footer-getintouch-item .icon {
  font-size: 18px;
  color: #003b8b;
  float: left;
  margin-right: 10px;
  text-align: center;
  width: 20px;
}
.footer-getintouch-item .icon .fa {
  font-size: 16px;
}
.footer-getintouch-item .desc {
  float: left;
  margin-bottom: 10px;
}
.footer-getintouch-item .desc .desc-1 {
  width: 60px;
  float: left;
}
.footer-getintouch-item .desc .desc-2 {
  width: 10px;
  float: left;
}
.footer-getintouch-item .desc .desc-3 {
  float: left;
  display: inline;
}
@media (max-width: 1199px) {
  .contact-address-item {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 700px) {
  .nav-info {
    display: none;
  }

  .navbar {
    padding: 0;
    justify-content: left;
  }

  .nav-logo > img {
    width: 100px;
  }

  .banner {
    height: 55vh;
  }

  .banner-heading {
    font-weight: 800;
    font-size: 30px;
  }

  .banner-text {
    font-weight: 300;
    font-size: 16px;
  }
}

.about-section {
  position: relative;
  padding: 60px 0px;
}

.about-section .content-column {
  position: relative;
  margin-bottom: 40px;
  background-color: #f6f6f6;
  margin: 60px;
  border-radius: 30px;
}

.about-section .content-column .inner-column {
  position: relative;
  padding-top: 50px;
  padding-right: 0px;
}

.about-section .content-column .text {
  position: relative;
  color: #777777;
  font-size: 15px;
  line-height: 2em;
  margin-bottom: 40px;
}

.about-section .content-column .email {
  position: relative;
  color: #252525;
  font-weight: 700;
  margin-bottom: 50px;
}

.about-section .image-column {
  position: relative;
  /* margin-bottom: 50px; */
}

.about-section .image-column .inner-column {
  position: relative;
  padding: 40px 40px 0px 0px;
  margin-left: 50px;
}

.about-section .image-column .inner-column:after {
  position: absolute;
  content: "";
  right: 0px;
  top: 0px;
  left: 40px;
  bottom: 100px;
  z-index: -1;
  border: 2px solid #003b8b;
  border-radius: 30px;
}

.about-section .image-column .inner-column .image {
  position: relative;
}

.about-section .image-column .inner-column .image:before {
  position: absolute;
  content: "";
  left: -50px;
  bottom: -50px;
  width: 299px;
  height: 299px;
  /* background: url(img/pattern-2.png) no-repeat; */
}

.about-section .image-column .inner-column .image img {
  position: relative;
  width: 100%;
  display: block;
}

.about-section .image-column .inner-column .image .overlay-box {
  position: absolute;
  left: 40px;
  bottom: 48px;
}

.about-section .image-column .inner-column .image .overlay-box .year-box {
  position: relative;
  color: #252525;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4em;
  padding-left: 125px;
}

.about-section
  .image-column
  .inner-column
  .image
  .overlay-box
  .year-box
  .number {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 110px;
  height: 110px;
  color: #d7a449;
  font-size: 68px;
  font-weight: 700;
  line-height: 105px;
  text-align: center;
  background-color: #ffffff;
  border: 1px solid #000000;
}
.about-section .btn-style-three:before {
  position: absolute;
  content: "";
  left: 10px;
  top: 10px;
  z-index: -1;
  right: -10px;
  bottom: -10px;
  background: url(https://i.ibb.co/DKn55Qz/pattern-1.jpg) repeat;
}
.about-section .btn-style-three:hover {
  color: #ffffff;
  background: #d7a449;
  transition: all 0.2s ease-in-out;
}
.about-section .btn-style-three {
  position: relative;
  line-height: 24px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  background: none;
  display: inline-block;
  padding: 11px 40px;
  background-color: #003b8b;
  text-transform: capitalize;
  border: 2px solid #003b8b;
  font-family: "Arimo", sans-serif;
  margin-bottom: 30px;
}
.sec-title2 {
  color: #fff;
}
.sec-title {
  position: relative;
  padding-bottom: 40px;
}
.sec-title .title {
  position: relative;
  color: #003b8b;
  font-size: 30px;
  font-weight: 700;
  padding-right: 50px;
  margin-bottom: 15px;
  display: inline-block;
  text-transform: capitalize;
}
.sec-title .title:before {
  position: absolute;
  content: "";
  right: 0px;
  bottom: 7px;
  width: 40px;
  height: 1px;
  background-color: #bbbbbb;
}

/* Certifications */

.certifications {
  background-color: #f6f6f6;
  margin: 60px;
  border-radius: 30px;
}

.certification-lead {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  color: #003b8b;
  padding-bottom: 20px;
}

.logo-container{
  width: 100% !important;
}

/* .logo-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
} */

.logo-1, .logo-2, .logo-3, .logo-4{
  text-align: center;
}

.logo-row img {
  width: 160px;
  border-radius: 10px;
  background-color: #fff;
}

/* media queries */
@media (max-width: 1200px) {
  .about-section .image-column .inner-column {
    margin: 0;
  }
  .about-section .content-column {
    margin: 0;
  }
  .sec-title {
    padding-bottom: 10px;
  }
  .about-section .content-column .text {
    margin-bottom: 10px;
  }
  .about-section .content-column .email {
    margin-bottom: 10px;
  }
  .sec-title .title {
    margin-bottom: 0;
  }
}

@media (max-width: 970px) {
  figure.snip1177 {
    max-width: 180px;
    min-width: 150px;
  }
}

@media (max-width: 840px) {
  .certifications .logo-row img {
    width: 100%;
  }
}

@media (max-width: 768px) {
  /* .logo-row img {
    margin-right: 10px;
    margin-left: 10px;
  } */

.products{
  margin: 20px;
}

  .certifications{
    margin: 20px;
  }

  .services{
    margin: 20px;
  }

  .clearfix {
    display: block;
  }
  .about-section .image-column .inner-column {
    margin: 60px;
  }
  .about-section .content-column {
    background: none;
  }
  .about-section .content-column .inner-column {
    background: #f6f6f6;
    padding: 40px;
    border-radius: 30px;
    /* margin-left: 20px;
    margin-right: 20px; */
  }

  .certifications .logo-1, .certifications .logo-2{
    margin-bottom: 10px;
  }
}

@media (max-width: 630px) {
  /* header */
  .header-contact {
    padding-right: 5px;
    padding-left: 5px;
  }

  .header-logo {
    padding-right: 5px;
    padding-left: 5px;
  }

  .top-sosmed span {
    margin-right: 5px;
  }

/* about */

.about-section .image-column .inner-column {
  margin: 5px;
}

  .product-row {
    display: block;
  }
  figure.snip1177 {
    max-width: 230px;
    min-width: 200px;
  }

  /* .logo-row {
    display: flex;
    flex-direction: column;
  } */

  /* .logo-row img {
    margin-bottom: 10px;
    width: 180px;
  } */
}

@media (max-width: 400px) {
  /* html,body{
    overflow-x: hidden;
  } */

  .products{
    overflow-x: hidden;
  }

  .header-top {
    height: 35px;
  }
  .header-contact {
    width: fit-content;
    float: left;
  }
  .header-logo {
    width: fit-content !important;
    float: right;
  }

  .top-sosmed span {
    width: 20px;
    height: 20px;
    margin-right: 2px;
    padding-top: 3px;
  }
  .top-sosmed span.fa {
    font-size: 15px;
  }

  .info-mail {
    display: none;
  }
  .product-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
