/*
Theme Name: Mattanad
Theme URI: https://example.com/mattanad
Author: Your Name
Author URI: https://example.com
Description: A custom WordPress theme named Mattanad.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mattanad
*/

/* ========== Base (mobile) styles ========== */

html {
  scroll-behavior: smooth;
}

.give-help {
  row-gap: 48px;
}

.homebanner-bottom-img {
  bottom: -10px;
}

.introduction-content {
  padding-top: 0;
  /* assume default */
}

.introduction-top-img {
  top: 0;
  /* assume default */
}

.introduction {
  padding-top: 0;
  /* assume default */
  min-height: auto;
}

.logo {
  max-width: 110px;
  width: 100%;
  aspect-ratio: 16 / 9;
}


.flex-matta {
  display: flex;
  flex-direction: column;
}

.matta-visible {
  display: none;
}


.matta-img-five {
  margin-top: 320px;
}

.matta-mt-lg {
  margin-top: 24px;
}

.footer-menu a:last-child {
  border-right: 0;
}

.aasha-logo {
  max-width: 200px;
  width: 100%;
  height: auto;
}

.col-adgest {
  flex-direction: row;
}



.social-matta {
  display: none;
}


.matta-count {
  display: flex;
  text-align: end;
  flex-direction: column;
}

.flex-row-xl {
  flex-direction: column;
  align-items: center;
}

.linkidn {
  align-items: center;
}

.test-sm {
  font-size: 14px;
}

.item-start {
  align-items: flex-start;
}



@media(max-width:1200px) {
  .pt-24 {
    padding-top: 24px;
  }

  .matta-count {
    text-align: center;
  }

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

.aspect-video {
  aspect-ratio: 16/9;
}


/* ========== Tablet (≥768px) ========== */
@media (min-width: 768px) {
  .social-matta {
    display: flex;
  }

  .social-matta-mob{
    display: none;
  }

  .col-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .homebanner-bottom-img {
    bottom: -30px;
  }

  .introduction-content {
    padding-top: 60px;
  }

  .introduction-top-img {
    top: -20px;
  }

  .logo {
    max-width: 150px;
  }

  .justifi-end {
    justify-content: flex-end;
  }
}

/* ========== Large tablet / Small desktop (≥992px) ========== */
@media (min-width: 992px) {

  /* Empty block — add styles here if needed */
  .flex-row-xl {
    flex-direction: row;
  }
}

/* ========== Desktop (≥1024px) ========== */
@media (min-width: 1024px) {
  .homebanner-bottom-img {
    bottom: -40px;
  }

  .introduction-top-img {
    top: -40px;
  }

  .flex-matta {
    flex-direction: row;
  }


  .matta-vector {
    display: flex;
    align-self: center;
  }

  .matta-hidden {
    display: none;
  }

  .matta-visible {
    display: flex;
  }

  .matta-mt-lg {
    margin-top: 0;
  }

  .matta-vector img {
    transform: rotate(-90deg) scale(1.3);
  }


}

/* ========== Large desktop (≥1280px) ========== */
@media (min-width: 1280px) {
  .linkidn:hover img {
    transform: translateY(-1px);
    transition: all .2s ease;
    will-change: transform;

  }

  .footer-wrap-menu {
    max-width: 456px
  }

  .matta-count {
    min-width: 400px;
  }

  .footer-menu a:nth-child(3),
  .footer-menu a:last-child {
    border-right: 0;
  }

  .product-overview {
    padding-left: 40px;
    padding-right: 40px;
  }

  .give-help {
    flex-direction: row;
    column-gap: 48px;
  }

  .homebanner-bottom-img {
    bottom: -50px;
  }

  .introduction-top-img {
    top: -65px;
  }

  .introduction {
    padding-top: 88px;
  }

  .logo {
    max-width: 200px;
  }
}

/* ========== XL desktop (≥1600px) ========== */
@media (min-width: 1600px) {
  .card {
    margin-left: 10px;
    margin-right: 10px;
  }

  .homebanner-bottom-img {
    bottom: -64px;
  }

  .introduction-top-img {
    top: -95px;
  }

  .introduction {
    padding-top: 56px;
  }

  .introduction-content {
    padding-top: 100px;
  }

  .logo {
    max-width: 300px;
  }
}

/* ========== Ultra wide (≥1920px) ========== */
@media (min-width: 1920px) {
  .container.header-container {
    max-width: 100%;
    padding-left: 8%;
    padding-right: 8%;
  }

  .introduction-top-img {
    top: -120px;
  }

  .introduction {
    min-height: 750px;
  }
}


.animmovie {
  /* animation: moveTopBottom 6s linear infinite; */
}

@keyframes moveTopBottom {
  0% {
    transform: translate(0);
  }

  50% {
    transform: translateY(20px);
  }

  100% {
    transform: translate(0);
  }
}