/*****************************************************************************
Project name: Anfal Salts
URL: www.anfalsalts.com
Website type: Custom responsive website design and development
Designed & Developed by: Fifer Communications. www.fifercommunications.com
Website live year: May, 2024
*****/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* font-family: "Nunito Sans", "sans-serif"; */
}

body,
html {
  max-width: 100vw; /* This ensures the content doesn't exceed the viewport width */
  height: 100%;
  background-color: #a08d6f;
  /* background-color: #866027; */
  /* background-color: #0d1323; */
  /* background-color: #ede0cb; */
  font-family: "Nunito Sans", "sans-serif";
}

a {
  text-decoration: none;
  color: #fff;
}



.container {
  width: 100%;
  height: 100%;
  /* background: #0d1321; */
}

.navbar {
  position: fixed;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2em 2em;
}
/* @media (max-width: 600px) {
  .navbar {
    position: sticky;
  }
} */
.anfal-logo {
  width: auto;
  height: 100px;
}

.header {
  width: 100%;
  background-image: url(../images/anfal_salt_bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  transform: scale(1) !important;
}

.header-punchline {
  position: absolute;
  width: 100%;
  left: 50%;
  top: 44%;
  transform: translate(-50%, -50%);
  font-size: 5.5rem;
  font-weight: 400;
  /* text-transform: uppercase; */
  text-align: left;
  font-family: "Playfair Display", serif;
  /* color: #fce6c1; */
  color: #cfab71;
  padding-left: 35px;

}

/* Style for nav links */
.nav-link a {
  color: #fff;
  font-size: 38px;
  text-decoration: none;
  position: relative;
  display: inline-block;
}

/* Underline effect */
.nav-link a::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #9c7c4a; /* Color of the underline */
  transform-origin: bottom right;
  transition: transform 0.3s ease-out;
}

/* Hover effects */
.nav-link a:hover {
  color: #fff; /* Change text color */
}

.nav-link a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* Social links hover effect */
.nav-socials a:hover {
  color: #9c7c4a; /* Change text color */
}

/* Footer links hover effect */
.nav-footer a:hover {
  color: #9c7c4a; /* Change text color */
}

#menu-toggle-btn {
  margin-top: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 20px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 100000;
}

span {
  height: 4px; /* Increase thickness */
  background: #9c7c4a;
  width: 44px;
  display: inline-block;
  position: absolute;
  top: 50%;
  transition: all 0.3s;
}

span::before {
  content: " ";
  position: absolute;
  display: inline-block;
  height: 4px; /* Increase thickness */
  background: #9c7c4a;
  transform: translateY(-4px) rotate(0deg);
  width: 44px;
  transition: all 0.3s;
  top: -4px;
}

#menu-toggle-btn.active span {
  background: transparent; /* Hide the middle bar */
}

#menu-toggle-btn.active span::before {
  transform: translateY(0) rotate(45deg); /* Rotate the top bar to form one half of the cross */
}

#menu-toggle-btn.active span::after {
  content: " ";
  position: absolute;
  display: inline-block;
  height: 4px; /* Same thickness of bars */
  background: #9c7c4a;
  width: 44px;
  transition: all 0.3s;
  top: -4px;
  transform: rotate(-45deg); /* Rotate the bottom bar to form the other half of the cross */
}

#nav-container {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  /* background: #0d1321; */
  background-color: rgba(13, 19, 33, 1);
  color: #fff;
  transform: all 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  z-index: 1;
}

.nav {
  width: 50%;
  display: flex;
  justify-content: space-between;
}

.flex {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.nav-logo {
  font-weight: 300;
  margin-top: -0.2em;
  text-transform: uppercase;
  font-size: 120px;
}

.nav-item-wrapper:after {
  content: "";
  position: absolute;
  top: 60px;
  left: 0;
  width: 500px;
  height: 60px;
  /* background: #0d1323; */
  margin: 0 auto;
  transform: 1s;
}

.nav-footer {
  position: absolute;
  width: 100%;
  bottom: 0;
  padding: 2em 1em;
  display: flex;
  justify-content: space-between;
}

.nav-footer a {
  text-decoration: none;
  color: #fff;
  font-size: 12px;
  padding: 0em 1em;
}

/* Anfal below header video section styles */
.video-background {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

#bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  /* color: #0d1321; */
  color: #fff;
  text-align: center;
  padding: 0 50px 20px 50px;
  font-size: 2.5rem;
  z-index: 0;
}

.video-content h1 {
  font-size: 7.5rem;
  line-height: 8rem;
  font-family: "Playfair Display", serif;
  /* color: rgba(187, 141, 62, 0.7); */
  color: rgba(13, 19, 35, 0.8);
  /* color: #0d1323; */
  /* color: rgba(255, 255, 255, 0.7); */
  margin-bottom: 20px;
  z-index: 0;
}

.video-content p{
  font-size: 2.3rem;
  color: #0d1323;
}



/* Additional styling for button (optional) */
.about-button {
  margin-top: 30px;
  padding: 10px 20px;
  cursor: pointer;
  /* background-color: #bb8d3e; */
  background-color: #0d1323;
  border: none;
  border-radius: 25px;
  /* color: white; */
  color: #9c7c4a;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.about-button:hover {
  background-color: #9c7c4a;
  color: #0d1323;
}
/* End Anfal below header video section styles */
/* Anfal products section start */
.product-section {
  width: 100%;
  background-image: url(../images/product-section-bg.jpg);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  padding: 2rem 0;
}

.product-section .content-product {
  margin: 0 2rem;
  color: white; /* Change as needed */
}

.product-section h2 {
  font-family: "Playfair Display", serif;
  text-align: left;
  font-size: 70px;
  line-height: 5rem;
  color: #9c7c4a;
  font-weight: normal;
}

.product-section p {
  font-size: 16px;
  padding-bottom: 3rem;
}
.product-card-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.product-card {
  flex-basis: calc(33.333% - 20px); /* Adjust the spacing between cards */
  margin-bottom: 20px;
  /* background: #bb8d3e;  */
  /* border-radius: 10px; */
  padding: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.product-card img {
  width: 100%;
  /* border-radius: 10px; */
  border-radius: 0 120px 0px 120px;
  margin-bottom: 10px;
}

.product-card h3 {
  font-size: 30px;
  text-transform: uppercase;
  color: #bb8d3e;
}
.product-card h4 {
  font-size: 16px;
  text-transform: uppercase;
  color: #fff;
}
.product-card h5 {
  font-size: 14px;
  color: #bb8d3e;
  padding-bottom: 1rem;
}

.product-button {
  padding: 10px 20px;
  cursor: pointer;
  /* background-color: #bb8d3e; */
  background-color: #0d1323;
  border: none;
  border-radius: 25px;
  /* color: white; */
  color: #9c7c4a;

  font-size: 16px;
  transition: background-color 0.3s ease;
}

.product-button:hover {
  background-color: #9c7c4a;
  color: #0d1323;
}
/* Anfal products section end */
.bounty-section {
  width: 100%;
  /* height: 90vh; */
  background-image: url(../images/bounty-section-bg.jpg);
  /* background-image: url(../images/bounty-section-bg-white.jpg); */
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  padding: 2rem 0;
}

.bounty-section .content-bounty {
  margin: 0 2rem;
  color: white;
}

.bounty-section h2 {
  font-family: "Playfair Display", serif;
  text-align: left;
  font-size: 70px;
  line-height: 5rem;
  /* color: #9c7c4a; */
  color: #0d1323;
  font-weight: normal;
}

.bounty-section p {
  font-size: 26px;
  padding-bottom: 3rem;
  /* color: #0d1323; */
  color: #fff;
}
.bounty-card-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  /* justify-content: space-between; */
  justify-content: flex-end;
  flex-wrap: wrap;
}

.bounty-card {
  flex-basis: calc(33.333% - 20px);
  margin-bottom: 20px;
  /* background: #bb8d3e;  */
  /* border-radius: 10px; */
  padding: 15px;
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
  text-align: left;
}

.bounty-card img {
  width: 400px;
  height: 400px;
  /* border-radius: 0 120px 0px 120px; */
  border-radius: 50%;
  object-fit: cover;

  margin-bottom: 10px;
}

.bounty-card h3 {
  font-size: 30px;
  text-transform: uppercase;
  /* color: #bb8d3e; */
  color: #0d1323;
}
.bounty-card h4 {
  font-size: 16px;
  text-transform: uppercase;
  color: #fff;
}
.bounty-card h5 {
  font-size: 14px;
  color: #bb8d3e;
  padding-bottom: 1rem;
}

.bounty-button {
  padding: 10px 20px;
  cursor: pointer;
  /* background-color: #bb8d3e;  */
  background-color: #0d1323; /* Dark navy blue*/
  border: none;
  border-radius: 25px;
  /* color: white; */
  color: #9c7c4a; /*dark gold*/

  font-size: 16px;
  transition: background-color 0.3s ease;
}

.bounty-button:hover {
  background-color: #9c7c4a;
  color: #0d1323;
}

/* Anfal History Section Styles */
.history-section {
  width: 100%;
  background-image: url(../images/history-section-bg.jpg);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  padding: 2rem 0;
}

.history-section .content-history {
  margin: 0 2rem;
  color: white;
}

.history-section h2 {
  font-family: "Playfair Display", serif;
  text-align: left;
  font-size: 70px;
  line-height: 5rem;
  color: #9c7c4a;
  font-weight: normal;
}

.history-section p {
  font-size: 16px;
  padding-bottom: 3rem;
}
.history-card-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.history-card {
  flex-basis: calc(33.333% - 20px);
  margin-bottom: 20px;
  /* background: #bb8d3e;  */
  /* border-radius: 10px; */
  padding: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.history-card img {
  width: 100%;
  border-radius: 0 120px 0px 120px;
  margin-bottom: 10px;
}

.history-card h3 {
  font-size: 30px;
  text-transform: uppercase;
  color: #bb8d3e;
}
.history-card h4 {
  font-size: 16px;
  text-transform: uppercase;
  color: #fff;
}
.history-card h5 {
  font-size: 14px;
  color: #bb8d3e;
  padding-bottom: 1rem;
}

.history-button {
  padding: 10px 20px;
  cursor: pointer;
  /* background-color: #bb8d3e;  */
  background-color: #0d1323; /* Dark navy blue*/
  border: none;
  border-radius: 25px;
  /* color: white; */
  color: #9c7c4a; /*dark gold*/

  font-size: 16px;
  transition: background-color 0.3s ease;
}

.history-button:hover {
  background-color: #9c7c4a;
  color: #0d1323;
}
/* End Anfal Hisotry Section Styles */
/* Start Anfal Feed Additive Section Styles */
.feed-additive-section {
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 20px;
  /* padding: 2rem; */
  padding-top: 6rem;
  padding-bottom: 4rem;
  padding-left: 2rem;
  padding-right: 2rem;
}

.feed-additive-content,
.feed-image-container {
  flex-basis: 50%;
}

.feed-additive-content h2 {
  color: #0d1323;
  font-family: "Playfair Display", serif;
  text-align: left;
  font-size: 70px;
  line-height: 5rem;
  font-weight: normal;
  padding-bottom: 1rem;
}

.feed-additive-content h3 {
  color: #0d1323;
  text-align: left;
  font-size: 24px;
  line-height: 2.5rem;
  text-transform: uppercase;
  font-weight: 600;
  padding-bottom: 0.5rem;
}

.feed-additive-content h5 {
  color: #0d1323;
  text-align: left;
  font-size: 36px;
  line-height: 2.5rem;
  text-transform: uppercase;
  font-weight: 600;
  padding-top: 1rem;
  padding-bottom: 0.5rem;
}

.feed-additive-content p {
  font-size: 16px;
}

.feed-details {
  font-size: 16px;
}

.feed-image-container img{
  max-width: 100%;
  height: auto;
}

/* Responsive design */
@media (max-width: 768px) {
  .feed-additive-section {
    flex-direction: column;
  }
  .feed-additive-content,
  .feed-image-container {
    width: 100%;
  }
}
/* End Anfal Feed Additive Section Styles */

/* Himalayan salt for wellness styles */
.himalayans-section {
    position: relative;
    text-align: center;
    /* padding: 50px 0; */
    padding: 50px 0px 0px 0px;
  }
  
  .himalayans-section h2 {
    color: #0d1323;
    font-family: "Playfair Display", serif;
    text-align: center;
    font-size: 70px;
    line-height: 5rem;
    font-weight: normal;
    padding-bottom: 1rem;
  }
  
  .himalayans-section p {
    color: #0d1323;
    text-align: center;
    font-size: 30px;
    color: #fff;
    /* color: #9c7c4a; */
    padding: 0px 300px 20px 300px;
    box-shadow: #000;
  }
  /* .himalayans-section .wellness-image-heading { */
  .himalayans-section h6 {
    color: #fff;
    font-family: "Playfair Display", serif;
    text-align: center;
    font-size: 55px;
    /* line-height: 5rem; */
    font-weight: normal;
    /* padding-bottom: 1rem; */
  }
  
  .himalayans-section .wellness-section-text {
    color: #0d1323;
    font-size: 16px;
    padding: 0px 100px 20px 100px;
  }
  
  .himalayan-content {
    position: relative;
    height: 80vh; /* Adjust as needed */
    background-size: cover; /* Cover the entire content area */
    background-position: center; /* Center the background image */
    background-repeat: no-repeat; /* Do not repeat the background image */
    transform-origin: center; /* Ensures scaling occurs from the center */
  }
  
  .himalayan-content img {
     /* width: 100%; */
    /*height: 100%; */
    max-width: 100%;
    height: auto;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  
  .himalayan-info {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white; /* Adjust color for visibility */
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); /* For better readability */
  }
  /* End himalayan salt for wellness styles */

/* Himalayan salt lifestyle section styles two */
.salt-container {
  max-width: 1200px;
  margin: 0 auto;
  
  /* padding: 0 20px; */
}
.salt-container h2 {
  /* color: #9c7c4a; */
  color: #cfab71;
  font-family: "Playfair Display", serif;
  text-align: center;
  font-size: 70px;
  line-height: 5rem;
  font-weight: normal;
  padding-bottom: 1rem;
}
.salt-container .text-color {
  /* color: #a08d6f; */
  color: #cfab71;
  text-align: center;
  padding: 0px 100px 0px 100px;
}
.salts {
  /* background-color: #f7f7f7; */
  background-color: #0d1323;
  margin-top: 190px;

  padding: 100px 0;
}

.salts-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 40px;
}

.salt {
  width: calc(50.5% - 20px);
  margin-bottom: 40px;
  background-color: #9c7c4a;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 0 120px 0px 120px;
  /* border-radius: 20px; */
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.salt:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
  /* border: 10px solid #a08d6f; */
  background-color: #a08d6f;
}

.salt-icon {
  font-size: 2rem;
  margin-bottom: 20px;
}

.salt h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.salt p {
  font-size: 1rem;
  margin-bottom: 20px;
}

.salt a.btn {
  display: inline-block;
  padding: 10px 20px;
  cursor: pointer;
  /* background-color: #bb8d3e;  */
  background-color: #0d1323; /* Dark navy blue*/
  border: none;
  border-radius: 25px;
  /* color: white; */
  color: #9c7c4a; /*dark gold*/

  font-size: 16px;
  transition: background-color 0.3s ease;
}

.salt a.btn:hover {
  background-color: #9c7c4a;
  color: #0d1323;
}

/* End himalayan salt lifestyle section styles two */

/* Start anfal section styles */
.sourcing-container {
  max-width: 1200px;
  margin: 0 auto;
  /* padding: 0 20px; */
  background-image: url(../images/mark-bg-sourcing.png);
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center;
}
.sourcing-container h2 {
  /* color: #9c7c4a; */
  /* color: #cfab71; */
  color: #0d1323;
  font-family: "Playfair Display", serif;
  text-transform: uppercase;
  text-align: center;
  font-size: 70px;
  line-height: 5rem;
  font-weight: normal;
  padding-bottom: 1rem;
}
.sourcing-container .sourcing-text-color {
  /* color: #a08d6f; */
  color: #0d1323;
  text-align: center;
  padding: 0px 100px 0px 100px;
}
.sourcings {
  /* background-color: #f7f7f7; */
  /* background-color: #0d1323; */
  /* background-color: #9c7c4a; */
  background-color: #f0dbbb;

  padding: 100px 0;
}

.sourcings-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 40px;
}

.sourcing {
  /* width: calc(50.50% - 20px); */
  width: calc(50.5% - 20px);
  margin-bottom: 40px;
  /* background-color: #9c7c4a; */
  /* box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1); */
  /* border-radius: 0 120px 0px 120px; */
  /* border-radius: 20px; */
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sourcing-icon {
  font-size: 2rem;
  margin-bottom: 20px;
}

.sourcing h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.sourcing p {
  font-size: 1rem;
  margin-bottom: 20px;
}

.sourcing a.btn {
  display: inline-block;
  padding: 10px 20px;
  cursor: pointer;
  /* background-color: #bb8d3e;  */
  background-color: #0d1323; /* Dark navy blue*/
  border: none;
  border-radius: 25px;
  /* color: white; */
  color: #9c7c4a; /*dark gold*/

  font-size: 16px;
  transition: background-color 0.3s ease;
}

.sourcing a.btn:hover {
  background-color: #9c7c4a;
  color: #0d1323;
}

/* End anfal sourcing section styles */

/* Anfal partners section styles */
.partner-section {
  position: relative;
  padding: 100px 0;
  /* background-color: var(--fx-accent-color); */
}

.partner-section::before {
  content: "";
  background-image: url(../images/about-bg.jpg);
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2; /* Adjust the opacity as needed */
  z-index: -1;
}

.partner-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
}

.partner-content {
  max-width: 100%; /* Adjust max-width as needed */
  text-align: center;
  color: #fff;
  z-index: 0;
}

.partner-heading {
  font-family: "Playfair Display", serif;
  font-size: 7.5rem;
  line-height: 8.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  opacity: 0.8;
  padding-bottom: 10px;
  color: #0d1323;
  
}

.partner-title {
  font-size: 3.8rem; /*Can be revert to 50 px*/
  line-height: 72px;
  padding: 0 15px;
  font-family: "Playfair Display", sans-serif;
  color: #0d1323;
  /* margin-top: -85px;  Overlap effect */
}

.partner-subtitle {
  font-size: 24px;
  margin-top: 20px;
  padding: 0 30px;
}

.partner-description {
  font-size: 22px;
  margin-top: 20px;
  padding: 0 20px 30px 30px;
}

/* Animate partner section */
@keyframes fadeInUpwards {
  from {
      opacity: 0;
      transform: translateY(40px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.partner-content.animated {
  animation: fadeInUpwards 1s ease-out;
}

/* End Animate partner section */

/* End Anfal partners section styles */

/* Anfal Footer styles */
.footer {
  padding: 11px;
  display: flex;
  flex-wrap: wrap;
  padding-top: 40px;

  /* margin-left: 9px; */
  background-color: #0d1323;
}

.footer-column {
  flex: 1 0 200px;
  margin-bottom: 20px;
  margin-left: 2rem;
}

.footer-column h3 {
  font-weight: normal;
  margin-bottom: 10px;
  color: #cfab71;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 5px;
}

.footer-column ul li a {
  /* color: #fff; */
  text-decoration: none;
}

.social-links {
  display: flex;
}

.social-links li {
  margin-right: 10px;
}

.social-links li:last-child {
  margin-right: 0;
}

.footer-bottom {
  /* background-color: #866027; */
  background-color: #0d1323;
  color: #b0b0b0;
  text-align: center;
  padding: 20px;
}

.footer-bottom p {
  margin: 0;
}

/* End Anfal Footer Styles */

/* Anfal Generic Styles */
.load-button {
  padding: 10px 150px;
  cursor: pointer;
  /* background-color: #bb8d3e;  */
  /*background-color: #0d1323;  Dark navy blue*/
  background-color: #b0b0b0;
  border: none;
  border-radius: 25px;
  /* color: white; */
  /*color: #9c7c4a; dark gold*/
  color: #0d1323;

  font-size: 16px;
  transition: background-color 0.3s ease;
}

.load-button:hover {
  background-color: #9c7c4a;
  color: #0d1323;
}
.make-it-center{
  margin: 0 auto;
}
.sections-heading h2 {
  font-family: "Playfair Display", serif;
  text-align: left;
  font-size: 70px;
  line-height: 5rem;
  color: #9c7c4a;
  font-weight: normal;
}

.sections p {
  font-size: 16px;
  padding-bottom: 3rem;
}

/* loading website content */
#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0d1323;
  z-index: 1000;
}

#loader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #9c7c4a;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* end loading website content */
/* End Anfal Generic Styles */

/* Responsive for mobile */
@media (max-width: 768px) {
  .card-container {
    flex-direction: column;
  }

  .card {
    flex-basis: 100%;
  }
}

/* Reuse the button styles from the previous section */

/* Responsive for mobile */
@media (max-width: 768px) {
  .card-container {
    flex-direction: column;
  }

  .card {
    flex-basis: 100%;
  }
}

/* Reuse the button styles from the previous section */

@media (max-width: 900px) {
  .nav {
    flex-direction: column-reverse;
  }
  .nav-logo {
    display: none;
  }

  .nav-socials {
    flex-direction: row;
    margin-top: 4em;
  }

  .nav-socials a {
    padding: 0 0.4em;
  }

  .nav-footer {
    display: none;
  }
}

@media (max-width: 767px) {
  .header-punchline {
    font-size: 36px;
  }
}
