@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&display=swap");

:root {
  --primary: #f04a0c;
  --secondary: #a3c754;
  --black: #000000;
  --white: #ffffff;
  --gray: #999999;
  --clr-text: #555555;

  /* --header-height: 9rem; */

  --font-montserrat: "Montserrat", sans-serif;
  --font-cormorant: "Cormorant", serif;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  font-size: 62.5%;
  font-family: var(--font-montserrat);
  color: var(--black);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

main {
  overflow-x: hidden !important;
}

body {
  font-size: 1.6rem;
  background-color: #fcfcf2;
  color: var(--clr-text);
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-family: var(--font-cormorant);
}
h1,
.h1 {
  font-size: 5rem;
}
h2,
.h2 {
  font-size: 4rem;
}
h3,
.h3 {
  font-size: 3.5rem;
}
h4,
.h4 {
  font-size: 3rem;
}
h5,
.h5 {
  font-size: 2.5rem;
}
h6,
.h6 {
  font-size: 2.2rem;
}
.customHeader {
  font-size: 6.4rem;
  font-weight: 500;
  line-height: 1;
  color: var(--primary);
  font-family: var(--font-cormorant);
}
li {
  margin-left: 1.6rem;
}
.sm {
  font-size: 1.4rem;
  line-height: 1.3;
}
p,
.md {
  font-size: 1.8rem;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}
.lg {
  font-size: 1.8rem;
}
.xl {
  font-size: 2rem;
}
.xl2 {
  font-size: 2.4rem;
}

button {
  background: unset;
}
.colorPrimary {
  color: var(--primary);
}
.secondary-green {
  color: var(--secondary-green);
}
.black {
  color: var(--black);
}
.gray {
  color: var(--gray);
}
.white {
  color: var(--white);
}
.bgPrimary {
  background-color: var(--primary-green);
}
.bgSecondary {
  background-color: var(--secondary-green);
}
.bgBlack {
  background-color: var(--black);
}
.bgWhite {
  background-color: var(--white);
}
.mb-0 {
  margin-bottom: 0;
}
.mb-05 {
  margin-bottom: 0.5rem;
}
.mb-1 {
  margin-bottom: 1rem;
}
.mb-2 {
  margin-bottom: 2rem;
}
.mb-3 {
  margin-bottom: 3rem;
}
.mb-4 {
  margin-bottom: 4rem;
}
.mb-8 {
  margin-bottom: 8rem;
}
.p-4 {
  padding: 4rem;
}
.p-6 {
  padding: 6rem;
}
.p-8 {
  padding: 8rem;
}
.pt-4 {
  padding-top: 4rem;
}
.pt-8 {
  padding-top: 8rem;
}
.pb-4 {
  padding-bottom: 4rem;
}
.pb-8 {
  padding-bottom: 8rem;
}
.ptb-2 {
  padding-block: 2rem;
}
.ptb-4 {
  padding-block: 4rem;
}
.ptb-8 {
  padding-block: 8rem;
}
.g {
  display: grid;
}
.g2 {
  grid-template-columns: repeat(2, 1fr);
}
.g3 {
  grid-template-columns: repeat(3, 1fr);
}
.g4 {
  grid-template-columns: repeat(4, 1fr);
}
.g5 {
  grid-template-columns: repeat(5, 1fr);
}
.g6 {
  grid-template-columns: repeat(6, 1fr);
}
.gap1 {
  gap: 1rem;
}
.gap2 {
  gap: 2rem;
}
.gap3 {
  gap: 3rem;
}
.gap4 {
  gap: 4rem;
}
.gap5 {
  gap: 5rem;
}
.gap6 {
  gap: 6rem;
}
.gap7 {
  gap: 7rem;
}
.gap8 {
  gap: 8rem;
}
.justify-center {
  justify-content: center;
}
.align-center {
  align-items: center;
}
.justify-between {
  justify-content: space-between;
}
.align-between {
  align-items: space-between;
}
.flex {
  display: flex;
}
.relative {
  position: relative;
}

hr {
  border: none;
  box-shadow: none;
}
.d1 {
  height: 1rem;
}
.d2 {
  height: 2rem;
}
.d3 {
  height: 3rem;
}
.d4 {
  height: 4rem;
}
.d5 {
  height: 5rem;
}
.d6 {
  height: 6rem;
}
.d7 {
  height: 7rem;
}
.d8 {
  height: 8rem;
}
.bold {
  font-weight: 700;
}
.semi-bold {
  font-weight: 600;
}
.medium {
  font-weight: 500;
}
.regular {
  font-weight: 400;
}
.italic {
  font-style: italic;
}
.text-center {
  text-align: center;
}
.width-full {
  width: 100%;
}
.img-fluid {
  max-width: 100%;
  height: auto;
}
.img-square {
  aspect-ratio: 1/1;
  object-fit: cover;
  width: 100%;
  height: auto;
}
.img-43 {
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
  height: auto;
}
.img-169 {
  aspect-ratio: 16/9;
  object-fit: cover;
  width: 100%;
  height: auto;
}
.img-21 {
  aspect-ratio: 2/1;
  object-fit: cover;
  width: 100%;
  height: auto;
}
.block {
  display: block;
}
.rounded {
  border-radius: 3rem;
}
.rounded-1 {
  border-radius: 1rem;
}
.rounded-15 {
  border-radius: 1.5rem;
}
.text-balance {
  text-wrap: balance;
}
.container {
  max-width: 1110px;
  width: 100%;
  margin: 0 auto;
  padding-inline: 3rem;
}

.container800 {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  padding-inline: 3rem;
}

.mx-auto {
  margin: 0 auto;
}
.max-50 {
  max-width: 50%;
}
.max-60 {
  max-width: 60%;
}
.max-70 {
  max-width: 70%;
}
.max-80 {
  max-width: 80%;
}
.btn {
  color: var(--primary);
  border: 1px solid var(--primary);
  display: inline-flex;
  gap: 1.5rem;
  align-items: center;
  padding: 1.4rem 1.8rem;
  border-radius: 50vw;
  font-size: 1.6rem;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn::after {
  content: "";
  display: inline-block;
  height: 2px;
  width: 8rem;
  background-color: var(--primary);
  transition: all 0.3s ease;
}
.btn:hover {
  background-color: var(--primary);
  color: var(--white);
}
.btn:hover::after {
  background-color: var(--white);
}
.btn-white {
  color: var(--white);
  border: 1px solid var(--white);
}
.btn-white:hover {
  background-color: var(--primary-green);
  border: 1px solid var(--primary-green);
}
.btn-black {
  color: var(--black);
  border: 1px solid var(--black);
}
.btn-black:hover {
  background-color: var(--black);
  border: 1px solid var(--black);
}
.btn + .btn {
  margin-left: 2rem;
}
.link {
  color: var(--primary-green);
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  border-bottom: 1px solid var(--primary-green);
}

.styledTitle {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.styledTitle::after {
  content: "";
  display: inline-block;
  height: 2px;
  width: 8rem;
  background-color: var(--primary);
}

/* .swiper-button-next,
.swiper-button-prev {
  background-color: var(--primary-green);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
} */

/* ----------------util end------------------------- */

.pageSpacer-30dvh {
  height: 30dvh;
}
.pageSpacer-40dvh {
  height: 40dvh;
}
.pageSpacer-50dvh {
  height: 50dvh;
}
.pageSpacer-60dvh {
  height: 60dvh;
}
.pageSpacer-70dvh {
  height: 70dvh;
}
.pageSpacer-80dvh {
  height: 80dvh;
}
.pageSpacer-90dvh {
  height: 90dvh;
}
.pageSpacer-100dvh {
  height: 100dvh;
}

/* header start */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding-block: 2rem;
}

nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li a {
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 500;
  cursor: pointer;
}

nav ul li a:hover {
  text-decoration: underline;
}

/* Hamburger icon (hidden on desktop) */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001; /* ensures hamburger stays above sliding nav */
}

.hamburger span {
  height: 2px;
  width: 25px;
  background: var(--primary);
  margin: 3px 0;
  border-radius: 3px;
  transition: all 0.3s;
}

/* Responsive behavior */
@media (max-width: 768px) {
  nav {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
    z-index: 1000;
  }

  nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  nav ul li a {
    color: white;
    font-size: 2.4rem;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  nav ul li a:hover {
    color: var(--primary);
  }

  .hamburger {
    display: flex;
    position: fixed;
    top: 32px;
    right: 20px;
    z-index: 1100;
    cursor: pointer;
  }

  nav.active {
    opacity: 1;
    visibility: visible;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

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

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}

.commonBanner {
  background: url("/themes/custom/fishermedia/assets/svgs/vebg.svg");
  background-size: cover;
  background-position: center bottom;
  position: relative;
}
.commonBanner .leftVE {
  position: absolute;
  left: 0;
  top: 20%;
  width: 30rem;
  transform: translateX(-15rem);
  z-index: -1;
}
.commonBanner .rightVE {
  position: absolute;
  right: 0;
  top: 60%;
  width: 50rem;
  transform: translateX(30rem);
  z-index: -1;
}

/* header end */

/* ---------------------Footer-------------------------- */
.footer {
  /*background: url("/themes/custom/fishermedia/assets/images/footerbg.png");*/
  /*background-size: cover;*/
  /*background-position: center bottom;*/
  width: 100%;
  padding-top: 5vh;
  padding-bottom: 40vh;
  display: grid;
  place-items: center;
  position: relative;
}
.footer .footerBanner{
    position: absolute;
    z-index: -1;
    bottom: 0;
    width: 100%;
}
.footer-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
}
.footer .copyright {
  display: flex;
  justify-content: flex-end;
}
.footer .social {
  display: flex;
  gap: 2rem;
}
.footer .social img {
  width: 4rem;
  height: 4rem;
  padding: 1rem;
  border-radius: 50%;
  background-color: var(--primary);
}
.quickLinkItems ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0;
}
.quickLinkItems ul li {
  list-style: none;
  margin: 0;
  padding: 0.5rem 1rem;
  border-radius: 50vw;
  background-color: rgba(240, 73, 12, 0.2);
  transition: 0.3s ease-in-out;
}
.quickLinkItems ul li:hover {
  color: var(--white);
  background-color: var(--primary);
}
.footer-copyright {
  margin-top: 2rem;
  text-align: center;
}

/* ---------------------Footer end-------------------------- */

.displayNone {
  display: none;
}

/* contact page */
.map {
  border-radius: 2rem;
  overflow: clip;
}

input,
textarea {
  border: none;
  border-bottom: 1px solid var(--primary);
  padding: 1rem;
  margin-bottom: 1rem;
  outline: none;
  background-color: transparent;
  font-family: var(--font-montserrat);
  width: 100%;
}

/* Responsive  Tab*/
@media screen and (max-width: 1024px) {
}

/* Responsive  Mobile*/
@media screen and (max-width: 768px) {
  html {
    font-size: 50%;
  }
  .max-50,
  .max-60,
  .max-70,
  .max-80 {
    max-width: unset;
  }
  .g2,
  .g3,
  .g4,
  .g5,
  .g6,
  .g7,
  .g8 {
    grid-template-columns: 1fr;
  }
  .gm2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .gm3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .gm4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .gm5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .gm6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .mgap0 {
    gap: unset;
  }
  .mgap1 {
    gap: 1rem;
  }
  .mgap2 {
    gap: 2rem;
  }
  .mgap3 {
    gap: 3rem;
  }
  .mgap4 {
    gap: 4rem;
  }
  .displayNone {
    display: block;
  }
  .displayNoneMob {
    display: none !important;
  }
  .customHeader {
  font-size: 5rem;
  }
  .footer {
    background-position: center center;
  }
  
  .footerRevContent{
      display: flex;
      flex-direction: column-reverse;
  }

  .commonBanner .leftVE {
    position: absolute;
    left: 0;
    top: 20%;
    width: 15rem;
    transform: translateX(-8rem);
    z-index: -1;
  }
  .commonBanner .rightVE {
    position: absolute;
    right: 0;
    top: 60%;
    width: 30rem;
    transform: translateX(20rem);
    z-index: -1;
  }
}
