/* Start Variables */
:root {
   --section-background-color: #d0cfd0;
   --section-content-color: #333;
  }
  /* End Variables */
  /* Start Global Rules */
  * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  html {
    scroll-behavior: smooth;
  }
  body {
    font-family: "Open Sans" , sans-serif;
    background-color: #f5f5f7;
  }
  .container {
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
  }
  /* Small */
  @media (min-width: 768px) {
    .container {
      width: 750px;
    }
  }
  /* Medium */
  @media (min-width: 992px) {
    .container {
      width: 970px;
    }
  }
  /* Large */
  @media (min-width: 1200px) {
    .container {
      width: 1170px;
    }
  }
  /* End Global Rules */
  /* Start Components */
  .special-heading {
    color: #b1834d;
    font-size: 100px;
    text-align: center;
    font-weight: 800;
    letter-spacing: -3px;
    margin: 0;
    margin-bottom: 50px;
    position: relative;
  }
  .special-heading::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 2px;
    background-color: #333;
    bottom: -33px;
    width: 120px;
  }
  @media (max-width: 767px) {
    .special-heading {
      font-size: 60px;
    }
  }
  /* End Components */
  /* Start Header */
  .header {
    background-color: var(--section-background-color);
    position: absolute;
    background-color: transparent;
    width: 100%;
  }
  .header .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 10px 0;
  }
  .header .top .logo {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .header .top .logo img {
    height: 60px;
    background-color: rgb(255, 255, 255);
    padding: 5px;
    border-radius: 6px;
  }
  .header .top .logo p {
    margin-left: 10px;
    font-size: 25px;
    color: white;
  }
  @media (max-width: 992px) {
    .header .top .logo p {
      font-size: 16px;
    }
  }
  .header .top span {
    text-decoration: none;
    color: white;
    font-size: 22px;
  }
 
  .header .top .icon {
    display: none;
  }
  .header .top .icon span {
    background-color: white;
    width: 25px;
    height: 2px;
    display: block;
    margin-bottom: 6px;
  }
  .header .top .links ul {
    position: absolute;
    list-style: none;
    z-index: 1;
    background-color: #f6f6f6;
    padding: 10px;
    top: 42px;
    right: 0;
    display: none;
    width: 100%;
    border-radius: 10px 0 10px 10px;
  }
  .header .top .links:hover ul {
    display: block;
  }
  .header .top .links ul::before {
    content: '';
    border-width: 10px;
    border-style: solid;
    border-color: transparent transparent #f6f6f6 transparent;
    position: absolute;
    top: -20px;
    right: 3px;
  }
  .header .top .links ul li {
    margin-bottom: 10px;
  }
  .header .top .links ul li a {
    text-decoration: none;
    color: black;
    font-size: 18px;
  }
  .header .top .links ul li a p {
    margin: 0;
  }
  .header .top .links ul li:last-of-type {
    text-align: right;
  }
  @media (max-width: 992px) {
    .header .top .lang {
      display: none;
    }
    .header .top .icon {
      display: block;
    }
  }
  .header .top .lang .right,
    .header .top .lang .left
  {
    transition: 0.3s ease;
  }
  .header .top .lang:hover .right {
    rotate: 90deg;
  }
  .header .top .lang:hover .left {
    rotate: -90deg;
  }
 
  .header .top .menu {
    position: absolute;
    right: -3px;
    top: 70px;
    background-color: #f5f5f7;
    display: none;
    min-width: 200px;
    text-align: right;
    padding: 10px;
    z-index: 1;
    text-decoration: none;
    color: #333;
    margin: 0;
    font-size: 22px;
    border-radius: 10px 0px 10px 10px;
    transition: 0.3s;
  }
  .header .top .menu::before {
    content: '';
    border-width: 10px;
    border-style: solid;
    border-color:transparent transparent #f6f6f6 transparent;
    position: absolute;
    top: -20px;
    right: 0;
  }
  .header .top .menu:hover {
    background-color: var(--section-background-color);
    padding-right: 30px;
  }
  .header .top .lang:hover .menu {
    display: block;
  }
  .header .fot {
    display: flex;
    justify-content: center;
  }
  @media (max-width: 992px) {
    .header .fot {
      display: none;
    }
  }
  .header .fot ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
  }
  .header .fot ul li a {
    text-decoration: none;
    color: white;
    font-size: 20px;
    margin-left: 20px;
    font-weight: bold;
    transition: 0.5s;
  }
  .header .fot ul li a:hover {
  letter-spacing: 3px;
  color: #b1834d;
  }
  
  /* End Header */
  /* Start Landing */
  .hide {
    display: none;
  }
  .zoomIn {
    animation: zoomIn 1s;
  }
  @keyframes zoomIn {
    from {
      transform: scale(0.8);
      opacity: 0;
    }
    to {
      transform: scale(1);
      opacity: 1;
    }
  }
  .landing .first {
    width: 100%;
    height: 580px;
    background-image: url('../images/about.jpg');
    background-size: cover;
    padding: 70px 70px 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-top: 150px;
    border-radius: 0 0 50px 50px;
  }
  @media (max-width: 992px) {
    .landing .first {
      padding: 220px 20px 0;
    }
  }
  .landing .first .counter {
    text-align: center;
    padding: 50px 0;
    width: 100%;
    background-color: #d0cfd0c7;
    border-radius: 40px 40px 0 0;
  }
  .landing .first .counter .lable {
    font-size: 30px;
    font-weight: 800;
    color: #b1834d;
    margin: 0 0 30px 0;
  }
  @media (max-width: 992px) {
    .landing .first .counter .lable {
      font-size: 18px;
    }
  }
  .landing .first .counter .number {
    font-size: 38px;
    color: var(--section-content-color);
    font-weight: 700;
    margin: 0;
  }
  .landing .first .counter #myDiv {
    font-size: 60px;
    color: #333;
    font-weight: 800;
    margin-bottom: 100px;
  }
  @media (max-width: 992px) {
    .landing .first .counter #myDiv {
      font-size: 20px;
      font-weight: 800;
    }
  }
  .landing .first .counter {
    width: 100%;
    background-color: #d0cfd0c7;
    border-radius: 40px 40px 0 0;
  }
  /* End Landing */
  /* Start About */
  .about {
    padding-bottom: 115px;
  }
  .about .special-heading::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid #333;
    bottom: -40px;
    background-color: #f5f5f7;
  }
  .about .container {
    display: flex;
  }
  @media (max-width: 992px) {
    .about .container {
      flex-direction: column;
      align-items: center;
      
    }
    .about .container img {
      width: 300px;
      border: #00162c solid 20px;
    }
  }
  .about .container .image {
    position: relative;
  }
  .about .container .image::before {
    content: "";
    background-color: #00162c;
    height: calc(100% + 30px);
    width: 100px;
    position: absolute;
    top: -15px;
    left: -30px;
    z-index: -1;
  }
   @media (max-width: 992px) {
    .about .container .image::before {
      display: none;
    }
  } 
  .about .container img {
    height: 300px;
  }
  .about .container .text {
    margin-left: 50px;
    font-size: 20px;
    line-height: 1.4;
    color: var(--section-content-color);
  }
  @media (max-width: 992px) {
    .about .container .text {
      margin: 30px 0 0 0;
    }
  }
  /* End About */
  /* Start Vision */
  .vision {
    background-color: var(--section-background-color);
    padding-bottom: 115px;
  }
  .vision .special-heading::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid #333;
    bottom: -40px;
    background-color: var(--section-background-color);
    }
  .vision .container {
    display: flex;
  }
  @media (max-width: 992px) {
    .vision .container {
      flex-direction: column;
      align-items: center;
    }
  }
  .vision .container .text {
    font-size: 20px;
    line-height: 1.4;
    color: var(--section-content-color);
  }
  @media (max-width: 992px) {
    .vision .container .text {
      margin-top: 30px;
    }
  }
  .vision .container img {
    height: 300px;
    margin-left: 50px;
    border: #00162c solid 50px;
  }
  .vision .container .mobile {
    display: none;
  }
  @media (max-width: 992px) {
    .vision .container img {
      width: 300px;
      margin: 0;
      border-width: 20px;
  }
  } 
   @media (max-width: 992px) {
    .vision .container .desktop {
    display: none;
    }
    .vision .container .mobile {
      display: block;
    }
  } 
  /* End Vision */
  /* Start Why Us */
  .why-us {
    padding-bottom: 115px;
  }
  .why-us .special-heading::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid #333;
    bottom: -40px;
    background-color: #f5f5f7;
  }
  .why-us .container {
    display: flex;
  }
  @media (max-width: 992px) {
    .why-us .container {
      flex-direction: column;
      align-items: center;
    }
    .why-us .container .image img {
      width: 300px;
    }
  }
  .why-us .container .image {
    position: relative;
  }
  .why-us .container .image::before {
    content: "";
    border-right: #00162c solid 100px;
    border-bottom: #00162c solid 100px;
    height: 235px;
    width: 100px;
    position: absolute;
    top: -15px;
    right: -20px;
    z-index: -1;
  }
   @media (max-width: 992px) {
    .why-us .container .image::before {
      display: none;
    }
  } 
  .why-us .container .image::after {
    content: "";
    background-color: var(--section-background-color);
    height: calc(100% + 80px);
    width: 100px;
    position: absolute;
    top: -40px;
    left: -50px;
    z-index: -1;
  }
   @media (max-width: 992px) {
    .why-us .container .image::after {
      display: none;
    }
  } 
  .why-us .container img {
    height: 300px;
  }
  .why-us .container .text {
    margin-left: 50px;
    font-size: 20px;
    line-height: 1.4;
    color: var(--section-content-color);
  }
   @media (max-width: 992px) {
    .why-us img {
    width: 300px;
    border: #00162c solid 20px;
      }
    .why-us .container .text {
      margin: 30px 0 0 0;
    }
  }
  /* End Why Us */
  /* Start Products */
  .products {
    background-color: #d0cfd0;
  }
  .products .special-heading::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid #333;
    bottom: -40px;
    background-color: var(--section-background-color);
  }
  .products .container {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(20%, 1fr));
    grid-gap: 40px;
  }
  @media (max-width: 992px) {
    .products .container {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
  }
  .products .product {
    display: flex;
    flex-direction: column;
  }
  @media (max-width: 992px) {
    .products .product {
      max-width: 300px;
    }
  }
  .products .image {
    position: relative;
  }
  @media (max-width: 992px) {
    .products .image {
      max-width: 300px;
    }
  }
  .products .image:hover .hover-text {
    height: 100%;
  }
  .products .image img {
  width: 100%;
  border-radius: 30px;
  }
  .products .image .hover-text {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: rgb(0 0 0 / 60%);
    overflow: hidden;
    height: 0;
    width: 100%;
    transition: 0.7s ease;
    padding: 0 10px 0 10px;
    border-radius: 30px;
  }
  .products .image .hover-text p {
    width: 100%;
    margin-top: 10px;
    color: white;
    font-size: 13px;
    margin: 20px 0 0;
  }
  .products .container .text {
    max-width: 100%;
    margin-top: 3px;
  }
  .products .text h4 {
    margin: 0;
  }
  .products .text p {
    color: #333;
    text-align: justify;
    max-width: 100%;
  }
  /* End Products */
  /* Start Products Text */
  .products-text {
    background-color: var(--section-background-color);
    padding: 30px 0;
  }
  .products-text p {
    margin: 0;
    color: #333;
  }
  .products-text .first {
    margin: 80px 0 20px 0;
    font-size: 20px;
    font-weight: 800;
  }
  .products-text .second {
    font-size: 16px;
  }
  /* End Products Text */
  /* Start Contact */
  .contact {
    text-align: center;
    padding-bottom: 20px;
  }
  .contact .special-heading::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid #333;
    bottom: -40px;
    background-color: #f5f5f7;
    }
  .contact .text p {
    font-size: 35px;
    font-weight: 800;
    color:  #00162c;    
  }
  .contact .text .mail {
    text-decoration: none;
    color: #b1834d;
    font-size: 35px;
    font-weight: 800;
  }
  @media (max-width: 992px) {
    .contact .text p,
    .contact .text .mail {
      font-size: 20px;
    }
  }
  .contact .text div {
    margin-top: 20px;
    font-size: 16;
    color:#6C757D;
  }
  .contact .text div a {
    text-decoration: none;
    color: #6C757D;
  }
  .contact .text div a:hover {
    color: #333;
  }
  .contact .text div a .facebook {
    color: blue;
  }
  .contact .text div a .whatsapp {
    color: green;
  }
  /* End Contact */
  /* Start Footer */
  .footer {
    text-align: center;
    padding: 10px;
    background-color:#00162c;
  }
  .footer p {
    color: white;
    font-size: 15px;
  }
  .footer p span {
    color: #b1834d;
    font-weight: bold;
  }
  /* End Footer */