@font-face {
  font-family: iranSans;
  src: url("./../assets/fonts/A-Iranian-Sans/IranianSans.ttf");
}
@font-face {
  font-family: bNazanin;
  src: url("./../assets/fonts/B_NAZANIN/B-NAZANIN.TTF");
}
@font-face {
  font-family: bYekan;
  src: url("./../assets/fonts/B_Yekan/Yekan.ttf");
}
@font-face {
  font-family: vazier;
  src: url("./../assets/fonts/vazir-font-v16.1.0/Vazir.ttf");
}
@font-face {
  font-family: vazier;
  font-weight: bold;
  src: url("./../assets/fonts/vazir-font-v16.1.0/Vazir-Bold.ttf");
}
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: vazier;
}
html {
  scroll-behavior: smooth;
}

body {
  background-color: #fffef1;
}

/* Shared Responsive Adjustments */

/* Variables for consistent styling across files */
:root {
  --primary-color: #f6bd60;
  --primary-hover: #e09b3d;
  --secondary-color: #2f323a;
  --light-color: #fffef1;
  --card-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px;
  --card-shadow-hover: rgba(0, 0, 0, 0.25) 0px 10px 20px;
  --card-border-radius: 12px;
  --section-spacing: 50px;
}

/* Global responsive fixes */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: vazier, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

/* Mobile menu styles */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #fff;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Mobile menu animation */
.menu-toggle.active span:first-child {
  transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:last-child {
  transform: translateY(-9px) rotate(-45deg);
}

/* Responsive text scaling */
h1 {
  font-size: clamp(1.5rem, 5vw, 2.5rem);
}

h2 {
  font-size: clamp(1.3rem, 4vw, 2rem);
}

h3 {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
}

p {
  font-size: clamp(0.9rem, 2vw, 1rem);
}

/* Responsive flex containers */
.flex-container {
  display: flex;
  flex-wrap: wrap;
}

/* Improved touch interactions for mobile */
@media (hover: none) {
  .product-card .product-image .product-image-mask {
    transform: translateY(70%);
  }

  .product-card .product-image:active .product-image-mask {
    transform: translateY(0);
  }

  .blog-card-mask {
    opacity: 0.9;
    visibility: visible;
    background-color: rgba(0, 0, 0, 0.7);
    transform: translateY(70%);
    height: 30%;
  }

  .blog-card-mask h2 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .blog-card-mask button {
    padding: 8px 16px;
    font-size: 14px;
  }
}

/* Grid systems for different screen sizes */
.grid-container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

/* Responsive utility classes */
.hide-on-mobile {
  display: initial;
}

.show-on-mobile {
  display: none;
}

/* Responsive font sizes */
.text-responsive {
  font-size: calc(16px + 0.5vw);
}

/* Improved accessibility */
:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

button,
a {
  transition: all 0.3s ease;
}

/* Performance optimizations for animations */
.hardware-accelerated {
  transform: translateZ(0);
  backface-visibility: hidden;
  perspective: 1000px;
}

/* Print styles */
@media print {
  .no-print {
    display: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
    color: #000;
    background: #fff;
  }

  a {
    text-decoration: underline;
    color: #000;
  }

  .main-card,
  .product-card,
  .blog-card,
  .technology-section {
    box-shadow: none !important;
    border: 1px solid #ddd;
  }
}

@media (max-width: 1200px) {
  .container {
    max-width: 1140px;
    padding: 0 15px;
  }

  .hide-on-xl {
    display: none !important;
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 960px;
  }

  .hide-on-lg {
    display: none !important;
  }

  section {
    padding: 40px 0;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 720px;
  }

  .hide-on-md {
    display: none !important;
  }

  .show-on-mobile {
    display: initial;
  }

  .hide-on-mobile {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  section {
    padding: 30px 0;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin-bottom: 0.5em;
  }
}

@media (max-width: 576px) {
  .container {
    max-width: 540px;
    padding: 0 10px;
  }

  .hide-on-sm {
    display: none !important;
  }

  section {
    padding: 20px 0;
  }

  .card,
  .section {
    padding: 15px !important;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .hide-on-xs {
    display: none !important;
  }

  section {
    padding: 15px 0;
  }

  .card,
  .section {
    padding: 10px !important;
  }
}

@media (prefers-color-scheme: dark) {
  .dark-mode-support {
    background-color: #222;
    color: #f5f5f5;
  }

  .dark-mode-support a {
    color: var(--primary-color);
  }

  .dark-mode-support .card {
    background-color: #333;
    color: #f5f5f5;
  }
}
.header {
  height: 100vh;
  width: 100%;
}
.header .navbar {
  background-color: #f6bd60;
  height: 12vh;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
}

.header .navbar a img {
  height: 100%;
  width: 15vh;
  object-fit: contain;
}

.header .navbar ul {
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  list-style: none;
}

.header .navbar ul li {
  height: 100%;
  width: 100px;
  margin: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.header .navbar ul li:hover {
  background-color: #2f323a;
}
.header .navbar ul li:hover a {
  text-decoration: none;
  color: #f6d265;
}
.header .navbar ul li a {
  text-decoration: none;
  color: #fffef1;
  font-size: 18px;
  font-weight: bold;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #fff;
  border-radius: 3px;
}

.hero-section {
  width: 100%;
  height: 80vh;
  display: flex;
  padding: 15px 30px;
  align-items: center;
  background-image: url("/assets/images/img8.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.hero-section .hero-section-description {
  width: 50%;
  display: flex;
  flex-direction: column;
  color: #fff;
}
.hero-section .hero-section-description * {
  margin: 5px 0px;
}
.hero-section .hero-section-description h2 {
  font-size: 36px;
}

.hero-section .hero-section-description h4 {
  font-size: 24px;
  margin-bottom: 25px;
}

.hero-section .hero-section-description p {
  font-size: 18px;
}

.hero-section .hero-section-description p span {
  font-size: 18px;
  padding: 0px 2.5px;
  font-weight: bolder;
  color: #fff;
  text-decoration: underline;
}

.hero-section .hero-section-description p span:hover {
  color: #2f323a;
  background-color: #fff;
  cursor: pointer;
}
.main-card {
  box-shadow: rgba(0, 0, 0, 0.45) 0px 5px 15px;
  background-color: #fff;
  padding: 50px 30px;
  width: 85%;
  border-radius: 16px;
  margin: 0 auto;
  margin-top: -150px;

  z-index: 10;
}
.main-card h1 {
  margin-right: 25px;
}
.satistics-section {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-evenly;
  margin-bottom: 50px;
  gap: 20px;
}
.satistics-card {
  padding: 20px 10px;
  flex: 1 1 200px;
  text-align: center;
}
.satistics-card h2 {
  color: #f6d265;
  font-size: 24px;
}

.satistics-card h4 {
  font-size: 20px;
}
.features {
  display: flex;
  height: auto;
  min-height: 80vh;
  flex-direction: column;
  padding: 10px 25px;
  margin-bottom: 100px;
}
.features h2 {
  margin-bottom: 50px;
}
.features-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
.features-card {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 500px;
  max-width: 350px;
  flex: 1 1 300px;
  color: #fff;
  border-radius: 8px;
  transition: 0.3s ease-in-out;
}
.features-card:hover {
  transform: scale(1.05);
  transition: 0.3s ease-in-out;
}
.features-card:nth-child(1) {
  background-image: url("./../assets/images/img10.jpg");
}
.features-card:nth-child(2) {
  background-image: url("./../assets/images/img9.jpg");
}
.features-card:nth-child(3) {
  background-image: url("./../assets/images/img7.jpg");
}
.features-card-body {
  border-radius: 8px;
  height: 100%;
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-image: linear-gradient(
    200deg,
    rgba(0, 0, 0, 0.8),
    rgba(0, 0, 0, 0.3)
  );
}
.features-card-body * {
  margin: 15px 0px;
}
.features-card-body h2 {
  color: #f6d265;
}

.features-card-body p {
  padding-left: 20px;
}

.features-card-body button {
  padding: 12px 48px;
  color: #2f323a;
  font-size: 16px;
  background-color: #f6d265;
  border-radius: 12px;
  border: none;
  justify-self: flex-end;
  align-self: flex-end;
}

.features-card-body button:hover {
  background-color: #fffef1;
}

.about_us {
  background-color: #2f323a;
  color: #fff;
  height: auto;
  min-height: 70vh;
  margin-bottom: 100px;
  display: flex;
  padding: 0px;
  flex-wrap: wrap;
}

.about_us div:nth-child(2) {
  height: 100%;
  width: 60%;
  padding: 25px;
  padding-left: 45px;
  display: flex;
  flex-direction: column;
}
.about_us div h2 {
  color: #f6bd60;
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 25px;
}
.about_us div:nth-child(1) {
  height: 100%;
  min-height: 400px;
  background-image: url("./../assets/images/sherkat.jpeg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin: 0px;
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about_us-container div ul {
  list-style: none;
}

.about_us-container div ul li {
  color: #f6d265;
}
.gallerys {
  padding: 0px 25px;
}
.gallerys-container {
  z-index: 0;
  position: relative;
}
.gallerys-mask {
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0%;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  z-index: 999 !important;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.gallerys-mask h2 {
  color: #fff;
  font-size: 36px;
  margin-bottom: 20px;
}

.gallerys-mask button a {
  text-decoration: none;
  color: #fff;
}
.gallerys-mask button:hover a {
  color: #f6bd60;
}
.gallerys-mask button {
  background-color: #f6bd60;
  width: 200px;
  padding: 12px 36px;
  border: none;
  outline: none;
  border-radius: 6px;
}

.gallerys-mask button:hover {
  background-color: #fff;
  border: 1px solid #f6bd60;
  transition: 0.5 ease-out;
}

.gallerys-container:hover .gallerys-mask {
  opacity: 1;
  visibility: visible;
  transition: 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.gallerys > h2 {
  margin-bottom: 100px;
  text-align: center;
  color: #f6bd60;
  font-weight: bold;
  font-size: 36px;
}

.gallery-card {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}
.gallery-card:nth-child(1) {
  background-image: url("./../assets/images/aftab_roghan.jpg");
}

.gallery-card:nth-child(2) {
  background-image: url("./../assets/images/konjale_soya.jpg");
}

.gallery-card:nth-child(3) {
  background-image: url("./../assets/images/soya_roghani.jpg");
}
.gallery-card:nth-child(4) {
  background-image: url("./../assets/images/adas.jpg");
}

.gallery-card:nth-child(5) {
  background-image: url("./../assets/images/lobia-chiti.jpg");
}

.gallery-card:nth-child(6) {
  background-image: url("./../assets/images/colza_roghani.jpg");
}

.gallery-card:nth-child(7) {
  background-image: url("./../assets/images/zorat_dami.jpg");
}

.gallery-card:nth-child(8) {
  background-image: url("./../assets/images/jo_dami.jpeg");
}
.gallery-card:nth-child(9) {
  background-image: url("./../assets/images/soya_roghan.jpg");
}
.grid {
  width: 100%;
  display: grid;
  margin: 0 auto;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  grid-auto-rows: 1fr;
  grid-auto-flow: row dense;
  grid-gap: 10px;
  counter-reset: boxes;
}

.box {
  position: relative;
  color: rgba(255, 255, 255, 0.7);
  font-size: 2rem;
  font-family: sans-serif;
  counter-increment: boxes;
}
.box::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 50%;
}
.box::after {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
}

.blue {
  background: #4040e7;
  border: 5px solid rgba(0, 0, 0, 0.5);
}

.red {
  background: #db3c3c;
  border: 5px solid rgba(0, 0, 0, 0.5);
}

.green {
  background: #3ddb3d;
  border: 5px solid rgba(0, 0, 0, 0.5);
}

.tall {
  grid-column: span 1;
  grid-row: span 2;
}

.wide {
  grid-row: span 1;
  grid-column: span 2;
}

.square {
  grid-row: span 1;
  grid-column: span 1;
}

.shuffleWrap {
  padding: 20px;
  display: flex;
  justify-content: center;
}

.contactus {
  padding-top: 100px;
  margin-bottom: 100px;
}
.contactus h2 {
  padding-right: 25px;
  text-align: center;
}

.contactus-container {
  width: 90%;
  max-width: 1200px;
  margin: 0px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 25px;
}
.contactus-container iframe {
  display: none;
}
.contactus-container--2 {
  width: 100%;
  height: auto;
  min-height: 500px;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
.contactus-container--2 .contactus-container-form {
  min-height: 500px;
  width: 40%;
  background-color: rgba(47, 50, 58, 1);
  color: #fff;
  z-index: 0;
}
.contactus-container--2 iframe {
  box-shadow: rgba(0, 0, 0, 0.65) 0px 5px 25px;
  width: 60%;
  height: 100%;
  min-height: 500px;
  z-index: 999;
  margin-right: -10px;
}

.contactus-container-image {
  margin-top: 50px;
  flex: 1 1 400px;
  min-height: 400px;
  background-image: url("./../assets/images/img11.jpg");
  background-size: cover;
  background-position: center;
}
.contactus-container-form {
  box-shadow: rgba(0, 0, 0, 0.65) 0px 5px 25px;
  flex: 1 1 400px;
  min-height: 500px;
  background-color: rgba(47, 50, 58, 1);
  color: #fff;
  margin-left: -50px;
  z-index: 999;
}
.contactus-container-form form {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 12px 24px;
}
.contactus-container-form form div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.contactus-container-form form label {
  font-size: 14px;
}
.contactus-container-form form input,
.contactus-container-form form textarea {
  display: inline-block;
  background-color: #fff;
  width: 90%;
  padding: 12px;
  border: none;
  outline: none;
  border-radius: 8px;
  margin: 10px 0px;
}
.contactus-container-form form textarea {
  display: inline-block;
  width: 90%;
  resize: none;
}
.contactus-container-form form input:last-child {
  border-radius: 25px;
  margin-bottom: 25px;
  background-color: #f6bd60;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
}

.footer {
  background-color: #2f323a;
  margin-top: -50px;
  display: flex;
  flex-direction: column;
}
.footer-top {
  padding: 12px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.footer-top a img {
  height: 100px;
  object-fit: cover;
}
.footer-top-logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-top-logos ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
}
.footer-top-logos ul li a {
  margin: 0px 10px;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  background-color: #f6bd60;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-top-logos ul li a:hover {
  background-color: #fff;
  border: 2.5px solid #f6bd60;
}
.footer-top-logos ul li a .icon {
  display: inline-block;
  margin: 0px 5px;
  width: 15px;
  height: 15px;
  background-size: cover;
  background-repeat: no-repeat;
}

.instagram-icon {
  background-image: url("./../assets/icomoon/SVG/instagram.svg");
}
.telegram-icon {
  background-image: url("./../assets/icomoon/SVG/telegram.svg");
}
.linkdin-icon {
  background-image: url("./../assets/icomoon/SVG/linkedin.svg");
}
.twitter-icon {
  background-image: url("./../assets/icomoon/SVG/twitter.svg");
}
.youtube-icon {
  background-image: url("./../assets/icomoon/SVG/youtube.svg");
}
.footer-main {
  padding: 25px 50px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.footer-main-container {
  width: 25%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-evenly;
}

.footer-main-container h2 {
  display: inline-block;
  border-bottom: 1px solid #fff;
  padding: 5px 10px;
  font-size: 24px;
  color: #fff;
  font-weight: bold;
  text-align: start;
  margin-bottom: 20px;
}
.footer-main-container ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-evenly;
}
.footer-main-container ul li {
  margin: 5px 0px;
}
.footer-main-container ul a {
  text-decoration: none;
  color: #fff;
}
.footer-main-container ul a:hover {
  color: rgba(255, 255, 255, 0.5);
}
.footer-bottom {
  width: 100%;
  height: 50px;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}
.footer-bottom a {
  text-decoration: none;
  color: #fff;
}

@media (max-width: 1200px) {
  .main-card {
    width: 90%;
    padding: 40px 20px;
    padding-bottom: 50px;
  }

  .hero-section .hero-section-description {
    width: 60%;
  }

  .footer-main-container {
    width: 50%;
    margin-bottom: 20px;
  }
}

@media (max-width: 992px) {
  .hero-section .hero-section-description h2 {
    font-size: 30px;
  }

  .hero-section .hero-section-description h4 {
    font-size: 20px;
  }

  .hero-section .hero-section-description p,
  .hero-section .hero-section-description p span {
    font-size: 16px;
  }

  .main-card {
    margin-top: -100px;
    padding: 30px 20px;
  }

  .about_us div:nth-child(1) {
    width: 100%;
    min-height: 300px;
  }

  .about_us div:nth-child(2) {
    width: 100%;
    padding: 25px;
  }

  .about_us div h2 {
    font-size: 30px;
  }

  .contactus-container-form {
    margin-left: 0;
  }

  .contactus-container--2 iframe {
    margin-right: 0;
  }

  .features-card-body h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .features-card-body p {
    font-size: 16px;
  }

  .gallerys > h2 {
    margin-bottom: 50px;
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .header .navbar {
    padding: 0 15px;
    height: auto;
    min-height: 70px;
  }

  .menu-toggle {
    display: flex;
  }

  .header .navbar ul {
    position: fixed;
    top: 70px;
    left: 0;
    flex-direction: column;
    background-color: #f6bd60;
    width: 100%;
    height: auto;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 1000;
  }

  .header .navbar ul.active {
    transform: translateY(0);
    opacity: 1;
  }

  .header .navbar ul li {
    width: 100%;
    margin: 0;
    padding: 15px 0;
    text-align: center;
  }

  .hero-section {
    padding: 10px 20px;
  }

  .hero-section .hero-section-description {
    width: 80%;
  }

  .hero-section .hero-section-description h2 {
    font-size: 26px;
  }

  .hero-section .hero-section-description h4 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .main-card {
    width: 95%;
    margin-top: -80px;
    padding: 25px 15px;
    padding-bottom: 50px;
  }

  .satistics-card h2 {
    font-size: 20px;
  }

  .satistics-card h4 {
    font-size: 18px;
  }

  .features {
    padding: 10px 15px;
    margin-bottom: 50px;
  }

  .features h2 {
    margin-bottom: 30px;
    font-size: 24px;
    text-align: center;
  }

  .contactus-container--2 .contactus-container-form,
  .contactus-container--2 iframe {
    width: 100%;
  }

  .contactus-container--2 iframe {
    height: 400px;
    min-height: auto;
  }

  .contactus h2 {
    font-size: 24px;
  }

  .footer-top {
    justify-content: center;
    gap: 20px;
  }

  .footer-main {
    padding: 20px;
  }

  .footer-main-container {
    width: 100%;
    margin-bottom: 30px;
  }

  .footer-main-container h2 {
    font-size: 20px;
  }

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

@media (max-width: 576px) {
  .hero-section .hero-section-description {
    width: 90%;
  }

  .hero-section .hero-section-description h2 {
    font-size: 22px;
  }

  .hero-section .hero-section-description h4 {
    font-size: 16px;
  }

  .hero-section .hero-section-description p,
  .hero-section .hero-section-description p span {
    font-size: 14px;
  }

  .main-card {
    margin-top: -50px;
    padding: 20px 10px;
    padding-bottom: 50px;
  }

  .main-card h1 {
    font-size: 20px;
    margin-right: 15px;
  }

  .satistics-card {
    padding: 15px 5px;
  }

  .satistics-card h2 {
    font-size: 18px;
  }

  .satistics-card h4 {
    font-size: 16px;
  }

  .features-card {
    height: 400px;
  }

  .gallerys-mask h2 {
    font-size: 24px;
  }

  .gallerys-mask button {
    width: 150px;
    padding: 10px 24px;
    font-size: 14px;
  }

  .grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    grid-gap: 5px;
  }

  .contactus-container--2 iframe {
    height: 300px;
  }

  .contactus-container-form form input,
  .contactus-container-form form textarea {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .header .navbar a img {
    width: 12vh;
  }

  .hero-section {
    height: 70vh;
  }

  .hero-section .hero-section-description {
    width: 100%;
  }

  .hero-section .hero-section-description h2 {
    font-size: 20px;
  }

  .hero-section .hero-section-description h4 {
    font-size: 15px;
  }

  .hero-section .hero-section-description p,
  .hero-section .hero-section-description p span {
    font-size: 13px;
  }

  .about_us div h2 {
    font-size: 24px;
  }

  .about_us div p {
    font-size: 14px;
  }

  .footer-top-logos ul li a {
    width: 40px;
    height: 40px;
    margin: 0 5px;
  }

  .footer-bottom {
    height: auto;
    padding: 15px 10px;
    text-align: center;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .wide {
    grid-column: span 1;
  }
}
