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

*, h1, h2, h3, h4, h5, h6, p, span, label, button, a, li {
  font-family: "Exo 2", sans-serif;
  outline: none !important;
}

a {
  text-decoration: none;
}

body {
  font-size: 16px;
  position: relative;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
body::-webkit-scrollbar {
  width: 8px;
}
body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.3);
}
body::-webkit-scrollbar-thumb {
  background-color: #03b162;
}

.button {
  padding: 13px 15px;
  color: #FFFFFF;
  border-radius: 3px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition-duration: 400ms;
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
.button:hover {
  box-shadow: 2px 2px 4px 1px rgba(0, 0, 0, 0.3);
  transition-duration: 400ms;
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}

.image {
  max-width: 100%;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
}

.section {
  width: 100%;
  position: relative;
  padding: 100px 0;
}

.container {
  max-width: 1200px;
}

.input, .textarea {
  margin: 0 0 30px;
  border: 0;
  width: 100%;
  color: #FFFFFF;
  padding: 10px;
  font-size: 16px;
  background-color: transparent;
  border-bottom: 1px solid #FFFFFF;
}
.input::-webkit-input-placeholder, .textarea::-webkit-input-placeholder {
  color: #FFFFFF;
}
.input:-moz-placeholder, .textarea:-moz-placeholder {
  color: #FFFFFF;
}
.input::-moz-placeholder, .textarea::-moz-placeholder {
  color: #FFFFFF;
}
.input:-ms-input-placeholder, .textarea:-ms-input-placeholder {
  color: #FFFFFF;
}

.badge {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #03b162;
  padding: 4px 8px;
  color: #FFFFFF;
  text-transform: uppercase;
  border-radius: 20px;
  letter-spacing: 0.5px;
  font-size: 12px;
  font-weight: 700;
}

.heading-1 {
  font-weight: 700;
  font-size: 52px;
  margin: 0 0 32px;
  width: 100%;
  line-height: 1.2;
}

.heading-2 {
  font-weight: 700;
  font-size: 40px;
  margin: 0 0 18px;
  width: 100%;
  color: #1b1a1a;
  line-height: 1.2;
}

.heading-3 {
  font-weight: 700;
  font-size: 22px;
  margin: 0 0 16px;
  width: 100%;
  line-height: 1.2;
  color: #03b162;
}

.heading-4 {
  font-weight: 700;
  font-size: 20px;
  margin: 0 0 12px;
  width: 100%;
  line-height: 1.2;
  color: #1b1a1a;
}

.paragraph {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 300;
  margin: 0 0 32px;
  width: 100%;
  color: #696969;
}

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

.list {
  list-style-type: none;
  margin: 0 0 32px;
}
.list li {
  display: flex;
  margin: 0;
  padding-left: 24px;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 300;
  width: 100%;
  color: #696969;
  position: relative;
}
.list li:before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 8px;
  position: absolute;
  left: 0;
  top: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFFFFF;
  transform: translateY(-50%);
  background-color: #03b162;
}

@keyframes upAndDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-25px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes scaleHide {
  0% {
    height: auto;
  }
  100% {
    height: 0;
    opacity: 0;
  }
}
@keyframes scaleShow {
  0% {
    transform: scaleY(0);
  }
  100% {
    transform: scaleY(1);
  }
}
.table-container {
  overflow-x: auto;
  margin: 0 0 32px;
}
.table-container table {
  width: 100%;
  border-collapse: collapse;
}
.table-container table th {
  background-color: #03b162;
  color: #FFFFFF;
}
.table-container table td, .table-container table th {
  padding: 8px 12px;
  border: 1px solid #03b162;
  border-top: 0;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  padding: 16px 0;
  background-color: #FFFFFF;
  transform: translateY(0);
  opacity: 1;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.header--active {
  opacity: 0;
  transform: translateY(-100%);
}
.header .logo {
  height: 50px;
}
.header .container {
  position: relative;
}

#nav-button {
  display: none;
  position: absolute;
  right: 16px;
  top: 15px;
  font-size: 24px;
  cursor: pointer;
}
@media screen and (max-width: 991px) {
  #nav-button {
    display: flex;
  }
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media screen and (max-width: 991px) {
  .nav {
    display: none;
    opacity: 0;
  }
  .nav.active {
    display: flex;
    opacity: 1;
  }
}
.nav .nav-list {
  list-style-type: none;
  display: flex;
}
@media screen and (max-width: 991px) {
  .nav .nav-list {
    flex-wrap: wrap;
    margin-top: 24px;
  }
}
.nav .nav-item {
  display: inline-block;
  position: relative;
  padding: 12px;
  margin: 0 8px;
}
@media screen and (max-width: 991px) {
  .nav .nav-item {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
  }
}
.nav .nav-item:hover .sub-nav-list {
  opacity: 1;
}
.nav .nav-link {
  text-decoration: none;
  font-weight: 600;
  display: flex;
  position: relative;
  z-index: 10;
  justify-content: center;
  border-radius: 3px;
  font-size: 16px;
  color: #1b1a1a;
  transition-duration: 400ms;
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
.nav .nav-link:hover {
  color: #03b162;
  transition-duration: 400ms;
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
.nav .sub-nav-list {
  margin: 12px 0;
  background-color: #FFFFFF;
  position: absolute;
  display: flex;
  flex-wrap: wrap;
  left: 0;
  width: auto;
  opacity: 0;
  padding: 0 0 12px;
  transition-duration: 400ms;
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
@media screen and (max-width: 991px) {
  .nav .sub-nav-list {
    position: relative;
    opacity: 1;
    width: 100%;
    margin-bottom: 0;
    padding-bottom: 0;
  }
}
.nav .sub-nav-list .nav-item {
  white-space: nowrap;
}
.nav .nav-button {
  text-decoration: none;
  letter-spacing: 0.5px;
  font-weight: 600;
  color: #FFFFFF;
  padding: 16px 24px;
  background-color: #03b162;
  border-radius: 5px;
  transition-duration: 400ms;
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
.nav .nav-button:hover {
  background-color: #02101e;
  transition-duration: 400ms;
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
.nav .lang-button {
  height: 20px;
  display: flex;
}

#banner {
  height: 100vh;
  background-size: cover;
  background-image: url(../img/banner.jpg);
  padding: 85px 16px 16px;
  position: relative;
}
#banner:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  background: rgba(0, 0, 0, 0.2196078431);
}
#banner .banner-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 20;
}
#banner .heading-1 {
  font-weight: 600;
}
#banner .paragraph {
  font-size: 18px;
  font-weight: 400;
}
#banner .heading-1, #banner .paragraph {
  color: #FFFFFF;
  text-align: center;
}
#banner .action-buttons {
  display: flex;
  justify-content: space-between;
  margin: 48px 0 16px;
  gap: 24px;
}
#banner .button {
  font-weight: 400;
  font-size: 16px;
  padding: 16px 24px;
  transition-duration: 400ms;
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
#banner .button-green {
  background-color: #03b162;
}
#banner .button-green:hover {
  color: #FFFFFF;
  background-color: #02101e;
  transition-duration: 400ms;
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
#banner .button-white {
  color: #03b162;
  background-color: #FFFFFF;
}
#banner .button-white:hover {
  color: #FFFFFF;
  background-color: #03b162;
  transition-duration: 400ms;
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}

#about .image {
  margin-bottom: 32px;
}

#products {
  background-image: url(../img/banner-2.png);
  background-size: cover;
  position: relative;
}
#products:before {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  left: 0;
  right: 0;
  margin: auto;
  background-color: rgba(2, 16, 30, 0.9019607843);
  opacity: 0.6;
}
#products .heading-2 {
  text-align: center;
  color: #FFFFFF;
}

#products-carousel {
  margin-top: 48px;
}
#products-carousel .item {
  position: relative;
  overflow: hidden;
}
#products-carousel .item:hover .item-text {
  bottom: 0;
  opacity: 1;
}
#products-carousel .item-image-container {
  position: relative;
  overflow: hidden;
  transition: 0.5s;
}
#products-carousel .item-image-container:hover {
  transition: 0.5s;
}
#products-carousel .item-image-container:hover:before {
  transform: scale(1.2);
}
#products-carousel .item-image-container:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  transform: scale(0);
  z-index: 1;
  background: rgba(0, 0, 0, 0.5);
  transition: 0.5s;
}
#products-carousel .item-image {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  transition: 0.5s;
}
#products-carousel .item-text {
  background-color: #FFFFFF;
  position: absolute;
  padding: 32px 16px;
  z-index: 2;
  left: 0;
  width: 100%;
  bottom: -100px;
  opacity: 0;
  transition: 0.5s;
  box-shadow: 0 0 65px 0 rgba(0, 0, 0, 0.0901960784);
}
#products-carousel .item-text .heading-4 {
  text-align: center;
  margin-bottom: 0;
}

.tns-nav {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}
.tns-nav button {
  width: 16px;
  height: 16px;
  border-radius: 16px;
  background-color: rgba(3, 177, 98, 0.3607843137);
  transition-duration: 400ms;
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
.tns-nav button.tns-nav-active {
  background-color: #03b162;
  transition-duration: 400ms;
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}

#offer .column {
  margin-bottom: 32px;
}
#offer .product-box {
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  border-radius: 8px;
  padding: 32px 16px 24px;
  box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.08);
  transition-duration: 400ms;
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
#offer .product-box:hover {
  transform: scale(1.1);
  box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.4);
  transition-duration: 400ms;
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
#offer .icon-container {
  position: relative;
  width: 100%;
  margin: 0 0 12px;
}
#offer .phone-container {
  width: 100%;
  display: flex;
  gap: 16px;
  margin: 0 0 32px;
  transition-duration: 400ms;
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
#offer .phone-container:hover .icon-container {
  color: #FFFFFF;
  background-color: #03b162;
}
#offer .phone-container .icon-container {
  width: 80px;
  height: 80px;
  font-size: 32px;
  color: #03b162;
  background-color: #D9F3E8;
  border-radius: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  transition-duration: 400ms;
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
#offer .phone-container .heading-regular {
  font-weight: 400;
}
#offer .phone-container .heading-black {
  color: #000000;
  margin-bottom: 0;
}

#gallery {
  background-color: #fafafa;
}
#gallery .heading-2 {
  text-align: center;
}
#gallery .images {
  margin-top: 48px;
}
#gallery .image-column {
  margin: 0 0 32px;
}
#gallery .image-column:nth-child(1) .image-placeholder {
  background-image: url(../img/p2-sm.jpg);
}
#gallery .image-column:nth-child(2) .image-placeholder {
  background-image: url(../img/p3-sm.jpg);
}
#gallery .image-column:nth-child(3) .image-placeholder {
  background-image: url(../img/p4-sm.jpg);
}
#gallery .image-column:nth-child(4) .image-placeholder {
  background-image: url(../img/p9-sm.jpg);
}
#gallery .image-placeholder {
  display: block;
  height: 350px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  background-position: center;
  background-size: 100% 100%;
  transition-duration: 400ms;
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
#gallery .image-placeholder:hover {
  background-size: 110% 110%;
  transition-duration: 400ms;
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
#gallery .image-placeholder:hover .image-hover {
  opacity: 1;
  transition-duration: 400ms;
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
#gallery .image-hover {
  position: absolute;
  text-align: center;
  right: 0;
  top: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  background: rgba(3, 177, 98, 0.5019607843);
  z-index: 9;
  display: flex;
  justify-content: center;
  align-items: center;
  transition-duration: 400ms;
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
#gallery .button {
  font-weight: 400;
  font-size: 16px;
  padding: 16px 24px;
  transition-duration: 400ms;
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
#gallery .button-green {
  background-color: #03b162;
}
#gallery .button-green:hover {
  color: #FFFFFF;
  background-color: #02101e;
  transition-duration: 400ms;
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}

#footer {
  background-image: url("../img/banner-3.png");
  position: relative;
  padding-bottom: 0;
}
#footer:before {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  left: 0;
  right: 0;
  margin: auto;
  background-color: rgba(2, 16, 30, 0.9019607843);
  opacity: 0.5;
}
#footer .logo {
  height: 150px;
  margin: 0 0 32px;
}
#footer .heading-4 {
  color: #FFFFFF;
}
#footer .paragraph, #footer a {
  color: #696969;
}
#footer i {
  margin-right: 8px;
}
#footer span, #footer a {
  display: block;
  margin: 0 0 8px;
}
#footer .divider {
  width: 100%;
  height: 1px;
  background-color: #fafafa;
  margin: 0 0 16px;
}
#footer .copyright {
  color: #FFFFFF;
}

#single-banner {
  background-image: url("../img/banner-2.png");
  background-size: cover;
  height: 500px;
  width: 100%;
  padding: 85px 0 32px;
  display: flex;
  align-items: center;
}
#single-banner:before {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  left: 0;
  right: 0;
  margin: auto;
  background-color: rgba(2, 16, 30, 0.9019607843);
  opacity: 0.6;
}
#single-banner .heading-1 {
  text-align: center;
  color: #FFFFFF;
}

#content .product-row,
#content .item-row {
  padding: 48px 0;
}
#content .first-row {
  margin-bottom: 48px;
}
#content .image {
  height: 250px;
}
#content .text-column {
  align-items: center;
}
#content .divider {
  width: 100%;
  height: 1px;
  background-color: #fafafa;
  margin: 32px 0;
}

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