@import url('fonts.css');

/* Top Header Start */
  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body, html {
      height: 100%;
      font-family: 'Zawya Pro';
    }

    .banner {
      height: 100vh;
      background-image: url('images/bg.png');
      background-size: cover;
      background-position: center;
    }
    .banner-inner{
        padding: 200px 0 0 130px;
        color: white;
        width: 60%;
    }
    .banner-inner .banner-header{
        font-size: 50px;
    }
    .banner-inner .banner-sub-header{
        font-size: 25px;
        padding-top: 50px;
    }

    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      height: 55px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 0 0 15px;
      /* background-color: transparent; */
      color: white;
      transition: background-color 0.4s ease, color 0.4s ease;
      z-index: 1000;
      border-bottom: 1px solid gray;
      background-color: white;
      color: black;
    }

    /* header.scrolled {
      background-color: white;
      color: black;
      border-bottom: 1px solid gray;
    } */

    .header-left {
      display: flex;
      align-items: center;
      gap: 40px;
      height: 100%;
    }

    .logo {
      font-size: 24px;
      font-weight: bold;
      color: inherit;
      transition: color 0.4s ease;
      width: 150px;
      height: 100%;
      border-right: 1px solid gray;
    }

    /* header.scrolled .logo{
      border-right: 1px solid gray;
    } */

    .logo img {
      max-width: 100%;
      height: auto;
      padding: 12px 5px;
    }

    .top-info-bar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 30px;
        color: #005000;
        margin-left: 138px;
        display: flex;
        align-items: center;
        padding-left: 15px; /* Aligns with header padding */
        font-size: 14px;
        z-index: 1001;
    }
    .top-info-bar span{
      padding-right: 30px;
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 35px;
    }

    nav ul li a {
      text-decoration: none;
      color: #005000;
      font-weight: bold;
      transition: color 0.3s ease;
      font-family: 'Zawya Pro CondensedThin';
      font-size: 18pt;
    }

    nav ul li a i{
      margin-left: 3px;
    }

    /* nav ul li {
      border-bottom: 3px solid transparent;
    } */

    nav ul li a:hover,
    nav ul li a.active {
      /* color: #005000; */
      border-bottom: 3px solid #d6a634;
          padding-bottom: 4px;
    }

    nav ul li{
      position: relative;
    }

    nav ul li:hover ul.submenu {
      display: block;
    }

    /* Submenu */
    ul.submenu {
      list-style: none;
      position: absolute;
      top: 100%;
      left: 0;
      background: #444;
      display: none;
      min-width: 160px;
      z-index: 1000;
    }

    ul.submenu li a {
      display: block;
      padding: 10px;
      color: white;
      text-decoration: none;
      line-height: 1;
      font-weight: 100;
    }

    ul.submenu li:hover {
      background: #555;
    }

    

    .header-right {
    display: flex;
    align-items: center;
    gap: 0; /* No gap between dropdown and button */
    height: 100%;
    }

    .language-select {
    font-family: 'Zawya Pro CondensedThin';
    font-size: 25px;
    margin: 0px 10px;
    padding-left: 10px;
    height: 100%;
    border: none;
    /*background-color: rgba(0, 0, 0, 0.3);  translucent when transparent header */
    color: inherit;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    border-left: 1px solid gray;
    font-family: 'Zawya Pro CondensedMedium';
    font-size: 25px;
    color: #005000;
    }

    /* header.scrolled select {
    background-color: #e6e6e6;
    color: black;
    border-left: 1px solid gray;
    } */

  .contacts-btn {
      font-family: 'Zawya Pro CondensedThin';
      letter-spacing: 3px;
      font-size: 15px;
      position: relative;
      background-color: #d19a1d;
      color: white;
      margin-right: 10px;
      padding: 0px 10px;
      cursor: pointer;
      overflow: hidden;
      border:none;
      z-index: 1;
      transition: color 0.3s;
    }

    .contacts-btn::before {
      content: '';
      position: absolute;
      top: -100%;
      left: 0;
      width: 100%;
      height: 100%;
      background: #012f0b;
      z-index: -1;
      transition: top 0.3s;
    }

    .contacts-btn:hover::before {
      top: 0;
    }

    .contacts-btn:hover {
      color: white;
    }

   .proposal-btn {
    font-family: 'Zawya Pro CondensedThin';
    letter-spacing: 3px;
    font-size: 20px;
  position: relative;
  overflow: hidden;
  height: 100%;
  padding: 0 20px;
  background-color: #d19a1d;
  color: #ffffff;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 0;
}
/* Background layer for hover effect */
.proposal-btn::before {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #012f0b;
  z-index: -1;
  transition: top 0.4s ease;
}

/* Slide black background from top on hover */
.proposal-btn:hover::before {
  top: 0;
}

/* Change text color on hover */
.proposal-btn:hover {
  color: white;
}

/* Top Header End */

/* Hamburger Menu Start*/
    .hamburger-container {
      padding: 20px;
      display: none;
    }

   .hamburger-container .hamburger{
      cursor: pointer;
      width: 30px;
      height: 24px;
      position: relative;
    }

    .hamburger-container .hamburger span {
      position: absolute;
      height: 4px;
      width: 100%;
      background-color: #ce942d;
      border-radius: 2px;
      transition: all 0.4s ease;
    }

    .hamburger-container .hamburger span:nth-child(1) {
      top: 0;
    }

    .hamburger-container .hamburger span:nth-child(2) {
      top: 10px;
    }

    .hamburger-container .hamburger span:nth-child(3) {
      top: 20px;
    }


    @media (max-width: 1199px) {
      .menu{
        display: none;
      }
      .hamburger-container {
        display: block;
      }
    }


    @media (max-width: 991px) {
        .top-info-bar{
          display: none;
        }
    }

/* Hamburger Menu End*/

/* Sidebar Start*/

        /* Sidebar */
    .left-bar {
      font-family: 'Zawya Pro CondensedThin';
      font-size: 26px;
      font-weight: 100;
      position: fixed;
      top: 55px;
      left: 0;
      width: 50px;
      height: calc(100% - 55px);
      background-color: transparent;
      display: flex;
      align-items: center;
      justify-content: center;
      writing-mode: vertical-rl;
      text-orientation: mixed;
      transform: rotate(180deg);
      color: #000000;
      transition: background-color 0.4s ease, color 0.4s ease;
      z-index: 999;
      border-left: 1px solid gray;
    }
    .social-icons{
      top: 25px;
      position: absolute;
      transform: rotate(180deg);
    }

    .social-icons a{
      text-decoration: none;
      padding-bottom: 10px;
    }

    .social-icons a i{
      color: #000000;
      font-size: 20px;
    }

    
    /* .left-bar {
      position: fixed;
      top: 55px;
      left: 0;
      width: 50px;
      height: calc(100% - 55px);
      display: flex;
      align-items: center;
      justify-content: center;
      writing-mode: vertical-rl;
      text-orientation: mixed;
      font-weight: bold;
      color: white;
      transition: background-color 0.4s ease, color 0.4s ease;
      z-index: 999;
      border-right: 1px solid gray;
      background-color: white;
      color: black;
    }

    .left-bar a i{
      color: #005000;
      font-size: 25px;
      padding-bottom: 15px;
    } */

    /* .left-bar.scrolled {
      background-color: white;
      color: black;
      border-left: 1px solid gray;
    } */
    /* Sidebar End*/

        
 .body{
    padding: 70px 0 0 50px;
 }

  /* Service Popup Style Start*/
    .popup-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      display: none;
      z-index: 1000;
      color: white;
    }

    .popup-overlay.active {
      display: block;
    }

    .popup-section {
      position: absolute;
      width: 33.3333%;
      height: 100%;
      top: -100%;
      background-color: #172624;
      background-size: cover;
      transition: top 0.6s ease;
    }

    .section-left { left: 0; background-position: left center; }
    .section-middle { left: 33.3333%; background-position: center center; }
    .section-right { right: 0; background-position: right center; }

    .popup-overlay.show .section-right { top: 0; transition-delay: 0s; }
    .popup-overlay.show .section-middle { top: 0; transition-delay: 0.2s; }
    .popup-overlay.show .section-left { top: 0; transition-delay: 0.4s; }

    .popup-overlay.popup-hide .section-left { top: -100%; transition-delay: 0s; }
    .popup-overlay.popup-hide .section-middle { top: -100%; transition-delay: 0.2s; }
    .popup-overlay.popup-hide .section-right { top: -100%; transition-delay: 0.4s; }

    .popup-overlay.popup-hide .close-btn{
      top: -100%; transition-delay: 0.5s;
    }

    /* Form Container */
    .form-container {
      position: absolute;
      top: -100%;
      left: 0;
      width: 66.6666%;
      height: 100%;
      padding: 40px;
      box-sizing: border-box;
      overflow-y: scroll;
      scrollbar-width: none;
      z-index: 1100;
      color: white;
      display: flex;
      flex-direction: column;
      gap: 20px;
      transition: top 0.8s ease;
    }

    /* Hide scrollbar for Chrome, Edge, and Safari */
    .form-container::-webkit-scrollbar {
        display: none;
    }

    .popup-overlay.show .form-container {
      top: 0;
      transition-delay: 0.6s;
    }

    .popup-overlay.popup-hide .form-container {
      top: -100%;
      transition-delay: 0s;
    }

    .form-container h2 {
      font-size: 28px;
    }
    .form-row {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }

    .form-row input, .form-row textarea {
      flex: 1 1 45%;
      padding: 12px;
      font-size: 18px;
      background: transparent;
      border: 2px solid white;
      color: white;
      border-radius: 5px;
    }

    textarea {
      flex: 1 1 100%;
    }

    .form-container button {
      padding: 12px;
      font-size: 18px;
      background-color: #d49a2b;
      border: none;
      color: white;
      border-radius: 5px;
      cursor: pointer;
      width: 200px;
      align-self: flex-start;
    }

    .form-container button:hover {
      background-color: #005000;
    }

    /* Info Section */
    .info-container {
      position: absolute;
      top: -100%;
      right: 0;
      width: 33.3333%;
      height: 100%;
      padding: 150px 45px 0 0;
      box-sizing: border-box;
      z-index: 1100;
      font-size: 24px;
      line-height: 1.8;
      text-align: right;
      transition: top 0.8s ease;
    }

    .popup-overlay.show .info-container {
      top: 0;
      transition-delay: 0.8s;
    }

    .popup-overlay.popup-hide .info-container {
      top: -100%;
      transition-delay: 0s;
    }

    .form-container::-webkit-scrollbar {
      width: 8px;
    }
    .form-container::-webkit-scrollbar-thumb {
      background-color: white;
      border-radius: 4px;
    }

    @media (max-width: 768px) {
      .form-row {
        flex-direction: column;
        flex-wrap: nowrap;
      }

      .form-container, .info-container {
        width: 100%;
        text-align: left;
      }

      .info-container {
        display: none;
      }

      .form-container button {
        width: 100%;
      }
    }

    .input-group {
  position: relative;
  margin-bottom: 24px;
  flex: 1 1 45%;
}

.input-group input,
.input-group textarea,
.input-group select {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #d19a1d;
  color: #fff;
  width: 100%;
  padding: 0px 2px 8px 2px;
  font-size: 13px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.3s ease, color 0.3s ease;
  border-radius: 0%;
}

.input-group select .option{
  color: black;
}

.tc-checkbox{
  padding-right: 5px;
}

.input-group label {
    position: absolute;
    top: 16px;
    left: 0px;
    color: #7d8c7a;
    font-size: 12px;
    pointer-events: none;
    transition: all 0.3s ease;
}

/* When focused or has value */
.input-group input:focus + label,
.input-group input:not(:placeholder-shown) + label,
.input-group textarea:focus + label,
.input-group textarea:not(:placeholder-shown) + label {
  top: -17px;
  font-size: 14px;
  color: white;
}

.input-group input:focus,
.input-group textarea:focus {
  border-bottom-color: white;
  color: white;
}

    /* Service Popup Style end*/

  /* Footer Start */
   .contact-footer {
    background-color: #002600;
    color: #ffffff;
    padding: 3rem 4rem 1rem 4rem;
    z-index: 1;
    position: relative;
  }

  .contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10rem;
    margin: auto;
  }

  .contact-left {
    flex: 1 1 350px;
  }

  .contact-left h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 1rem;
  }

  .contact-left p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .enquiry-btn {
    display: inline-block;
    background-color: #d49a2b;
    color: #fff;
    padding: 0.9rem 1.8rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    text-transform: uppercase;
  }

  .contact-right {
    display: flex;
    flex: 1 1 400px;
    flex-wrap: wrap;
    gap: 2rem;
  }

  .column h3 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
  }

  .column ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .column ul li {
    margin-bottom: 0.5rem;
  }

  .column ul li a {
    color: #fff;
    text-decoration: none;
  }

  .column p {
    margin: 0.4rem 0;
  }

  .footer-bottom {
    text-align: center;
    padding-top: 5rem;
    font-size: 0.95rem;
    color: #ddd;
  }
  .footer-img {
    float: right;
    position: absolute;
    right: 150px;
    padding-top: 190px;
  }

  .footer-img  p{
    text-align: center;
    margin-top: 20px;
    position: absolute;
    margin-left: 65px;
  }

  .footer-img img{
    width: 200px;
  }
  /* Footer End */
  
    /* Menu Popup Start */
    
    .menu-popup-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      display: none;
      z-index: 1000;
      color: white;
    }

    .menu-popup-overlay.active {
      display: block;
    }

    .menu-popup-overlay .popup-section {
      position: absolute;
      width: 33.3333%;
      height: 100%;
      top: -100%;
      background-color: #172624;
      background-size: cover;
      transition: top 0.6s ease;
    }

    .menu-popup-overlay .section-left { left: 0; background-position: left center; }
    .menu-popup-overlay .section-middle { left: 33.3333%; background-position: center center; }
    .menu-popup-overlay .section-right { right: 0; background-position: right center; }

    .menu-popup-overlay.show .section-right { top: 0; transition-delay: 0s; }
    .menu-popup-overlay.show .section-middle { top: 0; transition-delay: 0.2s; }
    .menu-popup-overlay.show .section-left { top: 0; transition-delay: 0.4s; }

    .menu-popup-overlay.popup-hide .section-left { top: -100%; transition-delay: 0s; }
    .menu-popup-overlay.popup-hide .section-middle { top: -100%; transition-delay: 0.2s; }
    .menu-popup-overlay.popup-hide .section-right { top: -100%; transition-delay: 0.4s; }

    .menu-popup-overlay .menu-container {
     position: absolute;
      top: -100%;
      left: 0;
      width: 100%;
      height: 100%;
      padding: 50px;
      box-sizing: border-box;
      overflow-y: scroll;
      scrollbar-width: none;
      z-index: 1100;
      color: white;
      display: flex;
      flex-direction: column;
      gap: 5px;
      transition: top 0.8s ease;
    }

    .menu-popup-overlay .menu-container h1 a{
      color: white;
      text-decoration: none;
    }

    .menu-popup-overlay .menu-container h1 a:hover{
      text-decoration: underline;
      text-decoration-color: #ce942d;
    }

    .menu-popup-overlay.popup-hide .close-btn{
       top: -100%; transition-delay: 0.5s; 
    }

    .hamburger-language-select{
      float: right;
      background: transparent;
      color: #ffffff;
      border: none;
      font-size: 20px;
    }
    .hamburger-language-select option{
      margin: 40px;
      background: rgba(0, 0, 0, 0.3);
      color: black
    }
    .hamburger-social-icons a{
      color: white;
      font-size: 25px;
      text-decoration: none;
      padding-right: 15px;
    }

    .hamburger-social-icons a:hover{
      color: #ce942d;
    }

    #hamburger-proposal-btn{
      height: 50px;
      width: 100%;
      display: block;
    }

    .menu-popup-overlay.show .menu-container {
      top: 0;
      transition-delay: 0.6s;
    }

    .menu-popup-overlay.popup-hide .menu-container {
      top: -100%;
      transition-delay: 0s;
    }

    .close-btn span {
      position: absolute;
      height: 4px;
      width: 100%;
      background-color: #ce942d;
      border-radius: 2px;
      transition: all 0.4s ease;
    }

    .close-btn {
      position: absolute;
      top: 20px;
      right: 50px;
      background: rgba(0, 0, 0, 0);
      color: white;
      padding: 10px 15px;
      border: none;
      cursor: pointer;
      z-index: 1200;
      font-size: 16px;
      border-radius: 5px;
    }

    .close-btn span {
      top: 10px;
      transform-origin: center;
    }

    .close-btn span:nth-child(1) {
      transform: rotate(45deg);
    }

    .close-btn span:nth-child(2) {
      transform: rotate(-45deg);
    }



    .form-container::-webkit-scrollbar {
      width: 8px;
    }
    .form-container::-webkit-scrollbar-thumb {
      background-color: white;
      border-radius: 4px;
    }
 /* Menu Popup End */

  /* Header responsive start */
     @media (max-width: 991px) {
        .hamburger-container {
          display: block;
        }
        .menu{
          display: none;
        }
        .banner-inner{
          width:100%;
          padding: 200px 0 0 70px;
        }
        .top-info-bar{
          display: none;
        }
    }
    @media (max-width: 768px) {
    .body {
        padding: 70px 0 0 0;
    }
    body .left-bar{
      display: none;
    }
    .header-right .language-select,
    .proposal-btn {
        display: none;
      }
    .contacts-btn{
        display: none;
    }
    .banner-inner {
      padding: 140px 40px 0 40px;
    }
    .our-journey .info-item {
      flex: 1 1 90px;
    }
    .menu-popup-overlay .menu-container {
      gap: 20px;
    }

      
    }
/* Header responsive end */

/* Common Inner Page */
.inner-Page{
  padding: 40px 20px 40px 50px;;
}

.inner-Page h1 {
    font-size: 100px;
    line-height: 100px;
    font-weight: 100;
    text-transform: uppercase;
}

 @media (max-width: 768px) {
    .inner-Page h1 {
      font-size: 50px;
      line-height: 50px;
    }
  }


.sub-page-header{
  width: 70%;
  height: 63vh;
  padding-top: 30px;
}

.mine-btn {
  font-family: 'Zawya Pro';
  font-size: 15px;
  position: relative;
  overflow: hidden;
  padding: 5px 25px;
  background-color: #cb942d;
  color: white;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 0;
  text-transform: uppercase;
  border-radius: 3px;
}

.mine-btn.active {
    background-color: #012f0b;
}

.mine-btn::before {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #012f0b;
  z-index: -1;
  transition: top 0.4s ease;
}

/* Slide black background from top on hover */
.mine-btn:not(.active):hover::before {
  top: 0;
}

/* Change text color on hover */
.mine-btn:not(.active):hover {
  color: white;
}



 /* .about-us {
      margin: auto;
    }
    .about-us h1 {
      font-size: 100px;
      line-height: 100px;
      font-weight: 100;
      text-transform: uppercase;
    } */
    .about-us h2 {
      font-size: 40px;
      font-weight: 100;
      margin-bottom: 20px;
      text-transform: uppercase;
    }

    .about-us h3 {
      font-size: 25px;
      font-weight: 100;
      margin-bottom: 20px;
      text-transform: uppercase;
    }

    .about-us p {
      margin-bottom: 20px;
      line-height: 1.6;
    }

    .about-us .row {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
    }

     .about-us .row.owner{
      margin-top: 60px;
     }

    /* .about-us .row::before {
        content: "";
        position: absolute;
        top: -3px;
        left: -3px;
        right: -3px;
        bottom: -3px;
        background: linear-gradient(45deg, black, #d19a1d, black);
        background-size: 200% 200%;
        border-radius: 12px;
        z-index: -1;
        animation: glowBorder 3s linear infinite;
        filter: blur(6px);
    } */

    .about-us .col {
      flex: 1 1 48%;
    }

    .about-us .img-col img {
      width: 100%;
      height: 100%;
    }

    .about-us .board-members,
    .about-us .values,
    .about-us .facts {
      text-align: center;
    }

    .about-us .facts,
    .about-us .values,
    .about-us .founder-members {
      padding-top: 75px;
    }

    .about-us .member-list,
    .about-us .value-list,
    .about-us .fact-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

    .about-us .member,
    .about-us .value,
    .about-us .stat {
      flex: 1 1 200px;
      background: #f7f7f7;
      padding: 20px;
      border-radius: 10px;
    }

    .about-us .value img{
      width: 150px;
      height: 150px;
      object-fit: cover;
      border-radius: 5px;
      margin-bottom: 10px;
    }

    .about-us .member img,
    .about-us .owner img {
      width: 204px;
      height: 285px;
      object-fit: cover;
      border-radius: 5px;
      margin-bottom: 10px;
    }

    
    .about-us .divider {
        width: 2px;
        height: 100px;
        background: #aaa;
        margin-top: 50px;
      }
    .about-us .stat p {
      font-size: 1.2em;
      line-height: 1.4em;
    }

    .about-us .stat h2 {
      display: block;
      font-size: 3rem;
      color: #d4af37;
    }

    @media (max-width: 768px) {
      .about-us .col {
        flex: 1 1 100%;
      }

      .about-us .member,
      .about-us .value,
      .about-us .stat {
        flex: 1 1 100%;
      }
    }
	
	
	
	/* .about-us {
      margin: auto;
    }
    .about-us h1 {
      font-size: 100px;
      line-height: 100px;
      font-weight: 100;
      text-transform: uppercase;
    } */
    .about-us h2 {
      font-size: 40px;
      font-weight: 100;
      margin-bottom: 20px;
      text-transform: uppercase;
    }

    .about-us h3 {
      font-size: 25px;
      font-weight: 100;
      margin-bottom: 20px;
      text-transform: uppercase;
    }

    .about-us p {
      margin-bottom: 20px;
      line-height: 1.6;
    }

    .about-us .row {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
    }

     .about-us .row.owner{
      margin-top: 60px;
     }

    /* .about-us .row::before {
        content: "";
        position: absolute;
        top: -3px;
        left: -3px;
        right: -3px;
        bottom: -3px;
        background: linear-gradient(45deg, black, #d19a1d, black);
        background-size: 200% 200%;
        border-radius: 12px;
        z-index: -1;
        animation: glowBorder 3s linear infinite;
        filter: blur(6px);
    } */

    .about-us .col {
      flex: 1 1 48%;
    }

    .about-us .img-col img {
      width: 100%;
      height: 100%;
    }

    .about-us .board-members,
    .about-us .values,
    .about-us .facts {
      text-align: center;
    }

    .about-us .facts,
    .about-us .values,
    .about-us .founder-members {
      padding-top: 75px;
    }

    .about-us .member-list,
    .about-us .value-list,
    .about-us .fact-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

    .about-us .member,
    .about-us .value,
    .about-us .stat {
      flex: 1 1 200px;
      background: #f7f7f7;
      padding: 20px;
      border-radius: 10px;
    }

    .about-us .value img{
      width: 150px;
      height: 150px;
      object-fit: cover;
      border-radius: 5px;
      margin-bottom: 10px;
    }

    .about-us .member img,
    .about-us .owner img {
      width: 204px;
      height: 285px;
      object-fit: cover;
      border-radius: 5px;
      margin-bottom: 10px;
    }

    
    .about-us .divider {
        width: 2px;
        height: 100px;
        background: #aaa;
        margin-top: 50px;
      }
    .about-us .stat p {
      font-size: 1.2em;
      line-height: 1.4em;
    }

    .about-us .stat h2 {
      display: block;
      font-size: 3rem;
      color: #d4af37;
    }

    @media (max-width: 768px) {
      .about-us .col {
        flex: 1 1 100%;
      }

      .about-us .member,
      .about-us .value,
      .about-us .stat {
        flex: 1 1 100%;
      }
    }
	
	
	/*product*/
	
	
	