/* ==========================================================================
   Fonts
   ========================================================================== */
@import url("https://fonts.googleapis.com/css2?family=Allerta+Stencil&display=swap");
@font-face {
  font-weight: 300;
  font-style: normal;
  font-family: "Montserrat-light";
  src: "./fonts/Montserrat/Montserrat-Light.ttf" format("truetype");
}
@font-face {
  font-weight: 400;
  font-style: normal;
  font-family: "Montserrat-regular";
  src: "./fonts/Montserrat/Montserrat-Regular.ttf" format("truetype");
}
@font-face {
  font-weight: 500;
  font-style: normal;
  font-family: "Montserrat-medium";
  src: "./fonts/Montserrat/Montserrat-Medium.ttf" format("truetype");
}
@font-face {
  font-weight: 600;
  font-style: normal;
  font-family: "Montserrat-semibold";
  src: "./fonts/Montserrat/Montserrat-SemiBold.ttf" format("truetype");
}
@font-face {
  font-weight: 700;
  font-style: normal;
  font-family: "Montserrat-bold";
  src: "./fonts/Montserrat/Montserrat-Bold.ttf" format("truetype");
}
@font-face {
  font-weight: 800;
  font-style: normal;
  font-family: "Montserrat-extrabold";
  src: "./fonts/Montserrat/Montserrat-ExtraBold.ttf" format("truetype");
}
@font-face {
  font-weight: 400;
  font-style: normal;
  font-family: "Montserrat-italic";
  src: "./fonts/Montserrat/Montserrat-Italic.ttf" format("truetype");
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

/* ==========================================================================
     Variables, mixin
     ========================================================================== */
/* ==========================================================================
     Buttons
     ========================================================================== */
.white-button-sm-right, .white-button-sm, .blue-button-sm-right, .blue-button-sm, .blue-button-lg, .white-button-default, .blue-button-default {
  font-family: "Montserrat-bold", sans-serif;
  display: inline-block;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 7px 30px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.blue-button-default {
  background-color: #01a0c6;
  color: white;
  font-size: 20px;
  border: 1px solid #01a0c6;
  text-transform: uppercase;
  border-radius: 5px;
  padding: 0;
  height: 57px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
}
.blue-button-default:hover {
  background-color: white;
  color: #01a0c6;
  border: 1px solid #01a0c6;
}
.blue-button-default i {
  margin-left: 10px;
}

.white-button-default {
  background-color: white;
  color: #01a0c6;
  font-size: 20px;
  border: 1px solid #01a0c6;
  text-transform: uppercase;
  border-radius: 5px;
  padding: 0;
  height: 57px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
}
.white-button-default:hover {
  background-color: #01a0c6;
  color: white;
  border: 1px solid #01a0c6;
}
.white-button-default i {
  margin-left: 10px;
}

.blue-button-lg {
  background-color: #01a0c6;
  color: white;
  font-size: 24px;
  transform: skew(-30deg, 0deg);
}
.blue-button-lg i {
  transform: skew(30deg, 0deg);
}
.blue-button-lg span {
  display: inline-block;
  transform: skew(30deg, 0deg);
}
.blue-button-lg:hover {
  background-color: white;
  color: #01a0c6;
}

.blue-button-sm {
  background-color: #01a0c6;
  color: white;
  font-size: 18px;
  transform: skew(-30deg, 0deg);
}
.blue-button-sm i {
  transform: skew(30deg, 0deg);
}
.blue-button-sm span {
  display: inline-block;
  transform: skew(30deg, 0deg);
}
.blue-button-sm:hover {
  background-color: white;
  color: #01a0c6;
}

.blue-button-sm-right {
  background-color: #01a0c6;
  color: white;
  font-size: 18px;
  transform: skew(30deg, 0deg);
}
.blue-button-sm-right i {
  transform: skew(-30deg, 0deg);
}
.blue-button-sm-right span {
  display: inline-block;
  transform: skew(-30deg, 0deg);
}
.blue-button-sm-right:hover {
  background-color: white;
  color: #01a0c6;
}

.white-button-sm {
  background-color: white;
  color: #01a0c6;
  font-size: 18px;
  transform: skew(-30deg, 0deg);
}
.white-button-sm i {
  transform: skew(30deg, 0deg);
}
.white-button-sm span {
  display: inline-block;
  transform: skew(30deg, 0deg);
}
.white-button-sm:hover {
  background-color: #01a0c6;
  color: white;
}

.white-button-sm-right {
  background-color: white;
  color: #01a0c6;
  font-size: 18px;
  transform: skew(30deg, 0deg);
}
.white-button-sm-right i {
  transform: skew(-30deg, 0deg);
}
.white-button-sm-right span {
  display: inline-block;
  transform: skew(-30deg, 0deg);
}
.white-button-sm-right:hover {
  background-color: #01a0c6;
  color: white;
}

.btn-info {
  color: white;
  background-color: #01a0c6;
  border-color: #01a0c6;
  font-family: "Montserrat-regular", sans-serif;
  font-size: 16px;
}

button:focus {
  outline: 0;
  box-shadow: none;
}

/* ==========================================================================
     Forms
     ========================================================================== */
.custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  border-color: #01a0c6;
  background-color: #01a0c6;
}

/* ==========================================================================
     Base style
     ========================================================================== */
body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat-medium", sans-serif;
  color: #282827;
}

h1 {
  font-family: "Montserrat-medium", sans-serif;
  font-size: 90px;
  color: #5d5d5d;
}

h2 {
  font-family: "Montserrat-semibold", sans-serif;
  font-size: 70px;
  color: #01a0c6;
}

h3 {
  font-family: "Montserrat-semibold", sans-serif;
  font-size: 40px;
  color: #5d5d5d;
}

.form-control {
  border-radius: 0;
}

.form-control:focus {
  outline: 0;
  box-shadow: none;
  border-color: #01a0c6;
}

a {
  text-decoration: none !important;
}

.navbar-toggler:focus {
  outline: 0;
  box-shadow: none;
}

/* ==========================================================================
      Header
      ========================================================================== */
.main-nav {
  background-color: #1e1b1b;
  padding: 0px;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}
.main-nav .navbar-toggler {
  border-color: white;
  border-radius: 0;
  transform: skew(-30deg, 0deg);
  margin-right: 25px;
}
.main-nav .navbar-toggler i {
  color: #01a0c6;
  font-size: 32px;
}
.main-nav .dropdown-menu-button {
  padding: 10px 0 !important;
}
.main-nav .dropdown-menu {
  background-color: #ebebeb;
  min-height: 200px;
}
.main-nav .call-btn-wrapper {
  padding-left: 26px;
  overflow: hidden;
}
.main-nav .navbar-brand img {
  width: 140px;
  margin-left: 25px;
}
.main-nav .phone-btn-mobile {
  transform: skew(-30deg, 0deg);
  border: 1px solid white;
  padding: 0.25rem 0.95rem;
  font-size: 1.25rem;
  line-height: 1;
}
.main-nav .phone-btn-mobile i {
  color: #01a0c6;
  font-size: 34px;
  transform: skew(30deg, 0deg);
}
.main-nav .navbar-nav .nav-item {
  position: relative;
  font-family: "Montserrat-bold", sans-serif;
  color: white;
  font-size: 21px;
  text-transform: uppercase;
  padding: 29px 20px;
}
.main-nav .navbar-nav .download-nav-link {
    font-size: 18px;
    padding: 32px 20px;
  }
.main-nav .navbar-nav .nav-item::after {
  display: none;
}
.main-nav .navbar-nav .nav-item:hover, .main-nav .navbar-nav .nav-item:focus, .main-nav .navbar-nav .nav-item.active, .main-nav .navbar-nav .nav-item.always-active {
  color: #01a0c6;
}
.main-nav .navbar-nav .nav-item.active .triangle, .main-nav .navbar-nav .nav-item.always-active .triangle {
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translate(-50%);
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 25px solid #01a0c6;
}
.main-nav .call-btn {
  height: 89px;
  background-color: #01a0c6;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 0 40px;
  margin-right: -25px;
  transform: skew(-30deg, 0deg);
}
.main-nav .call-btn img {
  width: 34px;
  margin-bottom: 5px;
  margin-right: 25px;
  transform: skew(30deg, 0deg);
}
.main-nav .call-btn span {
  font-family: "Montserrat-bold", sans-serif;
  font-size: 14px;
  color: white;
  transform: skew(30deg, 0deg);
}
.main-nav .dropdown-menu {
  margin: 0px;
  padding: 30px 50px;
  border: none;
  border-radius: 0;
  width: 100%;
}
.main-nav .dropdown-menu .dropdown-menu-col {
  display: flex;
  flex-direction: column;
  padding: 0 20px;
  flex: 1;
  border-right: 1px solid #5d5d5d;
}
.main-nav .dropdown-menu .dropdown-menu-col:last-of-type {
  border-right: none;
}
.main-nav .dropdown-menu .dropdown-menu-col .dropdown-menu-title {
  text-transform: uppercase;
  font-size: 20px;
  color: #01a0c6;
  height: 100px;
}
.main-nav .dropdown-menu .dropdown-menu-col .dropdown-menu-item {
  font-family: "Montserrat-regular", sans-serif;
  font-size: 18px;
  color: #282827;
  padding-bottom: 20px;
}
.main-nav .dropdown-menu .dropdown-menu-col .dropdown-menu-item:hover, .main-nav .dropdown-menu .dropdown-menu-col .dropdown-menu-item.active-item {
  color: #01a0c6;
}
.main-nav .dropdown-menu .dropdown-menu-col .dropdown-menu-item:last-of-type {
  padding-bottom: 0px;
}

.dropdown-button:hover > .dropdown-menu {
  display: block;
}
.dropdown-button > .dropdown-toggle:active {
  pointer-events: none;
}

/* ==========================================================================
      Home
      ========================================================================== */
.header-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
}
.header-slider .swiper-pagination-bullet-active {
  background: #01a0c6 !important;
}
.header-slider .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: white;
  opacity: 1;
}

.home-banner {
  display: flex;
  align-items: center;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 800px;
  padding: 0 150px;
}
.home-banner .banner-content {
  color: white;
  line-height: 1.1;
}
.home-banner .banner-content .banner-title {
  font-family: "Montserrat-extrabold", sans-serif;
  font-size: 90px;
}
.home-banner .banner-content .banner-desc {
  font-family: "Montserrat-semibold", sans-serif;
  font-size: 50px;
  margin-bottom: 50px;
}
.home-banner .banner-content .banner-line {
  position: relative;
  width: 300px;
  height: 4px;
  background-color: white;
}
.home-banner .banner-content .banner-line .triangle {
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 0;
  height: 0;
  border-left: 17px solid transparent;
  border-right: 17px solid transparent;
  border-bottom: 30px solid white;
}

.products {
  padding: 150px 0;
}
.products h1 {
  margin-bottom: 100px;
}
.products .products-box {
  width: 290px;
  height: 250px;
  text-align: center;
  color: #5d5d5d;
}
.products .products-box .products-img img:last-of-type {
  display: none;
}
.products .products-box:hover {
  color: #01a0c6;
}
.products .products-box:hover .products-img img:last-of-type {
  display: initial;
}
.products .products-box:hover .products-img img:first-of-type {
  display: none;
}
.products .products-box .products-img {
  margin-bottom: 30px;
}
.products .products-box .products-img img {
  max-width: 70%;
}
.products .products-box .products-text {
  font-family: "Montserrat-medium", sans-serif;
  font-size: 20px;
}

.banner-with-text {
  display: flex;
  align-items: center;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  width: 100%;
  padding: 150px 150px;
  color: white;
  line-height: 1.1;
}
.banner-with-text .banner-title {
  font-family: "Montserrat-extrabold", sans-serif;
  font-size: 90px;
}
.banner-with-text .banner-desc {
  font-family: "Montserrat-semibold", sans-serif;
  font-size: 50px;
}

.who-we-are {
  position: relative;
}
.who-we-are .title-container {
  padding-top: 100px;
  padding-bottom: 240px;
}
.who-we-are .who-we-are-banner {
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  width: 100%;
  height: 500px;
}
.who-we-are .who-we-are-content {
  position: absolute;
  width: 63%;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.who-we-are .who-we-are-content .who-we-are-desc {
  background-color: rgba(1, 160, 198, 0.6);
  color: white;
  padding: 70px 50px;
  line-height: 1.2;
  margin-bottom: 40px;
  text-align: left;
}
.who-we-are .who-we-are-content .who-we-are-desc p {
  font-family: "Montserrat-medium", sans-serif;
  font-size: 28px;
  margin-bottom: 0px;
}

.equipment-carousel .brands-carousel-2 .carousel-indicators {
  right: 80px;
  bottom: 10px;
  display: flex;
  justify-content: flex-end;
  margin-right: 0;
  margin-left: 15px;
}
.equipment-carousel .equipment-carousel-titles {
  border-bottom: 2px solid #01a0c6;
}
.equipment-carousel .brands-carousel-2 .carousel-indicators li {
  width: 15px;
  height: 15px;
  border-radius: 15px;
  margin-right: 8px;
  margin-left: 8px;
  background-color: transparent;
  border: 1px solid #01a0c6;
}
.equipment-carousel .carousel-indicators li.active {
  background-color: #01a0c6;
}
.equipment-carousel .brand-tabs-2 li {
  font-size: 20px;
  opacity: 0.5;
  font-family: "Montserrat-bold" sans-serif;
  color: #000000;
  cursor: pointer;
}
.equipment-carousel .brand-tabs-2 li:first-child {
  padding-left: 0px;
}
.equipment-carousel .brand-tabs-2 li.active {
  cursor: pointer;
  opacity: 1;
}
.equipment-carousel .brands-carousel-2 {
  background-color: white;
}
.equipment-carousel .brands-carousel-2 .about-carousel-tables {
  padding-top: 30px;
}
.equipment-carousel .brands-carousel-2 .about-carousel-tables table {
  font-size: 16px;
  color: #6f6f6f;
  margin-bottom: 30px;
}
.equipment-carousel .brands-carousel-2 .about-carousel-tables .table td,
.equipment-carousel .brands-carousel-2 .about-carousel-tables .table th {
  padding: 0.5rem;
  padding-top: 5px;
  padding-bottom: 5px;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
  font-family: "Montserrat-semibold", sans-serif !important;
  font-weight: normal;
}
.equipment-carousel .brands-carousel-2 .about-carousel-tables h4 {
  font-size: 20px;
  color: #3e3e3e;
  opacity: 0.75;
  text-transform: uppercase;
  font-family: "Montserrat-semibold", sans-serif !important;
  margin-bottom: 10px;
}

.last-project {
  padding: 150px 0;
}
.last-project h1 {
  margin-bottom: 100px;
}
.last-project .last-project-swiper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.last-project .last-project-swiper .swiper-button-next {
  right: 0px;
}
.last-project .last-project-swiper .swiper-button-prev {
  left: 0px;
}
.last-project .last-project-swiper .swiper-button-next,
.last-project .last-project-swiper .swiper-button-prev {
  background-color: white;
  width: 40px;
  height: 60px;
}
.last-project .last-project-swiper .swiper-button-next::after,
.last-project .last-project-swiper .swiper-button-prev::after {
  color: #01a0c6;
  padding: 10px;
}
.last-project .swiper-slide.swiper-slide-active .image-overlay {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 50px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(1, 160, 198, 0.4);
  cursor: pointer;
}
.last-project .swiper-slide.swiper-slide-active .image-overlay .title {
  font-family: "Montserrat-bold", sans-serif;
  font-size: 36px;
  color: white;
}
.last-project .swiper-slide.swiper-slide-active .image-overlay .desc {
  color: white;
  font-size: 18px;
}
.last-project .swiper-slide .image-overlay {
  display: none;
}
.last-project .swiper-slide .swiper-image {
  margin: auto;
  text-align: center;
  /* Center slide text vertically */
  display: flex;
  justify-content: center;
  align-items: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 500px;
}

.comments {
  position: relative;
}
.comments h1 {
  margin-bottom: 200px;
}
.comments .comments-banner {
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  width: 100%;
  height: 600px;
}
.comments .comments-content {
  position: absolute;
  background-color: white;
  width: 70%;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.comments .comments-content.no-title {
  top: 30%;
}
.comments .comments-content .comments-swiper {
  box-shadow: 0px 0px 5px 3px rgba(0, 0, 0, 0.23);
  -webkit-box-shadow: 0px 0px 5px 3px rgba(0, 0, 0, 0.23);
  -moz-box-shadow: 0px 0px 5px 3px rgba(0, 0, 0, 0.23);
  padding: 100px 50px;
  position: relative;
}
.comments .comments-content .comments-swiper .quotes-bottom {
  position: absolute;
  bottom: 10px;
  right: 20px;
  width: 80px;
}
.comments .comments-content .comments-swiper .quotes-top {
  position: absolute;
  top: 0px;
  left: 0;
  width: 300px;
}
.comments .comments-content .comments-swiper .swiper-slide:not(.swiper-slide-active) {
  opacity: 0 !important;
}
.comments .comments-content .comments-swiper .swiper-button-next::after,
.comments .comments-content .comments-swiper .swiper-button-prev::after {
  color: #01a0c6;
}
.comments .comments-content .comments-swiper .swiper-button-next {
  top: initial;
  bottom: 24px;
  left: 250px;
}
.comments .comments-content .comments-swiper .swiper-button-prev {
  top: initial;
  bottom: 24px;
  left: 150px;
}
.comments .comments-content .comments-swiper .swiper-img {
  width: 330px;
  height: 330px;
}
.comments .comments-content .comments-swiper .swiper-content {
  margin-left: 30px;
  position: relative;
}
.comments .comments-content .comments-swiper .swiper-content .name {
  font-size: 40px;
  color: #282827;
}
.comments .comments-content .comments-swiper .swiper-content .position {
  font-size: 20px;
  color: #01a0c6;
}
.comments .comments-content .comments-swiper .swiper-content .description {
  font-size: 18px;
}

.blue-line {
  width: 100%;
  height: 10px;
  background-color: #01a0c6;
}

.counter {
  background-position: center;
  background-size: cover;
  width: 100%;
  padding: 50px 0;
}
.counter .number-style {
  font-family: "Allerta Stencil", sans-serif;
  font-size: 150px;
  color: #01a0c6;
}
.counter .text {
  font-size: 37px;
  color: #474444;
  margin-bottom: 0;
}

.follow-us {
  background-color: #01a0c6;
  padding: 15px 0;
}
.follow-us .text {
  color: white;
  font-size: 22px;
  font-family: "Montserrat-bold", sans-serif;
}
.follow-us .social-icons img {
  width: 46px;
  margin-right: 10px;
}

@media (max-width: 1500px) {
  .products .products-box {
    width: 220px;
    height: 200px;
  }
  .products .products-box .products-text {
    font-size: 15px;
  }
  .products .products-box .products-img img {
    max-width: 60%;
  }
}
/* ==========================================================================
      Page header
   ========================================================================== */
.page-header {
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 400px;
}
.page-header .page-title {
  display: inline-block;
  background-color: rgba(1, 160, 198, 0.4);
  transform: skew(-30deg, 0deg);
  padding-left: 200px;
  padding-right: 100px;
  margin-left: -70px;
  max-width: 86%;
}
.page-header .page-title p {
  font-size: 80px;
  font-family: "Montserrat-semibold", sans-serif;
  color: white;
  transform: skew(30deg, 0deg);
  margin-bottom: 0;
}

.breadcrumb {
  margin-bottom: 0px;
}
.breadcrumb .breadcrumb-item a {
  color: #01a0c6;
}

/* ==========================================================================
      About Us
   ========================================================================== */
.about-us-tabs {
  padding: 50px 0;
}
.about-us-tabs .about-us-tabs-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.about-us-tabs .about-us-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 200px;
  height: 170px !important;
  position: relative;
  text-align: center;
}
.about-us-tabs .about-us-box .about-us-box-img {
  max-width: 45%;
}
.about-us-tabs .about-us-box.active {
  border-bottom: 3px solid #01a0c6;
}
.about-us-tabs .about-us-box.active .triangle {
  position: absolute;
  bottom: 0px;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 17px solid #01a0c6;
}
.about-us-tabs .about-us-box:last-of-type {
  margin-right: 0;
}
.about-us-tabs .about-us-box .about-us-box-text {
  margin-top: 15px;
  margin-bottom: 0px;
  color: #5d5d5d;
  font-size: 20px;
}
.about-us-tabs .about-us-box .products-img {
  margin: 0 auto;
}
.about-us-tabs .about-us-box .products-img img:last-of-type {
  display: none;
}
.about-us-tabs .about-us-box:hover .about-us-box-text {
  color: #01a0c6;
}
.about-us-tabs .about-us-box:hover .products-img img:last-of-type {
  display: initial;
}
.about-us-tabs .about-us-box:hover .products-img img:first-of-type {
  display: none;
}

.who-we-are-bg {
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 43.75vw;
}

.who-we-are-box {
  padding: 100px 0;
}
.who-we-are-box .who-we-are-desc {
  font-size: 24px;
  color: #5d5d5d;
}

.mission {
  background-position: center;
  background-size: cover;
  width: 100%;
  padding: 50px 0px;
  color: white;
}
.mission .mission-box {
  position: relative;
  padding: 20px;
  border: 2px solid white;
  height: 400px;
}
.mission .mission-box .title {
  font-family: "Montserrat-semibold", sans-serif;
  font-size: 60px;
  margin-bottom: 30px;
}
.mission .mission-box .triangle {
  width: 0;
  height: 0;
  border-bottom: 50px solid #01a0c6;
  border-left: 50px solid transparent;
  position: absolute;
  right: 0;
  bottom: 0;
}

.timeline {
  padding: 100px 0;
}
.timeline .title-img {
  width: 180px;
  margin-right: 10px;
}

.about-project-timeline {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.about-project-timeline .cd-timeline {
  overflow: hidden;
}
.about-project-timeline .cd-timeline .cd-timeline__container {
  position: relative;
  padding: 100px 0;
}
.about-project-timeline .cd-timeline .cd-timeline__container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  height: 100%;
  width: 4px;
  background: #01a0c6;
}
.about-project-timeline .cd-timeline .cd-timeline__block {
  display: flex;
  position: relative;
  z-index: 1;
  margin-bottom: 2em;
}
.about-project-timeline .cd-timeline .cd-timeline__block:last-child {
  margin-bottom: 0;
}
.about-project-timeline .cd-timeline .cd-timeline__img {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 14px solid #01a0c6;
  cursor: pointer;
}
.about-project-timeline .cd-timeline .cd-timeline__img img {
  width: 24px;
  height: 24px;
}
.about-project-timeline .cd-timeline .cd-timeline__img--picture {
  background-color: white;
}
.about-project-timeline .cd-timeline .cd-timeline__img--movie,
.about-project-timeline .cd-timeline .cd-timeline__img--location {
  background-color: #01a0c6;
}
.about-project-timeline .cd-timeline .cd-timeline__content {
  flex-grow: 1;
  position: relative;
  margin-left: 1.25em;
  background: white;
  border-radius: 0;
  padding: 1.25em;
  border: 10px solid #01a0c6;
}
.about-project-timeline .cd-timeline .cd-timeline__content .blue-button-sm-right {
  margin-left: 12px;
  font-size: 16px;
}
.about-project-timeline .cd-timeline .cd-timeline__content h2 {
  color: #01a0c6 !important;
}
.about-project-timeline .cd-timeline .cd-timeline__content__text {
  margin-top: 15px;
  max-height: 70px;
  overflow: hidden;
  transition: 0.5s ease-out;
}
.about-project-timeline .cd-timeline .cd-timeline__content__text.active::after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 54px;
  left: 0;
  pointer-events: none;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), white 90%);
  width: 100%;
  height: 4em;
}
.about-project-timeline .cd-timeline .cd-timeline__content__text p {
  margin-bottom: 5px;
}
.about-project-timeline .cd-timeline .cd-timeline__content::before {
  content: "";
  position: absolute;
  top: 31px;
  right: initial;
  left: -52px;
  width: 0;
  height: 0;
  border: 21px solid transparent;
  border-right-color: #01a0c6;
}
.about-project-timeline .cd-timeline .cd-timeline__content h2 {
  font-size: 20px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: #01a0c6;
  margin-bottom: 10px;
}
.about-project-timeline .cd-timeline .cd-timeline__content p {
  font-size: 14px;
  line-height: 1.1;
}
.about-project-timeline .cd-timeline .cd-timeline__content .line {
  width: 150px;
  height: 4px;
  background-color: #43755f;
}
.about-project-timeline .cd-timeline .cd-timeline__content .timeline-img {
  width: 100%;
  height: 250px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.about-project-timeline .cd-timeline .cd-timeline__date {
  font-size: 32px;
  color: #01a0c6;
  display: none;
}

@media (min-width: 64rem) {
  .about-project-timeline .cd-timeline .cd-timeline__container::before {
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (min-width: 64rem) {
  .about-project-timeline .cd-timeline .cd-timeline__block:nth-child(even) {
    flex-direction: row-reverse;
  }
}
@media (min-width: 64rem) {
  .about-project-timeline .cd-timeline .cd-timeline__img {
    width: 60px;
    height: 60px;
    order: 1;
    margin-top: 33px;
    margin-left: calc(5% - 7px);
    will-change: transform;
  }
  .about-project-timeline .cd-timeline .cd-timeline__block:nth-child(even) .cd-timeline__img {
    margin-right: calc(5% - 8px);
  }
}
@media (min-width: 64rem) {
  .about-project-timeline .cd-timeline .cd-timeline__content {
    width: 43%;
    flex-grow: 0;
    will-change: transform;
    margin: 0;
    font-size: 0.8em;
    --line-height-multiplier: 1.2;
  }
  .about-project-timeline .cd-timeline .cd-timeline__content p {
    font-size: 16px;
    line-height: 1.1;
  }
  .about-project-timeline .cd-timeline .cd-timeline__block:nth-child(odd) .cd-timeline__content::before {
    right: auto;
    left: 100%;
    width: 0;
    height: 0;
    top: 25px;
    border: 30px solid transparent;
    border-left-color: #01a0c6;
  }
}
@media (min-width: 64rem) {
  .about-project-timeline .cd-timeline .cd-timeline__date {
    position: absolute;
    width: 100%;
    left: 130%;
    top: 29px;
    display: block;
    visibility: visible;
  }
  .about-project-timeline .cd-timeline .cd-timeline__block:nth-child(even) .cd-timeline__date {
    left: auto;
    right: 130%;
    text-align: right;
  }
}
@media (min-width: 64rem) {
  .about-project-timeline .cd-timeline .cd-timeline__img--hidden,
.about-project-timeline .cd-timeline .cd-timeline__content--hidden {
    visibility: hidden;
  }
  .about-project-timeline .cd-timeline .cd-timeline__img--bounce-in {
    -webkit-animation: cd-bounce-1 0.6s;
    animation: cd-bounce-1 0.6s;
  }
  .about-project-timeline .cd-timeline .cd-timeline__content--bounce-in {
    -webkit-animation: cd-bounce-2 0.6s;
    animation: cd-bounce-2 0.6s;
  }
  .about-project-timeline .cd-timeline .cd-timeline__block:nth-child(even) .cd-timeline__content--bounce-in {
    -webkit-animation-name: cd-bounce-2-inverse;
    animation-name: cd-bounce-2-inverse;
  }
}
@-webkit-keyframes cd-bounce-1 {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  60% {
    opacity: 1;
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes cd-bounce-1 {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  60% {
    opacity: 1;
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes cd-bounce-2 {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  60% {
    opacity: 1;
    transform: translateX(20px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes cd-bounce-2 {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  60% {
    opacity: 1;
    transform: translateX(20px);
  }
  100% {
    transform: translateX(0);
  }
}
@-webkit-keyframes cd-bounce-2-inverse {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  60% {
    opacity: 1;
    transform: translateX(-20px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes cd-bounce-2-inverse {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  60% {
    opacity: 1;
    transform: translateX(-20px);
  }
  100% {
    transform: translateX(0);
  }
}
/* ==========================================================================
      Team
   ========================================================================== */
.team-desc {
  padding-bottom: 150px;
}
.team-desc p {
  font-family: "Montserrat-regular", sans-serif;
  color: #5d5d5d;
  font-size: 24px;
  text-align: left;
}

.team-tabs {
  padding: 50px 0;
}
.team-tabs .nav-pills .nav-link.active,
.team-tabs .nav-pills .show > .nav-link {
  background-color: #01a0c6;
  color: white;
  border-radius: 0;
}
.team-tabs .nav-pills .nav-link {
  color: #01a0c6;
  width: 100%;
}
.team-tabs .tab-content {
  margin-top: 50px;
}

.team-card {
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 550px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.team-card.active .team-card-footer {
  bottom: 100px;
  background-color: rgba(1, 160, 198, 0.5);
}
.team-card .team-card-footer {
  position: absolute;
  opacity: 1;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  left: 0;
  bottom: -25px;
  width: 100%;
  height: 190px;
  background-color: #01a0c6;
  transform: skew(0deg, -7deg);
  transition: all 0.4s linear;
}
.team-card .team-card-footer .team-card-name {
  font-family: "Montserrat-semibold", sans-serif;
  font-size: 18px;
  padding: 5px;
  color: white;
  transform: skew(0deg, 7deg);
  text-align: center;
}
.team-card .team-card-footer .team-card-line {
  width: 50%;
  background-color: white;
  height: 3px;
  margin: 10px 0;
  transform: skew(0deg, 7deg);
}
.team-card .team-card-footer .team-card-position {
  font-size: 20px;
  color: white;
  text-align: center;
  font-family: "Montserrat-italic", sans-serif;
  transform: skew(0deg, 7deg);
}
.team-card:hover .team-card-footer-info {
  z-index: 3;
}
.team-card .team-card-footer-info {
  position: absolute;
  z-index: 1;
  left: 0;
  text-align: center;
  bottom: 0;
  width: 100%;
  height: 130px;
  background-color: #01a0c6;
  font-size: 20px;
  font-family: "Montserrat-italic", sans-serif;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.team-card .team-card-footer-info .team-card-line-footer {
  width: 50%;
  background-color: white;
  height: 3px;
  margin: 0 auto;
}

.big-family {
  margin-bottom: 100px;
}

.big-family-images {
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 88vw;
  margin: 100px 0;
}

.big-family img {
  width: 320px;
}

/* ==========================================================================
      References
   ========================================================================== */
.ref-swiper-container {
  padding: 150px 0;
  position: relative;
}
.ref-swiper-container .swiper-button-next::after,
.ref-swiper-container .swiper-button-prev::after {
  color: #01a0c6;
}
.ref-swiper-container .ref-swiper {
  background-color: #ededed;
  padding: 40px 100px;
}
.ref-swiper-container .ref-swiper .swiper-slide:not(.swiper-slide-active) {
  opacity: 0 !important;
}
.ref-swiper-container .ref-swiper .swiper-name-col {
  text-align: center;
}
.ref-swiper-container .ref-swiper .swiper-name-col .swiper-img {
  margin-top: -80px;
}
.ref-swiper-container .ref-swiper .swiper-name-col p {
  margin-bottom: 0px;
}
.ref-swiper-container .ref-swiper .swiper-name-col .swiper-name {
  margin-top: 80px;
  font-family: "Montserrat-medium", sans-serif;
  font-size: 35px;
}
.ref-swiper-container .ref-swiper .swiper-name-col .swiper-position {
  font-size: 22px;
  font-family: "Montserrat-medium", sans-serif;
  color: #01a0c6;
}
.ref-swiper-container .ref-swiper .swiper-content {
  position: relative;
  padding: 0 50px;
  margin-left: 50px;
  text-align: center;
}
.ref-swiper-container .ref-swiper .swiper-content .quotes-left {
  position: absolute;
  top: 0;
  left: 0;
}
.ref-swiper-container .ref-swiper .swiper-content .quotes-right {
  position: absolute;
  bottom: 0;
  right: 0;
}
.ref-swiper-container .ref-swiper .swiper-content .title {
  font-family: "Montserrat-bold", sans-serif;
  color: #01a0c6;
  font-size: 33px;
}
.ref-swiper-container .ref-swiper .swiper-content .description {
  font-size: 22px;
}
.ref-swiper-container .ref-swiper .swiper-content .line {
  position: relative;
  margin-top: 30px;
  width: 60%;
  height: 4px;
  background-color: #01a0c6;
}
.ref-swiper-container .ref-swiper .swiper-content .line .triangle {
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  bottom: 0px;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 22px solid #01a0c6;
}

/* ==========================================================================
      Partners
   ========================================================================== */
.partners-swiper {
  margin-bottom: 50px;
}
.partners-swiper .swiper-container {
  width: 100%;
  height: 200px;
}
.partners-swiper .swiper-container .swiper-button-next::after,
.partners-swiper .swiper-container .swiper-button-prev::after {
  color: #01a0c6;
}
.partners-swiper .swiper-pagination-bullet-active {
  background-color: #01a0c6 !important;
}
.partners-swiper .swiper-slide {
  text-align: center;
  /* Center slide text vertically */
  display: flex;
  justify-content: center;
  align-items: center;
}

.partners-tabs .nav {
  flex-wrap: nowrap;
}
.partners-tabs .nav .nav-link {
  padding: 10px;
}
.partners-tabs .nav-pills .nav-link.active,
.partners-tabs .nav-pills .show > .nav-link {
  border-radius: 0px;
  background-color: rgba(1, 160, 198, 0.4);
}
.partners-tabs .product-2-swiper .swiper-button-next,
.partners-tabs .product-2-swiper .swiper-button-prev {
  background-color: white;
}
.partners-tabs .product-2-swiper .swiper-button-next::after,
.partners-tabs .product-2-swiper .swiper-button-prev::after {
  color: #01a0c6;
}

.partner-history {
  margin-top: 50px;
}
.partner-history .partner-history-title {
  font-family: "Montserrat-bold", sans-serif;
  font-size: 54px;
  color: #01a0c6;
}
.partner-history .line {
  position: relative;
  width: 30%;
  height: 3px;
  background-color: #01a0c6;
  margin-left: 20%;
  margin-top: 30px;
}
.partner-history .line .triangle {
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  bottom: 0px;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 22px solid #01a0c6;
}

.partner-content {
  transform: skew(0deg, -7deg);
  background-color: #ededed;
  padding: 50px 0;
  margin: 120px 0;
}
.partner-content img {
  transform: skew(0deg, 7deg);
}
.partner-content p {
  font-size: 24px;
  color: #5d5d5d;
  transform: skew(0deg, 7deg);
}

/* ==========================================================================
      Products
   ========================================================================== */
.products-tabs .about-us-box {
  width: 280px;
  height: 260px;
}
.products-tabs .about-us-box .about-us-box-text {
  text-align: center;
}

.products-container {
  padding-right: 50px;
  padding-left: 50px;
}

.products-vertical-tabs {
  padding: 100px 0;
}
.products-vertical-tabs .nav-pills .nav-link.active,
.products-vertical-tabs .nav-pills .show > .nav-link {
  background-color: transparent;
  color: #01a0c6;
  font-family: "Montserrat-medium", sans-serif;
}
.products-vertical-tabs .nav-pills .nav-link {
  font-size: 25px;
  font-family: "Montserrat-light", sans-serif;
  color: #282827;
  padding-left: 0px;
}
.products-vertical-tabs .nav-pills .nav-link:last-of-type::after {
  display: none;
}
.products-vertical-tabs .nav-pills .nav-link:after {
  content: "";
  width: 250px;
  height: 1px;
  display: block;
  margin-top: 20px;
  background-color: #282827;
}
.products-vertical-tabs .product-box {
  background-color: #ededed;
  display: block;
  width: 100%;
  border: none;
  padding: 0;
}
.products-vertical-tabs .product-box .product-name {
  font-size: 32px;
  font-family: "Montserrat-semibold", sans-serif;
  color: #01a0c6;
}
.products-vertical-tabs .product-box .product-image {
  height: 170px;
  position: relative;
}
.products-vertical-tabs .product-box .product-image .blue-button-sm {
  position: absolute;
  bottom: 15px;
  left: -15px;
}
.products-vertical-tabs .product-box .product-image img {
  width: 100%;
  height: 100%;
}

.line-with-arrow {
  position: relative;
  width: 300px;
  height: 3px;
  background-color: #01a0c6;
  display: flex;
  margin: 0 auto;
  margin-top: 25px;
}
.line-with-arrow .triangle {
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  bottom: 0px;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 22px solid #01a0c6;
}

.product-title {
  padding: 100px 0;
}
.product-title h1 {
  font-size: 70px;
}

.product-details-box {
  padding-bottom: 100px;
}
.product-details-box .product-desc p {
  font-size: 22px;
  font-family: "Montserrat-light", sans-serif;
}

.product-details-tabs .nav {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
}
.product-details-tabs .nav-link {
  font-size: 30px;
  color: #5d5d5d;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  line-height: 1.2;
  height: 112px;
}
.product-details-tabs .nav-link span {
  padding: 0 30px;
}
.product-details-tabs .nav-pills .nav-link.active,
.product-details-tabs .nav-pills .show > .nav-link {
  transform: skew(-30deg, 0deg);
  background-color: #ededed;
  color: #01a0c6;
  border-radius: 0;
}
.product-details-tabs .nav-pills .nav-link.active span,
.product-details-tabs .nav-pills .show > .nav-link span {
  display: block;
  transform: skew(30deg, 0deg);
}
.product-details-tabs .tab-content {
  background-color: #ededed;
  padding-top: 50px;
  padding-bottom: 10px;
}
.product-details-tabs .tab-content .pills-colors .color-name {
  font-family: "Montserrat-regular", sans-serif;
  font-size: 30px;
  color: #5d5d5d;
  margin-bottom: 10px;
}
.product-details-tabs .tab-content .pills-colors .color {
  transform: skew(-30deg, 0deg);
  height: 60px;
}
.product-details-tabs .information-box i {
  margin-right: 20px;
}
.product-details-tabs .information-box .card-body {
  border-bottom: 1px solid #5d5d5d;
  font-size: 30px;
  color: #5d5d5d;
  font-family: "Montserrat-regular", sans-serif;
}
.product-details-tabs .information-box .download-button {
  margin-right: 12px;
}

.product-2-title {
  padding: 100px 0;
}
.product-2-title h2 {
  font-size: 52px;
}

.product-2-tabs {
  margin-bottom: 100px;
}

.product-2-slider {
  padding-bottom: 100px;
}
.product-2-slider .product-2-swiper .swiper-button-next,
.product-2-slider .product-2-swiper .swiper-button-prev {
  background-color: white;
  width: 40px;
  height: 60px;
}
.product-2-slider .product-2-swiper .swiper-button-next::after,
.product-2-slider .product-2-swiper .swiper-button-prev::after {
  color: #01a0c6;
}
.product-2-slider .product-2-swiper .swiper-slide {
  width: 100%;
  height: 200px;
  background-position: center;
  background-position: center;
}
.product-2-slider .product-images-swiper .swiper-button-next,
.product-2-slider .product-images-swiper .swiper-button-prev {
  background-color: white;
  width: 40px;
  height: 60px;
}
.product-2-slider .product-images-swiper .swiper-button-next::after,
.product-2-slider .product-images-swiper .swiper-button-prev::after {
  color: #01a0c6;
}
.product-2-slider .product-images-swiper .swiper-slide {
  width: 100%;
  height: 280px;
  background-position: center;
  background-size: cover;
}

/* ==========================================================================
      Services
   ========================================================================== */
.services-desc {
  padding: 100px 0;
}

.services-box .services-box-container {
  margin-bottom: 150px;
}
.services-box .services-box-container .product-title {
  padding: 0 90px;
}
.services-box .services-box-content {
  padding: 50px;
  background-color: #ededed;
  margin-right: -80px;
  position: relative;
  z-index: 9;
  margin-top: -140px;
}
.services-box .services-box-content.right {
  margin-left: -80px;
  margin-right: 0;
}
.services-box .services-box-content p {
  font-family: "Montserrat-regular", sans-serif;
  font-size: 24px;
  color: #5d5d5d;
}
.services-box .services-box-images {
  object-fit: cover;
  width: 100%;
  height: 500px;
}

.no-padding {
  padding: 0px;
}

.services-info {
  padding: 100px 0;
}
.services-info .slider-row {
  padding-top: 100px;
}
.services-info .slider-row .services-info-swiper {
  position: relative;
}
.services-info .slider-row .services-info-swiper .swiper-wrapper .swiper-slide {
  min-height: 400px;
  background-position: center;
  background-size: cover;
}
.services-info .slider-row .services-info-swiper .swiper-pagination {
  color: #01a0c6;
}
.services-info .slider-row .services-info-swiper .swiper-button-next,
.services-info .slider-row .services-info-swiper .swiper-button-prev {
  color: #01a0c6;
  bottom: 5px;
  top: initial;
  z-index: 99;
}
.services-info .slider-row .services-info-swiper .swiper-button-next {
  right: 40%;
}
.services-info .slider-row .services-info-swiper .swiper-button-prev {
  left: 40%;
}
.services-info .slider-row .services-info-swiper .swiper-button-next:after,
.services-info .slider-row .services-info-swiper .swiper-button-prev:after {
  font-size: 31px;
}
.services-info h1 {
  text-transform: uppercase;
  font-size: 52px;
}
.services-info .services-info-text {
  color: #5d5d5d;
  font-size: 26px;
}
.services-info .content-row {
  padding-top: 100px;
}
.services-info .content-row p {
  font-size: 18px;
}

.see-more-section {
  background-color: #ededed;
  padding: 100px 0px;
}
.see-more-section h3 {
  color: #01a0c6;
}
.see-more-section .services-swiper {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 420px;
}
.see-more-section .services-swiper .swiper-pagination-bullet-active {
  background: #01a0c6 !important;
}
.see-more-section .services-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: white;
  opacity: 1;
}
.see-more-section .services-swiper .swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.see-more-section .services-swiper .swiper-slide .swiper-img {
  width: 100%;
  height: 200px;
  background-position: center;
  background-size: cover;
}
.see-more-section .services-swiper .swiper-slide .swiper-title {
  text-transform: uppercase;
  color: #5d5d5d;
  font-family: "Montserrat-semibold", sans-serif;
  font-size: 20px;
  margin: 20px 0;
}

/* ==========================================================================
      Project
   ========================================================================== */
.project-row {
  margin-bottom: 70px;
  overflow: hidden;
}
.project-row:hover .project-content-wrapper {
  margin-right: -9%;
}
.project-row .project-img {
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  cursor: pointer;
}
.project-row .project-content-wrapper {
  padding: 50px 100px;
  background-color: rgba(1, 160, 198, 0.6);
  color: white;
  transform: skew(30deg, 0deg);
  width: 50%;
  margin-right: -60%;
  transition: margin 0.8s ease;
}
.project-row .project-content-wrapper .project-content {
  padding: 0 60px;
  transform: skew(-30deg, 0deg);
}
.project-row .project-content-wrapper .project-content .title {
  font-size: 50px;
  line-height: 1.2;
  font-family: "Montserrat-semibold", sans-serif;
}
.project-row .project-content-wrapper .project-content .desc {
  margin-bottom: 10px;
  font-size: 30px;
  font-family: "Montserrat-italic", sans-serif;
}
.project-row .project-content-wrapper .project-content .desc p {
  margin-bottom: 0px;
}

.project-banner .home-banner {
  height: 1000px;
}
.project-banner .home-banner .banner-title {
  margin-bottom: 50px;
  font-family: "Montserrat-bold", sans-serif;
}

.project-desc {
  padding: 100px 0;
}
.project-desc p {
  font-size: 24px;
  color: #5d5d5d;
}

.project-images .large-image {
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.project-images .project-images-space {
  width: 100%;
  height: 50px;
  background-color: #01a0c6;
}

.video-section {
  position: relative;
}
.video-section .play-button {
  z-index: 9;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
.video-section .play-button i {
  font-size: 62px;
  color: white;
}

/* ==========================================================================
      Price
   ========================================================================== */
.price {
  padding: 100px 0;
}
.price .price-accordion .card {
  border: none;
}
.price .price-accordion .card .card-header {
  background-color: white;
  border-bottom: none;
}
.price .price-accordion .card .card-header button {
  padding-left: 0;
  font-size: 35px;
  color: #5d5d5d;
  font-family: "Montserrat-semibold", sans-serif;
  text-decoration: none;
}
.price .price-accordion .card .card-header button i {
  margin-right: 40px;
}
.price .price-accordion .card .card-body {
  border-bottom: 1px solid #5d5d5d;
  margin: 0 30px;
  font-size: 30px;
  color: #5d5d5d;
  font-family: "Montserrat-regular", sans-serif;
}
.price .price-accordion .card .download-button {
  margin-right: 40px;
  margin-bottom: 40px;
}

/* ==========================================================================
      Contacts
   ========================================================================== */
.contact-us .contact-us-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.contact-us .contact-us-box .contact-us-box-title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 15px;
}
.contact-us .contact-us-box .contact-us-box-title i {
  font-size: 45px;
  color: #01a0c6;
  margin-bottom: 15px;
}
.contact-us .contact-us-box .contact-us-box-title div {
  font-size: 26px;
  font-family: "Montserrat-semibold", sans-serif;
  color: #01a0c6;
  text-transform: uppercase;
}
.contact-us .contact-us-box .text {
  text-align: center;
  font-size: 20px;
  color: #5d5d5d;
  font-family: "Montserrat-regular", sans-serif;
}
.contact-us .contact-us-box .text a {
  color: #5d5d5d;
}

.contact-center-img {
  margin-top: 100px;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 650px;
}

.contact-us-title {
  padding-bottom: 40px;
}
.contact-us-title h2 {
  font-size: 45px;
}
.contact-us-title p {
  font-size: 22px;
  color: #5d5d5d;
  font-family: "Montserrat-regular", sans-serif;
}

.contact-us-title-map {
  padding: 100px 0;
}
.contact-us-title-map h2 {
  font-size: 45px;
}

/* .contact-form {
       margin-top: 100px;
       position: relative;
   } */
.contact-form .contacts-box {
  box-shadow: 0px 0px 5px 3px rgba(0, 0, 0, 0.23);
  -webkit-box-shadow: 0px 0px 5px 3px rgba(0, 0, 0, 0.23);
  -moz-box-shadow: 0px 0px 5px 3px rgba(0, 0, 0, 0.23);
  padding: 50px;
  background-color: white;
}
.contact-form .contacts-img {
  background-position: center;
  background-size: cover;
  width: 100%;
  padding: 100px 0;
  background-attachment: fixed;
}
.contact-form label {
  font-size: 22px;
  color: #5d5d5d;
  font-family: "Montserrat-regular", sans-serif;
}
.contact-form .form-control {
  height: 50px;
}
.contact-form .form-control.text-area {
  height: initial;
  background-color: #ededed;
}

.google-maps {
  padding-bottom: 100px;
}

#map {
  width: 100%;
  height: 500px;
  background-color: grey;
}

/* ==========================================================================
      Authentication
   ========================================================================== */
.auth-section {
  padding: 50px 0;
}
.auth-section h2 {
  font-size: 52px;
}
.auth-section .contact-form {
  box-shadow: 0px 0px 5px 3px rgba(0, 0, 0, 0.23);
  -webkit-box-shadow: 0px 0px 5px 3px rgba(0, 0, 0, 0.23);
  -moz-box-shadow: 0px 0px 5px 3px rgba(0, 0, 0, 0.23);
  padding: 50px;
  margin-top: 50px;
}

/* ==========================================================================
      Footer
   ========================================================================== */
.footer {
  background-position: center;
  background-size: cover;
  width: 100%;
  padding-top: 70px;
  padding-bottom: 10px;
}
.footer .footer-container {
  padding: 50px;
  border-top: 2px solid #c6c4c4;
  border-bottom: 2px solid #c6c4c4;
}
.footer .footer-links {
  padding: 0 15px;
  flex-grow: 1;
  flex-basis: 0;
}
.footer .footer-links .footer-link-title {
  font-size: 18px;
  font-family: "Montserrat-bold", sans-serif;
  margin-bottom: 10px;
  color: white;
}
.footer .footer-links .footer-link-title:last-of-type {
  margin-bottom: 0px;
}
.footer .footer-links .footer-link {
  margin-bottom: 7px;
  color: #c6c4c4;
}
.footer .footer-links .footer-link:last-of-type {
  margin-bottom: 0px;
}
.footer .footer-links img {
  width: 160px;
}
.footer .subscribe .title {
  font-size: 18px;
  font-family: "Montserrat-bold", sans-serif;
  color: white;
}
.footer .subscribe .form-control {
  height: 50px;
  background-color: #c6c4c4;
  border: 1px solid #c6c4c4;
}
.footer .subscribe .form-control::-moz-placeholder {
  color: white;
}
.footer .subscribe .form-control:-ms-input-placeholder {
  color: white;
}
.footer .subscribe .form-control::placeholder {
  color: white;
}
.footer .subscribe .custom-checkbox {
  color: white;
  margin-bottom: 20px;
}
.footer .subscribe .email-link {
  margin-bottom: 15px;
}
.footer .subscribe .email-link img {
  width: 30px;
  margin-right: 10px;
}
.footer .subscribe .email-link a {
  color: white;
}

.accessory-container .accessory-img {
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 300px;
}
.accessory-container .accessory-content h3 {
  margin-bottom: 20px;
}
.accessory-container .accessory-content p {
  font-family: "Montserrat-light", sans-serif;
  font-size: 22px;
  color: #5d5d5d;
}

.product-gallery {
  padding-bottom: 100px;
}
.product-gallery .galery-thumb {
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 280px;
}

.header-offset {
  margin-top: 89px;
}

/* ==========================================================================
      30 Years VAS
   ========================================================================== */
.vas-30-years-wrapper .content-box-bg {
  width: 100%;
  padding-top: 15vw;
  padding-bottom: 6.125vw;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.vas-30-years-wrapper .header {
  position: relative;
  width: 100%;
  height: 36vw;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.vas-30-years-wrapper .logos-container {
  padding-top: 50px;
}
.vas-30-years-wrapper .letter-container {
  padding-top: 100px;
}
.vas-30-years-wrapper .logos-container .logo-left {
  width: 17vw;
}
.vas-30-years-wrapper .logos-container .logo-right {
  width: 25vw;
}
.vas-30-years-wrapper .header .logo {
  width: 18.75vw;
  margin-top: 3.125vw;
}
.vas-30-years-wrapper .header .event-box {
  position: absolute;
  width: 25vw;
  left: 9%;
  bottom: -33%;
}
.vas-30-years-wrapper .header .event-box .left {
  color: #3c4289;
}
.vas-30-years-wrapper .header .event-box .left .first {
  font-size: 1.55vw;
  font-weight: 600;
  margin-bottom: 1.7vw;
}
.vas-30-years-wrapper .header .event-box .left .second {
  font-size: 2.4vw;
  line-height: 1;
  text-align: end;
  font-weight: 600;
  margin-bottom: 0;
}
.vas-30-years-wrapper .header .event-box .vertical-line {
  height: 9.5vw;
  margin: 0 1.25vw;
  width: 2px;
  background-color: #3c4289;
}
.vas-30-years-wrapper .header .event-box .right .first {
  font-size: 2.6vw;
  color: #61aaea;
  font-weight: 600;
}
.vas-30-years-wrapper .header .event-box .right .second {
  font-size: 1.55vw;
  color: #61aaea;
  font-weight: 600;
}
.vas-30-years-wrapper .header .event-box .right .third {
  font-size: 1.225vw;
  color: #61aaea;
  font-weight: 600;
  margin-bottom: 0;
}
.vas-30-years-wrapper .content-box {
  color: #3c4289;
  font-size: 1.25vw;
}
.vas-30-years-wrapper .content-box .bold {
  font-weight: bold;
}
.vas-30-years-wrapper .content-box p {
  text-align: justify;
  font-family: "Montserrat-Regular", sans-serif;
  margin-bottom: 1.875vw;
}
.vas-30-years-wrapper .content-box a {
  font-weight: 600;
  color: #3c4289;
}
.vas-30-years-wrapper .program {
  background-color: #3c4289;
  padding: 50px 0;
  color: white;
}
.vas-30-years-wrapper .program .title {
  font-size: 3.75vw;
  margin-bottom: 3.125vw;
}
.vas-30-years-wrapper .program .program-text {
  font-size: 1.5vw;
  font-family: "Montserrat-regular", sans-serif;
  margin-bottom: 20px;
}
.vas-30-years-wrapper .program .program-bg {
  width: 9.375vw;
  height: auto;
}
.vas-30-years-wrapper .footer-contacts .content {
  font-family: "Montserrat-regular", sans-serif;
  font-size: 1.25vw;
  text-align: center;
  color: #3c4289;
  padding: 100px 0;
}
.vas-30-years-wrapper .footer-contacts-bg {
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.vas-30-years-wrapper .event-location {
  padding: 50px 0;
}
.vas-30-years-wrapper .event-location h2 {
  color: #3c4289;
}

/* ==========================================================================
      Prices
   ========================================================================== */
.search-product-section {
  border-bottom: 2px solid #ededed;
  padding: 70px 0;
}
.search-product-section .search-input {
  height: 50px;
}
.search-product-section .search-input .form-control {
  height: 100%;
  border: 1px solid #01a0c6;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.search-product-section .search-input .form-control::-moz-placeholder {
  color: #01a0c6;
}
.search-product-section .search-input .form-control:-ms-input-placeholder {
  color: #01a0c6;
}
.search-product-section .search-input .form-control::placeholder {
  color: #01a0c6;
}
.search-product-section .search-input .btn-secondary {
  background-color: #01a0c6;
  border-color: #01a0c6;
  padding: 0.375rem 1rem;
}

.search-product-section .search-input {
  width: 80%;
}

.price-section {
  padding: 30px 0;
}
.price-section .check-all {
  margin-bottom: 30px;
}
.price-section .filter-title {
  text-transform: uppercase;
  color: #01a0c6;
  margin-bottom: 20;
}
.price-section .filter-button {
  height: 40px;
  font-size: 14px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.price-section .filters-nav {
  padding: 0;
  margin-bottom: 20px;
}
.price-section .filters {
  background-color: #01a0c6;
  padding: 15px;
  font-family: "Montserrat-regular", sans-serif;
}
.price-section .custom-control {
  padding-left: 35px;
  font-size: 14px;
  display: flex;
  align-items: center;
  margin-bottom: 0.6rem;
}
.price-section .custom-control.sub-option {
  margin-left: 35px;
}
.price-section .custom-control.sub-sub-option {
  margin-left: 70px;
}
.price-section .fill-control-indicator {
  border-radius: 3px;
  display: inline-block;
  position: absolute;
  left: 0;
  width: 19px;
  height: 19px;
  border: 1px solid white;
  transition: 0.3s;
  background: transperent;
  background-size: 0%;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
}
.price-section span.fill-control-indicator {
    cursor: pointer;
}
.price-section .fill-control-indicator.white-border {
  border: 1px solid #01a0c6;
}
.price-section .fill-control-description {
  line-height: 1.2;
}
.price-section .fill-control-description.choose-all-label {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: bold;
}
.price-section .fill-control-description.white-label {
  color: white;
}
.price-section .fill-control-input {
  display: none;
}
.price-section .fill-control-input:checked ~ .fill-control-indicator {
  background-color: white;
  border-color: #01a0c6;
}
.price-section .fill-control-input:checked ~ .fill-control-indicator.white-check {
  background-color: #01a0c6;
  border-color: white;
}
.price-section .fill-control-input:checked ~ .fill-control-indicator.white-check .rotate-icon {
    display: block !important;
    color: white;
    font-size: 20px;
    line-height: 17px;
}
.price-section .fill-control-input:checked ~ .fill-control-indicator .rotate-icon {
    display: block !important;
    color: #01a0c6;
    font-size: 20px;
    line-height: 17px;
}
.price-section .product-accordion .card-header:not(.collapsed) .rotate-icon {
  transform: rotate(180deg);
}
.price-section .product-accordion .card-header.collapsed .rotate-icon-up {
    transform: rotate(180deg);
  }
.price-section .product-accordion .card {
  border-radius: 5px !important;
  border: none;
  margin-bottom: 5px;
}
.price-section .product-accordion .card .download-btn.hide {
  display: none;
}
.price-section .product-accordion .card .download-btn.show {
  display: flex;
}
.price-section .product-accordion .card .card-header {
  width: 65%;
  border-radius: 5px !important;
  cursor: pointer;
  margin-bottom: 0px;
  background-color: #01a0c6;
  color: white;
  border-bottom: none;
  padding: 10px 30px;
}
.price-section .product-accordion .card .card-header .title {
  font-size: 22px;
  font-family: "Montserrat-bold", sans-serif;
}
.price-section .product-accordion .card .card-header .main-category-title {
  font-size: 15px;
  font-weight: bold;
  text-transform: uppercase;
}
.price-section .product-accordion .card .card-header i {
  font-size: 34px;
  color: white;
}
.price-section .product-accordion .card .card-body {
  border: 1px solid #01a0c6;
  border-radius: 5px;
  margin-top: 30px;
  margin-bottom: 25px;
}
.price-section .product-accordion .card.sub-card .card-header {
  border-radius: 0;
  background-color: white;
  color: #282827;
  width: 100%;
}
.price-section .product-accordion .card.sub-card .card-header.active {
  background-color: #c4e3eb;
}
.price-section .product-accordion .card.sub-card .card-header.active .title,
.price-section .product-accordion .card.sub-card .card-header.active .accicon i {
  color: #01a0c6;
  font-weight: bold;
}
.price-section .product-accordion .card.sub-card .card-header .title {
  font-size: 16px;
  color: #5d5d5d;
  font-family: "Montserrat-medium", sans-serif;
  font-weight: bold;
}
.price-section .product-accordion .card.sub-card .card-header .accicon i {
  color: #5d5d5d;
  font-size: 19px;
  margin-right: 20px;
  font-weight: bold;
}
.price-section .product-accordion .card.sub-card .card-body {
  border: none;
  margin-top: 15px;
  margin-bottom: 15px;
  padding: 0;
}
.price-section .product-accordion .card .product-price-box {
  border-bottom: 1px solid black;
  padding: 0 0 20px 30px;
  margin-top: 20px;
}
.price-section .product-accordion .card .product-price-box .prod-img {
  padding: 10px;
  border: 1px solid #01a0c6;
  border-radius: 5px;
  height: 127px;
}
.price-section .product-accordion .card .product-price-box .title {
  color: #787777;
  font-size: 15px;
  font-weight: bold;
}
.price-section .product-accordion .card .product-price-box .prod-desc {
  font-family: "Montserrat-regular", sans-serif;
  color: #b0b0b0;
}
.price-section .product-accordion .card .product-price-box .prod-price {
  color: #787777 !important;
  color: #5d5d5d;
  font-weight: bold;
}
.price-section .product-accordion .card .product-price-box .prod-price .prod-unit {
  font-weight: normal;
  color: #b0b0b0;
}
.price-section .price-info {
    font-size: 14px;
    font-family: "Montserrat-regular", sans-serif;
    color: #b0b0b0;
}

@media (max-width: 576px) {
  .banner-with-text {
    background-attachment: scroll;
  }

  .who-we-are .who-we-are-banner {
    background-attachment: scroll;
  }

  .vas-30-years-wrapper .header .event-box .left .first {
    font-size: 12px;
    margin-bottom: 5px;
  }
  .vas-30-years-wrapper .header .event-box .left .second {
    font-size: 16px;
  }
  .vas-30-years-wrapper .header .event-box .right .first {
    margin-bottom: 0px;
    font-size: 18px;
  }
  .vas-30-years-wrapper .header .event-box .right .second {
    font-size: 12px;
    white-space: nowrap;
  }
  .vas-30-years-wrapper .header .event-box .right .third {
    font-size: 10px;
  }
  .vas-30-years-wrapper .header .event-box .vertical-line {
    height: 70px;
    margin: 0 10px;
    width: 1px;
    background-color: #3c4289;
  }
  .vas-30-years-wrapper .content-box {
    font-size: 14px;
    padding-top: 15px;
    padding-bottom: 50px;
  }
  .vas-30-years-wrapper .logos-container {
    padding-top: 30px;
  }
  .vas-30-years-wrapper .letter-container {
    padding-top: 50px;
  }
  .vas-30-years-wrapper .logos-container .logo-left {
    width: 110px;
  }
  .vas-30-years-wrapper .logos-container .logo-right {
    width: 145px;
  }
  .vas-30-years-wrapper .program-content {
    display: flex;
    justify-content: center;
  }
  .vas-30-years-wrapper .program .title {
    font-size: 30px;
  }
  .vas-30-years-wrapper .program .program-text {
    font-size: 16px;
  }
  .vas-30-years-wrapper .program .program-bg {
    width: 50px;
  }
  .vas-30-years-wrapper .footer-contacts .content {
    font-size: 13px;
    padding: 50px 0;
  }
  /* .vas-30-years-wrapper .header .event-box {
       bottom: -70px;
   } */
}
/* ==========================================================================
      Media
   ========================================================================== */
@media (min-width: 769px) {
  .team-card:hover .team-card-footer {
    bottom: 100px;
    background-color: rgba(1, 160, 198, 0.5);
  }
}
@media (max-width: 1100px) {
    .main-nav .navbar-nav .nav-item {
      padding: 29px 10px;
    }
}
@media (max-width: 1500px) {
  .main-nav .navbar-nav .nav-item {
    font-size: 16px;
  }
  .main-nav .navbar-nav .download-nav-link {
    font-size: 14px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .main-nav .dropdown-menu .dropdown-menu-col .dropdown-menu-title,
.main-nav .dropdown-menu .dropdown-menu-col .dropdown-menu-item {
    font-size: 16px;
  }
  .project-row .project-content-wrapper {
    width: 60%;
    margin-right: -70%;
  }
  .main-nav .call-btn {
    height: 82px;
  }
  .header-offset {
    margin-top: 82px;
  }
  .comments .comments-content .comments-swiper {
    padding: 50px 50px;
  }
}
@media (max-width: 1340px) {
  .comments .comments-content {
    width: 90%;
  }
  .counter .number-style {
    font-size: 130px;
  }
}
@media (max-width: 1199.98px) {
  .services-box .services-box-images {
    width: unset;
    height: unset;
    max-width: 100%;
    max-height: 500px;
    display: block;
    margin: auto;
  }

  .main-nav .call-btn {
    display: none;
  }
  .main-nav .navbar-brand img {
    width: 120px;
  }
  .main-nav .dropdown-menu {
    padding: 30px 0px;
  }
  .home-banner .banner-content .banner-title {
    font-size: 70px;
  }
  .home-banner .banner-content .banner-desc {
    font-size: 40px;
  }
  .who-we-are .who-we-are-content .who-we-are-desc p {
    font-size: 24px;
  }
  .ref-swiper-container .ref-swiper .swiper-content .title {
    font-size: 22px;
  }
  .ref-swiper-container .ref-swiper .swiper-content .description {
    font-size: 18px;
  }
  .ref-swiper-container .ref-swiper .swiper-name-col .swiper-img {
    width: 250px;
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .ref-swiper-container .ref-swiper .swiper-name-col .swiper-name {
    font-size: 24px;
    margin-top: 20px;
  }
  .ref-swiper-container .ref-swiper .swiper-name-col .swiper-position {
    font-size: 18px;
  }
  .ref-swiper-container .swiper-slide-container {
    flex-direction: column;
  }
  .ref-swiper-container .ref-swiper .swiper-name-col {
    margin-bottom: 30px;
  }
  .products-tabs .about-us-box .about-us-box-img {
    width: 40%;
  }
  .about-us-tabs .about-us-box .about-us-box-text {
    font-size: 16px;
  }
  .products-tabs .about-us-box {
    height: 200px;
  }
  .product-details-tabs .nav-link {
    font-size: 24px;
  }
  .services-box .services-box-content p {
    font-size: 20px;
  }
  .project-row .project-content .title {
    font-size: 30px;
  }
  .project-row .project-content .desc {
    font-size: 20px;
  }
  .project-row .project-content-wrapper {
    transform: initial;
    margin-right: 0;
    padding: 50px;
  }
  .project-row .project-content-wrapper .project-content {
    transform: initial;
    padding: 0;
  }
  .project-row:hover .project-content-wrapper {
    margin-right: 0;
  }
  .search-product-section {
    padding: 50px 0;
  }
  .filters {
    margin-bottom: 20px;
  }
}
@media (max-width: 991.98px) {
  .main-nav .navbar-nav {
    max-height: 90vh;
    overflow-y: scroll;
  }
  .product-category-hidden .dropdown-menu-item {
    display: none;
  }
  .products-dropdown-menu .dropdown-menu-title {
    margin-bottom: 0 !important;
    color: #282827 !important;
  }
  .main-nav {
    padding: 10px 0;
  }
  .main-nav .navbar-nav .nav-item.active .triangle {
    display: none;
  }
  .call-btn-wrapper {
    display: none;
  }
  .main-nav .navbar-nav {
    text-align: center;
    padding-top: 15px;
    margin-top: 15px;
    padding-bottom: 15px;
    border-top: 1px solid white;
  }
  .main-nav .navbar-nav .nav-item {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .home-banner {
    padding: 0px 50px;
    height: 450px;
  }
  .home-banner .banner-content .banner-title {
    font-size: 50px;
  }
  .home-banner .banner-content .banner-desc {
    font-size: 20px;
  }
  .banner-with-text .banner-title {
    font-size: 50px;
  }
  .banner-with-text .banner-desc {
    font-size: 20px;
  }
  h1 {
    font-size: 70px;
  }
  .products .products-box {
    margin-bottom: 30px;
  }
  .who-we-are .who-we-are-content {
    position: initial;
    width: 100%;
    top: 55%;
    left: 50%;
    transform: translate(0, 0);
    margin-bottom: 35px;
  }
  .who-we-are .title-container {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .who-we-are .who-we-are-banner {
    height: 250px;
  }
  .last-project .swiper-slide .swiper-image {
    height: 300px;
  }
  .last-project .swiper-slide.swiper-slide-active .image-overlay .title {
    font-size: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .last-project .swiper-slide.swiper-slide-active .image-overlay .desc {
    font-size: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
  .comments-swiper .swiper-slide-container {
    flex-direction: column;
  }
  .comments .comments-content .comments-swiper {
    padding-top: 30px;
  }
  .comments .comments-content .comments-swiper .swiper-img {
    width: 200px;
    height: 200px;
    margin-bottom: 10px;
  }
  .comments .comments-content .comments-swiper .swiper-content .description {
    font-size: 16px;
  }
  .comments .comments-content .comments-swiper .swiper-button-prev {
    left: 3px;
    top: 20%;
  }
  .comments .comments-content .comments-swiper .swiper-button-next {
    left: initial;
    right: 3px;
    top: 20%;
  }
  .comments .comments-content .comments-swiper .swiper-button-next::after {
    color: white;
    background: #01a0c6;
    padding: 5px;
  }
  .comments .comments-content .comments-swiper .swiper-button-prev::after {
    color: white;
    background: #01a0c6;
    padding: 5px;
  }
  .page-header .page-title p {
    font-size: 60px;
  }
  .who-we-are-box .who-we-are-desc {
    font-size: 24px;
  }
  h2 {
    font-size: 60px;
  }
  .partner-history .partner-history-title {
    font-size: 40px;
  }
  .partner-content p,
.team-desc p {
    font-size: 20px;
  }
  .ref-swiper-container .ref-swiper {
    padding: 40px 15px;
  }
  .team-tabs .nav {
    justify-content: flex-start !important;
  }
  .products-vertical-tabs {
    padding-top: 50px;
  }
  .products-vertical-tabs .nav {
    align-items: center;
    margin-bottom: 20px;
  }
  .products-vertical-tabs .nav-pills .nav-link:after {
    width: 100%;
  }
  .product-gallery .galery-thumb {
    margin-bottom: 15px;
  }
  .services-box .services-box-content {
    margin-right: 0;
    margin-top: 30px;
    margin-left: 0;
    margin-bottom: 30px;
  }
  .services-box .services-box-content.right {
    margin-right: 0;
    margin-left: 0;
  }
  .services-box .services-box-container {
    margin-bottom: 30px;
  }
  .services-box .services-box-container .product-title {
    padding: 0;
  }
  .services-box .services-box-content {
    padding: 20px;
  }
  .services-box .services-box-images {
    max-height: 300px;
  }
  .dropdown-menu-container {
    flex-direction: column;
    text-align: center;
  }
  .main-nav .dropdown-menu .dropdown-menu-col {
    border-right: none;
    min-height: initial;
    margin-bottom: 20px;
  }
  .main-nav .dropdown-menu .dropdown-menu-col .dropdown-menu-title {
    height: 100%;
    margin-bottom: 15px;
  }
  .project-row .project-content-wrapper {
    width: 100%;
  }
  .main-nav .navbar-nav .nav-item.active .triangle, .main-nav .navbar-nav .nav-item.always-active .triangle {
    display: none !important;
  }
  .price-section .filter-title {
    font-size: 14px;
  }
  .price-section .custom-control {
    font-size: 12px;
  }
  .price-section .product-accordion .card .card-header .title {
    font-size: 16px;
  }
  .price-section .product-accordion .card .card-header {
    width: 100%;
  }
  .search-product-section .search-input {
    width: 100%;
  }
  .card-wrapper {
    flex-direction: column-reverse;
  }
  .price-section .product-accordion .card .card-header {
    padding: 5px 20px;
    margin-bottom: 10px;
  }
  .blue-button-default {
    font-size: 16px;
    height: 47px;
    margin-bottom: 10px;
  }
  .price-section .product-accordion .card .card-body {
    padding: 10px;
    margin-top: 20px;
    margin-bottom: 15px;
  }
  .price-section .product-accordion .card.sub-card .card-header {
    margin-bottom: 0;
    padding: 10px 5px;
  }
  .price-section .product-accordion .card.sub-card .card-header .title {
    font-size: 16px;
  }
  .price-section .product-accordion .card.sub-card .card-body .product-price-box .prod-img {
    margin-bottom: 10px;
  }
  .price-section .product-accordion .card.sub-card .card-body .product-price-box {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ededed;
  }
  .search-product-section {
    padding: 20px 0;
  }
  .price-section .check-all {
    margin-bottom: 20px;
  }
  .price-section .fill-control-indicator {
    width: 18px;
    height: 18px;
  }
  .price-section .custom-control {
    padding-left: 30px;
  }
  .price-section .custom-control.sub-option {
    margin-left: 30px;
  }
  .price-section .custom-control.sub-sub-option {
    margin-left: 60px;
  }
}
@media (max-width: 767.98px) {
  .page-header {
    height: 250px;
  }
  .page-header .page-title {
    padding-left: 100px;
    padding-right: 30px;
  }
  .page-header .page-title p {
    font-size: 30px;
  }
  .about-us-tabs .about-us-box {
    margin-bottom: 10px;
  }
  .about-us-tabs .about-us-box .about-us-box-text {
    font-size: 16px;
  }
  .about-us-tabs-container {
    flex-wrap: wrap;
  }
  .about-us-tabs {
    padding-bottom: 0px;
  }
  .who-we-are-box {
    padding-top: 20px;
  }
  .product-details-tabs .nav {
    flex-direction: column;
    margin-bottom: 20px;
  }
  .product-details-tabs .nav-link {
    height: 90px;
  }
  .product-details-box {
    padding-bottom: 50px;
  }
  .price .price-accordion .card .card-header button {
    font-size: 24px;
  }
  .price .price-accordion .card .card-body {
    font-size: 20px;
  }
  .contact-us .contact-us-box .contact-us-content {
    transform: initial;
  }
  .contact-us .contact-us-box .contact-us-content .text {
    font-size: 18px;
  }
  .contact-us .contact-us-box .contact-us-content i {
    margin-right: 30px;
    font-size: 34px;
  }
  .about-us-tabs .about-us-tabs-container {
    justify-content: center;
  }
  .products-tabs .about-us-box {
    height: 215px;
  }
  .about-us-tabs .about-us-box {
    height: 120px;
  }
}
@media (max-width: 575.98px) {
  .main-nav .navbar-brand img {
    width: 110px;
  }
  .home-banner {
    padding: 0 20px;
    height: 390px;
  }
  .home-banner .banner-content .banner-title {
    font-size: 42px;
  }
  .banner-with-text {
    padding: 40px;
  }
  .banner-with-text .banner-title {
    font-size: 42px;
  }
  h1 {
    font-size: 42px;
  }
  h2 {
    font-size: 30px;
  }
  .products {
    padding: 80px 0;
  }
  .products .products-box {
    height: auto;
  }
  .who-we-are .who-we-are-content .who-we-are-desc {
    padding: 50px 30px;
  }
  .who-we-are .who-we-are-content .who-we-are-desc p {
    font-size: 20px;
  }
  .last-project {
    padding: 80px 0;
  }
  .last-project .swiper-slide.swiper-slide-active .image-overlay {
    align-items: center;
    text-align: center;
  }
  .last-project .swiper-slide.swiper-slide-active .image-overlay .white-button-sm {
    margin-left: 0px !important;
  }
  .comments .comments-content {
    width: 100%;
    position: initial;
    transform: none;
  }
  .comments .comments-content .comments-swiper {
    padding-right: 10px;
    padding-left: 10px;
    padding-bottom: 15px;
  }
  .comments .comments-content .comments-swiper .swiper-content {
    margin-left: 0;
    text-align: center;
  }
  .price .price-accordion .card .card-header button i {
    margin-right: 20px;
  }
  .comments .comments-content .comments-swiper .swiper-content .name {
    line-height: 1.2;
  }
  .comments .comments-banner {
    height: 100%;
    padding: 40px 20px;
  }
  .comments h1 {
    margin-bottom: 50px;
  }
  .counter .number-style {
    font-size: 100px;
  }
  .counter .text {
    font-size: 28px;
  }
  .project-desc {
    padding: 50px 0;
  }
  .project-desc p {
    font-size: 20px;
  }
  .follow-us .text {
    text-align: center !important;
    margin-bottom: 10px;
  }
  .follow-us .social-icons {
    justify-content: space-between !important;
  }
  .footer .footer-image {
    margin-right: 0;
  }
  .footer .footer-links {
    margin-bottom: 15px;
    text-align: center;
  }
  .footer .footer-container {
    padding-right: 0;
    padding-left: 0;
  }
  .footer .footer-links img {
    width: 130px;
  }
  .about-us-tabs {
    padding-left: 15px;
    padding-right: 15px;
  }
  .who-we-are-box {
    padding-bottom: 20px;
  }
  .who-we-are-box .who-we-are-desc {
    font-size: 18px;
    margin-top: 20px;
  }
  .ref-swiper-container {
    padding: 50px 0;
  }
  .ref-swiper-container .ref-swiper {
    padding: 40px 36px;
  }
  .ref-swiper-container .ref-swiper .swiper-content {
    margin: 0;
    padding: 0;
  }
  .ref-swiper-container .ref-swiper .swiper-content .quotes-left,
.ref-swiper-container .ref-swiper .swiper-content .quotes-right {
    display: none;
  }
  .ref-swiper-container .ref-swiper .swiper-name-col .swiper-img {
    width: 100%;
  }
  .ref-swiper-container .ref-swiper .swiper-content .title {
    font-size: 18px;
  }
  .ref-swiper-container .ref-swiper .swiper-content .description {
    font-size: 16px;
  }
  .big-family img {
    width: 150px;
  }
  .team-tabs .nav {
    flex-direction: column;
  }
  .products-container {
    padding-right: 15px;
    padding-left: 15px;
  }
  .about-us-tabs .about-us-box .about-us-box-text {
    font-size: 14px;
  }
  .products-vertical-tabs .product-box .product-image .blue-button-sm {
    top: 50%;
    left: 50%;
    margin-left: -20px;
    margin-top: -20px;
    bottom: initial;
  }
  .product-details-box .product-desc p {
    font-size: 18px;
  }
  .product-details-box .blue-button-lg {
    font-size: 20px;
  }
  .product-details-tabs .tab-content .pills-colors .color {
    transform: skew(0deg, 0deg);
  }
  .product-details-tabs .tab-content .pills-colors .color-name {
    font-size: 24px;
  }
  .project-row .project-content {
    padding: 20px;
  }
  .price {
    padding: 50px 0;
  }
  .price .card-header {
    padding-left: 0px;
    padding-right: 0px;
  }
  .project-row .project-content-wrapper {
    margin-right: 0;
    padding: 20px;
    visibility: visible;
    opacity: 1;
  }
  .project-row .project-content-wrapper .project-content {
    text-align: center;
  }
  .project-row .project-content-wrapper .project-content .title {
    font-size: 32px;
  }
  .project-row .project-content-wrapper .project-content .desc {
    font-size: 22px;
  }
  .project-images .large-image {
    height: 244px;
    background-attachment: scroll;
  }
  .project-images .project-images-space {
    height: 10px;
  }
  .project-banner .home-banner {
    height: 600px;
  }
  .contact-center-img {
    height: 300px;
  }
  .contact-us-title h2 {
    font-size: 32px;
  }
  .contact-us-title p {
    font-size: 18px;
  }
  .google-maps {
    padding-bottom: 0px;
  }
  .contact-form .contacts-box {
    padding: 15px;
  }
  .contact-us-title-map h2 {
    font-size: 32px;
  }
  .comments .comments-content .comments-swiper .quotes-top {
    position: absolute;
    top: 25px;
    left: 0;
    width: 250px;
  }
  .products-vertical-tabs .nav-pills .nav-link {
    padding-right: 0;
    text-align: center;
    font-size: 20px;
  }
  .header-offset {
    margin-top: 77px;
  }
  .team-card .team-card-footer .team-card-name {
    font-size: 18px;
  }
  .products .products-box .products-img {
    margin-bottom: 10px;
  }
  .product-title h1 {
    font-size: 38px;
  }
  .comments .comments-content.no-title {
    position: initial;
    width: 100%;
    top: 0;
    left: 0;
    margin-bottom: 50px;
    transform: none;
    padding: 0 25px;
  }
  .team-desc {
    padding-bottom: 50px;
  }
  .team-card:hover .team-card-footer-info {
    z-index: initial;
  }
  .team-card .team-card-footer-info {
    z-index: 0;
  }
  .team-card.active .team-card-footer-info {
    z-index: 3;
  }
  .filters {
    margin-bottom: 0;
  }
  .search-product-section .search-input {
    height: 40px;
  }
  .price-section {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}/*# sourceMappingURL=style.css.map */
