/* Design By: Mohamed Ali === Al Salem Johnson Controls */

@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;700&display=swap");

:root {
  --first-color: #00539e;
  --second-color: #151515;
  --third-color: #ffffff;
}
*,
::after,
::before {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Montserrat", sans-serif;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background-color: var(--third-color);
  outline: none;
}
*,
a,
div,
h1,
h2,
h3,
h4,
h5,
html,
img,
li,
p,
span {
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
}
.container {
  width: 100%;
  padding-right: 24px;
  padding-left: 24px;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  max-width: 1440px;
  /* overflow: hidden; */
  margin: auto;
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: var(--second-color);
}

/* =========================
    =========== NAVBAR =========
    ============================ */
.navbar {
  background: transparent;
  position: fixed;
  width: 100%;
  z-index: 9;
  top: 0;
  border-bottom: solid 1px rgba(255, 255, 255, 0.2);
}
.navbar.scrolled {
  background-color: var(--third-color);
  transition: background-color 200ms linear;
  box-shadow: 0 5px 14px 0 rgb(0 0 0 / 8%);
}
.navbar.scrolled a {
  color: var(--second-color);
}
.navbar a {
  color: var(--third-color);
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav .logo {
  width: 220px;
  height: auto;
}
.nav .logo img {
  width: 100%;
  height: 100%;
}
.nav .links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  position: relative;
}
.nav .links a {
  font-size: 16px;
  padding: 25px 0;
  letter-spacing: 1px;
  outline: none;
  font-weight: 500;
}
.no .nav .links a {
  color: var(--second-color);
  outline: none;
}
.nav .links .sub-nav,
.nav .links .last {
  margin-left: 25px;
}
.nav .links .subnavbtn {
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  position: relative;
}
.nav .links .subnavbtn img {
  transform: rotate(90deg);
  margin-left: 5px;
  transition: all 0.3s ease-in-out;
}
.nav .links .last {
  position: relative;
}
.nav .links .subnavbtn::after {
  position: absolute;
  left: -11px;
  top: 0;
  height: 1.25em;
  width: 1px;
  content: "";
  background: var(--third-color);
}
.nav .links .last::after {
  position: absolute;
  left: -11px;
  top: 23px;
  height: 1.25em;
  width: 1px;
  content: "";
  background: var(--third-color);
}
.navbar.scrolled .nav .links .subnavbtn::after,
.navbar.scrolled .nav .links .last::after {
  background: var(--second-color);
}
.nav .links .sub-content {
  display: none;
  justify-content: space-between;
  align-items: flex-start;
  position: absolute;
  left: 0;
  padding: 20px;
  background-color: var(--third-color);
  width: 100%;
  z-index: 1;
  box-shadow: 0 0 14px 1px rgba(46, 41, 37, 0.08);
  overflow: hidden;
  margin-top: 20px;
  transition: all 0.3s ease-in-out;
}
.nav .links .sub-content .link {
  width: 100%;
}
.nav .links .sub-content li {
  padding: 10px 0;
  cursor: pointer;
}
.nav .links .sub-content li a {
  font-size: 14px;
  letter-spacing: 1px;
  margin: 0;
  padding: 15px 0;
  text-align: left;
  position: relative;
  color: var(--second-color) !important;
}
.nav .links .sub-content li a::after,
.nav .links .subnavbtn a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--first-color);
  -webkit-transform-origin: right top;
  transform-origin: right top;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-transition: -webkit-transform 0.3s
    cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: -webkit-transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    -webkit-transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.nav .links .subnavbtn a::after {
  top: 23px;
}
.nav .links .subnavbtn a.colored::after {
  background-color: var(--third-color);
}
.nav .links .sub-content li:hover a::after,
.nav .links .subnavbtn:hover a::after {
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.nav .links .sub-content .sub-img img {
  width: 300px;
  height: 200px;
  object-fit: cover;
}
.nav .links .sub-content .sub-img p {
  margin-top: 10px;
  text-align: center;
  letter-spacing: 1px;
}
.nav .links .sub-nav:hover .sub-content {
  display: flex;
}
.mobie {
  display: none;
}
@media screen and (max-width: 1199px) {
  .nav .links .sub-nav,
  .nav .links .last {
    margin-left: 10px;
  }
  .nav .links a {
    font-size: 14px;
  }
  .nav .links .subnavbtn::after,
  .nav .links .last::after {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .navbar {
    display: none;
  }
  .mobie {
    display: block;
    top: 0;
    position: fixed;
    width: 100%;
    z-index: 99;
    background-color: var(--third-color);
  }
  .mob-nav {
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .mob-nav .logo {
    width: 170px;
    height: auto;
  }
  .mob-nav .logo img {
    width: 100%;
    height: 100%;
  }
  .mob-nav .toggle-nav {
    position: relative;
    display: block;
  }
  .mob-nav .toggle-nav span {
    width: 20px;
    height: 2px;
    background-color: var(--second-color);
    display: block;
    margin-bottom: 4px;
  }

  .nav-top {
    display: flex;
    align-items: center;
    position: fixed;
    z-index: 101;
    padding: 10px 20px;
    width: 100%;
    height: 50px;
    background-color: var(--third-color);
  }
  .nav-top .hamburger {
    margin-left: auto;
    color: #fff;
    cursor: pointer;
  }

  .nav-drill {
    margin-top: 50px;
    transform: translateX(100%);
  }
  .nav-is-toggled {
    z-index: 999999;
  }
  .nav-is-toggled .nav-drill {
    transform: translateX(0);
  }
  .nav-is-toggled::after {
    opacity: 1;
    visibility: visible;
  }

  .nav-drill {
    display: flex;
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    transition: 0.45s;
  }
  .nav-items {
    flex: 0 0 100%;
  }
  .nav-item:not(:last-child) {
    border-bottom: solid 1px rgba(0, 0, 0, 0.3);
  }
  .nav-link {
    display: block;
    padding: 0.875em 1em;
    background-color: #fff;
    color: var(--second-color);
    font-size: 1rem;
    line-height: 1.5em;
    font-weight: 300;
  }
  .nav-expand-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateX(100%);
    background-color: #daf9f4;
    transition: 0.3s;
    visibility: hidden;
  }
  .nav-expand-content .nav-item:not(:last-child) {
    border-bottom: solid 1px rgba(0, 0, 0, 0.3);
  }
  .nav-expand-content .nav-link {
    background-color: #daf9f4;
  }
  .nav-expand-content .nav-back-link {
    display: flex;
    align-items: center;
    background-color: var(--thrid-color) !important;
    color: var(--second-color);
  }
  .nav-expand-content .nav-back-link::before {
    content: url("img/icon-caret.svg");
    margin-right: 0.5em;
    font-family: "Material Icons";
    transform: rotate(-180deg);
  }
  .nav-expand-link {
    display: flex;
    justify-content: space-between;
  }
  .nav-expand-link::after {
    content: url("img/icon-caret.svg");
    flex: 0 1 auto;
    font-family: "Material Icons";
  }
  .nav-expand.active > .nav-expand-content {
    transform: translateX(0);
    visibility: visible;
  }
  .nav-expand .nav-expand-content {
    background-color: var(--third-color);
  }
  .nav-expand .nav-expand-content .nav-link {
    background-color: var(--third-color);
  }
  .nav-expand .nav-expand-content .nav-expand-content {
    background-color: var(--third-color);
  }
  .nav-expand .nav-expand-content .nav-expand-content .nav-link {
    background-color: var(--third-color);
  }
  .nav-expand .nav-expand-content .nav-expand-content .nav-expand-content {
    background-color: var(--third-color);
  }
  .nav-expand
    .nav-expand-content
    .nav-expand-content
    .nav-expand-content
    .nav-link {
    background-color: var(--third-color);
  }
  .nav-expand
    .nav-expand-content
    .nav-expand-content
    .nav-expand-content
    .nav-expand-content {
    background-color: var(--third-color);
  }
  .nav-expand
    .nav-expand-content
    .nav-expand-content
    .nav-expand-content
    .nav-expand-content
    .nav-link {
    background-color: var(--third-color);
  }
}

/* =========================
    ============ HERO ==========
    ============================ */

.hero {
  background: url("img/hero3.jpg") 100% 5% no-repeat;
  background-size: cover;
  width: 100vw;
  height: 90vh;
  position: relative;
  z-index: -1;
}
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero h1 {
  position: absolute;
  padding-top: 270px;
  color: var(--third-color);
  font-weight: bold;
  z-index: 2;
  font-size: 72px;
  max-width: 60%;
  line-height: 1.2;
  letter-spacing: 2px;
}
@media screen and (max-width: 991px) {
  .hero h1 {
    max-width: 90%;
    font-size: 36px;
    padding-top: 210px;
  }
}
@media screen and (max-width: 767px) {
  .hero {
    background-position: 60% 5%;
  }
  .hero h1 {
    max-width: 100%;
    font-size: 36px;
    padding-top: 190px;
  }
}

/* =========================
    =========== ABOUT ==========
    ============================ */

.about {
  padding: 50px 0;
  background-color: var(--third-color);
  width: 100vw;
}
.about .details {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.about .details .content {
  width: 50%;
}
.about .details .content span {
  text-transform: uppercase;
  font-size: 14px;
  color: #a0a0a0;
  font-weight: bold;
  letter-spacing: 5px;
}
.about .details .content h3 {
  font-size: 35px;
  margin: 10px 0 20px 0;
}
.about .details .content p {
  font-size: 16px;
  color: var(--second-color);
  line-height: 1.7;
  width: 90%;
  margin-bottom: 20px;
}
.about .details .content a {
  transition: all 0.3s ease-in-out;
}
.about .details .content a span {
  color: var(--first-color);
  font-weight: 300;
  letter-spacing: 1px;
  margin-right: 5px;
  text-transform: capitalize;
}
.about .details .content a:hover {
  padding-left: 5px;
}
.about .details .side-img {
  width: 50%;
  height: auto;
}
.about .details .side-img img {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .about .details {
    flex-direction: column;
  }
  .about .details .content {
    width: 100%;
    margin-bottom: 20px;
  }
  .about .details .content p {
    width: 100%;
  }
  .about .details .side-img {
    width: 100%;
  }
}

/* =========================
    ========= SERVICES =========
    ============================ */

.serv {
  position: relative;
  background-color: #fbfbfb;
  padding: 50px 0 30px;
  width: 100vw;
}
.serv h2 {
  text-align: left;
  color: var(--second-color);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
}
.serv .galary {
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-gap: 20px;
}
.serv .galary.g1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
}
.serv .galary.g2 {
  grid-template-columns: 1fr;
}
.serv .galary .details {
  width: 100%;
  position: relative;
}
.serv .galary .details.de:nth-child(1),
.serv .galary .details.de:nth-child(1) .res,
.serv .galary .details.de:nth-child(1) .res .img {
  height: 450px;
}
.serv .galary.g1 .details {
  height: 450px;
}
.serv .galary .details img {
  width: 100%;
  height: 100%;
}
.serv .galary .details .res {
  position: relative;
}
.serv .galary .details .res::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
.serv .galary .details .res img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.serv .galary .details:nth-child(2) .img,
.serv .galary.g1 .details .img {
  height: 250px;
}
.serv .galary .details .res .content {
  position: absolute;
  top: 55%;
  left: 22%;
  transform: translate(-50%, -50%);
  color: var(--third-color);
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.serv .galary .details:hover .res::after {
  background-color: rgba(0, 0, 0, 0.1);
}

.serv .galary .details:nth-child(1) .content,
.serv .galary.g1 .details .content {
  position: absolute;
  bottom: 70px;
  left: 40px;
  color: var(--third-color);
  z-index: 2;
}
.serv .galary .details .content h3 {
  font-size: 22px;
  line-height: 1.2;
}
.serv .galary .details .content p {
  padding-top: 10px;
  padding-right: 90px;
  font-size: 16px;
  line-height: 1.5;
}
.serv .galary .details:nth-child(2) .content,
.serv .galary.g1 .details .content {
  margin-top: 30px;
}
.serv .galary.g1 .details:nth-child(2) .content {
  bottom: 25px;
}
.serv .galary.g1 .details .content {
  left: 0;
}
.serv .galary.g1 .details .content h3,
.serv .galary.g1 .details .content p {
  color: var(--second-color);
}
.serv .galary .details:nth-child(2),
.serv .galary.g1 .details {
  background-color: var(--third-color);
}
.serv .galary .details:nth-child(2) .content,
.serv .galary.g1 .details .content {
  padding-left: 30px;
}
@media screen and (max-width: 1024px) {
  .serv .galary .details:nth-child(2) .content.cons {
    bottom: 20px;
  }
  .serv .galary.g1 .details:nth-child(2) .content {
    bottom: 0;
  }
  .serv .galary .details .content p {
    padding-right: 30px;
  }
}
@media screen and (max-width: 991px) {
  .serv .galary,
  .serv .galary.g1 {
    flex-direction: column;
    margin-bottom: 0;
    grid-template-columns: 1fr;
  }
  .serv .galary.g3 {
    margin-top: 20px;
  }
  .serv .galary .details,
  .serv .galary .details .res,
  .serv .galary .details .res .img,
  .serv .galary .details.de:nth-child(1),
  .serv .galary .details.de:nth-child(1) .res,
  .serv .galary .details.de:nth-child(1) .res .img,
  .serv .galary.g1 .details .res,
  .serv .galary.g1 .details .res img,
  .serv .galary.g1 .details {
    width: 100%;
    height: 250px;
    margin-right: 0;
  }
  .serv .galary .details {
    margin-bottom: 20px;
  }
  .serv .galary .details .res h3 {
    font-size: 16px;
  }
  .serv .galary .details:nth-child(2) .content h3,
  .serv .galary .details:nth-child(2) .content p,
  .serv .galary.g1 .details .content h3,
  .serv .galary.g1 .details .content p {
    color: var(--thrid-color);
  }
  .serv .galary .details .content,
  .serv .galary .details:nth-child(1) .content {
    bottom: 30px;
    position: absolute;
    color: var(--third-color);
    z-index: 2;
  }
  .serv .galary .details.de:nth-child(1),
  .serv .galary.g1 .details {
    margin-bottom: 0;
  }
  .serv .galary .details:nth-child(1) .content,
  .serv .galary.g1 .details .content {
    left: 30px;
    bottom: 15px;
    padding-right: 0px;
  }
  .serv .galary.g2 {
    grid-template-columns: 1fr;
  }
  .serv .galary .details .content p {
    padding-right: 10px;
  }
  .serv .galary.g1 .details .content {
    left: 0;
  }
  .serv .galary.g1 .details:nth-child(2) .content {
    bottom: 50px;
  }
}
@media screen and (max-width: 360px) {
  .serv .galary .details .content h3 {
    font-size: 18px;
  }
  .serv .galary .details .content p {
    font-size: 14px;
  }
}

/* =========================
    ========== VIDEO ===========
    ============================ */

.video {
  position: relative;
  background-color: var(--third-color);
  width: 100vw;
  padding: 30px 0;
}
.video .img {
  background: url("img/arab2.jpeg") center center no-repeat;
  background-size: cover;
  height: 550px;
  width: 100%;
  position: relative;
  cursor: pointer;
}
.video .img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
.video .img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 80px;
  height: 80px;
  z-index: 2;
  cursor: pointer;
}
.video .img:hover img {
  filter: blur(0.5px);
}
.video .img p {
  color: var(--third-color);
  z-index: 2;
  position: absolute;
  top: 62%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

@media screen and (max-width: 767px) {
  .video .img {
    height: 250px;
  }
  .video .img img {
    width: 50px;
    height: 50px;
  }
  .video .img p {
    top: 70%;
  }
}

/* Watch */
.watch {
  width: 100%;
  height: 100%;
  top: -100%;
  left: 0;
  position: fixed;
  background-color: var(--second-color);
  z-index: 9999;
  overflow-y: hidden;
  display: block;
  transition: all 0.3s ease-in-out;
  z-index: 99999999;
}
.view {
  top: 0;
}
.watch .close-video {
  position: absolute;
  top: 30px;
  right: 50px;
  cursor: pointer;
  z-index: 9999;
}
@media screen and (max-width: 767px) {
  .watch .close-video {
    right: 20px;
  }
}
.watch .video-co {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.watch .video-co iframe {
  width: 80%;
  height: 90vh;
}
@media screen and (max-width: 767px) {
  .watch .video-co iframe {
    height: 50vh;
    width: 100%;
  }
}

/* Contact */

.contacts {
  background: url("img/contact.jpg") center center no-repeat;
  background-size: cover;
  width: 100%;
  height: 585px;
  position: relative;
}
.contacts .overlay {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(
    -222deg,
    rgba(21, 22, 54, 0),
    rgba(5, 3, 17, 0.46) 45%
  );
  width: 100%;
  height: 100%;
  display: block;
}
.contacts .con-content {
  float: right;
  width: 37%;
}
@media screen and (max-width: 991px) {
  .contacts .con-content {
    float: none;
    width: 100%;
  }
}
.contacts .con-content > div .details {
  height: 584px;
  position: relative;
  padding-top: 100px;
  color: var(--third-color);
  position: relative;
}
@media screen and (max-width: 991px) {
  .contacts .con-content {
    float: none;
    width: 100%;
  }
  .contacts .con-content > div .details {
    padding-top: 40px;
  }
}
.contacts .con-content > div .details h2 {
  font-weight: 600;
  font-size: 55px;
  color: var(--third-color);
  letter-spacing: -0.01203704em;
  line-height: 1em;
  margin-bottom: 24px;
  margin-top: 20px;
  position: relative;
}
.contacts .con-content > div .details h2::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 0;
  background-color: var(--third-color);
  width: 20px;
  height: 4px;
  display: block;
}
.contacts .con-content > div .details p {
  font-weight: 600;
  font-size: 20px;
  color: var(--third-color);
  letter-spacing: -0.00291667em;
  line-height: 1.3;
}
.contacts .con-content > div .details .contact-us {
  position: absolute;
  bottom: -1px;
  background: linear-gradient(136.49deg, #2d72b9 0%, #2b93b2 100%);
  color: var(--first-color);
  width: 380px;
  height: 210px;
  cursor: pointer;
}

.contacts .con-content > div .details .contact-us .conn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 35px;
}
@media screen and (max-width: 991px) {
  .contacts .con-content > div .details .contact-us {
    width: 100%;
    height: 70px;
  }
  .contacts .con-content > div .details .contact-us .conn {
    padding: 26px;
  }
}
.contacts .con-content > div .details .contact-us .conn h4 {
  margin-right: 10px;
  color: var(--third-color);
}
.contacts .con-content > div .details .contact-us .arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 2px;
}
.contacts .con-content > div .details .contact-us .arrow .arrow-1 {
  width: 18px;
  height: 2px;
  background: var(--third-color);
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: transform 0.3s ease-in-out;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.contacts .con-content > div .details .contact-us .arrow .arrow-2 {
  border: solid var(--third-color);
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin-left: -7px;
  -webkit-transition: transform 0.2s ease-in-out;
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  -webkit-transform-origin: center;
  transform-origin: center;
}
.contacts .con-content > div .details .contact-us:hover .arrow .arrow-1 {
  -webkit-transform: scaleX(1.4);
  transform: scaleX(1.4);
}
.contacts .con-content > div .details .contact-us:hover .arrow .arrow-2 {
  -webkit-transform: translateX(6px) rotate(-45deg);
  transform: translateX(6px) rotate(-45deg);
}
@media screen and (max-width: 767px) {
  .contacts .arrow::before,
  .contacts .arrow::after {
    display: none;
  }
}

/* ============================
    ======== BRANDS ===========
    =========================== */

.brands {
  padding: 20px 0 50px;
  position: relative;
  background-color: var(--third-color);
}
.brands h2 {
  text-align: center;
  color: var(--second-color);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 30px;
}
.brands .topics {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  padding: 0 10px;
}
.brands .topics img {
  width: 150px;
}
@media screen and (max-width: 1024px) {
  .brands .topics {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .brands .topics img {
    margin-bottom: 30px;
    margin-right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .brands .topics {
    flex-direction: column;
    align-items: center;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
    padding: 0;
  }
  .brands .topics img {
    margin: 10px auto;
    align-items: center;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 320px) {
  .brands .topics {
    grid-template-columns: 1fr;
  }
}
/* Footer */

.footer {
  background-color: #fbfbfb;
  color: var(--second-color);
  padding: 0 0 50px;
  width: 100vw;
}

.footer .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  margin-bottom: 150px;
  padding-top: 50px;
}
.footer .bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

.footer .top .top-left,
.footer .bottom .bottom-left {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
}
.footer .top .top-right {
  width: 220px;
  height: auto;
}
.footer .top .top-right img {
  width: 100%;
  height: 100%;
}
.footer .help-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0px auto;
  transition: padding 0.25s ease-in-out 0s;
  padding: 20px 0;
  width: 100%;
  background-color: #fbfbfb;
  border-bottom: 1px solid #e6e6e6;
}
.footer .help-links p {
  font-weight: 500;
  color: var(--second-color);
  line-height: 1.4;
}
.footer .help-links .links,
.footer .help-links .links .sup a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer .help-links .links .sup {
  padding-left: 15px;
  padding-right: 15px;
  transition: 0.3s;
}
.footer .help-links .links .sup:hover {
  opacity: 0.9;
}
.footer .help-links .links .sup a .icon {
  border: 1px solid rgb(226, 229, 241);
  background-color: white;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  padding: 7px;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  box-sizing: border-box;
}
.footer .help-links .links .sup a .text {
  padding-left: 10px;
}
@media screen and (max-width: 1024px) {
  .footer .top {
    flex-wrap: wrap;
  }
  .footer .top .top-right {
    order: -1;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .footer .help-links {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer .help-links .links {
    margin-top: 20px;
    flex-direction: column;
  }
  .footer .help-links .links .sup {
    padding-left: 0;
    padding-right: 0;
    align-self: flex-start;
  }
  .footer .help-links .links a {
    margin-bottom: 15px;
  }
  .footer .top,
  .footer .bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer .top .top-right {
    order: -1;
    margin-bottom: 20px;
  }
  .footer .top .top-right img {
    max-width: 100%;
    display: block;
  }
  .footer .top .top-left {
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
  }
}
.footer .top .top-left .navs {
  align-self: flex-start;
}
.footer .top .top-left .navs:not(:last-child),
.footer .bottom .bottom-left a {
  margin-right: 40px;
}
.footer .top .top-left .navs h5 {
  margin-bottom: 10px;
  color: var(--second-color);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  line-height: 2;
  letter-spacing: 0.05em;
}
.footer .top .top-left .navs ul li a,
.footer .bottom .bottom-left a,
.footer .bottom .bottom-right p {
  text-decoration: none;
  color: #7f7f7f;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  line-height: 2;
  -webkit-transition: color 0.3s ease-in-out 0ms;
  transition: color 0.3s ease-in-out 0ms;
}
.footer .top .top-left .navs ul li {
  margin-bottom: 5px;
}
.footer .top .top-left .navs ul li a:hover,
.footer .bottom .bottom-left a:hover {
  color: var(--second-color);
}
.footer .top .top-right {
  display: flex;
  align-self: flex-start;
}

@media screen and (max-width: 767px) {
  .footer .bottom .bottom-left,
  .footer .bottom .bottom-right {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
  }
}

/* =============================
    ======== ABOUT PAGE ========
    ============================ */

.hero-about {
  background: url("img/about.jpg") 40% 50% no-repeat;
  background-size: cover;
  width: 100vw;
  height: 80vh;
  position: relative;
  z-index: -1;
}
.hero-about::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-about h1 {
  position: absolute;
  padding-top: 270px;
  color: var(--third-color);
  font-weight: bold;
  z-index: 2;
  font-size: 75px;
  max-width: 60%;
  line-height: 1.2;
  letter-spacing: 2px;
}
@media screen and (max-width: 767px) {
  .hero-about {
    height: 60vh;
  }
  .hero-about h1 {
    max-width: 100%;
    font-size: 38px;
    padding-top: 190px;
  }
}

/* Compnay */
.company {
  padding: 50px 0 0;
  position: relative;
  background-color: #fbfbfb;
  width: 100vw;
  background: url(img/para.png) 50% 25% no-repeat;
}
.company h2 {
  font-size: 36px;
  line-height: 1.3;
  margin-bottom: 20px;
  max-width: 100%;
  color: var(--second-color);
}
.company .content p {
  font-size: 16px;
  color: var(--second-color);
  line-height: 1.7;
  margin-bottom: 15px;
}
.company .details {
  margin-top: 10px;
}
.company .details h3 {
  font-size: 20px;
  color: var(--second-color);
  line-height: 1.3;
  margin-top: 20px;
  margin-bottom: 20px;
}
.company .details .values {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  justify-content: center;
  align-items: center;
  text-align: left;
  grid-gap: 10px;
  padding: 10px 0;
}
.company .details .values .vs {
  background-color: var(--third-color);
  border-radius: 5px;
  height: 300px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}
.company .details .values .vs:after {
  background: linear-gradient(to bottom, #2d72b9 0%, #2cbcb1 100%);
  border-radius: 5px;
  top: 0;
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  right: 0;
  transition: all 0.3s ease-in-out;
  transform: translateY(-15%);
}
.company .details .values .vs:hover:after {
  width: 100%;
  height: 100%;
  transform: translateY(0);
  z-index: -1;
}
.company .details .values .vs:hover {
  transform: translateY(-10px);
}
.company .details .values .vs .details {
  padding: 20px;
}
.company .details .values .vs h4 {
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 10px;
  color: var(--second-color);
}
.company .details .values .vs p {
  font-size: 16px;
  color: var(--second-color);
  line-height: 1.4;
}
.company .details .values .vs:hover h4,
.company .details .values .vs:hover p {
  color: #fff;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .company {
    background: transparent;
  }
  .company h2 {
    font-size: 22px;
  }
  .company .details .values {
    grid-template-columns: repeat(1, 1fr);
  }
  .company .details .values .vs {
    height: auto;
    padding: 15px;
    margin-bottom: 10px;
  }
}

/* Why us */
.why {
  padding: 50px 0;
  position: relative;
  background-color: var(--third-color);
}
.why .details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  align-items: center;
  text-align: left;
  grid-gap: 20px;
}
.why .details .content h2 {
  font-size: 40px;
  line-height: 56px;
  color: var(--second-color);
  margin-bottom: 20px;
}
.why .details .content p {
  font-size: 16px;
  color: var(--second-color);
  line-height: 1.4;
  margin-bottom: 15px;
}

@media screen and (max-width: 767px) {
  .why .details {
    grid-template-columns: repeat(1, 1fr);
  }
  .why .vid {
    width: auto;
  }
  .why .vid iframe {
    width: 100%;
    height: 250px;
  }
}

/* Project */

.project {
  padding: 50px 0;
  position: relative;
  background-color: #fbfbfb;
  width: 100vw;
}
.project .pro {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: center;
  align-items: center;
  text-align: left;
  grid-gap: 10px;
}
.project .pro .main {
  height: 450px;
  background-color: var(--third-color);
  position: relative;
  transition: all 0.3s ease-in-out;
}
.project .pro .main::after {
  background: linear-gradient(to bottom, #2d72b9 0%, #2cbcb1 100%);
  border-radius: 5px;
  bottom: 0;
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  right: 0;
}
.project .pro .main.main-head {
  background: linear-gradient(136.49deg, #2d72b9 0%, #2b93b2 100%);
  color: var(--third-color);
  font-size: 35px;
  padding: 60px 40px 40px;
  line-height: 1.5;
  border-bottom: none;
}
.project .pro .main.main-head:hover {
  transform: none;
}
.project .pro .main.main-head::after {
  background: transparent;
}
.project .pro .main h3 {
  padding: 20px;
  color: var(--second-color);
  font-size: 20px;
  line-height: 1.3;
}
.project .pro .main .img {
  width: 350px;
  height: 350px;
  overflow: hidden;
}
.project .pro .main .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.project .pro .main .img:hover img {
  transform: scale(1.2);
}
@media screen and (max-width: 767px) {
  .project .pro {
    grid-template-columns: repeat(1, 1fr);
  }
  .project .pro .main {
    height: auto;
  }
  .project .pro .main .img {
    width: auto;
    height: 200px;
  }
}

/* Clients */

.client {
  padding: 50px 0;
  position: relative;
  background-color: var(--third-color);
  width: 100vw;
}
.client h2 {
  color: var(--second-color);
  line-height: 1.3;
  text-align: center;
  font-size: 32px;
}
.client .details {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  justify-content: center;
  align-items: center;
  text-align: center;
  grid-gap: 10px;
  margin-top: 30px;
}
.client .details .img {
  width: 250px;
}
.client .details .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .client .details {
    display: flex;
    flex-wrap: wrap;
  }
  .client .details .img:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }
  .client .details .img img {
    padding: 20px;
  }
}

/* ===========================
  ====== Residential PAGE ====
============================== */
.hero-res {
  background: url("img/res.jpg") 40% 44% no-repeat;
  background-size: cover;
  width: 100vw;
  height: 80vh;
  position: relative;
  z-index: -1;
}
.hero-res::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-res h1 {
  position: absolute;
  padding-top: 270px;
  color: var(--third-color);
  font-weight: bold;
  z-index: 2;
  font-size: 65px;
  max-width: 50%;
  line-height: 1.2;
  letter-spacing: 2px;
}
/* Resi */
.resi {
  padding: 50px 0;
  position: relative;
  background-color: #fbfbfb;
  width: 100vw;
}
.resi .content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: center;
  align-items: center;
  text-align: center;
  grid-gap: 10px;
}
.resi .content .details {
  height: 380px;
  background-color: var(--third-color);
  width: 340px;
  border-radius: 3px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  position: relative;
}
.resi .content .details::after {
  background: linear-gradient(to bottom, #2d72b9 0%, #2cbcb1 100%);
  border-radius: 5px;
  bottom: 0;
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  right: 0;
}
.resi .content .details .img {
  width: 340px;
  height: 250px;
  overflow: hidden;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.resi .content .details .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.resi .content .details .img:hover img {
  transform: scale(1.2);
  filter: brightness(0.9);
}
.resi .content .details h3 {
  padding-top: 20px;
  text-align: center;
  color: var(--second-color);
  font-size: 22px;
}
.resi .content .details .link {
  margin-top: 15px;
}
.resi .content .details .link a {
  cursor: pointer;
  outline: none;
  border-radius: 2px;
  display: inline-block;
  text-align: center;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  padding: 14px 34px;
  font-size: 16px;
  margin-left: auto;
  margin-right: auto;
  transition: all 0.3s ease-in-out 0ms;
  color: var(--third-color);
  background: linear-gradient(136.49deg, #2d72b9 0%, #2b93b2 100%);
}
.resi .content .details .link a:hover {
  opacity: 0.9;
}
@media screen and (max-width: 1024px) {
  .resi .content {
    grid-template-columns: repeat(2, 1fr);
  }
  .resi .content .details,
  .resi .content .details .img {
    width: 100%;
  }
}
@media screen and (max-width: 991px) {
  .resi .content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .hero-res {
    height: 60vh;
  }
  .hero-res h1 {
    font-size: 38px;
    max-width: 100%;
    padding-top: 150px;
  }
  .resi .content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
  .resi .content .details {
    width: auto;
  }
}

/* Raya */
.raya {
  background-color: var(--third-color);
  padding: 50px 0;
  position: relative;
}
.raya .details {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.raya .details .content {
  width: 50%;
}
.raya .details .content h3 {
  font-size: 35px;
  margin: 10px 0 20px 0;
}
.raya .details .content p {
  font-size: 18px;
  color: var(--second-color);
  line-height: 1.7;
  margin-bottom: 15px;
  width: 85%;
}
.raya .content .details .link {
  margin-top: 15px;
}
.raya .link a {
  cursor: pointer;
  outline: none;
  border-radius: 2px;
  display: inline-block;
  text-align: center;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  padding: 14px 34px;
  font-size: 16px;
  margin-left: auto;
  margin-right: auto;
  transition: all 0.3s ease-in-out 0ms;
  color: var(--third-color);
  background: linear-gradient(136.49deg, #2d72b9 0%, #2b93b2 100%);
}
.raya .link a:hover {
  opacity: 0.9;
}
.raya .details .side-img {
  width: 50%;
  height: auto;
}
.raya .details .side-img img {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .raya .details {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .raya .details .content,
  .raya .details .side-img {
    width: 100%;
  }
  .raya .details .content {
    margin-bottom: 20px;
  }
  .raya .details .content p {
    width: 100%;
  }
}

/* App */
.app {
  padding: 50px 0;
  position: relative;
  background-color: var(--third-color);
  width: 100vw;
}
.app h2 {
  font-size: 36px;
  line-height: 1.3;
  margin-bottom: 20px;
  max-width: 100%;
  color: var(--second-color);
}
.app .content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  align-items: center;
  grid-gap: 10px;
}
.app .content .ap {
  height: 600px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0;
}
.app .content .ap .img {
  width: 100%;
  height: 450px;
  overflow: hidden;
}
.app .content .ap .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.app .con {
  padding: 15px;
}
.app h3 {
  line-height: 1.3;
  margin-bottom: 10px;
  max-width: 100%;
  color: var(--second-color);
}
.app p {
  font-size: 16px;
  color: var(--second-color);
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .app .content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  .app .content .ap {
    height: auto;
  }
  .app .content .ap .img {
    width: auto;
    height: auto;
  }
}

/* ===========================
  ====== Commercial PAGE =====
============================== */

.hero-com {
  background: url("img/comme.jpeg") 40% 44% no-repeat;
  background-size: cover;
  width: 100vw;
  height: 80vh;
  position: relative;
  z-index: -1;
}
.hero-com::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-com h1 {
  position: absolute;
  padding-top: 270px;
  color: var(--third-color);
  font-weight: bold;
  z-index: 2;
  font-size: 65px;
  max-width: 60%;
  line-height: 1.2;
  letter-spacing: 2px;
}

.product {
  padding: 0 0 50px;
  background-color: var(--third-color);
  position: relative;
}
.product .content .pro {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  align-items: center;
  grid-gap: 10px;
  margin-top: 40px;
}
.product .content .pro .img {
  width: 500px;
  height: auto;
  margin: auto;
}
.product .content .pro .img.min {
  width: 35%;
}
.product .content .pro .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product .content .pro .details {
  padding-right: 50px;
}
.product .content .pro .details h2 {
  font-size: 32px;
  line-height: 1.7;
  color: var(--second-color);
}
.product .content .pro .details h4 {
  font-size: 20px;
  line-height: 1.2;
  color: var(--second-color);
  padding: 10px 0 20px;
}
.product .content .pro .details p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--second-color);
  margin-bottom: 30px;
}
.product .content .pro .details .link a,
.main-apply .details .des .link a,
.brief .info .link a {
  color: var(--third-color);
  width: 150px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  border: none;
  outline: none;
  padding: 15px 20px;
  transition: all 0.2s;
  background: linear-gradient(136.49deg, #2d72b9 0%, #2b93b2 100%);
  transition: all 0.3s ease-in-out;
}
.product .content .pro .details .link a:hover,
.main-apply .details .des .link a:hover,
.brief .info .link a:hover {
  opacity: 0.9;
}
.product .content .contents {
  display: grid;
  grid-gap: 20px;
  margin-bottom: 20px;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  align-items: flex-start;
}
.product .content .contents ul li {
  padding-bottom: 20px;
  padding-left: 20px;
  position: relative;
  color: var(--second-color);
  font-size: 16px;
  line-height: 1.4;
}
.product .content .contents ul li::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  list-style: 10px;
  border-radius: 50%;
  background: linear-gradient(136.49deg, #2d72b9 0%, #2b93b2 100%);
  top: 5px;
  left: 0;
}
.link-div {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.link-div .pop-up {
  margin-left: 20px;
}
.pop-up {
  display: flex;
  padding: 0 0 50px;
}
.link-div .pop-up {
  padding-bottom: 0;
}
.pop-up .pop-btn {
  cursor: pointer;
  outline: none;
  border-radius: 2px;
  display: inline-block;
  text-align: center;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  border: none;
  padding: 14px 34px;
  font-size: 16px;
  margin-left: auto;
  margin-right: auto;
  transition: all 0.3s ease-in-out 0ms;
  color: var(--third-color);
  background: linear-gradient(136.49deg, #2d72b9 0%, #2b93b2 100%);
}
.pop-up .pop-btn:hover {
  opacity: 0.9;
}
.pop-over {
  width: 100%;
  height: 100%;
  top: -100%;
  left: 0;
  position: fixed;
  background-color: var(--third-color);
  z-index: 9999;
  overflow-y: hidden;
  transition: all 0.3s ease-in-out;
  overflow-y: hidden;
  backdrop-filter: opacity(10%);
}
.pop-over.view {
  top: 0;
}
.over-y {
  overflow-y: hidden;
}
.pop-over .pop-content {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pop-content .mail-us p {
  color: var(--second-color);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
}
.pop-content .mail-us p a {
  color: var(--second-color);
  font-weight: bold;
  text-decoration: underline;
  transition: all 0.3s ease-in-out;
}
.pop-content .mail-us p a:hover {
  opacity: 0.9;
}
.pop-over .cancel {
  color: var(--second-color);
  width: 150px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  border: none;
  outline: none;
  padding: 15px 20px;
  transition: all 0.2s;
  background: var(--third-color);
  border: 1px solid #a0a0a0;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .hero-com {
    height: 60vh;
  }
  .hero-com h1 {
    font-size: 38px;
    max-width: 100%;
    padding-top: 190px;
  }
  .product {
    padding-top: 20px;
  }
  .product .content .pro {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
  .product .content .pro:nth-child(odd) .img {
    order: -1;
  }
  .product .content .pro .details {
    padding-right: 0;
  }
  .product .content .pro .details h2 {
    font-size: 26px;
  }
  .product .content .pro .details h4 {
    font-size: 18px;
  }
  .pop-over {
    padding: 0;
    z-index: 999999999999;
  }
  .product .content .contents {
    grid-template-columns: 1fr;
    grid-gap: 0;
  }
  .product .content .pro .img {
    margin-top: 20px;
  }
  .link-div {
    flex-direction: column;
  }
  .link-div .pop-up {
    margin-top: 20px;
    margin-left: 0;
  }
}

/* ====================================
  ====== Efficient Buildings PAGE =====
======================================= */
.hero-build {
  background: url("img/eff.jpg") 40% 44% no-repeat;
  background-size: cover;
  width: 100vw;
  height: 80vh;
  position: relative;
  z-index: -1;
}
.hero-build::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-build h1 {
  position: absolute;
  padding-top: 270px;
  color: var(--third-color);
  font-weight: bold;
  z-index: 2;
  font-size: 65px;
  max-width: 60%;
  line-height: 1.2;
  letter-spacing: 2px;
}

/* Smart */
.smart {
  padding: 50px 0;
  position: relative;
  background-color: #fbfbfb;
  width: 100vw;
}
.smart .content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  align-items: center;
  text-align: left;
  grid-gap: 10px;
}
.smart .content .main {
  height: 450px;
  background-color: var(--third-color);
  position: relative;
}
.smart .content .main:after {
  background: linear-gradient(to bottom, #2d72b9 0%, #2cbcb1 100%);
  border-radius: 5px;
  bottom: 0;
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  right: 0;
}
.smart .content .main.main-head {
  background: linear-gradient(136.49deg, #2d72b9 0%, #2b93b2 100%);
  color: var(--third-color);
  font-size: 35px;
  padding: 60px 40px 40px;
  line-height: 1.5;
  border-bottom: none;
}
.smart .content .main.main-head::after {
  background: transparent;
}
.smart .content .main.main-head h2 {
  padding: 20px;
  color: var(--third-color);
  font-size: 32px;
  line-height: 1.3;
}
.smart .content .main h3 {
  padding: 20px;
  color: var(--second-color);
  font-size: 22px;
  line-height: 1.3;
}
.smart .content .main .img {
  width: auto;
  height: 350px;
  overflow: hidden;
}
.smart .content .main .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.smart .content .main .img:hover img {
  transform: scale(1.2);
}
.home {
  padding: 50px 0;
  position: relative;
  background-color: var(--third-color);
  width: 100vw;
}
.home .head h2 {
  color: var(--second-color);
  font-size: 35px;
  line-height: 1.7;
}
.home .details {
  margin: 40px 0;
}
.home .head p,
.home .details .des .content p {
  color: var(--second-color);
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 10px;
}
.home .details .des {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  align-items: center;
  text-align: left;
  grid-gap: 10px;
}
.home .details .des .img {
  width: auto;
  height: auto;
  margin: auto;
}
.home .details .des .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home .details .des .content {
  padding: 30px;
}
.home .details .des .content ul {
  padding-top: 10px;
}
.home .details .des .content ul li {
  padding-bottom: 20px;
  padding-left: 20px;
  position: relative;
  color: var(--second-color);
  font-size: 16px;
  line-height: 1.4;
}
.home .details .des .content ul li::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  list-style: 10px;
  border-radius: 50%;
  background: linear-gradient(136.49deg, #2d72b9 0%, #2b93b2 100%);
  top: 5px;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .hero-build {
    height: 40vh;
  }
  .hero-build h1 {
    max-width: 100%;
    padding-top: 220px;
  }
  .smart .content .main.main-head h2 {
    font-size: 26px;
  }
  .home .details .des .img {
    height: 100%;
  }
  .smart .content {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
  .smart .content .main.main-head {
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .hero-build {
    height: 60vh;
  }
  .hero-build h1 {
    font-size: 38px;
    max-width: 100%;
    padding-top: 190px;
  }
  .home .head h2 {
    line-height: 1.4;
    padding-bottom: 10px;
    font-size: 24px;
  }
  .smart .content,
  .home .details .des {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
  .home .details .des .content {
    padding: 0;
  }
  .home .details .des .img.ims {
    order: -1;
  }
  .home .details {
    margin: 0;
  }
  .smart .content .main {
    height: auto;
  }
  .smart .content .main.main-head {
    padding: 20px;
    height: auto;
  }
  .smart .content .main.main-head h2 {
    font-size: 24px;
  }
  .smart .content .main .img {
    height: auto;
  }
}

/* ====================================
  ========= Aftermarket PAGE ==========
======================================= */
.hero-after {
  background: url("img/main.jpg") 40% 44% no-repeat;
  background-size: cover;
  width: 100vw;
  height: 80vh;
  position: relative;
  z-index: -1;
}
.hero-after::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-after h1 {
  position: absolute;
  padding-top: 270px;
  color: var(--third-color);
  font-weight: bold;
  z-index: 2;
  font-size: 65px;
  max-width: 60%;
  line-height: 1.2;
  letter-spacing: 2px;
}

/* Value */
.value {
  padding: 50px 0;
  position: relative;
  background-color: var(--third-color);
}
.value .details h2 {
  color: var(--second-color);
  font-size: 35px;
  line-height: 1.7;
}
.value .details p {
  color: var(--second-color);
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 10px;
}

.value .content .vl {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  align-items: center;
}
.value .content .vl .img {
  width: auto;
  height: auto;
  margin: auto;
}
.value .content .vl .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.value .content .vl .con {
  padding: 30px;
}
.value .content .vl .con ul li,
.value .content ul li {
  padding-bottom: 20px;
  padding-left: 20px;
  position: relative;
  color: var(--second-color);
  font-size: 16px;
  line-height: 1.4;
}
.value .content .vl .con ul li::before,
.value .content ul li::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(136.49deg, #2d72b9 0%, #2b93b2 100%);
  top: 5px;
  left: 0;
}
.value .content h3 {
  color: var(--second-color);
  line-height: 1.7;
  font-size: 22px;
  margin: 15px 0;
}
.value .content h4 {
  font-weight: normal;
  color: var(--second-color);
  line-height: 1.7;
}
.value .content .more p {
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .hero-after {
    height: 60vh;
  }
  .hero-after h1 {
    font-size: 38px;
    max-width: 100%;
    padding-top: 190px;
  }
  .value .details h2 {
    line-height: 1.4;
    padding-bottom: 10px;
    font-size: 24px;
  }
  .value .content .vl {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
  .value .content .vl .con {
    padding: 20px 0 0 0;
  }
  .value .content .vl .img.ug {
    order: -1;
  }
  .value .content .vl:last-child {
    margin-bottom: 0;
  }
}

/* ====================================
  ============ 404 PAGE ===============
======================================= */
.hero-error {
  padding: 100px 0;
  position: relative;
  background-color: var(--third-color);
  width: 100vw;
}
.hero-error .img,
.hero-error .content,
.hero-error .error {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.hero-error .img {
  width: 70%;
  height: auto;
  margin: auto;
}
.hero-error .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-error .content h3 {
  font-weight: 600;
  font-size: 14px;
  color: var(--second-color);
  letter-spacing: 0.05384615em;
  line-height: 1.46153846em;
  text-transform: uppercase;
  position: relative;
  padding: 30px 0;
}
.hero-error .error {
  width: 100%;
  text-align: center;
}
.hero-error .error a {
  cursor: pointer;
  outline: none;
  border-radius: 0;
  display: inline-block;
  text-align: center;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  border: 1px solid var(--second-color);
  padding: 14px 34px;
  min-width: 120px;
  font-size: 16px;
  margin-left: auto;
  margin-right: auto;
  transition: all 0.3s ease-in-out 0ms;
  color: var(--second-color);
}
.hero-error .error a:hover {
  background-color: var(--first-color);
  color: var(--third-color);
  border: 1px solid var(--first-color);
}
@media screen and (max-width: 767px) {
  .hero-error .img {
    width: 100%;
    height: 100%;
  }
}

/* ===============================
    ======== CONTACT PAGE ========
    ============================== */

.hero-contact {
  background: url("img/contact.jpeg") 40% 60% no-repeat;
  background-size: cover;
  width: 100vw;
  height: 80vh;
  position: relative;
  z-index: -1;
}
.hero-contact::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-contact h1 {
  position: absolute;
  padding-top: 270px;
  color: var(--third-color);
  font-weight: bold;
  z-index: 2;
  font-size: 75px;
  max-width: 60%;
  line-height: 1.2;
  letter-spacing: 2px;
}
@media screen and (max-width: 767px) {
  .hero-contact {
    height: 60vh;
  }
  .hero-contact h1 {
    max-width: 100%;
    font-size: 38px;
    padding-top: 190px;
  }
}

/* ===============================
    ======== SERVICE PAGE ========
    ============================== */

.hero-service {
  background: url("img/service.jpg") 40% 60% no-repeat;
  background-size: cover;
  width: 100vw;
  height: 80vh;
  position: relative;
  z-index: -1;
}
.hero-service::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-service h1 {
  position: absolute;
  padding-top: 270px;
  color: var(--third-color);
  font-weight: bold;
  z-index: 2;
  font-size: 75px;
  max-width: 60%;
  line-height: 1.2;
  letter-spacing: 2px;
}
@media screen and (max-width: 767px) {
  .hero-service {
    height: 60vh;
  }
  .hero-service h1 {
    max-width: 100%;
    font-size: 38px;
    padding-top: 190px;
  }
}

/* Contact */
.contact {
  padding: 50px 0;
  position: relative;
  background-color: var(--third-color);
}
.contact .content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  justify-content: center;
  align-items: center;
  grid-gap: 10px;
}
.contact .content .details {
  align-self: baseline;
  padding-right: 50px;
}
.contact .content .details h2 {
  color: var(--second-color);
  font-size: 35px;
  line-height: 1.2;
  margin-bottom: 20px;
}
.contact .content .details p {
  color: var(--second-color);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
}
.contact .content .details p a {
  color: var(--second-color);
  font-weight: bold;
  text-decoration: underline;
  transition: all 0.3s ease-in-out;
}
.contact .content .details p a:hover {
  opacity: 0.9;
}
.contact .content .img {
  width: 300px;
  height: auto;
  margin: auto;
}
.contact .content .img img {
  width: 100%;
  height: 100%;
}

/* Form */
.con-form .info p {
  font-weight: 400;
  font-size: 14px;
  color: var(--second-color);
  letter-spacing: 0;
  line-height: 1.64285714em;
  margin-bottom: 20px;
}
.formbox {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
}
.series.con-us .formbox form {
  position: relative;
  width: 100%;
}
.formbox form .input-box {
  position: relative;
  margin-bottom: 20px;
}
.formbox form .input-box:last-child {
  margin-bottom: 0;
}
.formbox form .input-box input,
.formbox form .input-box textarea {
  position: relative;
  background: transparent;
  outline: none;
  border: 1px solid #b9b9b9;
  width: 100%;
  color: var(--second-color);
  padding-bottom: 0;
  padding-bottom: 10px;
  padding-left: 20px;
  padding-top: 28px;
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: 300;
  font-family: "Montserrat", sans-serif !important;
  transition: all 0.2s;
}
.formbox form .input-box textarea {
  resize: none;
  -webkit-appearance: none;
  letter-spacing: 0;
  height: 126px;
  padding: 27px 20px 0;
}
.formbox form .input-box input[type="submit"] {
  color: var(--third-color);
  width: 150px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  border: none;
  outline: none;
  padding: 15px 20px;
  transition: all 0.2s;
  background: linear-gradient(136.49deg, #2d72b9 0%, #2b93b2 100%);
  transition: all 0.3s ease-in-out;
}
.formbox form .input-box input[type="submit"]:hover {
  opacity: 0.9;
}
.series.con-us
  .form-details
  .formbox
  form
  .input-box
  input[type="submit"]:hover {
  background-color: var(--first-color);
  border-color: var(--first-color);
}
.formbox form .input-box span {
  position: absolute;
  left: 20px;
  bottom: 15px;
  font-size: 16px;
  display: inline-block;
  pointer-events: none;
  color: #b9b9b9;
  transition: all 0.2s;
}
.formbox form .input-box span.tes {
  top: 30px;
}
.formbox form .input-box input:focus ~ span,
.formbox form .input-box input:valid ~ span,
.formbox form .input-box textarea:focus ~ span,
.formbox form .input-box textarea:valid ~ span {
  transform: translateY(-22px);
  font-size: 12px;
  color: #b9b9b9;
}
.formbox form .input-box .input-file {
  text-align: right;
}
.formbox form .input-box .input-file input {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.formbox form .input-box .input-file label p {
  font-weight: 400;
}
.formbox form .addtion {
  font-weight: 400;
  font-size: 14px;
  color: var(--second-color);
  letter-spacing: 0;
  line-height: 1.64285714em;
  margin-bottom: 20px;
}
.formbox form .policy {
  padding-top: 30px;
}
.formbox form .pos {
  padding-top: 0px;
}
.formbox form .policy .checkbox {
  position: relative;
}

.formbox form .policy .checkbox input[type="checkbox"] {
  position: absolute;
  visibility: hidden;
}
.formbox form .policy .checkbox label {
  display: block;
  position: relative;
  font-size: 14px;
  padding: 0 0 0 35px;
  line-height: 23px;
  z-index: 9;
  -webkit-transition: border 0.25s ease-in-out 0ms;
  transition: border 0.25s ease-in-out 0ms;
  color: #7f7f7f;
}
.formbox form .policy .checkbox label a {
  color: #7f7f7f;
  text-decoration: underline;
}
.formbox form .policy .checkbox .check {
  display: block;
  position: absolute;
  border: 1px solid #b9b9b9;
  height: 23px;
  width: 23px;
  top: 0;
  left: 0;
  -webkit-transition: border 0.25s ease-in-out 0ms;
  transition: border 0.25s ease-in-out 0ms;
  border-radius: 0;
  background: transparent;
  z-index: 1;
}
.formbox form .policy .checkbox .check::after {
  content: "";
  width: 11px;
  height: 7px;
  position: absolute;
  top: 5px;
  left: 5px;
  border: 2px solid var(--third-color);
  border-top: none;
  border-right: none;
  background: transparent;
  opacity: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: opacity 0.2s ease-in-out 0ms;
  transition: opacity 0.2s ease-in-out 0ms;
}
.formbox form .policy .checkbox input[type="checkbox"]:checked ~ .check {
  background-color: var(--first-color);
  border: none;
}
.formbox form .policy .checkbox input[type="checkbox"]:checked ~ .check:after {
  opacity: 1;
}
.con-form .form-groups {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.con-form .form-groups label {
  color: #b9b9b9;
  font-size: 14px;
  margin-bottom: 10px;
}
.con-form .form-groups .form-control {
  padding: 20px 10px;
  border: 0;
  color: #b9b9b9;
  width: 100%;
  border: 1px solid #b9b9b9;
}
.contact.con-serv .content {
  grid-template-columns: 1fr;
}
.contact.con-serv .content .units {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  align-items: center;
  grid-gap: 20px;
}
.contact.con-serv .formbox form .input-box {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .contact .content {
    grid-template-columns: 1fr;
  }
  .contact .content .img {
    width: 100%;
    max-width: 100%;
    display: block;
  }
  .contact .content .details {
    padding-right: 0;
  }
  .contact .content .details h2 {
    font-size: 22px;
  }
  .contact.con-serv .content .units {
    grid-template-columns: 1fr;
    grid-gap: 0;
  }
  .contact.con-serv .formbox {
    margin-top: 0;
  }
}
@media screen and (max-width: 360px) {
  .formbox form .input-box input[type="submit"],
  .pop-over .cancel {
    width: 125px;
  }
}

/* ====================================
  ========== SMART HOMES PAGE =========
======================================= */

.hero-smart {
  background: url("img/smart-home.jpeg") 40% 50% no-repeat;
  background-size: cover;
  width: 100vw;
  height: 80vh;
  position: relative;
  z-index: -1;
}
.hero-smart::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-smart h1 {
  position: absolute;
  padding-top: 270px;
  color: var(--third-color);
  font-weight: bold;
  z-index: 2;
  font-size: 75px;
  max-width: 60%;
  line-height: 1.2;
  letter-spacing: 2px;
}
@media screen and (max-width: 767px) {
  .hero-smart {
    height: 60vh;
  }
  .hero-smart h1 {
    max-width: 100%;
    font-size: 38px;
    padding-top: 190px;
  }
}
@media screen and (max-width: 360px) {
  .hero-smart h1 {
    max-width: 100%;
    font-size: 32px;
  }
}
/* Main Home */
.main-home {
  background-color: var(--third-color);
  padding: 0 0 50px;
  position: relative;
  width: 100vw;
}
.main-home .smart {
  background-color: var(--third-color);
  width: auto;
}
.tab-content {
  background-color: #fbfbfb;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
.tab-content .taby {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.tabys .pop-up {
  padding: 0;
}
.tab-content h3 {
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  position: relative;
  font-size: 16px;
}
.tab-content h3.speci a {
  color: #3b3b3b9c;
}
.tab-content h3.speci::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background-color: #3b3b3b40;
  width: 2px;
  height: 100%;
}
.tab-content a {
  padding: 10px;
}
.tab-content a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--first-color);
  -webkit-transform-origin: right top;
  transform-origin: right top;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-transition: -webkit-transform 0.3s
    cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: -webkit-transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    -webkit-transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.tab-content h3:hover a::after {
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.tab-content h3.speci a::after {
  background: transparent;
  width: 0;
  transform: scaleX(0);
  height: 0;
}
.sticky {
  position: sticky;
  width: 100%;
  top: 70px;
  z-index: 1;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 5px 14px 0 rgb(0 0 0 / 8%);
  /* top: 0;
  left: 0;
  width: 100%;
  z-index: 9999999999999999;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 5px 14px 0 rgb(0 0 0 / 8%); */
}
.main-home .head {
  padding-top: 30px;
}
.main-home .head h2 {
  color: var(--second-color);
  font-size: 35px;
  line-height: 1.7;
}
.main-home .head p,
.main-home .details .des .content p {
  color: var(--second-color);
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 10px;
}
.main-home .details {
  margin: 0 0 40px;
}

.main-home .details .des {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  align-items: center;
  text-align: left;
  grid-gap: 10px;
}
.main-home .details .des .img {
  width: auto;
  height: auto;
  margin: auto;
}
.main-home .details .des .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main-home .details .des .content {
  padding: 30px;
}
.main-home .details .des .content ul {
  padding-top: 10px;
}
.main-home .details .des .content ul li {
  padding-bottom: 20px;
  padding-left: 20px;
  position: relative;
  color: var(--second-color);
  font-size: 16px;
  line-height: 1.4;
}
.main-home .details .des .content ul li::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  list-style: 10px;
  border-radius: 50%;
  background: linear-gradient(136.49deg, #2d72b9 0%, #2b93b2 100%);
  top: 5px;
  left: 0;
}
.main-home .final .img {
  width: 100%;
  height: auto;
  margin: 50px auto 30px;
}
.main-home .final .img img {
  width: 100%;
  height: 100%;
}
.main-home .link-div .pop-up {
  margin-left: 0;
}
@media screen and (max-width: 767px) {
  .main-home .details {
    margin: 0;
  }
  .tab-content,
  .tab-content .taby {
    padding: 15px 0;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
  }

  .tab-content h3 {
    padding: 15px;
  }
  .main-home .content,
  .main-home .details .des {
    display: flex;
    flex-wrap: wrap;
  }
  .main-home .details .des .content {
    padding: 5px;
    width: 100%;
  }
  .main-home .head h2 {
    font-size: 22px;
    margin-bottom: 15px;
  }
  .main-home .details:nth-child(2) .des .img {
    order: -1;
  }
  .main-home .final .img {
    width: 100%;
  }
  .sticky {
    top: 50px;
  }
}
/* ====================================
  ======== SMART BUILDING PAGE ========
======================================= */

.hero-network {
  background: url("img/smart-build.jpeg") 40% 50% no-repeat;
  background-size: cover;
  width: 100vw;
  height: 80vh;
  position: relative;
  z-index: -1;
}
.hero-network::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-network h1 {
  position: absolute;
  padding-top: 270px;
  color: var(--third-color);
  font-weight: bold;
  z-index: 2;
  font-size: 75px;
  max-width: 60%;
  line-height: 1.2;
  letter-spacing: 2px;
}
@media screen and (max-width: 767px) {
  .hero-network {
    height: 60vh;
  }
  .hero-network h1 {
    max-width: 100%;
    font-size: 38px;
    padding-top: 190px;
  }
}
@media screen and (max-width: 360px) {
  .hero-network h1 {
    max-width: 100%;
    font-size: 32px;
  }
}

/* ====================================
  ========== Applied PAGE =========
======================================= */
.hero-applied {
  background: url("img/applied.jpg") 40% 50% no-repeat;
  background-size: cover;
  width: 100vw;
  height: 80vh;
  position: relative;
  z-index: -1;
}
.hero-applied::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-applied h1 {
  position: absolute;
  padding-top: 270px;
  color: var(--third-color);
  font-weight: bold;
  z-index: 2;
  font-size: 75px;
  max-width: 60%;
  line-height: 1.2;
  letter-spacing: 2px;
}
@media screen and (max-width: 767px) {
  .hero-applied {
    height: 60vh;
  }
  .hero-applied h1 {
    max-width: 100%;
    font-size: 38px;
    padding-top: 190px;
  }
}
@media screen and (max-width: 360px) {
  .hero-applied h1 {
    max-width: 100%;
    font-size: 32px;
  }
}

/* Main Apply */
.main-apply {
  background-color: var(--third-color);
  padding: 0 0 50px;
  position: relative;
  width: 100vw;
}
.main-apply .head {
  padding-top: 30px;
}
.main-apply .head h2 {
  color: var(--second-color);
  font-size: 35px;
  line-height: 1.7;
}
.main-apply .head p,
.main-apply .details .des .content p {
  color: var(--second-color);
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 10px;
}
.main-apply .details {
  margin: 40px 0;
}

.main-apply .details .des {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  align-items: center;
  text-align: left;
  grid-gap: 10px;
}
.main-apply .details .des .img {
  width: auto;
  height: auto;
  margin: auto;
}
.main-apply .details .des .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main-apply .details .des .content {
  padding: 30px;
}
.main-apply .details:nth-child(odd) .des .content {
  padding: 30px 0 30px 100px;
}
.main-apply .details .des .content.add-content {
  padding: 5px 0 30px 0px;
}
.main-apply .details .des .content ul {
  padding-top: 10px;
}
.main-apply .details .des .content ul li {
  padding-bottom: 20px;
  padding-left: 20px;
  position: relative;
  color: var(--second-color);
  font-size: 16px;
  line-height: 1.4;
}
.main-apply .details .des .content ul li::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  list-style: 10px;
  border-radius: 50%;
  background: linear-gradient(136.49deg, #2d72b9 0%, #2b93b2 100%);
  top: 5px;
  left: 0;
}
.tabys .mail-us p {
  color: var(--second-color);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
}
.tabys .mail-us p a,
.main-home .mail-us p a {
  color: var(--second-color);
  font-weight: bold;
  text-decoration: underline;
  transition: all 0.3s ease-in-out;
  padding: 0;
}
.tabys .mail-us p a:hover,
.main-home .mail-us p a:hover {
  opacity: 0.9;
}
.custom-select-wrapper {
  display: none;
}
@media screen and (max-width: 767px) {
  .custom-select-wrapper {
    display: block;
  }
  .product .tab-content,
  .main-apply .tab-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: row;
  }
  .main-home .taby,
  .main-apply .taby,
  .product .taby {
    display: none;
  }
  .main-apply .content,
  .main-apply .details .des {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
  }
  .main-apply .details .des .content {
    padding: 5px;
    width: 100%;
  }
  .main-apply .head {
    padding-top: 0;
  }
  .main-apply .head h2 {
    font-size: 22px;
    margin-bottom: 15px;
  }
  .main-apply .details:nth-child(even) .des .img {
    order: -1;
  }
  .main-apply .details:nth-child(odd) .des .content {
    padding: 0;
  }

  /* Custom */

  .custom-select-wrapper {
    position: relative;
    user-select: none;
    width: 58%;
  }
  .custom-select {
    position: relative;
    display: flex;
    flex-direction: column;
    border-width: 0 2px 0 2px;
    border-style: solid;
    border-color: #394a6d;
  }
  .custom-select__trigger {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    font-size: 16px;
    font-weight: 300;
    color: #3b3b3b;
    height: 50px;
    line-height: 50px;
    background: #ffffff;
    cursor: pointer;
    border-width: 2px 0 2px 0;
    border-style: solid;
    border-color: #394a6d;
  }
  .custom-options {
    position: absolute;
    display: block;
    top: 100%;
    left: 0;
    right: 0;
    border: 2px solid #394a6d;
    border-top: 0;
    background: #fff;
    transition: all 0.5s;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 2;
  }
  .custom-select.open .custom-options {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
  .custom-option {
    position: relative;
    display: block;
    padding: 0 22px 0 22px;
    font-size: 16px;
    font-weight: 300;
    color: #3b3b3b;
    line-height: 60px;
    cursor: pointer;
    transition: all 0.5s;
  }
  .custom-option:hover {
    cursor: pointer;
    background-color: #b2b2b2;
  }
  .custom-option.selected {
    color: #ffffff;
    background-color: #305c91;
  }
  .arrow {
    position: relative;
    height: 15px;
    width: 15px;
  }
  .arrow::before,
  .arrow::after {
    content: "";
    position: absolute;
    bottom: 0px;
    width: 0.15rem;
    height: 100%;
    transition: all 0.5s;
  }
  .arrow::before {
    left: -5px;
    transform: rotate(45deg);
    background-color: #394a6d;
  }
  .arrow::after {
    left: 5px;
    transform: rotate(-45deg);
    background-color: #394a6d;
  }
  .open .arrow::before {
    left: -5px;
    transform: rotate(-45deg);
  }
  .open .arrow::after {
    left: 5px;
    transform: rotate(45deg);
  }
  .tab-content a {
    padding: 5px 0 5px 20px;
  }

  /* End custom */
}
@media screen and (max-width: 767px) {
  .custom-select__trigger span,
  .custom-option {
    font-size: 11px;
  }
}
@media screen and (max-width: 380px) {
  .tab-content,
  .tab-content .taby,
  .main-apply .tab-content,
  .product .tab-content {
    flex-direction: column;
  }
  .custom-select-wrapper {
    width: 100%;
  }
  .tabys .pop-up {
    margin-top: 10px;
  }
}

/* =================================================
  ========== Industrial Refrigeration PAGE =========
==================================================== */
.hero-indust {
  background: url("img/refr/refr.jpg") 40% 50% no-repeat;
  background-size: cover;
  width: 100vw;
  height: 80vh;
  position: relative;
  z-index: -1;
}
.hero-indust::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-indust h1 {
  position: absolute;
  padding-top: 270px;
  color: var(--third-color);
  font-weight: bold;
  z-index: 2;
  font-size: 75px;
  max-width: 60%;
  line-height: 1.2;
  letter-spacing: 2px;
}
@media screen and (max-width: 767px) {
  .hero-indust {
    height: 60vh;
  }
  .hero-indust h1 {
    max-width: 100%;
    font-size: 38px;
    padding-top: 190px;
  }
}
@media screen and (max-width: 360px) {
  .hero-indust h1 {
    max-width: 100%;
    font-size: 32px;
  }
}
.indust-content .inner {
  padding: 30px;
}
.indust-content h3 {
  color: var(--second-color);
  font-size: 35px;
  line-height: 1.7;
}
.indust-content p {
  color: var(--second-color);
  font-size: 20px;
  line-height: 30px;
  padding-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .indust-content h3 {
    font-size: 26px;
  }
}

/* Features */
.features {
  padding: 50px 0;
  position: relative;
}
.features h2 {
  color: var(--second-color);
  font-size: 24px;
  line-height: 1.7;
}
.features .inner-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  margin-top: 20px;
}
.features .inner-content .main img {
  height: 60px;
  margin-right: 5px;
  width: 60px;
  margin-bottom: 8px;
}
.features .inner-content .main h3 {
  font-size: 22px;
  color: var(--second-color);
  line-height: 29px;
  margin-bottom: 5px;
  font-weight: 600;
}
.features .inner-content .main p {
  color: var(--second-color);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 200;
}
@media screen and (max-width: 767px) {
  .features .inner-content {
    grid-template-columns: repeat(2, 1fr);
  }
  .indust-content .inner {
    padding: 0;
    padding-top: 10px;
  }
  .pop-content .formbox {
    margin-top: 0;
  }
}
@media screen and (max-width: 484px) {
  .features .inner-content {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media screen and (max-width: 360px) {
  .pop-over .pop-content {
    overflow-y: scroll;
  }
  .pop-content .formbox {
    margin-top: 310px;
  }
  .mail-us {
    margin-bottom: 60px;
  }
}

/* ===============================
    ======== WARRANTY PAGE ========
    ============================== */

.hero-warranty {
  background: url("img/warranty.jpeg") 40% 60% no-repeat;
  background-size: cover;
  width: 100vw;
  height: 80vh;
  position: relative;
  z-index: -1;
}
.hero-warranty::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-warranty h1 {
  position: absolute;
  padding-top: 270px;
  color: var(--third-color);
  font-weight: bold;
  z-index: 2;
  font-size: 75px;
  max-width: 60%;
  line-height: 1.2;
  letter-spacing: 2px;
}
@media screen and (max-width: 767px) {
  .hero-warranty {
    height: 60vh;
  }
  .hero-warranty h1 {
    max-width: 100%;
    font-size: 38px;
    padding-top: 190px;
  }
}

/* VRF */
.brief {
  padding: 50px 0 0;
  background: var(--third-color);
}
.brilast {
  padding: 50px 0;
}
.brief .info h2 {
  font-size: 36px;
  line-height: 1.3;
  margin-bottom: 20px;
  max-width: 100%;
  color: var(--second-color);
}
.brief .info h4 {
  font-size: 18px;
  line-height: 1.3;
  margin-top: 10px;
  margin-bottom: 10px;
  max-width: 100%;
  color: var(--second-color);
}
.brief .info p {
  font-size: 16px;
  color: var(--second-color);
  line-height: 1.7;
  margin-bottom: 15px;
}
.brief .contents {
  display: grid;
  grid-gap: 20px;
  margin-bottom: 20px;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  align-items: flex-start;
}
.brief .contents ul li {
  padding-bottom: 20px;
  padding-left: 20px;
  position: relative;
  color: var(--second-color);
  font-size: 16px;
  line-height: 1.4;
}
.brief .contents ul li::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  line-height: 10px;
  border-radius: 50%;
  background: linear-gradient(136.49deg, #2d72b9 0%, #2b93b2 100%);
  top: 5px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .brief .contents {
    grid-template-columns: 1fr;
    grid-gap: 0;
  }
  .brief .info h2 {
    font-size: 28px;
  }
  .brief .info h4 {
    font-size: 16px;
  }
}

.thank-info {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.formbox form .input-box .toltip {
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(136.49deg, #2d72b9 0%, #2b93b2 100%);
  height: 100%;
  text-align: center;
  line-height: 60px;
  width: 40px;
  color: var(--third-color);
  cursor: pointer;
}
.toltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: var(--first-color);
  color: var(--third-color);
  text-align: center;
  border-radius: 6px;
  padding: 0;
  position: absolute;
  z-index: 1;
  bottom: 100%;
  left: 50%;
  margin-left: -60px;
  font-size: 14px;
}

.toltip:hover .tooltiptext {
  visibility: visible;
}

.formbox form .input-box span {
  bottom: 10px;
}
.formbox form .input-box .eror {
  position: absolute;
  bottom: -18px;
  left: 0;
  padding-top: 0;
}
.formbox form .input-box .eror p {
  color: #d8000c;
  font-size: 14px;
}
