@import url("https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  scroll-behavior: smooth;
}
*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
::-webkit-scrollbar {
  width: 0;
  background: transparent;
}
body {
  min-height: 120vh;
}

/* ---------------------------Header--------------------- */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 50px;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  transition: 0.5s;
  background: #fff;
  height: fit-content;
}
header.sticky {
  background: #fff;
  height: fit-content;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}
header .logo {
  margin-top: -5px;
}
header .logo > img {
  height: 55px;
}
header.sticky .logo {
  margin-top: -5px;
}
header.sticky .logo > img {
  height: 55px;
}

header.sticky .navigation li a {
  color: #111;
}
header.sticky .navigation li a:hover {
  color: #63c0dd;
}
header .navigation {
  position: relative;
  display: flex;
}
header .navigation li {
  list-style: none;
  margin-top: 15px;
  margin-left: 30px;
}
header .navigation li a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
  font-size: 1.2em;
}
header .navigation li a:hover {
  color: #63c0dd;
}
/* ---------------------------Hero-Banner--------------------- */
.hero-infra {
  height: 40vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(./gallery/Exterior/10.jpeg);
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.hero-title {
  text-align: center;
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
}
.hero-title h2 {
  font-size: 2.5em;
  font-weight: 600;
}
/* ---------------------------Hero--------------------- */

.hero {
  display: flex;
  flex-direction: column;
  height: fit-content;
  padding-top: 10px;
  padding-left: 50px;
  padding-right: 50px;
  width: 80%;
  margin: 0 auto;
}

.hero-content {
  display: flex;
  flex-direction: row-reverse;
  padding-top: 30px;
}

.hero-text {
  flex: 0.5;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  text-align: start;
}

.hero-text > h2 {
  font-size: 1.7em;
}
.hero-text .hero-points {
  padding-top: 30px;
  width: 100%;
}
.list-style-one {
  position: relative;
}

.list-style-one li {
  position: relative;
  font-size: 16px;
  line-height: 26px;
  color: #222222;
  font-weight: 400;
  padding-left: 35px;
  margin-bottom: 12px;
  list-style: none;
}

.list-style-one li:before {
  content: "\f058";
  position: absolute;
  left: 0;
  top: 0px;
  display: block;
  font-size: 18px;
  padding: 0px;
  color: #63c0dd;
  font-weight: 600;
  -moz-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1.6;
  font-family: "Font Awesome 5 Free";
}

.hero-img-box {
  flex: 0.5;
}

.hero-img {
  width: 90%;
  height: 380px;
  object-fit: contain;
}

/* ---------------------------Gallery--------------------- */
.section-padding {
  padding-top: 80px;
}

.gallery-section {
  position: relative;
  z-index: 1;
}

.filter {
  text-align: center;
  max-width: 1050px;
  margin: auto;
}

.btn {
  font-size: 1em;
  color: #fff;
  background-color: #63c0dd;
  border: 1px solid #63c0dd;
  display: inline-block;
  padding: 10px 30px;
  margin-top: 20px;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 2px;
  transition: 0.5s ease-in-out;
  border-radius: 99px;
}
.btn:hover,
.btn-active {
  color: #63c0dd;
  background: #fff;
}
.gallery {
  display: flex;
  justify-content: center;
  width: fit-content;
  max-width: 1320px;
  flex-wrap: wrap;
  margin: 25px auto;
  /* gap: 14px; */
}
.gallery a {
  display: flex;
}
.gallery img {
  width: 200px;
  height: 220px;
  object-fit: cover;
  transition: 0.3s ease-in-out;

  overflow: hidden;
  margin: 10px 10px;
}

.gallery img:hover {
  transform: scale(1.1);
}
.gallery-title {
  text-align: center;
}
.gallery-title h2 {
  font-size: 2.5em;
  font-weight: 600;
}

.sets .hide,
.sets .pophide {
  width: 0%;
  opacity: 0;
}

.closeBtn {
  position: absolute;
  font-size: 22px;
  font-weight: 500;
  right: 25px;
  top: 25px;
  color: white;
  transition: 0.5s linear;
  padding: 8px 40px;
  border-radius: 25px;
  background: #63c0dd;
  outline-offset: -6px;
  outline: 2px solid #fff;
}
.closeBtn:hover {
  cursor: pointer;
  background: white;
  color: black;
  outline: 2px solid #000;
}

.openDiv {
  width: 100%;
  height: 100vh;
  background: #000000e7;
  position: fixed;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  left: 0;
  z-index: 9999;
}
.imgPreview {
  width: 70%;
  object-fit: scale-down;
  max-height: 40vw;
  height: auto;
}
.prevButton,
.nextButton {
  transition: 1s linear;
  padding: 10px 35px;
  font-size: 18px;
  border: none;
  color: white;
  background: #0005;
  border-radius: 10px;
  border: 1px solid white;
  margin: 10px;
}
.prevButton:hover,
.nextButton:hover {
  background: #fff;
  color: black;
}

/* ---------------------------Footer--------------------- */

footer {
  position: relative;
  width: 100%;
  height: auto;
  padding: 50px 100px;
  background: #111;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
footer .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-direction: row;
}
footer .container .sec {
  margin-right: 30px;
}
footer .container .sec.about-us {
  width: 40%;
}

footer .container h2 {
  position: relative;
  color: #fff;
  font-weight: 500;
  margin-bottom: 15px;
}
footer .container img {
  height: 70px;
}

footer p {
  color: #fff;
}
.sci {
  margin-top: 20px;
  display: flex;
}
.sci li {
  list-style: none;
}
.sci li a {
  display: inline-block;
  width: 40px;
  height: 40px;
  /* background: #222; */
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  text-decoration: none;
  border-radius: 4px;
}
.sci li a:hover {
  opacity: 0.5;
}
.sci li a .fa {
  color: #fff;
  font-size: 20px;
}
.quickLinks {
  position: relative;
  width: 25%;
}
.quickLinks ul li {
  list-style: none;
}
.quickLinks ul li a {
  color: #fff;
  text-decoration: none;
  margin-bottom: 10px;
  display: inline-block;
}
.quickLinks ul li a:hover {
  color: #fff;
  opacity: 0.8;
}
.contact {
  width: calc(30% - 60px);
  margin-right: 0 !important;
}
.contact .info {
  position: relative;
}
.contact .info li {
  display: flex;
  margin-bottom: 16px;
}
.contact .info li span:nth-child(1) {
  color: #fff;
  font-size: 20px;
  margin-right: 10px;
}
.contact .info li span {
  color: #999;
}
.contact .info li a {
  color: #999;
  text-decoration: none;
}
.contact .info li a:hover {
  color: #fff;
}
.copyrightText {
  width: 100%;
  background: #181818;
  padding: 8px 100px;
  text-align: center;
  /* color: #fff !important; */
  /* z-index: 100000; */
}
.copyrightText p {
  color: #999;
}

/* ---------------------------Responsive--------------------- */
@media (max-width: 1100px) {
  .menuToggle {
    filter: invert(0);
  }
  header,
  header.sticky {
    padding: 10px 20px;
  }
  header.sticky {
    background-color: #fff;
    height: fit-content;
    padding: 10px 10px;
  }
  header .logo {
    margin-top: 10px;
  }
  header .logo > img {
    /* background: black; */
    height: 40px;
  }
  header.sticky .logo {
    margin-top: 10px;
    height: 10px;
  }
  header.sticky .logo > img {
    /* background: black; */
    height: 40px;
    margin-top: -10px;
  }
  header .navigation {
    display: none;
  }
  header .navigation.active {
    margin-top: -10px;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 68px;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #fff;
  }
  header .navigation li {
    margin-left: 0;
  }
  header.sticky .navigation li a {
    margin-top: 50px;
  }
  header .navigation li a {
    text-decoration: none;
    color: #111;
    font-size: 1.6em;
    font-weight: 300;
  }

  .menuToggle {
    position: relative;
    width: 40px;
    height: 40px;
    background: url(./icons/menu.png);
    background-size: 30px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    transition: 0.3s;
    filter: invert(1);
  }
  .menuToggle.active {
    background: url(./icons/close.png);
    background-size: 25px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
  }
  header.sticky .menuToggle {
    filter: invert(1);
  }

  .hero {
    height: fit-content;
  }
  .hero-content {
    display: flex;
    flex-direction: column;
    height: fit-content;
  }

  .hero-text .hero-points {
    padding: 20px;
    width: 100%;
  }

  footer {
    padding: 40px;
  }

  footer .container {
    flex-direction: column;
  }

  footer .container .sec {
    margin-right: 0;
    margin-bottom: 40px;
  }

  footer .container .sec.aboutus,
  .quickLinks,
  .contact {
    width: 100%;
  }

  footer .container .sec.about-us {
    width: fit-content;
  }

  .copyrightText {
    padding: 8px 40px;
  }
}

/* resposive CSS Code */

@media (max-width: 1199px) {
  .section-padding {
    padding-top: 70px;
  }
}
@media (max-width: 991px) {
  .section-padding {
    padding-top: 50px;
  }
}
@media (max-width: 767px) {
  .gallery img {
    margin: 8px 8px;
    width: 175px;
  }
  .closeBtn {
    padding: 6px 25px;
  }
  .prevButton,
  .nextButton {
    font-size: 18px;
    padding: 8px 25px;
  }
}

@media (max-width: 540px) {
}
@media (max-width: 480px) {
  .menuToggle {
    filter: invert(1);
  }
  header.sticky {
    background-color: #fff;
    height: fit-content;
    padding: 15px 10px;
  }
  header .logo {
    margin-top: 10px;
  }
  header .logo > img {
    height: 40px;
  }
  header.sticky .logo {
    margin-top: 10px;
    height: 10px;
  }
  header.sticky .logo > img {
    height: 40px;
  }

  .hero {
    margin-top: 10px;
    height: fit-content;
    padding: 0;
  }

  .hero-text > h2 {
    font-size: 1.5em;
  }
  .hero-text .hero-points {
    padding-top: 10px;
  }

  .hero-img {
    width: 100%;
    height: 200px;
    object-fit: contain;
  }
  .hero-title h2 {
    font-size: 2em;
  }
  #gallery {
    height: fit-content;
  }
  .section-padding {
    padding-top: 30px;
  }
  .filter {
    height: fit-content;
    margin-bottom: 50px;
  }
  .gallery {
    height: fit-content;
  }

  .gallery img {
    margin: 8px 6px;
    width: 255px;
  }

  .closeBtn {
    font-size: 18px;
    border-radius: 15px;
  }
  .prevButton,
  .nextButton {
    font-size: 18px;
    padding: 6px 20px;
    border-radius: 10px;
    margin: 5px;
  }

  .imgPreview {
    width: 90%;
    max-height: 50vh;
    height: auto;
  }

  .gallery {
    margin-top: -50px;
  }

  footer {
    padding: 10px;
    padding-top: 50px;
  }
  footer .container img {
    height: 50px;
  }
  .sec {
    width: 100%;
  }
  .footer .sec.about-us {
    width: 100%;
  }
}
