/* ==== BASE STYLES ====*/
/* ==================== GLOBAL STYLES ======================= */
/* @import url("https://rsms.me/inter/inter.css"); */
@font-face {
  font-display:block;
  font-family: Gelion;
  src: url(../fonts/gelion/GelionRegular.ttf);
}
@font-face {
  font-family: Gelion;
  src: url(../fonts/gelion/GelionMedium.ttf);
  font-weight: bold;
}
/* @font-face {
  font-family: Gelion;
  src: url(../fonts/gelion/Gelion\Medium.ttf);
  font-weight: medium;
}  */
@font-face {
  font-family: Gelion;
  src: url(../fonts/gelion/Gelion\ Italic.ttf);
  font-style: italic;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Gelion";
  font-size: 15px;
}

/* ========================
INCLUDE STYLES AND COMPONENTS
===================== */
/* ================== HELPERS  =================== */
a:hover {
  text-decoration: none;
}

.img-wrap {
  text-align: center;
  display: block;
}
.img-wrap img {
  max-width: 100%;
}

.icon-wrap {
  text-align: center;
  display: inline-block;
}

.price-wrap {
  letter-spacing: -0.7px;
}

.content-body {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 30px;
}

/* =================  DEFINED VARIABLES =================== */
.icon-xs,
.icon-sm,
.icon-md,
.icon-lg {
  display: inline-block;
  text-align: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
}

.icon-xs {
  width: 32px;
  height: 32px;
  line-height: 32px !important;
  font-size: 16px;
}

.icon-sm {
  width: 48px;
  height: 48px;
  line-height: 48px !important;
  font-size: 20px;
}

.icon-md {
  width: 60px;
  height: 60px;
  line-height: 60px !important;
  font-size: 28px;
}

.icon-lg {
  width: 96px;
  height: 96px;
  line-height: 96px !important;
  font-size: 42px;
}

.img-xs,
.img-sm,
.img-md,
.img-lg {
  -o-object-fit: cover;
  object-fit: cover;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
}

.img-xs {
  width: 40px;
  height: 40px;
}

.img-sm {
  width: 80px;
  height: 80px;
}

.img-md {
  width: 140px;
  height: 140px;
}

.img-lg {
  width: 250px;
  height: 250px;
}

.icon-flag-sm {
  width: 28px;
  margin-right: 10px;
}

.center-xy {
  top: 50%;
  left: 50%;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.center-y {
  top: 50%;
  position: absolute;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.center-x {
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.vh-100 {
  height: 100vh;
}

.overflow-h {
  overflow: hidden;
}

.flip-h {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.opacity {
  opacity: 0.5;
}

[class*="hover-"] {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.hover-bg:hover {
  background: #ff6a00;
  /* For browsers that do not support gradients */
  /* For Safari 5.1 to 6.0 */
  /* For Opera 11.1 to 12.0 */
  /* For Firefox 3.6 to 15 */
  background: -webkit-gradient(
    linear,
    left top,
    right bottom,
    from(#ff6a00),
    to(#ff6a00)
  );
  background: linear-gradient(to bottom right, #ff6a00, #ff6a00);
  /* Standard syntax */
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.hover-zoom:hover {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.bordered-cols > [class*="col-"] {
  overflow: hidden;
  border-color: #e5e7ea;
  border-width: 1px 0 0 1px;
  border-style: solid;
}

/* ============== spacing ============== */
.padding-y {
  padding-top: 30px;
  padding-bottom: 30px;
}

.padding-top {
  padding-top: 30px;
}

.padding-bottom {
  padding-bottom: 30px;
}

.padding-y-lg {
  padding-top: 48px;
  padding-bottom: 48px;
}

.padding-top-lg {
  padding-top: 48px;
}

.padding-bottom-lg {
  padding-bottom: 48px;
}

.padding-y-sm {
  padding-top: 10px;
  padding-bottom: 10px;
}

.padding-top-sm {
  padding-top: 10px;
}

.padding-bottom-sm {
  padding-bottom: 10px;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

var {
  font-style: normal;
}

figure {
  margin-bottom: 0;
}

.form-noborder input,
.form-noborder select,
.form-noborder .btn {
  border: 0;
}
.form-noborder select.form-control-lg:not([size]):not([multiple]) {
  height: 2.875rem;
}

/* all clearfix */
article:after,
.form-group:after {
  display: block;
  clear: both;
  content: "";
}

/* -------------------- small grid gutter --------------------- */
.row-sm {
  margin-right: -5px;
  margin-left: -5px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.row-sm > [class^="col"] {
  padding-left: 5px;
  padding-right: 5px;
}

.bg {
  background-color: #f6f7f9;
}

.bg-white {
  background-color: #fff;
}

.bg-orange {
  background-color: #ff6a00;
}

.bg-green {
  background-color: #00b517;
}

.bg-blue {
  background-color: #12225b;
}

.bg-red {
  background-color: #fa3434;
}

.bg-light-orange {
  background-color: #ffdcb0;
}

.bg-light-green {
  background-color: #abeae8;
}

.bg-light-blue {
  background-color: #9fe0ff;
}

.bg-light-red {
  background-color: #fbd5e7;
}

.bg-gradient-blue {
  background: rgba(33, 37, 41, 0.4);
  /* For browsers that do not support gradients */
  /* For Safari 5.1 to 6.0 */
  /* For Opera 11.1 to 12.0 */
  /* For Firefox 3.6 to 15 */
  background: -webkit-gradient(
    linear,
    left top,
    right bottom,
    from(rgba(18, 34, 91, 0.65)),
    to(rgba(33, 37, 41, 0.4))
  );
  background: linear-gradient(
    to bottom right,
    rgba(18, 34, 91, 0.65),
    rgba(33, 37, 41, 0.4)
  );
  /* Standard syntax */
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.bg-gradient-green {
  background: rgba(33, 37, 41, 0.4);
  /* For browsers that do not support gradients */
  /* For Safari 5.1 to 6.0 */
  /* For Opera 11.1 to 12.0 */
  /* For Firefox 3.6 to 15 */
  background: -webkit-gradient(
    linear,
    left top,
    right bottom,
    from(rgba(0, 181, 23, 0.65)),
    to(rgba(33, 37, 41, 0.4))
  );
  background: linear-gradient(
    to bottom right,
    rgba(0, 181, 23, 0.65),
    rgba(33, 37, 41, 0.4)
  );
  /* Standard syntax */
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.bg-gradient-orange {
  background: rgba(33, 37, 41, 0.4);
  /* For browsers that do not support gradients */
  /* For Safari 5.1 to 6.0 */
  /* For Opera 11.1 to 12.0 */
  /* For Firefox 3.6 to 15 */
  background: -webkit-gradient(
    linear,
    left top,
    right bottom,
    from(rgba(255, 106, 0, 0.65)),
    to(rgba(33, 37, 41, 0.4))
  );
  background: linear-gradient(
    to bottom right,
    rgba(255, 106, 0, 0.65),
    rgba(33, 37, 41, 0.4)
  );
  /* Standard syntax */
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.bg-gradient-red {
  background: rgba(33, 37, 41, 0.4);
  /* For browsers that do not support gradients */
  /* For Safari 5.1 to 6.0 */
  /* For Opera 11.1 to 12.0 */
  /* For Firefox 3.6 to 15 */
  background: -webkit-gradient(
    linear,
    left top,
    right bottom,
    from(rgba(250, 52, 52, 0.65)),
    to(rgba(33, 37, 41, 0.4))
  );
  background: linear-gradient(
    to bottom right,
    rgba(250, 52, 52, 0.65),
    rgba(33, 37, 41, 0.4)
  );
  /* Standard syntax */
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.bg-gradient-pink {
  background: rgba(33, 37, 41, 0.4);
  /* For browsers that do not support gradients */
  /* For Safari 5.1 to 6.0 */
  /* For Opera 11.1 to 12.0 */
  /* For Firefox 3.6 to 15 */
  background: -webkit-gradient(
    linear,
    left top,
    right bottom,
    from(rgba(232, 62, 140, 0.65)),
    to(rgba(33, 37, 41, 0.4))
  );
  background: linear-gradient(
    to bottom right,
    rgba(232, 62, 140, 0.65),
    rgba(33, 37, 41, 0.4)
  );
  /* Standard syntax */
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.bg-pattern {
  background-image: url(../images/banners/bg-pattern.svg),
    linear-gradient(135deg, #ff6a00, #12225b);
  background-size: cover, auto;
  background-repeat: no-repeat, repeat;
  background-position: 0px 0px, 50% 50%;
}

.bg-img {
  overflow: hidden;
  background-color: #ddd;
  background-image: linear-gradient(
      135deg,
      rgba(255, 106, 0, 0.8),
      rgba(18, 34, 91, 0.9)
    ),
    url("../images/banners/bg-cpu.jpg");
  background-position: 0px 0px, 50% 50%;
  background-size: auto cover;
}

.overlay-gradient {
  position: relative;
}
.overlay-gradient:before {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.6;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background: #12225b;
  /* For browsers that do not support gradients */
  /* For Safari 5.1 to 6.0 */
  /* For Opera 11.1 to 12.0 */
  /* For Firefox 3.6 to 15 */
  background: -webkit-gradient(
    linear,
    left top,
    right bottom,
    from(#ff6a00),
    to(#12225b)
  );
  background: linear-gradient(to bottom right, #ff6a00, #12225b);
  /* Standard syntax */
}
.overlay-gradient:hover:before {
  opacity: 0.9;
}

/* --------------------- titles ---------------------- */
.section-heading {
  margin-bottom: 10px;
  margin-top: 10px;
}

.section-title {
  color: #212529;
}

.title-text {
  margin-top: 30px;
  margin-bottom: 10px;
  font-weight: bold;
  color: #212529;
}

.title-page {
  color: #212529;
}

.b {
  font-weight: 600;
}

.white {
  color: #fff;
}

.dark {
  color: #212529;
}

.black {
  color: #000;
}

p:last-child {
  margin-bottom: 0;
}

/* ==================  title element ================ */
.heading-line {
  position: relative;
}
.heading-line .title-section {
  position: relative;
  display: inline-block;
  padding-right: 15px;
  background-color: #f6f7f9;
  z-index: 2;
}

.heading-line::before {
  top: 35%;
  border-radius: 7px;
  border-top-style: solid;
  content: "";
  position: absolute;
  left: auto;
  right: 0;
  width: 100%;
  height: 0;
  border: 3px solid #dcdee3;
  overflow: hidden;
}

/* ==================  title helpers ================ */
.rtl {
  direction: rtl;
}

.ltr {
  direction: ltr;
}

/* ================== SECTIONS =================== */
.section-header {
  background-color: #fff;
}
.section-title {
  font-size: 36px;
  color: #023000;
  text-shadow: 1px 1px 5px #fd6e0070;
}
.section-title-2 {
  margin-top: 10px;
  font-size: 36px;
  color: #023000;
}
.section-summary{
  font-size: 18px;
}

/* ================== header main ==================  */
.header-top-light .nav-link {
  color: #969696;
}
.header-top-light .nav-link:hover {
  color: #212529;
}

.header-main {
  position: relative;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.brand-wrap .logo,
.navbar-brand .logo {
  margin-right: 7px;
  max-height: 60px;
  display: inline-block;
}

.navbar-main {
  background-color: #fff;
}
.navbar-main .nav-link:hover {
  color: #ff6a00;
}

.search-header {
  border: 2px solid #ff6a00;
  border-radius: 0.55rem;
}
.search-header .form-control,
.search-header .custom-select {
  border-color: transparent;
}
.search-header select {
  -ms-flex-preferred-size: 150px !important;
  flex-basis: 150px !important;
  -webkit-box-flex: 0 !important;
  -ms-flex-positive: 0 !important;
  flex-grow: 0 !important;
}
.nav-list {
  padding-left: 30%;
}
.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
}
.widget-header {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  margin-right: 20px;
}
.widget-header .widget-view {
  padding: 5px 7px;
  display: inline-block;
  position: relative;
  text-align: center;
}
.widget-header .icon-area {
  font-size: 24px;
  display: inline-block;
  width: 36px;
  height: 30px;
  color: #969696;
}
.widget-header .icon-area .notify {
  position: absolute;
  top: 0px;
  right: 8%;
}
.widget-header .icon {
  color: #969696;
}
.widget-header .icon .notify {
  position: absolute;
  top: 0;
  right: 0;
}
.widget-header .text {
  /* max-width: 80px; */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
  line-height: 1.2;
}
.widget-header a {
  color: #212529;
}
.widget-header form {
  min-width: 280px;
}
.widget-header:hover .text {
  color: #f56e0b;
}
.video-player {
  border-radius: 20px;
}

.vmf-container {
  max-width: 85%;
}
.vmf-card {
  max-width: 300px;
  min-height: 320px;
  border-radius: 20px;
  margin: 30px;
}
.values {
  color: #003801;
  font-size: 18px;
}
.values img {
  max-width: 44px;
}

.management img {
  height: 120px;
  width: 120px;
  object-fit: cover;
  margin: 10px;
  border-radius: 50%;
}
.m-name {
  font-size: 14px;
  font-weight: 600;
  line-height: 10px;
}
.m-position {
  font-size: 12px;
  font-weight: 200;
  line-height: 10px;
}
.card-title {
  color: #011b33;
}

.product-card {
  max-width: 320px;
  min-height: 340px;
  border-radius: 10px;
  margin: 30px;
}
.card-img-row {
  display: inline-flex;
  vertical-align: middle;
  align-items: center;
  width: 100%;
}
.card-title {
  color: #011b33;
}
.card-header{
  border-bottom: 0px;
  max-height: 100px ;
}
.card-footer {
  margin-top: -10px;
  border-top: 0px;
}
.card-img-row img {
  max-width: 100px;
  float: right;
  margin-left: 60px;
}
.service-img img {
  max-width: 100px;
  float: left;
  padding-top: 10px;
  padding-right: 10px;
}
.product-link {
  color: #f56e0b;
  text-decoration: underline;
}
.client-card {
  max-width: 420px;
  min-height: 420px;
  border-radius: 20px;
  margin: 30px;
}
.card-title {
  color: #011b33;
}
.client-logo img {
  max-width: 80px;
  float: left;
}
.client-img img {
  margin: 10px;
  max-width: 50px;
  border-radius: 50%;
  float: left;
}
.client-footer {
  margin: 20px;
}
.client-name {
  font-size: 14px;
  font-weight: 600;
  line-height: 5px;
}
.client-position {
  font-size: 12px;
  font-weight: 200;
  line-height: 5px;
}
.product-button {
  margin-top: 50px;
  height: 50px;
  padding-top: 10px;
  padding-left: 25.5px;
  padding-right: 25.5px;
  font-weight: 200;
  border-radius: 4px;
  background-color: #1a6f01;
}
.product-button-2 {
  height: 50px;
}
.product-button-2 img {
  height: 50px;
}
.product-button-sm {
  height: 40px;
  padding-bottom: 10px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 4px;
  background-color: #1a6f01;
  font-weight: 100;
}
.product-button-sm:hover {
  background-color: #f56e0b;
}
.product-button:hover {
  background-color: #f56e0b;
}
.contact-button {
  color: #ffffff !important;
  height: 45px;
  padding: 10px;
  margin: 5px;
  padding-left: 30px;
  padding-right: 30px;
  border-radius: 4px;
  border-style: solid;
  border-width: 1px;
  border-color: #7eb781;
  background-color: #7eb781;
  text-transform: uppercase;
}
.contact-button:hover {
  background-color: #f56e0b;
}
.contact-button2 {
  color: #ffffff !important;
  height: 45px;
  padding: 10px;
  margin: 5px;
  padding-left: 30px;
  padding-right: 30px;
  border-radius: 4px;
  border-style: solid;
  border-width: 1px;
  border-color: #7eb781;
  text-transform: uppercase;
}
.contact-button:hover {
  border-color: #f56e0b;
}
.contact-button2:hover {
  color: #f56e0b !important;
  border-color: #f56e0b;
}
/* desktop only */
/* desktop only .end */
/* ================ SECTION-FOOTER ==================  */
.section-main {
  background-color: #ffffff;
}
.slider-overlay {
  margin-top: -60px;
  width: 85%;
  position: absolute;
}
.section-overlay {
  margin-top: -40px;
  width: 85%;
  position: absolute;
}
.carousel-caption {
  line-height: normal;
  left: 5%;
}
.banner-title {
  font-size: 58px;
  font-weight: bold;
  float: left;
  text-align: left;
  color: #003801;
}
.banner-subtitle {
  line-height: 0px !important;
  font-size: 18px;
  font-weight: 400;
  color: #023000;
}
.banner-subtitle-2 {
  display: block;
  /* line-height: 0px !important; */
  font-size: 18px;
  font-weight: 400;
  color: #023000;
}
.p-area {
  /* background: #4e54c8;  
  background: -webkit-linear-gradient(to left, #8f94fb, #4e54c8);   */
  width: 100%;
  height: 38vh;
}

.area {
  /* background: #4e54c8;  
  background: -webkit-linear-gradient(to left, #8f94fb, #4e54c8);   */
  width: 100%;
  height: 53vh;
}

.circles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.circles li {
  position: absolute;
  display: block;
  list-style: none;
  width: 20px;
  height: 20px;
  background: rgba(252, 183, 120, 0.2);
  animation: animate 25s linear infinite;
  bottom: -150px;
}

.circles li:nth-child(1) {
  left: 25%;
  width: 80px;
  height: 80px;
  animation-delay: 0s;
}

.circles li:nth-child(2) {
  left: 10%;
  width: 20px;
  height: 20px;
  animation-delay: 2s;
  animation-duration: 12s;
}

.circles li:nth-child(3) {
  left: 70%;
  width: 20px;
  height: 20px;
  animation-delay: 4s;
}

.circles li:nth-child(4) {
  left: 40%;
  width: 60px;
  height: 60px;
  animation-delay: 0s;
  animation-duration: 18s;
}

.circles li:nth-child(5) {
  left: 65%;
  width: 20px;
  height: 20px;
  animation-delay: 0s;
}

.circles li:nth-child(6) {
  left: 75%;
  width: 110px;
  height: 110px;
  animation-delay: 3s;
}

.circles li:nth-child(7) {
  left: 35%;
  width: 150px;
  height: 150px;
  animation-delay: 7s;
}

.circles li:nth-child(8) {
  left: 50%;
  width: 25px;
  height: 25px;
  animation-delay: 15s;
  animation-duration: 45s;
}

.circles li:nth-child(9) {
  left: 20%;
  width: 15px;
  height: 15px;
  animation-delay: 2s;
  animation-duration: 35s;
}

.circles li:nth-child(10) {
  left: 85%;
  width: 150px;
  height: 150px;
  animation-delay: 0s;
  animation-duration: 11s;
}

@media (max-width: 460px) {

  .vmf-container {
    max-width: 100%;
  }
  .slider-overlay{
    margin-top: 20px;
  }
  .banner-title {
    font-size: 16px;
  }
  .banner-subtitle {
    font-size: 8px;
  }
  .banner-subtitle-2 {  
    font-size: 8px;
  }
  .product-button{
    margin-top: 5px;
    height: 20px;
    padding-top: 2px;
    padding-left: 5px;
    padding-right: 5px;
    font-weight: 200;
    border-radius: 4px;
    font-size: 8px;
    background-color: #1a6f01;
  }
  .product-button-2 {
    margin-top: 5px;
    height: 20px;
  }
  .product-button-2 img {
    margin-top: 5px;
    height: 20px;
  }
  .contact-button{
    text-align: center;
    display: block;
    margin-bottom: 20px;
    margin-left: 18%;
    width: 200px;
  }
}
/* @media (min-width: 890px) {
  .slider-overlay{
    margin-top: -15px;
  }
  .banner-title {
    font-size: 36px;
  }
  .banner-subtitle {
    font-size: 16px;
  }
  .banner-subtitle-2 {  
    font-size: 16px;
  }
  .product-button{
    margin-top: 10px;
  }
} */

@media (min-width: 460px) { 
  .contact-summary {
    width: 50%;
  }
  .product-container {
    max-width: 85%;
  }
  .product-page-container {
    max-width: 80%;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .product-video-container {
    max-width: 80%;
    margin-top: 20px;
    margin-bottom: 20px;
  }
} 

@keyframes animate {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
    border-radius: 0;
  }

  100% {
    transform: translateY(-1000px) rotate(720deg);
    opacity: 0;
    border-radius: 50%;
  }
}
.col-product {
  align-items: center;
  margin-bottom: 100px !important;
}
.product-img-1 {
  max-height: 420px;
  object-fit: contain;
  border-bottom-left-radius: 20px;
  border-top-left-radius: 20px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}
.product-img-2 {
  max-height: 420px;
  object-fit: contain;
  border-bottom-left-radius: 0px;
  border-top-left-radius: 0px;
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
}
.product-description {
  max-width: 50%;
  display: inline-flex;
  color: #003801;
  font-size: 26px;
}
.product-icon {
  max-width: 140px;
  float: right;
}
.bg-product {
  background-color: #cce2cc;
  min-height: 460px;
  padding: 40px;
  border-radius: 20px;
  -webkit-box-shadow: 0 15px 15px rgba(153, 153, 153, 0.3);
  box-shadow: 0 15px 15px rgba(153, 153, 153, 0.3);
}
.partners-container {
  max-width: 80%;
}
.partners-logo img {
  /* max-width: 120px; */
  max-height: 80px;
  margin: 10px;
}
.about-img {
  max-height: 360px;
}
.bg-about {
  background-color: #cce2cc;
  min-height: 360px;
  padding: 40px;
}
.col-padding {
  padding-left: 0px;
  padding-right: 0px;
}
.bg-joinus {
  margin-top: 50px;
  margin-bottom: 50px;
  background-color: #0e6f02;
  min-height: 160px;
  width: 120vh;
  padding: 20px;
  border-radius: 20px;
}
.bg-contact {
  margin-top: 50px;
  margin-bottom: 50px;
  background-color: #0e6f02;
  min-height: 260px;
  width: 120vh;
  padding: 20px;
  border-radius: 20px;
}
.bg-lite {
  background-color: #cbe2cd;
}
.bg-deep {
  background-color: #aacfab;
}
.bg-main {
  background-color: #7eb781;
}
.margin-footer {
  margin-left: 5%;
}
.section-footer ul li {
  margin-bottom: 5px;
}
.section-footer ul a {
  font-size: 14px;
  line-height: 35px;
  color: inherit;
}
.section-footer ul a:hover {
  color: #ff6a00;
}
.section-footer .logo-footer {
  height: 40px;
}
.section-footer .title {
  color: #023000;
  font-weight: 600;
  margin-bottom: 16px;
  font-size: 16px;
}

.footer-bottom {
  padding-top: 20px;
  padding-bottom: 20px;
}

.footer-top {
  padding-top: 50px;
  padding-bottom: 50px;
}

.footer-copyright {
  padding-top: 20px;
  padding-bottom: 20px;
}

/* ================== COMPONENTS =================== */
.btn-facebook {
  background-color: #405d9d;
  color: #fff;
}
.btn-facebook:hover {
  color: #fff;
}

.btn-instagram {
  background-color: #e52d27;
  color: #fff;
}
.btn-instagram:hover {
  color: #fff;
}

.btn-youtube {
  background-color: #c8046c;
  color: #fff;
}
.btn-youtube:hover {
  color: #fff;
}

.btn-twitter {
  background-color: #42aeec;
  color: #fff;
}
.btn-twitter:hover {
  color: #fff;
}

.btn-google {
  background-color: #af0000;
  color: #fff;
}
.btn-google:hover {
  color: #fff;
}

.btn-icon {
  width: calc(1.5em + 0.9rem + 2px);
  text-align: center;
  padding-left: 0;
  padding-right: 0;
}
.btn-icon i {
  line-height: 1;
}

.btn-light {
  background-color: #fff;
  border-color: #e5e7ea;
}
.btn-light i {
  color: #969696;
}
.btn-light:hover {
  background-color: #fff;
  border-color: #9099a6;
}

.btn-light.active i {
  color: #ff6a00;
}

.active {
  color: #ff6a00 !important;
}

.btn .text + i {
  margin-left: 10px;
}
.btn i + .text {
  margin-left: 10px;
}

.itemside {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.itemside .aside {
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.itemside .info {
  padding-left: 15px;
  padding-right: 7px;
}
.itemside p {
  margin-bottom: 0;
}
.itemside .title {
  display: block;
  margin-bottom: 5px;
  color: #212529;
}
.itemside a.title:hover {
  color: #ff6a00;
}

a.itemside {
  color: initial;
}

.items-bordered-wrap .itemside:not(:last-child) {
  border-bottom: 1px solid #e5e7ea;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.itemlist {
  padding: 20px;
  border-bottom: 1px solid #eee;
}

.list-inline {
  margin-bottom: 0;
}

.list-inline-item {
  vertical-align: middle;
}

/* --------- description list --------*/
dl[class="row"] {
  margin-bottom: 0;
}

[class*="dlist-"] {
  margin-bottom: 5px;
}
[class*="dlist-"] dd {
  margin-bottom: 0;
}

.dlist-inline dt,
.dlist-inline dd {
  display: inline-block;
}

.dlist-align {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.dlist-align dt {
  width: 120px;
  word-wrap: break-word;
  font-weight: normal;
}
.dlist-align dd {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

/* -------------------- list.row--------------------- */
ul.row,
ul.row-sm {
  list-style: none;
  padding: 0;
}

/* ================= lists ================= */
[class*="list-"] li:after {
  visibility: hidden;
  display: block;
  content: "";
  overflow: hidden;
  height: 0;
  clear: both;
}

.list-icon {
  list-style: none;
  padding-left: 0;
}
.list-icon li {
  margin-bottom: 7px;
  position: relative;
  padding-left: 30px;
}
.list-icon .icon {
  width: 22px;
  margin-right: 15px;
  vertical-align: middle;
  text-align: center;
  color: #12225b;
  position: absolute;
  top: 3px;
  left: 0;
}
.list-icon span {
  vertical-align: middle;
}

.list-bullet {
  list-style: none;
  padding-left: 0;
}

.list-bullet li {
  margin-bottom: 5px;
  position: relative;
  padding-left: 15px;
}

.list-bullet li::before {
  content: " ";
  position: absolute;
  top: 8px;
  left: 0;
  width: 7px;
  border-radius: 100%;
  height: 7px;
  background: #ced4da;
}

.list-check {
  padding-left: 0;
  list-style: none;
}
.list-check > li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 7px;
}
.list-check > li::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 13px;
  color: #00b517;
  position: absolute;
  top: 3px;
  left: 0;
  content: "\f00c";
}

.list-normal {
  list-style: none;
  padding-left: 0;
}
.list-normal li {
  padding-left: 1em;
  margin-bottom: 7px;
}
.list-normal li:before {
  content: "\2022";
  color: #ff6a00;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.list-menu {
  list-style: none;
  margin: 0;
  padding-left: 0;
}
.list-menu li {
  margin-bottom: 5px;
}
.list-menu a {
  color: #212529;
}
.list-menu a:hover {
  color: #ff6a00;
}

.cols-two {
  -webkit-column-count: 2;
  column-count: 2;
}

.cols-three {
  -webkit-column-count: 3;
  column-count: 3;
}

.cols-four {
  -webkit-column-count: 4;
  column-count: 4;
}

/* IF CARD IS LINKED */
a[class*="card"] {
  color: initial;
}
a[class*="card"]:hover .title {
  color: #ff6a00;
}

/* BASE STYLE FOR PRODUCT ITEM */
[class*="card-product"] a.title {
  color: #212529;
  display: block;
}
[class*="card-product"] a.title:hover {
  color: #ff6a00;
}
[class*="card-product"] .img-wrap .badge {
  top: 10px;
  left: 10px;
  position: absolute;
}
[class*="card-product"] p {
  margin-bottom: 0;
}
[class*="card-product"] .img-wrap {
  overflow: hidden;
  position: relative;
}
[class*="card-product"] .img-wrap img {
  height: 100%;
  max-width: 100%;
  width: auto;
  display: inline-block;
  -o-object-fit: cover;
  object-fit: cover;
}

/* GRID STYLE PRODUCT ITEM */
.card-product-grid {
  margin-bottom: 20px;
}
.card-product-grid .img-wrap {
  height: 250px;
}
.card-product-grid .info-wrap {
  overflow: hidden;
  padding: 16px;
}
.card-product-grid .bottom-wrap {
  padding: 16px;
  border-top: 1px solid #e5e7ea;
}
.card-product-grid .topbar {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
  left: 0;
  text-align: initial;
  padding: 10px 15px;
}
.card-product-grid .topbar a {
  color: #ccc;
}
.card-product-grid .topbar a:hover {
  color: #ff6a00;
}
.card-product-grid .fix-height {
  height: 80px;
  overflow: hidden;
}
.card-product-grid .btn-overlay {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  left: 0;
  bottom: 0;
  color: #fff;
  width: 100%;
  padding: 5px 0;
  text-align: center;
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
}
.card-product-grid:hover .btn-overlay {
  opacity: 1;
}
.card-product-grid:hover {
  -webkit-box-shadow: 0 4px 15px rgba(153, 153, 153, 0.3);
  box-shadow: 0 4px 15px rgba(153, 153, 153, 0.3);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.item-slide .card-product-grid {
  margin-bottom: 0;
}

/* LARGE LIST STYLE PRODUCT ITEM */
.card-product-list {
  margin-bottom: 20px;
}
.card-product-list .img-wrap {
  height: 220px;
  border-radius: 0.37rem 0 0 0.37rem;
}
.card-product-list .info-main {
  padding: 1.5rem 1rem;
}
.card-product-list .info-aside {
  padding: 1.5rem 1rem;
  border-left: 1px solid #e5e7ea;
  height: 100%;
}
.card-product-list:hover {
  -webkit-box-shadow: 0 4px 15px rgba(153, 153, 153, 0.3);
  box-shadow: 0 4px 15px rgba(153, 153, 153, 0.3);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.card-sm .img-wrap {
  height: 180px;
}

.card-lg .img-wrap {
  height: 280px;
}

.card-category {
  display: block;
  margin-bottom: 20px;
  overflow: hidden;
  min-height: 410px;
}
.card-category .card-title {
  font-weight: 600;
  font-size: 18px;
}
.card-category .img-wrap {
  overflow: hidden;
  display: inline-block;
  height: 170px;
  background: #fff0c5;
}
.card-category .img-wrap img {
  height: 100%;
  width: 60%;
  -o-object-fit: cover;
  object-fit: cover;
  mix-blend-mode: multiply;
}
.card-category .list-menu a:hover {
  margin-left: 3px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.card-category:hover {
  border-color: #ff6a00;
}

.card-banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  overflow: hidden;
  background-color: #fff;
  background-size: cover;
  background-position: center center;
}
.card-banner .card-body {
  background-size: cover;
  position: relative;
  z-index: 10;
}
.card-banner .caption {
  background-color: rgba(0, 0, 0, 0.65);
  z-index: 10;
  padding: 1.25rem;
  color: #fff;
}
.card-banner .caption.bottom {
  bottom: 0;
  left: 0;
  position: absolute;
  width: 100%;
}
.card-banner .caption.top {
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
}
.card-banner .caption.left {
  top: 0;
  left: 0;
  bottom: 0;
  position: absolute;
}
.card-banner .text-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  padding: 7px 20px;
  padding-top: 30px;
  border-radius: 0 0 0.37rem 0.37rem;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(0, 0, 0, 0)),
    to(rgba(0, 0, 0, 0.8))
  );
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
  color: #fff;
}
.card-banner .img-bg {
  position: absolute;
  right: 0;
  bottom: 0;
  mix-blend-mode: multiply;
  max-width: 100%;
}

.card-post .card-img-top {
  height: 200px;
  -o-object-fit: cover;
  object-fit: cover;
}

.card .img-wrap {
  overflow: hidden;
}

.icontext {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  vertical-align: middle;
}
.icontext p {
  margin-bottom: 0;
}
.icontext .text {
  width: 100%;
  line-height: 1.2;
  color: #212529;
}
.icontext .icon {
  position: relative;
  margin-right: 10px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
}
.icontext .title {
  display: block;
  margin-bottom: 0;
}

.tag {
  display: inline-block;
  padding: 3px 7px;
  background: #f2f2f2;
  border: 1px solid #eee;
  border-radius: 3px;
  margin-top: 4px;
  margin-right: 2px;
  font-size: 85%;
}

.item-logo {
  margin-bottom: 20px;
  text-align: center;
}
.item-logo img {
  max-height: 65px;
}

.timer > div {
  display: inline-block;
  text-align: center;
  margin-right: 5px;
}
.timer .num {
  padding: 7px 3px;
  display: block;
  background-color: #212529;
  min-width: 44px;
  color: #fff;
  font-size: 22px;
  border-radius: 6px;
  line-height: 1.2;
}

.notify {
  position: absolute;
  top: -4px;
  right: -10px;
  display: inline-block;
  padding: 0.25em 0.6em;
  font-size: 12px;
  line-height: 1;
  text-align: center;
  font-weight: 300;
  border-radius: 3rem;
  color: #fff;
  background-color: #fa3434;
}

.price {
  font-weight: 600;
  color: #212529;
}

.price-old {
  color: #969696;
  margin-left: 3px;
  font-size: 85%;
}

.icon-control {
  margin-top: 5px;
  float: right;
  font-size: 80%;
}

.card-header .title {
  margin-bottom: 0;
  line-height: 1.5;
}

.filter-group {
  border-bottom: 1px solid #e5e7ea;
  margin-top: 10px;
  padding-bottom: 10px;
}
.filter-group .title {
  margin-bottom: 0;
}
.filter-group:last-child {
  border-bottom: 0;
}
.filter-group .inner {
  padding-top: 16px;
  padding-bottom: 7px;
}

/* ====================== block ==================== */
.box {
  padding: 20px;
  background: #fff;
  border: 1px solid #e5e7ea;
}
.box img {
  max-width: 100%;
}

/* ================= RATINGS ============== */
.label-rating {
  margin-left: 7px;
  display: inline-block;
  vertical-align: middle;
}

/* rating-list */
.rating-stars {
  display: inline-block;
  vertical-align: middle;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  white-space: nowrap;
  clear: both;
}
.rating-stars i {
  font-size: 14px;
  color: #ccc;
  display: inline;
}
.rating-stars li {
  display: block;
  text-overflow: clip;
  white-space: nowrap;
  z-index: 1;
}
.rating-stars li.stars-active {
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
.rating-stars li.stars-active i {
  color: orange;
}

.form-inline input[type="number"] {
  max-width: 100px;
}

.input-spinner {
  width: 120px;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.input-spinner input.form-control {
  text-align: center;
  max-width: 46px;
  -ms-flex-preferred-size: 46px;
  flex-basis: 46px;
  border-color: #e5e7ea;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
}
.input-spinner .btn {
  width: 36px;
  text-align: center;
}

.checkbox-btn {
  position: relative;
}
.checkbox-btn input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.checkbox-btn input:checked ~ .btn {
  border-color: #ff6a00;
  background-color: #ff6a00;
  color: #fff;
}

/* ================== PAGES =================== */
body {
  background-color: #f6f7f9;
}

/* ================ PAGES HEADER ================== */
.section-pagetop {
  padding: 45px 0;
}

.nav-home-aside {
  width: 250px;
}
.nav-home-aside .menu-category {
  margin: 0;
  padding: 0;
}
.nav-home-aside .menu-category li {
  position: relative;
  display: block;
  border-bottom: 1px solid #e5e7ea;
}
.nav-home-aside .menu-category a {
  color: #212529;
}
.nav-home-aside .menu-category > li > a {
  display: block;
  padding: 10px 0px;
}
.nav-home-aside .menu-category .submenu {
  display: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 20;
  position: absolute;
  left: 100%;
  top: 0;
  width: 250px;
  background: #fff;
}
.nav-home-aside .menu-category .submenu li {
  list-style: none;
}
.nav-home-aside .menu-category .submenu li a {
  padding: 10px 16px;
  display: block;
}
.nav-home-aside .menu-category a:hover {
  color: #ff6a00;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.nav-home-aside .menu-category li:hover .submenu {
  display: block;
  margin-left: 0px;
}
.nav-home-aside .menu-category .has-submenu > a:after {
  content: "\203A";
  font-size: 24px;
  color: #999;
  line-height: 18px;
  font-weight: bold;
  float: right;
}

.slider-home-banner .carousel-item img {
  width: 100%;
  height: 375px;
  -o-object-fit: cover;
  object-fit: cover;
}

.special-home-right .card-banner {
  min-height: 112px;
}

.card-deal {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.card-deal .col-heading {
  min-width: 300px;
  -ms-flex-preferred-size: 350px;
  flex-basis: 350px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.card-deal .row {
  width: 100%;
}
.card-deal .items-wrap > [class*="col"] {
  border-left: 1px solid #e5e7ea;
}
.card-deal .card-product-grid {
  margin-bottom: 0;
  text-align: center;
}

.home-category-banner {
  position: relative;
  padding: 30px;
  height: 100%;
  overflow: hidden;
}
.home-category-banner .img-bg {
  position: absolute;
  right: -50px;
  bottom: -50px;
  mix-blend-mode: multiply;
  height: 260px;
}

.card-home-category .item .card-body::after {
  content: "";
  display: table;
  clear: both;
}
.card-home-category .item .title {
  min-height: 40px;
  font-weight: 500;
}
.card-home-category .item:hover img {
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.banner-quote {
  min-height: 350px;
}

.section-subscribe {
  background-color: #162a70;
}

/* ================== PAGE DETAILS ==================  */
.gallery-wrap .img-big-wrap {
  margin-bottom: 10px;
  border-radius: 0.37rem;
  overflow: hidden;
  background-color: #fff;
}
.gallery-wrap .img-big-wrap a {
  text-align: center;
  display: block;
}
.gallery-wrap .img-big-wrap img {
  height: 480px;
  width: auto;
  display: inline-block;
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}
.gallery-wrap .thumbs-wrap {
  text-align: center;
  margin-bottom: 20px;
}
.gallery-wrap .thumbs-wrap .item-thumb {
  width: 60px;
  height: 60px;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin: 3px;
  display: inline-block;
  overflow: hidden;
}
.gallery-wrap .thumbs-wrap .item-thumb:hover {
  border-color: #ff6a00;
}
.gallery-wrap .thumbs-wrap img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.item-option-select {
  margin-bottom: 1rem;
  display: inline-block;
  margin-right: 15px;
}
.item-option-select .btn {
  min-width: 80px;
}

.title-description:not(:first-child) {
  margin-top: 30px;
}

/* ================ PAGES HEADER ================== */
/* ====================== shopping-cart ==================== */
.table-shopping-cart.table td,
.table-shopping-cart.table th {
  padding-left: 20px;
  padding-right: 20px;
}
.table-shopping-cart .price-wrap {
  line-height: 1.2;
}
.table-shopping-cart .price {
  font-weight: bold;
  margin-right: 5px;
  display: block;
}

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

/* Menu */
.dineuron-menu {
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
}
.nav-open .dineuron-menu {
  opacity: 1;
  visibility: visible;
  background: rgba(0, 0, 0, 0.92);
}
.dineuron-menu .nav li a {
  color: #fff;
  font-size: 5vh;
  font-weight: 600;
}
.dineuron-menu .nav li {
  opacity: 0;
  -webkit-transform: translateY(-40px);
  transform: translateY(-40px);
  -webkit-animation-timing-function: cubic-bezier(0.45, 0.005, 0, 1);
  -moz-animation-timing-function: cubic-bezier(0.45, 0.005, 0, 1);
  -o-animation-timing-function: cubic-bezier(0.45, 0.005, 0, 1);
  animation-timing-function: cubic-bezier(0.45, 0.005, 0, 1);
}
.nav-open .dineuron-menu .nav li {
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  -webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
  transition: transform 0.2s, opacity 0.2s;
}
.dineuron-menu .nav li.delay-1 {
  -webkit-transition-delay: 0.1s;
  -moz-transition-delay: 0.1s;
  -ms-transition-delay: 0.1s;
  -o-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
.dineuron-menu .nav li.delay-2 {
  -webkit-transition-delay: 0.2s;
  -moz-transition-delay: 0.2s;
  -ms-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.dineuron-menu .nav li.delay-3 {
  -webkit-transition-delay: 0.3s;
  -moz-transition-delay: 0.3s;
  -ms-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.dineuron-menu .nav li.delay-4 {
  -webkit-transition-delay: 0.4s;
  -moz-transition-delay: 0.4s;
  -ms-transition-delay: 0.4s;
  -o-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
.dineuron-menu .nav li.delay-5 {
  -webkit-transition-delay: 0.5s;
  -moz-transition-delay: 0.5s;
  -ms-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
.dineuron-menu .nav li.delay-6 {
  -webkit-transition-delay: 0.6s;
  -moz-transition-delay: 0.6s;
  -ms-transition-delay: 0.6s;
  -o-transition-delay: 0.6s;
  transition-delay: 0.6s;
}
.dineuron-menu .nav li.delay-7 {
  -webkit-transition-delay: 0.7s;
  -moz-transition-delay: 0.7s;
  -ms-transition-delay: 0.7s;
  -o-transition-delay: 0.7s;
  transition-delay: 0.7s;
}
.dineuron-menu .nav li.delay-8 {
  -webkit-transition-delay: 0.8s;
  -moz-transition-delay: 0.8s;
  -ms-transition-delay: 0.8s;
  -o-transition-delay: 0.8s;
  transition-delay: 0.8s;
}
.dineuron-menu .nav li.delay-9 {
  -webkit-transition-delay: 0.9s;
  -moz-transition-delay: 0.9s;
  -ms-transition-delay: 0.9s;
  -o-transition-delay: 0.9s;
  transition-delay: 0.9s;
}

.nav-button {
  position: relative;
  z-index: 1111;
  border: solid 1px #003801;
  height: 42px;
  display: block;
  width: 50px;
  padding: 12px;
}
.nav-button #nav-icon3 {
  width: 24px;
  height: 22px;
  display: inline-block;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
.nav-button #nav-icon3 span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #003801;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.nav-button #nav-icon3 span:nth-child(1) {
  top: 0;
}
.nav-button #nav-icon3 span:nth-child(2),
#nav-icon3 span:nth-child(3) {
  top: 7px;
}
.nav-button #nav-icon3 span:nth-child(4) {
  top: 14px;
}
.nav-open #nav-icon3 span:nth-child(1) {
  top: 9px;
  width: 0;
  left: 50%;
}
.nav-open #nav-icon3 span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.nav-open #nav-icon3 span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.nav-open #nav-icon3 span:nth-child(4) {
  top: 9px;
  width: 0;
  left: 50%;
}

.flex-center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}
