:root {
  --primary_clr: #f9dd25;
  --secondary_clr: #2e3192;
}



@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&display=swap');

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "EB Garamond", serif;
  color: #000;
  text-transform: capitalize;
}
a{
  text-decoration: none;
}
@keyframes feather {
  0% {
    transform: rotate(340deg) translateY(5px);
  }

  100% {
    transform: rotate(359deg) translateY(-5px);
  }
}

.feather-img {
  animation: feather 3s ease-in-out 0.1s forwards infinite alternate;
}
body{
  background: var(--primary_clr);
}

/* preloader */
.preloader {
  width: 100%;
  height: 100vh;
  position: fixed;
  background: #f9dd25;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: 0.5s ease;

  .loading-text {
    transition: 0.5s;
  }
}

.preloader.load {
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;

  .loading-text {
    transform: scale(5);
  }
}

.loading-text {

  background: linear-gradient(90deg, #2e3192, rgb(0, 89, 255), #2e3192) -100%/ 200%;
  height: 200px;
  width: 200px;
  animation: shimmer 2s linear infinite
}

@keyframes shimmer {
  to {
    background-position: 100%
  }
}

/* preloader END */


@keyframes shine {
  0% {
    left: -80px;
  }

  40% {
    left: calc(100% + 20px);
  }

  100% {
    left: calc(100% + 20px);
  }
}


/* navbnar */
nav.navbar {
  z-index: 99;
  position: absolute;
  background: transparent;
  @media (max-width:768px) {
    background: white;
    border-radius: 0 0 15px 15px;
  }

  .navbar-collapse {
    justify-content: flex-end;

    .navbar-nav {
      .nav-item a {
        color: black;
        font-weight: 600;
        text-transform: capitalize;
      }
    }
  }

  .nav-logo {
    height: 60px;
  }

  button.btn {
    background: #198754;
    color: white;
    border-radius: 20px;
    padding: 5px 15px;
    position: relative;
    overflow: hidden;
  }

  button.btn::before {
    content: '';
    position: absolute;
    height: 250%;
    width: 40px;
    top: 0;
    left: -60px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: rotate(45deg) translateY(-35%);
    animation: shine 3s ease infinite;
  }
}

nav.navbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: white;
  z-index: -1;
  transform: translateY(-100%);
}

/* navbnar END */

@keyframes popup-down {
  0% {
    transform: translateY(80px) scale(0.5);
    opacity: 0;

  }

  10% {
    transform: translateY(0px) scale(1);
    opacity: 1;
  }

  25% {
    transform: translateY(10px) scale(1);
  }

  40% {
    transform: translateY(0px) scale(1);
    opacity: 1;
  }

  50% {
    transform: translateY(80px) scale(0.5);
    opacity: 0;
  }
}

.banner {
  background: var(--primary_clr);
  background: linear-gradient(90deg, rgb(239 218 75) 0%, rgb(237 225 148) 50%, rgb(239 217 70) 100%);
  min-height: 100vh;
  display: flex;
  padding: 0;
    background: url('../img/banner/bnr-img1.jpg') no-repeat;
  background-size: cover;
  background-position: bottom;
  background-attachment: fixed;
  @media(max-width:765px) {
    /* background: url('../img/banner/banner-bg-sm.png'); */
    background: url('../img/banner/bnr-img-sm.jpg') no-repeat;
    background-size: cover;
    background-position: bottom;
    /* background-attachment: fixed; */
    transition: 0.5s;
    /* padding-top: 100px; */
    min-height: 90vh;

  }

  .container {
    display: flex;
    /* align-items: flex-end; */
    justify-content: center;
    .row {
      gap: 20px;
    display: flex;
    padding-top: 115px;
    align-content: flex-start;
    
    .col-md-12{
      flex-direction: column;
    }
      h1 {
        font-size: 55px;
        color: var(--secondary_clr);
        @media(max-width:768px) {
          font-size: 50px;
          /* padding-top: 150px; */
        }
      }

      .btn {
        background: linear-gradient(45deg, #2e3192, #4e52cb);
        border: 0;
        padding: 10px 20px;
      }
    }
  }

  .img-col {
    margin-bottom: 100px;
    min-height: 250px;
    @media (max-width:768px) {
      min-height: 170px;
      margin-bottom: 80px;
    }
  }

  img.bnr-mattress,
  img.bnr-mattress2 {
    /* width: 40%; */
    height: 250px;
    position: absolute;
    z-index: 3;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    transform: translateY(80px) scale(1);
    opacity: 0;
    animation: popup-down 4s linear infinite;
    @media (max-width:768px) {
      height: 160px;
    }
  }

  img.bnr-mattress2 {
    animation-delay: 2s;
  }

  .product-stand-img {
    height: 100px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 1;
    @media (max-width:768px) {
      /* display: none; */
      height: 60px;
      bottom: -5px;
    }
  }

  .op-div {
    opacity: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 197px;
    background: linear-gradient(1deg, #f7dc28 20%, transparent);
  }
}

.banner.other-pages {
  min-height: 50vh;
  padding-bottom: 25px;
  /* h1{
    background: linear-gradient(45deg, #2e3192, #4e52cb);
    position: relative;
    background-clip: text;
    overflow: hidden;
    color: transparent;
  }
  h1::before{
    content: '';
      position: absolute;
      height: 250%;
      width: 40px;
      top: 0;
      left: -60px;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
      transform: rotate(45deg) translateY(-35%);
      animation: shine 3s ease infinite; 
  }*/
}

.ribbon {
  font-size: 28px;
  font-weight: bold;
  color: #fff;
  width: 100%;
}

.ribbon {
  --s: 1.8em;
  /* the ribbon size */
  --d: .8em;
  /* the depth */
  --c: .8em;
  /* the cutout part */

  padding: 0 calc(var(--s) + .5em) var(--d);
  line-height: 1.8;
  background:
    conic-gradient(at left var(--s) bottom var(--d),
      #0000 25%, #0008 0 37.5%, #0004 0) 0 /50% 100% no-repeat,
    conic-gradient(at right var(--s) bottom var(--d),
      #0004 62.5%, #0008 0 75%, #0000 0) 100%/50% 100% no-repeat;
  clip-path: polygon(0 var(--d), var(--s) var(--d), var(--s) 0, calc(100% - var(--s)) 0, calc(100% - var(--s)) var(--d), 100% var(--d), calc(100% - var(--c)) calc(50% + var(--d)/2), 100% 100%, calc(100% - var(--s) - var(--d)) 100%, calc(100% - var(--s) - var(--d)) calc(100% - var(--d)), calc(var(--s) + var(--d)) calc(100% - var(--d)), calc(var(--s) + var(--d)) 100%, 0 100%, var(--c) calc(50% + var(--d)/2));
  background-color: var(--secondary_clr);
  /* the main color */
  width: fit-content;
}

/* =======================content =========================== */
.content {
  /* background: linear-gradient(180deg, rgb(240, 215, 57) 0%, rgb(231, 217, 121) 50%, rgb(239 217 70) 100%); */
  
  background-size: 100% auto;
  /* width 100%, height auto */
  /* background-repeat: no-repeat; */
  padding-bottom: 10px;
  transform: translateY(-25px);
  border-radius: 25px 25px 0 0;
  z-index: 5;
  position: relative;
}

.content::before {
  /* content: ''; */
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  margin: auto;
  left: 0;
  right: 0;
  width: 95%;
  border-radius: 15px 15px 0 0;
  background: var(--secondary_clr);
  z-index: -1;
  transform: translateY(-100%);
}

/* about section home page */
@keyframes jello-horizontal {
  0% {
    transform: scale3d(1, 1, 1);
  }

  5% {
    transform: scale3d(1.05, 0.95, 1);
    /* slight stretch */
  }

  15% {
    transform: scale3d(0.95, 1.05, 1);
    /* slight squeeze */
  }

  25% {
    transform: scale3d(1.03, 0.97, 1);
  }

  35% {
    transform: scale3d(1, 1, 1);
    /* animation ends here */
  }

  55% {
    transform: scale3d(1, 1, 1);
  }

  66% {
    transform: scale3d(1, 1, 1);
  }

  100% {
    transform: scale3d(1, 1, 1);
    /* 1s pause */
  }
}

.home-abt-scn {
  padding-top: 50px !important;
  position: relative;
  min-height: 100vh;
  /* background: linear-gradient(180deg, #f9dd25, #d9c95e); */
  display: flex;
  align-items: center;

  .container {
    display: flex;
    justify-content: center;
  }

  .img-div {
    position: relative;
    height: fit-content;

    img.about-img-1 {
      width: 100%;

      /* padding-bottom: 20px; */
      border-radius: 15px;
    }

    img.about-pillow-img-2 {
      animation: jello-horizontal 2s infinite ease-in-out;
      position: absolute;
      right: 10%;
      bottom: 0;
      width: 40%;
    }
  }

  .cnt-col {
    display: flex;
    flex-direction: column;
    justify-content: center;

    h6 {
      color: var(--secondary_clr);
      font-size: 20px;
    }

    h2 {
      font-size: 40px;
    }

    .btn {
      width: fit-content;
      background: linear-gradient(45deg, #2e3192, #4e52cb);
      border: 0;
      padding: 10px 20px;
      color: white;
      border-radius: 20px;
      position: relative;
      overflow: hidden;
    }

    .btn::before {
      content: '';
      position: absolute;
      height: 250%;
      width: 40px;
      top: 0;
      left: -60px;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
      transform: rotate(45deg) translateY(-35%);
      animation: shine 3s ease infinite;
    }
  }

  .feather-img1 {
    position: absolute;
    top: 20%;
    right: 20px;
    height: 100px;
  }

  .feather-img2 {
    position: absolute;
    bottom: 0;
    left: 20px;

    height: 120px;
    z-index: -1;
  }
}

/* about section home page END */


/* features section home page  */
.features-scn {
  min-height: 100vh;
padding: 100px 0;
@media (max-width:768px) {
  padding: 50px 0;
}
  .d-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 10px;
@media (max-width:768px) {
      grid-template-columns: 1fr;
      grid-template-rows: auto;
  
}
    .item-1 {
      background: url(../img/features/shape-adaptability.jpg);
      background-repeat: no-repeat;
      background-size: cover !important;
    }

    .item-2 {
      background: url(../img/features/fabric.jpg);
      background-repeat: no-repeat;
      background-size: cover !important;
    }

    .item-3 {
      background: url(../img/features/air-circulation2.png);
      background-repeat: no-repeat;
      background-size: cover !important;
    }

    .item-4 {
      background: url(../img/features/sleep2.jpg);
      background-repeat: no-repeat;
      background-size: cover !important;
    }

    .card {
      min-height: 300px;
      background-size: 100%;
      background-position: center;
      border: 0;
      border-radius: 15px;
      padding: 10px;
      transition: 0.5s;
      .card-body {
        border: 2px solid white;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;

        .title-cnt-div{
          transform: translateY(100%);
          position: relative;
          transition: 0.5s;
        }
        .card-title {
          color: #ffffff;
          /* font-weight: bold; */
          font-size: 35px;
          text-shadow: 4px 2px 2px #000000b3;
          position: absolute;
          top: 0;
          left: 0;
          transform: translateY(-100%);
        }
        .cnt{
          opacity: 0;
          transition: 0.5s;
          color: white;
        }
      }
    }
    .card:hover{
      background-size: 120%;
      padding: 20px;
      .title-cnt-div{
        transform: translateY(0%);
        .cnt{
          opacity: 1;
        }
      }
    }
  }
}

/* features section home page END */

/* why choose us section home page */
.y-chsus-scn {
  min-height: 100vh;
  padding: 150px 0;
  @media (max-width:768px) {
    padding: 50px 0;
    
  }
   h6 {
      color: var(--secondary_clr);
      font-size: 20px;
    }

    h2 {
      font-size: 40px;
    }
  .cards-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 10px;
    margin-top: 10px;
    @media (max-width:768px) {
      grid-template-columns: 1fr;
      grid-template-rows: auto;
      
    }
    .card{
      background: transparent;
      border: 0;
      .icon-div{
        width: 60px;
        height: 60px;
        padding: 10px;
        border-radius: 5px;
        margin-bottom: 10px;
        img{
          width: 100%;
          height: 100%;
          object-fit: contain;
          filter: invert(100%) sepia(95%) saturate(1%) hue-rotate(180deg) brightness(105%) contrast(100%);
        }
      }
    }
    .card:nth-child(odd) .icon-div{
      background: linear-gradient(45deg, #2e3192, #4e52cb);
    }
    .card:nth-child(even) .icon-div{
      background: linear-gradient(45deg, #2e3192, #4e52cb);
    }
  }
  .video-div{
        border-radius: 15px;
    overflow: hidden;
    video{
      border-radius: 15px;
    }
  }
}

/* why choose us section home page END */



/* ======================= home page image section  =========================== */
.img-section1{
  overflow: hidden;
  padding: 10px;
  img{
    border-radius: 50px;
  }
  @media (max-width:768px) {
    img{
      border-radius: 20px;
      height: 400px;
      object-fit: cover;
      object-position: center;
    }
  }
}
/* ======================= home page image section  END=========================== */


/* =============== homepage product section =============== */
.home_prdts {
  @media(max-width: 760px) {
    h3 {
      text-align: center;
    }

    .tab {
      display: flex;
      justify-content: center;
    }


  }

  .tab {
    overflow: hidden;
    margin-bottom: 2rem;

  }
h6 {
      color: var(--secondary_clr);
      font-size: 20px;
    }
  h2 {
    /* margin-bottom: 2rem; */
    font-size: 40px;
    color: var(--primary);
  }

  .col-md-6 {
    margin-bottom: 2rem;

  }

  .card {
    .card-footer {
      background: transparent;
      border-top: 0;
      padding: 0;
    }

    /* text-align: center; */
    border: 0;
    background: transparent;
    /* box-shadow: 0 1px 2px #3c40434d, 0 2px 6px 2px #3c404326; */
    height: 100%;

    .img_div {
      /* padding: 10px; */
      height: 420px;
      width: 100%;
      position: relative;
      margin: auto;
      img{
        height: 100%;
        width: 100%;
      }

      span {
        position: absolute;
        top: 20px;
        right: 20px;
        background: white;
        padding: 4px 10px;
        border-radius: 5px;
        color: #cbab02;
        font-size: 0.8rem;
        text-transform: uppercase;

      }

      img {
        /* border-radius: 5px; */
      }

    }

    h4 {
      font-size: 1.2rem;
      margin: 0.5rem 0;
      letter-spacing: 2px;
      color: var(--primary);
    }

    h5 {
      font-size: 1rem;
      color: var(--primary);
      margin: 1rem 0;
      width: max-content;
      background: var(--secondary);
      padding: 2px 15px;
      border-radius: 10px;
      text-transform: capitalize;
    }

    p {
      display: -webkit-box;
      -webkit-box-orient: vertical;
      overflow: hidden;
      -webkit-line-clamp: 2;
      letter-spacing: 1px;
    }

    .stars {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      margin-bottom: -15rem;

      margin: auto;

      /* padding: 10px 20px; */
      border-radius: 7px;

      i {
        color: #D6B75B;
        font-size: 0.75rem;
        margin-right: 5px;
      }
    }

    .btn_group {
      display: flex;
      align-items: center;
      justify-content: space-between;

      a:nth-child(1) {
        position: relative;
        text-transform: uppercase;
        /* width: 100%; */
        /* border-radius: 5px; */
        /* background: linear-gradient(-45deg, #353896 40%, #656fd4 50%, #353896 60%); */
        padding: 7px 21px;
        color: var(--primary);
        z-index: 2;
        letter-spacing: 2px;
        font-size: 13px;
        font-weight: bold;
        border: 1px solid;
        border-radius: 15px;

      }

      a:nth-child(2) {
        position: relative;
        text-transform: capitalize;
        width: 100%;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        /* border-radius: 5px; */
        background: linear-gradient(-45deg, #353896 40%, #656fd4 50%, #353896 60%);
        padding: 12px 5px;
        color: white;
        z-index: 2;
        letter-spacing: 2px;
        font-size: 13px;
        font-weight: bold;

      }

    }

  }

  .tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 10px;
    transition: 0.3s;
    border: 1px solid var(--primary);
    color: var(--primary);
    margin: 0 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
  }

  .tab button:hover,
  .tab button.active {
    background-color: var(--primary);
    color: white;
  }


  .tabcontent {
    display: none;
    padding: 6px 12px;
    border-top: none;
  }

  .tabcontent {
    animation: fadeEffect 1s;

  }

}
.home-product-card {
    width: 100%;
    position: relative;
    box-shadow: 0 2px 7px #dfdfdf;
    margin: 50px auto;
    background: #fafafa;
    .badge {
    position: absolute;
    left: 0;
    top: 20px;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    background: rgb(55, 0, 255);
    color: #fff;
    padding: 8px 10px;
    border-radius: 0 5px 5px 0;
}

.product-tumb {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
    /* padding: 50px; */
    background: #f0f0f0;
}

.product-tumb img {
    width: 100%;
    height: 100%;
}

.product-details {
    padding: 30px;
}

.product-catagory {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ccc;
    margin-bottom: 5px;
}

.product-details h4 a {
    font-weight: 500;
    display: block;
    margin-bottom: 18px;
    text-transform: uppercase;
    color: #363636;
    text-decoration: none;
    transition: 0.3s;
}

.product-details h4 a:hover {
    color: #fbb72c;
}

.product-details p {
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 18px;
    color: #999;
    display: -webkit-box;
            -webkit-box-orient: vertical;
            overflow: hidden;
            -webkit-line-clamp: 2;
}

.product-bottom-details {
    overflow: hidden;
    border-top: 1px solid #eee;
    padding-top: 20px;
      display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 5px;
}

.product-bottom-details div {
    /* float: left; */
    width: 50%;
}

.product-price {
    font-size: 18px;
    color: #fbb72c;
    font-weight: 600;
}

.product-price small {
    font-size: 80%;
    font-weight: 400;
    text-decoration: line-through;
    display: inline-block;
    margin-right: 5px;
}

.product-links {
    text-align: right;
}

.product-links a {
    display: inline-block;
    margin-left: 5px;
    color: #e1e1e1;
    transition: 0.3s;
    font-size: 17px;
}

.product-links a:hover {
    color: #fbb72c;
}
.btn {
      width: fit-content;
      background: linear-gradient(45deg, #2e3192, #4e52cb);
      border: 0;
      padding: 10px 20px;
      color: white;
      border-radius: 20px;
      position: relative;
      overflow: hidden;
    }

    .btn::before {
      content: '';
      position: absolute;
      height: 250%;
      width: 40px;
      top: 0;
      left: -60px;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
      transform: rotate(45deg) translateY(-35%);
      animation: shine 3s ease infinite;
    }
}

@keyframes fadeEffect {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
/* =============== homepage product section END =============== */

/* =======================footer=========================== */
.footer {
  border-radius: 10px;
  background: var(--secondary_clr);
  overflow: hidden !important;
  /* max-width: 1140px; */
  margin: 0 auto;
  padding: 60px 20px 20px 20px;
  background: var(--secondary_clr);
  color: white;
  /* margin-top: 5rem; */
  margin: 10px;

  @media(max-width:765px) {

    text-align: center;

  }

}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

@media (min-width: 765px) {

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-title {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--secondary);
  letter-spacing: 1px;
  text-transform: capitalize;
}

.footer-text {
  font-size: 14px;

  line-height: 1.6;
}

.footer-list {
  list-style: none;
  padding: 0;
  font-size: 14px;
  line-height: 2;

  a {
    text-transform: capitalize;
    color: white;
  }
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  font-size: 14px;
  line-height: 2;
}

.footer-contact-list i {
  margin-right: 8px;
}

.footer-divider {
  border: none;
  border-top: 1px solid #3B4A66;
  margin-bottom: 24px;
}

.footer-copy {
  @media(max-width:765px) {
    margin-bottom: 2rem;

    a {
      font-size: 12px;
    }
  }

  a {
    text-transform: capitalize;
    color: white;
  }
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
  justify-content: space-between;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials button {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(175deg, #0007ce 0%, #171a6c 100%);
  color: white;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;

  a {
    color: white;
  }
}

.footer-socials button:hover {
  background-color: #364a6a;
}


/* =======================footer end=========================== */


/* ========================contact================= */

.contact {
  .container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 2rem;

    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .form {
    width: 100%;
    max-width: 820px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
    z-index: 1;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-form {
    background-color: var(--secondary_clr);
    position: relative;
  }







  form {
    padding: 2.3rem 2.2rem;
    z-index: 10;
    overflow: hidden;
    position: relative;
  }

  .title {
    color: #fff;
    font-weight: 500;

    line-height: 1;
    margin-bottom: 0.7rem;
  }

  .input-container {
    position: relative;
    margin: 1rem 0;
  }

  .input {
    width: 100%;
    outline: none;
    border: 2px solid #fafafa;
    background: none;
    padding: 0.6rem 1.2rem;
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border-radius: 5px;
    transition: 0.3s;
  }

  textarea.input {
    padding: 0.8rem 1.2rem;
    min-height: 150px;
    border-radius: 5px;
    resize: none;
    overflow-y: auto;
  }

  .input-container label {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    padding: 0 0.4rem;
    color: #fafafa;
    font-size: 0.9rem;
    font-weight: 400;
    pointer-events: none;
    z-index: 1000;
    transition: 0.5s;
  }

  .input-container.textarea label {
    top: 1rem;
    transform: translateY(0);
  }

  .btn {
    padding: 0.6rem 1.3rem;
    background-color: #fff;
    border: 2px solid #fafafa;
    font-size: 0.95rem;
    color: black;
    line-height: 1;
    border-radius: 5px;
    outline: none;
    cursor: pointer;
    transition: 0.3s;
    margin: 0;
    width: 100%;
  }

  .btn:hover {
    background-color: transparent;
    color: #fff;
  }

  .input-container span {
    position: absolute;
    top: 0;
    left: 25px;
    transform: translateY(-50%);
    font-size: 0.8rem;
    padding: 0 0.4rem;
    color: transparent;
    pointer-events: none;
    z-index: 1;
  }

  .input-container span:before,
  .input-container span:after {
    content: "";
    position: absolute;
    width: 10%;
    opacity: 0;
    transition: 0.3s;
    height: 5px;
    background-color: #1abc9c;
    top: 50%;
    transform: translateY(-50%);
  }

  .input-container span:before {
    left: 50%;
  }

  .input-container span:after {
    right: 50%;
  }

  .input-container.focus label {
    top: 0;
    transform: translateY(-50%);
    left: 25px;
    font-size: 0.8rem;
  }

  .input-container.focus span:before,
  .input-container.focus span:after {
    width: 50%;
    opacity: 1;
  }

  .contact-info {
    padding: 2.3rem 2.2rem;
    position: relative;
  }

  .contact-info .title {
    color: black;
  }

  .text {
    color: #333 !important;
    margin: 1.5rem 0 2rem 0;
    font-size: 16px !important;
  }

  .information {
    display: flex;
    color: #222020 !important;
    margin: 0.7rem 0;
    align-items: flex-start;
    font-size: 0.95rem;

    p {
      color: #222020 !important;
    }
  }

  .information i {
    color: var(--rose);
    transform: translateY(4px);
    margin-right: 8px;
  }

  .information p {
    margin-bottom: 0;
  }

  .icon {
    width: 28px;
    margin-right: 0.7rem;
  }

  .social-media {
    padding: 2rem 0 0 0;
  }

  .social-media p {
    color: #222020 !important;
  }

  .social-icons {
    display: flex;
    margin-top: 0.5rem;
  }

  .social-icons a {
    width: 35px;
    height: 35px;
    border-radius: 5px;
    background: linear-gradient(45deg, #a95307, #ffb138);

    color: #fff;
    text-align: center;
    line-height: 35px;
    margin-right: 0.5rem;
    transition: 0.3s;
  }

  .social-icons a:hover {
    transform: scale(1.05);
  }




  .square {
    position: absolute;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(181%, 11%);
    opacity: 0.2;
  }

  @media (max-width: 850px) {
    .form {
      grid-template-columns: 1fr;
    }

    .contact-info:before {
      bottom: initial;
      top: -75px;
      right: 65px;
      transform: scale(0.95);
    }

    .contact-form:before {
      top: -13px;
      left: initial;
      right: 70px;
    }

    .square {
      transform: translate(140%, 43%);
      height: 350px;
    }

    .big-circle {
      bottom: 75%;
      transform: scale(0.9) translate(-40%, 30%);
      right: 50%;
    }

    .text {
      margin: 1rem 0 1.5rem 0;
    }

    .social-media {
      padding: 1.5rem 0 0 0;
    }
  }

  @media (max-width: 768px) {}

  @media (max-width: 480px) {


    .container {
      padding: 1.5rem;
    }

    .contact-info:before {
      display: none;
    }

    .square,
    .big-circle {
      display: none;
    }

    form,
    .contact-info {
      padding: 1.7rem 1.6rem;
    }

    .text,
    .information,
    .social-media p {
      font-size: 0.8rem;
    }

    .title {
      font-size: 1.15rem;
    }

    .social-icons a {
      width: 30px;
      height: 30px;
      line-height: 30px;
    }

    .icon {
      width: 23px;
    }

    .input {
      padding: 0.45rem 1.2rem;
    }

    .btn {
      padding: 0.45rem 1.2rem;
    }
  }

}

/* ======================contact================ */
/* ================contact map============================ */
.contact_map {
  h2 {
    text-align: center;
    margin-bottom: 2rem;
    /* color: rgb(255, 255, 255); */
    font-size: 40px;
  }
}

/* ================contact map============================ */


/* ============================about content======================== */
.about {
  min-height: 100vh;
  @media(max-width:765px) {
    text-align: center;

    .cnt_div {
      margin-bottom: 2rem;
    }

  }

  .col-md-6 {
    display: flex;
    align-items: center;
  }

  .img_div {
    /* border-radius: 15px; */
    overflow: hidden;
    img{
      border-radius: 15px;
    }
  }
}


/* ==============================about content end=========================== */
/* ========================mission=============================== */
.mission::before {
  /* min-height: 100vh; */
  
  content: "";
  position: absolute;
  width: 100%;
  height: 140px;
  background: #171a6c91;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.mission {
  padding: 20px auto;
  min-height: 100vh;
  display: flex;
    align-items: center;
  @media(max-width: 765px) {
    .container {
      height: auto !important;
    }
  }

  position: relative;

  .container {
    height: 50vh;
    display: flex;
    align-items: center;
    padding: 1rem;
    background: white;
    box-shadow: 0 1px 2px #3c40434d, 0 2px 6px 2px #3c404326;
    border-radius: 15px;

  }

  .cnt_div {
    text-align: center;
    padding: 1.5rem;
  }

}

/* ========================mission end=============================== */


/* =======================gallery================== */
.gallery .container{
  padding: 10vh 0;
}
.gallery ul {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.gallery ul li img {
  display: block;
  height: auto;
  max-width: 100%;
}

.gallery ul {
  columns: 18rem;
  column-gap: 1rem;
}

.gallery ul li {
  break-inside: avoid;
  margin: 0 0 1rem;
  /* border-radius: 10px; */
  overflow: hidden;
}

/* ====================gallery====================== */


/* ============================product section======================== */
.product_sec {
  .col-md-6 {
    margin-bottom: 3rem;
  }

  .card {
    .card-footer {
      background: transparent;
      border-top: 0;
      padding: 0;
    }

    /* text-align: center; */
    border: 0;
    background: transparent;
    /* box-shadow: 0 1px 2px #3c40434d, 0 2px 6px 2px #3c404326; */
    height: 100%;

    .img_div {
      /* padding: 10px; */
      height: 420px;
      width: 100%;
      position: relative;
      margin: auto;
      background: white;
      span {
        position: absolute;
        top: 20px;
        right: 20px;
        background: white;
        padding: 4px 10px;
        border-radius: 5px;
        color: #cbab02;
        font-size: 0.8rem;
        text-transform: uppercase;

      }

      img {
        /* border-radius: 5px; */
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

    }

    h4 {
      font-size: 1.2rem;
      margin: 0.5rem 0;
      letter-spacing: 2px;
      color: var(--primary);
    }

    h5 {
      font-size: 1rem;
      color: var(--primary);
      margin: 1rem 0;
      width: max-content;
      background: var(--secondary);
      padding: 2px 15px;
      border-radius: 10px;
      text-transform: capitalize;
    }

    p {
      display: -webkit-box;
      -webkit-box-orient: vertical;
      overflow: hidden;
      -webkit-line-clamp: 2;
      letter-spacing: 1px;
    }

    .stars {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      margin-bottom: -15rem;

      margin: auto;

      /* padding: 10px 20px; */
      border-radius: 7px;

      i {
        color: #D6B75B;
        font-size: 0.75rem;
        margin-right: 5px;
      }
    }

    .btn_group {
      display: flex;
      align-items: center;
      justify-content: space-between;

      a:nth-child(1)::before {
      content: '';
      position: absolute;
      height: 250%;
      width: 40px;
      top: 0;
      left: -60px;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
      transform: rotate(45deg) translateY(-35%);
      animation: shine 3s ease infinite;
    }
      a:nth-child(1) {
      
      width: fit-content;
      background: linear-gradient(45deg, #2e3192, #4e52cb);
      border: 0;
      padding: 10px 20px;
      color: white;
      border-radius: 20px;
      position: relative;
      overflow: hidden;
      text-decoration: none;
      text-transform: capitalize;

      }

      a:nth-child(2) {
        position: relative;
        text-transform: capitalize;
        width: 100%;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        /* border-radius: 5px; */
        background: linear-gradient(-45deg, #353896 40%, #656fd4 50%, #353896 60%);
        padding: 12px 5px;
        color: white;
        z-index: 2;
        letter-spacing: 2px;
        font-size: 13px;
        font-weight: bold;

      }

    }

  }
}
/* ============================product section end======================== */


/* ============================product view======================== */
.product_view {
  @media(max-width:765px) {
    /* text-align: center; */

    ul {
      li {
        display: flex;
        justify-content: center;
      }
    }

    .stars {
      justify-content: flex-start;
      margin-top: 1rem;
    }

    .product_vw {
      flex-direction: column;
      background: transparent !important;
    }


  }

  @media(min-width:765px) {
    .stars {
      justify-content: flex-start;
    }

    .img_div {
      /* width: 800px; */
    }

    h4 {
      font-size: 1.8rem;
    }

    .cnt_div {
      padding: 2rem;
    }

  }

  .product_vw {
    display: flex;
    background: white;
    border-radius: 5px;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
    flex-direction: column;
  }

  .col-lg-6 {
    display: flex;
    align-items: flex-start;
  }

  .cnt_div {
    /* padding: 2rem; */
    width: 100%;
  }

  .stars {
    display: flex;
    align-items: center;

    margin-bottom: 1rem;

    i {
      color: #D6B75B;
      font-size: 1.2rem;
      margin-right: 5px;
    }
  }

  .img_div {
    /* padding: 5px; */

    overflow: hidden;
    width: 100%;
    height: 500px;
    background-size: cover;
    
    img{
      width: 100%;
      height: 100%;
      object-fit: contain;
          /* background: linear-gradient(45deg, #575792, #5851dd); */
              backdrop-filter: blur(4px);
    }
    /* width: 800px; */

    /* img {
      border-radius: 1rem;
    } */

  }

  p {
    font-size: 1rem;
  }

  h4 {
    /* font-size: 1.8rem; */
    color: black;
    text-transform: capitalize;
  }

  .feature-icon {
    width: 2rem;
    height: 2rem;
    background-color: #050bba;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(79, 70, 229, 0.4);
    color: white;
    font-size: 1rem;
  }

  h5 {
    /* padding-left: 1rem; */
    margin-bottom: 0;
  }

  h6 {
    font-size: 1rem;
    font-family: "sansita" !important;
    color: var(--secondary);
    text-transform: uppercase;
  }

  .icn {
    width: 30px;

    margin-right: 5px;

    img {
      filter: invert(96%) sepia(36%) saturate(4687%) hue-rotate(312deg) brightness(89%) contrast(87%);
      height: 20px;
    }
  }

  ul {
    list-style: none;
    padding: 0;
    /* display: flex;
    flex-wrap: wrap; */
    /* width: 350px; */


    li {
      display: flex;
      align-items: center;
      margin: 5px;
      padding: 10px 5px;
      /* width: max-content; */
      border-bottom: 1px solid #bebebe;
      width: 250px;
      font-size: 14px;
      justify-content: flex-start;
    }
  }

  a {
    text-transform: capitalize;
    color: var(--secondary);
    padding: 10px;
    border: 2px solid;
  }

}

/* ============================product view end======================== */