@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  --yellow: #a2c617;
  --black: #111;
  --white: #fff;
  --light-color: #eee;
  --box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
  --border: .1rem solid rgba(0,0,0,.3);
  --light-bg: #d9d9d9; }

* {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  transition: all .2s linear; }

.heading {
  background-color: var(--yellow);
  font-size: 3rem;
  color: white;
  text-transform: capitalize; }

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 7rem; }
  html::-webkit-scrollbar {
    width: 1rem; }
  html::-webkit-scrollbar-track {
    width: 1rem; }
  html::-webkit-scrollbar-thumb {
    background: var(--yellow); }

.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: var(--box-shadow);
  padding: 1.5rem 10%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  background: var(--white); }
  .header .logo {
    font-size: 2.5rem;
    color: var(--black);
    text-transform: capitalize; }
  .header span {
    color: var(--yellow); }
  .header .navbar a {
    font-size: 2rem;
    color: var(--black);
    text-transform: capitalize;
    margin: 0 1rem; }
    .header .navbar a:hover {
      color: var(--yellow); }
  .header .icons div {
    height: 5rem;
    width: 5rem;
    line-height: 5rem;
    font-size: 2rem;
    background-color: var(--light-bg);
    cursor: pointer;
    text-align: center; }
    .header .icons div:hover {
      background: var(--black);
      color: var(--white); }
  .header #menu-btn {
    display: none; }

section {
  padding: 5rem 10%; }

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 1rem 3rem;
  background-color: var(--black);
  color: var(--white);
  cursor: pointer;
  font-size: 1.7rem;
  text-transform: capitalize; }
  .btn:hover {
    background-color: var(--yellow);
    color: var(--black); }
  .btn:hover {
    background-color: var(--yellow);
    color: var(--black); }

.home {
  padding: 0; }
  .home .slide {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background-size: cover !important;
    background-position: center !important; }
    .home .slide::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background: linear-gradient(90deg, var(--white), transparent); }
    .home .slide .content {
      width: 50rem;
      position: relative; }
      .home .slide .content h3 {
        font-size: 6rem;
        color: var(--black);
        text-transform: capitalize;
        text-transform: uppercase; }
      .home .slide .content p {
        font-size: 1.4rem;
        color: var(--black);
        line-height: 1.5;
        padding: 1rem;
        color: var(--black); }
  .home .swiper {
    width: 100%;
    height: 100%; }
  .home .swiper-button-next,
  .home .swiper-button-prev {
    top: initial;
    bottom: 0;
    left: initial;
    right: 0;
    height: 7rem;
    width: 7rem;
    background: var(--white);
    color: black;
    line-height: 7rem; }
    .home .swiper-button-next:hover,
    .home .swiper-button-prev:hover {
      background: var(--yellow); }
  .home .swiper-button-prev {
    right: 7rem; }
  .home .swiper-button-prev,
  .home .swiper-button-next {
    font-size: 2rem;
    color: var(--black); }

.about .row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem; }
  .about .row .video {
    flex: 1 1 41rem; }
    .about .row .video video {
      width: 100%; }
  .about .row .content {
    flex: 1 1 41rem; }
    .about .row .content h3 {
      font-size: 3rem;
      color: var(--black);
      text-transform: capitalize; }
.about .box-container {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 2rem;
  align-items: center; }
  .about .box-container .box {
    text-align: center;
    background: var(--light-bg);
    padding: 3rem 2rem; }
    .about .box-container .box h3 {
      font-size: 4rem;
      color: var(--black);
      text-transform: capitalize; }
    .about .box-container .box p {
      font-size: 1.5rem;
      color: var(--black);
      line-height: 1.5; }

.service {
  background-color: var --light-bg; }
  .service .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 2rem; }
    .service .box-container .box {
      text-align: center;
      padding: 3rem;
      background: var(--white);
      box-shadow: var(--box-shadow);
      border: var(--border); }
      .service .box-container .box:hover img {
        transform: translateY(-1rem); }
      .service .box-container .box img {
        width: 100%;
        margin-bottom: .5rem; }
      .service .box-container .box h3 {
        font-size: 2rem;
        color: var(--black);
        text-transform: capitalize;
        padding: 1rem 0; }
      .service .box-container .box p {
        font-size: 1.5rem;
        color: var(--black);
        line-height: 1.5; }

.projects {
  background-color: var(--black);
  border: 1px solid black; }
  .projects .heading {
    background-color: black  !important; }
  .projects .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 2rem; }
    .projects .box-container .box {
      cursor: initial; }
      .projects .box-container .box .image {
        height: 40rem;
        overflow: hidden; }
        .projects .box-container .box .image img {
          height: 100%;
          width: 100%;
          object-fit: cover; }
      .projects .box-container .box .content {
        display: flex;
        justify-content: space-between;
        gap: .5rem;
        background: var(--white); }
        .projects .box-container .box .content .info {
          padding: 1rem; }
          .projects .box-container .box .content .info h3 {
            font-size: 1.7rem;
            color: var(--black);
            text-transform: capitalize; }
          .projects .box-container .box .content .info p {
            font-size: 1.5rem;
            color: var(--black);
            line-height: 1.5; }
        .projects .box-container .box .content i {
          width: 6rem;
          font-size: 3rem;
          background-color: --yellow;
          color: var(--white);
          cursor: pointer;
          text-align: center;
          line-height: 6.5rem; }

.contact .row {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem; }
  .contact .row .map {
    flex: 1 1 41rem;
    width: 100%; }
  .contact .row form {
    flex: 1 1 41rem;
    background: var(--white);
    padding: 2rem; }
    .contact .row form h3 {
      font-size: 2.5rem;
      color: var(--black);
      text-transform: capitalize;
      padding-bottom: 1rem; }
    .contact .row form .box {
      margin: .7rem 0;
      width: 100%;
      padding: 1.5rem 0;
      background: var(--light-bg);
      font-size: 1.6rem; }
    .contact .row form textarea {
      height: 15rem;
      resize: none;
      width: 100%; }

.footer {
  text-align: center;
  padding-bottom: 2rem; }
  .footer .links .btn {
    margin: .5rem; }
  .footer .credit {
    font-size: 2rem;
    color: var(--black);
    text-transform: capitalize;
    margin-top: 2rem;
    padding-top: 1rem; }

@media (max-width: 1200px) {
  .header {
    padding: 1.5rem 2rem; }

  section {
    padding: 3rem 5%; } }
@media (max-width: 991px) {
  html {
    font-size: 55%; }

  section {
    padding: 5rem 2%; }

  .header #menu-btn {
    display: inline-block; }
  .header .navbar {
    position: absolute;
    top: 99%;
    left: 0;
    right: 0;
    background-color: var(--white);
    border-top: var(--border);
    border-bottom: var(--border);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0); }
    .header .navbar.active {
      clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
    .header .navbar a {
      display: block;
      margin: 2rem; } }
@media (max-width: 768px) {
  .home .slide {
    justify-content: center; }
    .home .slide .content {
      text-align: center; }
      .home .slide .content h3 {
        font-size: 3rem; } }
@media (max-width: 450px) {
  html {
    font-size: 50%; } }
.actives {
  background-color: black;
  color: white !important;
  padding: .4rem .8rem;
  border-radius: .3rem; }

.holder {
  width: 100%;
  height: 4rem; }

#scrollToTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 10px 20px;
  background-color: var(--yellow);
  color: white;
  border: none;
  cursor: pointer; }

.hidden {
  display: none; }

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