* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  scroll-behavior: smooth;
  scroll-margin-top: 150px;
}

/* ====== colors ====== */

:root {
  --primary-color: #bbbc23;
  --black-color: #000000;
  --blue-color: #1E60AA;
  --white-color: #fff;
}

/* ========== text ======= */

@font-face {
  font-family: roboto;
  src: url(../font/Jost/Jost-VariableFont_wght.ttf);
}

@font-face {
  font-family: inter;
  src: url(../font/Inter/static/Inter-Regular.ttf);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: roboto;
}

h1 {
  font-size: 56px;
  text-transform: capitalize;
  font-weight: 700;
  line-height: 1.1;
}

h2 {
  font-size: 40px;
  text-transform: capitalize;
  font-weight: 700;
  line-height: 1.2;
}

h3 {
  font-size: 26px;
  text-transform: capitalize;
  font-weight: 700;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 700;
}

h6 {
  color: var(--primary-color);
  font-size: 18px;
  letter-spacing: 1px;
}

p {
  font-family: inter;
  font-size: 16px;
  line-height: 26px;
}

span {
  font-family: inter;
}

/* ===== other ==== */

body {
  font-family: inter;
}

ul li {
  list-style: none;
}

a {
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1260px;
  padding: 0px 20px;
  margin: 0 auto;
}

.flex {
  display: flex;
}

img {
  width: 100%;
}

.primary-btn {
  display: inline;

  a {
    display: inline-block;
    padding: 14px 30px;
    background: var(--primary-color);
    font-size: 16px;
    color: var(--white-color);
    font-weight: 700;
    border-radius: 6px;
    transition: all .2s ease-in;
  }

  a:hover {
    background-color: #8e8f19;
  }
}

.section-des {
  width: 100%;
  max-width: 50%;
  margin: 0 auto;
  text-align: center;
}

/* ============ header ========= */

header {
  background-color: #0c0401;

  .top-header {
    padding: 0px 65px;
    color: var(--white-color);

    a {
      color: var(--white-color);
    }

    .logo {
      width: 30%;
    }

    .shop-details {
      width: 70%;
      justify-content: end;
    }

    .whatsapp a {
      font-weight: 500;
      background-color: transparent;
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 5px 0;
    }

    .whatsapp a i {
      color: #128C7E;
      font-size: 24px;
    }

    .whatsapp a img {
      width: 40px;
    }

    .top-main {
      justify-content: space-between;
      align-items: center;

      .shop-details {
      gap: 20px;
      align-items: center;

        .col
      i {
          margin-right: 10px;
        }
      ;
      flex-wrap: wrap;
      margin-bottom: 10px;
      }

    ;
      flex-wrap: wrap;
    }

    img {
      width: 100%;
      max-width: 60%;
    }

    .socai-media {
      gap: 10px;

      a {
        padding: 8px;
        background-color: var(--white-color);
      }

      i {
        color: var(--black-color);
      }
    }
  }


  /* ======= bottom header ====== */

  .bottom-header {
    padding: 0px 65px;
    background-color: var(--black-color);
    transition: all .3s ease-in;

    .logo {
      display: none;
    }

    .primary-menu .primary-btn {
      display: none;
    }

    .menu-icon {
      display: none;
    }

    .nav-bar {
      padding: 0px 24px;
      justify-content: space-between;
      background-color: var(--white-color);
      padding: 0px 0px 0px 24px;
      align-items: center;
    }

    nav {

      a {
        color: var(--black-color);
        font-weight: 600;
        text-transform: uppercase;
        padding: 12px 16px;
        display: inline-block;
      }

      .drop-down {
        position: relative;
      }


      /* .drop-down a {
        padding: 10px;
      } */

      .drop-down ul {
        width: 200px;
        padding: 10px;
        background-color: #fff;
        position: absolute;
        /* top: 30px; */
        /* bottom: 0; */
        border-top: 3px solid var(--primary-color);
        transform: scaleX(-10px);
        /* opacity: 0; */
        display: none;
        /* transform: translateY(22px); */
        transition: transform display .3s linear;
      }

      .drop-down:hover ul {
        /* opacity: 1; */
        display: block;
        transform: translateY(0);
        transition: transform display .3s linear;
        /* transition: transform .3s linear; */
      }
    }

    .call {
      background: var(--primary-color);
      padding: 24px 24px;
      gap: 20px;
      align-items: center;
      transition: all .2s ease-in;

      p {
        color: var(--white-color);
        font-size: 20px;
        font-weight: 600;
      }
    }

    .free-estimate:hover .call {
      background-color: #8e8f19;
    }
  }

  .sticky {
    box-shadow: 0px 2px 20px 0px #d1d1d199;
    position: fixed;
    top: 0;
    width: 100%;
    padding: 0px;
    z-index: 999;
  }
}

.activemenu {
  color: var(--primary-color);
}

.activemenu:hover {
  color: var(--primary-color);
}

/* =========== banner style ======= */

.banner {
  padding: 120px 0px;
  /* background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../upload/banner.jpg); */
  color: var(--white-color);
  background-size: cover;
  animation: change 25s infinite ease-in-out;
  transition: all .3s ease-in-out;

  .container {
    align-items: center;

  }

  .banner-content {
    width: 70%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    padding: 45px 0 45px 35px;
    border-left: 15px solid #FFFFFF;

    img {
      width: 150px;
    }
  }

  .banner-content::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100px;
    height: 15px;
    background: #FFFFFF;
  }

  .banner-content::after {
    position: absolute;
    content: "";
    /* top: 0; */
    left: 0;
    bottom: 0;
    width: 100px;
    height: 15px;
    background: #FFFFFF;
  }

  .banner-img {
    width: 30%;
  }
}

@keyframes change {

  0% {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../upload/banner.jpg);
    background-size: cover;
  }

  25% {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url(../upload/banner02.jpg);
    background-size: cover;
    background-position: center;

  }

  50% {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url(../upload/img04.jpg);
    background-size: cover;
    background-position: center;
  }

  75% {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.)), url(../upload/banner02.jpg);
    background-size: cover;
    background-position: center;
  }

  100% {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url(../upload/banner03.jpg);
    background-size: cover;
    /* background-position: center; */
  }
}

/* ========== services ========= */

.services {
  padding: 80px 0px;
  background: url(../upload/shap01.png);
  background-repeat: no-repeat;
  background-position: bottom left;

  .container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }


  h2 {
    text-align: center;
  }

  .services-items {
    margin-top: 40px;

    .item-col {
      display: flex;
      gap: 20px;
    }
  }

  .item {
    width: 33.33%;

    .item-img {
      height: 240px;
      overflow: hidden;
    }

    img {
      /* height: 240px; */
      object-fit: cover;
      transition: all .2s ease-in;
    }

    .item-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 24px;
      background-color: #ffffda;

      h5 {
        font-weight: 600;
        color: #17224D;
      }

      a {
        width: 38px;
        height: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: normal;
        border: 2px solid var(--primary-color);
        color: var(--primary-color);
        transition: all .2s ease-in;
      }

      a:hover {
        background-color: var(--primary-color);
        color: #fff;
      }
    }
  }

  .item:hover .item-img img {
    transform: scale(1.1);
  }

  .item-col2 {
    margin-top: 20px;
  }

  .primary-btn {
    margin-top: 40px;
  }
}

/* ===== cta style === */

.cta {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../upload/banner.jpg);
  padding: 50px 0px;
  color: var(--white-color);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;

  .container {
    display: flex;
    gap: 50px;
    justify-content: space-between;
    align-items: center;
  }

  .cta-content {
    width: 60%;
  }
}

/* ========= About us ======= */

.about-us {
  padding: 80px 0px;
  background: url(../upload/shap02.png);
  background-repeat: no-repeat;
  background-position: bottom right;

  .container {
    display: flex;
    gap: 40px;
  }

  .about-service {

    li {
      padding: 10px 0px;
      list-style-position: inside;
      list-style-image: url('../upload/check.png');
    }
  }

  .about-content {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;

    i {
      color: #198754;
      font-weight: 700;
      margin-right: 10px;
      font-size: 20px;
    }
  }

  .about-img {
    width: 50%;
  }

}

/* ========= why choose style ======== */

.why-choose-us {
  display: flex;

  .choose-img {
    width: 50%;
    background: url(../upload/img.jpg);
    padding: 100px 0px;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white-color);

    .contact-details {
      width: 45%;
      padding: 40px;
      background-color: var(--primary-color);

      h3 {
        padding-bottom: 30px;
        border-bottom: 1px solid var(--white-color);
      }

      .content {
        padding-top: 30px;

        a {
          color: var(--white-color);
        }
      }
    }
  }

  .choose-content {
    width: 50%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../upload/wood.jpg);
    padding: 150px 40px 150px 40px;
    color: var(--white-color);
    display: flex;
    flex-direction: column;
    gap: 20px;

    .choose-main {
      display: flex;
      flex-direction: column;
      gap: 30px;
    }

    .choose-items {
      gap: 20px;
      display: flex;

      .items {
        width: 50%;

        p {
          padding: 10px;
          border-left: 4px solid var(--primary-color);
        }
      }

    }
  }
}

/* =========== footer ============ */

footer {
  background-color: #0c0401;
  padding: 40px 0px 0px;
  color: var(--white-color);

  a {
    color: var(--white-color);
  }

  ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
  }

  .container {
    display: flex;
    gap: 30px;

    .footer-about {
      width: 30%;

      p {
        margin-top: 20px;
      }
    }

    .quick-link {
      width: 20%;
      padding-left: 40px;
      margin-top: 20px;
    }

    .footer-service {
      width: 20%;
      margin-top: 20px;
    }

    .footer-content {
      width: 30%;
      margin-top: 20px;

      i {
        margin-right: 10px;
      }
    }
  }

  .footer-copyright {
    .container {
      display: block;
      flex-wrap: nowrap;
    }

    margin-top: 40px;
    background-color: var(--primary-color);
    text-align: center;
    padding: 10px 0px;
    font-size: 12px;
    color: var(--black-color);

    a {
      color: var(--black-color);
    }

    img {
      margin-top: 10px;
      width: 100%;
      max-width: 100px;
    }
  }
}



/* =========== Inner pages ========= */
.inner-banner {
  padding: 100px 0px;
  color: var(--white-color);
}

/* ================= services Page ==========  */

.services-banner {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../upload/service-banner.jpg);
  background-size: cover;
  background-position: center;

}

.services-list {
  padding: 80px 0px;

  ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
  }

  li {
    width: 30%;

    a {
      background-color: var(--primary-color);
      border-radius: 6px;
      padding: 15px;
      display: inline-block;
      /* border-radius: 6px; */
      color: #fff;
      font-size: 16px;
      font-weight: 500;
      width: 100%;
      height: 100%;
      transition: all .2s ease-in;
    }

    a:hover {
      background-color: #8e8f19;
    }


  }
}

/* ================= services Page end ==========  */


/* =========== contact Us page ======== */
#contact-page {

  .contact-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../upload/contact-banner.jpg);
    background-size: cover;
    background-position: center;
  }

  .contact-details {
    padding: 80px 0px;

    .container {
      display: flex;
      justify-content: space-between;
      gap: 30px;
    }

    .container>a {
      background: var(--primary-color);
      width: 33.33%;
      border-radius: 20px;
    }

    .box {
      border-radius: 10px;
      text-align: center;
      padding: 40px;
      color: #fff;
      background-color: var(--primary-color);
      transition: all .3s ease-in;
    }

    img {
      width: 80px;
    }

    .box span {
      font-size: 20px;
      padding-top: 20px;
      display: inline-block;
    }

    /* .box:hover img {
      margin-top: -10px;
    } */
  }

  .form-section {
    /* padding: 80px 0px; */
    display: flex;
    width: 100%;

    .map-col,
    .main-form {
      width: 50%;
    }

    .map-col {
      padding: 30px;
      background: black;
      /* text-align: center; */
      display: flex;
      justify-content: center;
      align-items: center;

      img {
        width: 60%;
      }
    }

    .main-form {
      background-color: var(--primary-color);
      padding: 40px 80px;
    }
  }

  #contact-form {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 16px;
    width: 72%;
    margin-top: 40px;

    label {
      display: block;
      color: #fff;
    }

    label span {
      color: red;
    }

    input {
      padding: 8px;
      width: 100%;
      border: none;
      border-radius: 4px;
      margin-top: 5px;
    }

    .name {
      display: flex;
      gap: 20px;
    }

    .name>diV {
      width: 50%;
    }

    textarea {
      margin-top: 5px;
      width: 100%;
      border: none;
      border-radius: 4px;
    }

    .submit-btn {
      width: 170px;
      padding: 12px;
      cursor: pointer;
      background: var;
      background: var(--black-color);
      color: #fff;
      font-size: 16px;
      transition: .2s ease-in;
      border: 1px solid var(--black-color);
    }

    .submit-btn:hover {
      background-color: var(--primary-color);
      border: 1px solid #fff;
    }
  }

  #contact-form>div {
    width: 100%;
  }
}

/* =========== contact Us page end======== */

/* ========= about page ======= */

#about-page {
  .about-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../upload/about-banner.jpg);
    background-size: cover;
    background-position: center;
  }

  .about-us {
    .about-content {
      width: 100%;
    }
  }
}

/* ========= about page end ======= */

/* ========= gallery page ======= */

#gallery-page {
  .gallery-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../upload/gallery-banner.jpg);
    background-size: cover;
    background-position: center;
  }

  .gallery {
    padding: 80px 0px;

    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      grid-gap: 20px;
      align-items: stretch;
    }

    .grid .gallery-img img {
      border: 1px solid #ccc;
      box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.3);
      max-width: 100%;
    }

    .gallery-img {
      overflow: hidden;
      transition: all .2s ease-in-out;
    }

    .gallery-img:hover img {
      transform: scale(1.1);
      transition: all .2s ease-in-out;
    }
  }
}

/* ========= gallery page end ======= */

/* ====== video page ======= */

#video-page {

  .video-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../upload/gallery-banner.jpg);
    background-size: cover;
    background-position: center;
  }

  .video {
    padding: 80px 0px;

    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      grid-gap: 20px;
      align-items: stretch;
    }

    .container {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
    }

    .main-video {
      width: 100%;

      video {
        width: 100%;
      }
    }

    .video-gallery {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;

      .video-file {
        width: 32%;

        video {
          width: 100%;
        }
      }
    }
  }

}

/* ====== video page end======= */

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (max-width: 1200px) {

  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 35px;
  }

  h5 {
    font-size: 16px;
  }

  header {

    .top-header {
      padding: 0px 20px;

      .logo {
        width: 30%;

        img {
          max-width: 100%;
        }
      }

      a {
        font-size: 14px;
      }

      .shop-details {
        width: 70%;
        justify-content: end;
      }

    }

    .bottom-header {
      padding: 0px 20px;
    }
  }

  .banner {
    padding: 60px 0px;

    .container {
      align-items: end;
    }

    /* .banner-content {
      margin-bottom: 60px;
    } */
  }

  .services {
    .item img {
      height: 100%;
    }
  }

  .why-choose-us {
    .choose-img {
      .contact-details {
        width: 80%;
      }
    }

    .choose-content {
      padding: 100px 50px 100px 50px;
    }
  }

  footer {
    .container {
      gap: 10px;
    }
  }

  /* ====== end ======= */

  /* ======= contact page ========= */

  #contact-page {
    .contact-details {
      .box span {
        font-size: 16px;
      }

      img {
        width: 64px;
      }
    }

    .form-section {
      .main-form {
        padding: 40px;
      }

      .map-col {
        img {
          width: 100%;
        }
      }
    }

    #contact-form {
      width: 100%;
    }

  }

}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (max-width: 992px) {

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 30px;
  }

  h4 {
    font-size: 18px;
  }

  header {
    .top-header {
      padding: 0px 30px;

      a {
        font-size: 12px;
        padding: 8px 5px;
      }

      .top-main {
        .shop-details {
          gap: 10px;
          font-size: 14px;

          .col
          i {
            margin-right: 5px;
          }
        ;
          margin-bottom: 10px;
        }

      }

    }

    .bottom-header {
      padding: 0px 30px;

      nav {
        a {
          font-size: 14px;
          font-weight: 600;
          padding: 0 4px;
        }
      }

      .call {
        padding: 20px 15px;

        p {
          font-size: 13px;
          font-weight: normal;
        }
      }
    }
  }

  .banner {
    padding: 60px 0px;

    .banner-content {
      gap: 12px;
    }
  }

  .services {
    padding: 40px 0px;
  }

  .cta {
    padding: 35px 0px;
  }

  .about-us {
    padding: 40px 0px;
  }

  footer {

    .container {
      .quick-link {
        padding-left: 20px;
        width: 15%;
      }

      .footer-content {
        width: 35%;
      }
    }


    p {
      font-size: 14px;
    }

    ul {
      a {
        font-size: 14px;
      }
    }
  }

  /* ===== end ==== */

  /* ======= contact page ======= */

  #contact-page {
    .contact-details {
      padding: 40px 0px;

      .container {
        gap: 20px;
      }

      .box {
        padding: 30px 15px;
      }

      .box span {
        font-size: 14px;
      }
    }

    #contact-form {
      label {
        font-size: 14px;
      }
    }

    .form-section {
      .main-form {
        padding: 26px;
      }
    }
  }

  #video-page {
    .video {
      .video-gallery {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;

        .video-file {
          width: 48%;

          video {
            width: 100%;
          }
        }
      }
    }
  }

  .video-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;

    .video-file {
      width: 32%;

      video {
        width: 100%;
      }
    }
  }

  /* ======= contact page end ======= */
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (max-width: 768px) {

  .section-des {
    max-width: 75%;
  }

  header {

    .top-header {
      display: none;
    }

    .primary-menu {
      /* display: none; */
      padding: 26px;
      position: fixed;
      background: #fff;
      width: 100%;
      max-width: 350px;
      right: -100%;
      top: 100px;
      transform: translateY(-10px);
      transition: all .2s ease-in;
      z-index: 1;
      height: 100vh;
      transition: .5s;
    }


    .primary-menu.active {
      right: 0%;
    }

    .bottom-header {
      z-index: 999;

      .logo {
        display: block;
        width: 50%;
      }

      .nav-bar {
        background-color: var(--black-color);
        padding: 0px;
      }

      .menu-icon {
        display: block;
        width: 30%;
        color: var(--white-color);
        text-align: end;
        font-size: 25px;
      }

      .call {
        display: none;
      }

      .whatsapp a i {
        color: #128C7E;
        font-size: 24px;
      }

      .whatsapp a img {
        width: 32px;
      }

      .whatsapp a {
        font-weight: 500;
        background-color: transparent;
        display: flex;
        align-items: center;
        gap: 6px;
        color: #000;
        padding: 0;
      }

      .primary-menu .primary-btn {
        display: block;
      }

      nav {
        ul {
          flex-direction: column;
        }

        .drop-down ul {
          position: relative;
        }

        .drop-down ul a {
          padding: 0px;
        }
      }

    }

  }

  .services {
    background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url(../upload/shap01.png);
    background-repeat: no-repeat;
    background-position: bottom left;
  }

  .why-choose-us {
    .choose-content {
      padding: 60px 25px 60px 30px;

      .choose-main {
        gap: 15px;
      }

      .choose-items {
        display: flex;
        flex-direction: column;
        gap: 15px;

        .items {
          width: 100%;
        }
      }
    }
  }

  footer {
    .container {
      gap: 33px;
      flex-wrap: wrap;

      .footer-about {
        width: 40%;
      }

      .quick-link {
        padding: 0px;
        width: 40%;
      }

      .footer-service {
        width: 40%;
      }

      .footer-content {
        width: 40%;

        a.footer-map {
          display: flex;
        }
      }
    }

    .footer-copyright {
      .container {
        display: block;
        flex-wrap: nowrap;
      }
    }
  }

  .footer-map {
    display: flex;
  }

  /* ====== inner page ===== */

  .inner-banner {
    padding: 70px 0px;
    color: var(--white-color);
  }

  /* ======= services page ========= */

  .services-list {
    padding: 40px 0px;
  }

  /* ===== contact page ======= */

  #contact-page {
    .contact-details {
      .container {
        gap: 20px;
        flex-wrap: wrap;
      }

      .container>a {
        width: 46%;
      }
    }
  }

  /* ===== galllery ====== */
  #gallery-page {
    .gallery {
      padding: 40px 0px;
    }
  }

  /* ====== video ===== */
  #video-page {
    .video {
      padding: 40px 0px;
    }
  }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (max-width: 650px) {

  h5 {
    font-size: 14px;
  }

  h2 {
    font-size: 26px;
  }

  .section-des {
    max-width: 90%;
  }

  header {
    .primary-menu {
      top: 70px;
    }
  }

  .banner {

    .banner-content {
      width: 100%;
    }

    .banner-img {
      display: none
    }
  }

  .services {
    .primary-btn {
      margin-top: 25px;
    }

    .item {
      width: 50%;

      .item-content {
        padding: 14px;

        a {
          width: 30px;
          height: 30px;
        }
      }
    }

    .item:nth-child(3) {
      display: none;
    }
  }

  .cta {
    .container {
      flex-direction: column;
      gap: 20px;
    }

    .cta-content {
      width: 100%;
      text-align: center;
    }
  }


  .about-us {
    .container {
      flex-direction: column-reverse;
    }

    .about-content {
      width: 100%;
    }

    .about-img {
      width: 100%;
    }
  }

  .why-choose-us {
    flex-direction: column;

    .choose-img {
      padding: 40px;
      width: 100%;
    }

    .choose-content {
      padding: 50px;
      width: 100%;
    }
  }

  footer {
    .container {
      gap: 15px;
      flex-direction: column;

      ul {
        margin-top: 10px;
      }

      img {
        width: 60%;
      }

      .footer-about {
        width: 100%;
        margin-top: 0px;
      }

      .quick-link {
        padding: 0px;
        width: 100%;
        margin-top: 0px;
      }

      .footer-service {
        width: 100%;
        margin-top: 0px;
      }

      .footer-content {
        width: 100%;
        margin-top: 0px;
      }
    }
  }


  /* ========= services page ====== */

  .services-list {
    li {
      width: 48%;
    }
  }


  /* ========= gallery ========== */

  #gallery-page {
    .gallery {
      .grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
      }
    }
  }

  /* ======= video page ===== */
  #video-page {
    .video {
      .video-file {
        width: 100%;
      }
    }
  }

  #video-page {
    .video {
      .video-gallery {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;

        .video-file {
          width: 100%;

          video {
            width: 100%;
          }
        }
      }
    }
  }

  /* === end ==== */
}

@media only screen and (max-width: 550px) {
  /* ====== contact page ====== */

  #contact-page {
    .contact-details {
      padding: 30px 0px;

      .container {
        gap: 15px;
      }

      .container>a {
        width: 100%;
      }
    }

    .form-section {
      flex-direction: column;

      .map-col,
      .main-form {
        width: 100%;
      }

      .main-form {
        padding: 26px 15px;
      }

      .map-col {
        .map-fram {
          height: 330px;
        }
      }
    }

    #contact-form {
      margin-top: 20px;

      .name {
        flex-direction: column;
      }

      .name>diV {
        width: 100%;
      }
    }
  }
}

@media only screen and (max-width: 430px) {

  p {
    font-size: 14px;
    line-height: 1.5;
  }

  h1 {
    font-size: 28px;
  }

  h3 {
    font-size: 22px;
  }

  h2 {
    font-size: 24px;
  }

  .container {
    padding: 0px 15px;
  }

  .primary-btn {
    a {
      padding: 12px 25px;
      font-size: 14px;
    }
  }

  header {
    .bottom-header {
      padding: 10px 15px;

      .logo {
        width: 70%;
      }
    }

    .primary-menu {
      top: 90px;
      width: 250px;
    }

  }

  .banner {
    padding: 40px 0px 0px;

    .banner-content {
      margin-bottom: 40px;
      padding: 35px 0 35px 25px;
      border-left: 10px solid #FFFFFF;

      img {
        width: 100px;
      }
    }

    .banner-content::before {
      height: 10px;
    }

    .banner-content::after {
      height: 10px;
    }
  }

  .services {
    padding: 30px 0px;
    background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url(../upload/shap01.png);
    background-repeat: no-repeat;
    background-position: bottom left;

    .services-items {
      margin-top: 30px;

      .item-col {
        gap: 12px;
      }
    }

    .item {
      .item-img {
        height: 120px;
      }

      .item-content {
        gap: 10px;
      }
    }

    .item-col2 {
      margin-top: 12px;
    }
  }

  .about-us {
    background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url(../upload/shap02.png);
    background-repeat: no-repeat;
    background-position: bottom right;

    .container {
      gap: 20px;
    }

    /* background: url(../upload/shap02.png); */
    .about-content {
      gap: 10px;
    }
  }

  .why-choose-us {
    .choose-img {
      .contact-details {
        width: 100%;
        padding: 20px;

        h3 {
          padding-bottom: 20px;
        }

        .content {
          padding-top: 20px;
        }
      }
    }

    .choose-content {
      padding: 30px 15px;
      gap: 10px;
    }
  }

  /* ====== inner page ===== */
  .inner-banner {
    padding: 50px 0px;
    color: var(--white-color);
  }

  /* ======== services page ========= */

  .services-list {
    padding: 30px 0px;

    li {
      a {
        padding: 12px;
        font-size: 14px;
      }
    }
  }


  /* =========== contact page ====== */

  #contact-page {
    .contact-details {
      padding: 30px 0px;

      .container {
        gap: 15px;
      }

      .container>a {
        width: 100%;
      }
    }

    .form-section {
      flex-direction: column-reverse;

      .map-col,
      .main-form {
        width: 100%;
      }

      .map-col {
        .map-fram {
          height: 330px;
        }
      }
    }

    #contact-form {
      margin-top: 20px;

      .name {
        flex-direction: column;
      }

      .name>diV {
        width: 100%;
      }
    }
  }


  /* ===== galllery ====== */
  #gallery-page {
    .gallery {
      padding: 30px 0px;
    }
  }

  /* ====== video ===== */
  #video-page {
    .video {
      padding: 30px 0px;
    }
  }

  /* ===== end ====== */
}

@media only screen and (max-width: 350px) {

  header {

    .primary-menu {
      top: 75px;
      width: 250px;
    }
  }

  .services {
    .services-items {
      width: 100%;

      .item-col {
        flex-direction: column;
      }

      .item {
        width: 100%;

        .item-img {
          height: 150px;
        }
      }
    }
  }
}


.banner-content h3{font-size: 56px;
                  text-transform: capitalize;
                  font-weight: 700;
                  line-height: 1.1;}

.seo-tag{ display:none; }  
.inner-banner h3{ font-size: 56px;
  text-transform: capitalize;
  font-weight: 700;
  line-height: 1.1; }                
.about-content h3{ font-size: 40px;
  text-transform: capitalize;
  font-weight: 700;
  line-height: 1.2; }
