@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&family=Roboto+Slab:wght@300;400;500;600;700;800;900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@100;200;300;400;500;600;700;800;900&family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

:root {
  --yellowColor: #fff500;
  --textColor: #ebeaea;
  --greenColor: #a2cd3a;
  --blueColor: #64beff;
  --navBtnColor: #fbe18a;
  --blackColor: #000005;
  --whiteColor: #ffffff;
  --headingText: "Big Shoulders Display";
  --textStyle: "Poppins", sans-serif;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

::selection {
  background-color: var(--greenColor);
  color: #fff;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  color: #fff;
  outline: none;
  font-family: var(--textStyle);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}

.clear:after,
.clear:before {
  content: "";
  display: table;
  clear: both;
}

/* ==== Navbar style ==== */
.logo {
  /*  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  display: none; */
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  max-width: 150px;
}
.logo a {
  text-decoration: none;
}
.logo a:hover {
  text-decoration: none;
}
nav {
  height: 60px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: center;
  margin: 0;
  padding: 0 3rem;
  text-align: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: var(--blackColor);
}

ul {
  margin-bottom: 0;
}
.z_up {
  z-index: 9;
}
.backto-top {
  display: none;
}
.backto-top > div {
  position: fixed;
  bottom: 50px;
  right: 30px;
  cursor: pointer;
  z-index: 999;
  width: 50px;
  height: 50px;
  line-height: 46px;
  border-radius: 50%;
  background-color: #212428;
  text-align: center;
  z-index: 999 !important;
  box-shadow: 10px 10px 19px #0d0d0d, -10px -10px 19px #0d0d0d;
}
.backto-top svg {
  font-size: 14px !important;
  color: #fff;
  width: 27px;
  height: 27px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
}
.navbar {
  text-align: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.nav-menu li {
  list-style: none;
  padding: 0 2rem;
}

.nav-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  text-align: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

a.nav-link {
  color: var(--navBtnColor);
  text-transform: uppercase;
  text-decoration: none;
  font-size: 1rem;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

a.nav-link:hover {
  color: orange;
}

.hamburger {
  display: none;
}

.bar,
.fa-times {
  width: 1.5rem;
  height: 3px;
  display: block;
  color: #fff;
  padding: 0;
  margin: 6px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: #fff;
}

.bar:nth-child(1) {
  width: 250%;
}

.bar:nth-child(2) {
  width: 250%;
}

.bar:nth-child(3) {
  width: 250%;
}

/* ==== Modal style ==== */
.popup {
  background-color: #000000c4;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  /* 	display: flex; */
  display: none;
  align-items: center;
  justify-content: center;
}
.popup-content {
  display: none;
  width: 50%;
  height: 60%;
  position: relative;
  padding: 35px;
  margin: 0 15px;
  box-sizing: border-box;
  transition: 0.3s ease;
}
.popup-content .close {
  position: absolute;
  right: 0px;
  top: 0px;
  cursor: pointer;
}
body.showPopup .popup {
  display: flex;
}
body.showPopup .popup-content {
  display: block;
  animation: popup 0.3s forwards;
}
body.removePopup .popup-content {
  animation: popupclose 0.3s forwards !important;
}

@keyframes popup {
  0% {
    transform: scale(0.9);
    opacity: 0.5;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes popupclose {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.9);
    opacity: 0.5;
  }
}

/* button */
.open-btn {
  background-color: #dd1d24;
  color: #fff;
  display: inline-block;
  padding: 12px 34px;
  border-radius: 14px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  margin-top: 30px;
}
.open-btn:hover {
  color: #fff;
  text-decoration: none;
  background-color: #ba1b20;
}
/* ==== Hero Section ====  */
.hero_section {
  background-image: url("../images/Background-Image.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  object-fit: cover;
  width: 100%;
}
video {
  width: 100%;
}

.swiper-pagination-bullet {
  background-color: #fff;
  height: 8px;
  width: 8px;
}
.swiper-pagination-bullet-active {
  width: 10px;
  height: 10px;
}

/* ==== First Section Style ====  */
.bg_section {
  background-image: url("../images/Background-Image.png");
  background-position: center;
  background-size: 100% 101%;
  background-repeat: no-repeat;
  object-fit: cover;
  height: auto;
  width: 100%;
  overflow: hidden;
}
.bg_section_1st_section {
  background-image: url("../images/Background-Image.png");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  object-fit: cover;
  height: auto;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.bg_section_2nd_section {
  background-image: url("../images/Background-img_2st.jpg");
  background-position: center;
  background-size: 100% 101%;
  background-repeat: no-repeat;
  object-fit: cover;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bg_section_3rd_section {
  background-image: url("../images/Background-img_3st.jpg");
  background-position: center;
  background-size: 100% 101%;
  background-repeat: no-repeat;
  object-fit: cover;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.center_items {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.first_section {
  margin-top: 40px;
  display: flex;
  align-items: center;
}
.first_section h2 {
  color: var(--yellowColor);
  font-family: var(--headingText);
  line-height: 1.2;
  font-size: 38px;
  font-weight: 700;
  width: 500px;
}
.first_section h5 {
  color: var(--whiteColor);
  font-size: 20px;
  font-weight: 600;
}
.first_section p {
  color: rgb(179, 179, 179);
  width: 580px;
}
.img_text {
  position: relative;
}
.img_text1 {
  position: relative;
}
.position-absolute {
  position: absolute;
}
.mayo_position {
  position: absolute;
  top: -10%;
}
.onions_position1 {
  position: absolute;
  top: 30%;
}
.main_position {
  width: 100%;
  margin-left: 70px;
}
.hashtag_position {
  width: 300px;
  position: absolute;
  bottom: 375px;
  right: 0px;
}
.onions_position2 {
  position: absolute;
  right: 0px;
  top: -520px;
}
.hashtag_chip_position {
  width: 150px;
  position: absolute;
  bottom: 65px;
  right: 255px;
}
.chilli_2_position {
  position: absolute;
  right: 135px;
  bottom: 90px;
}
.chilli_flakes_position {
  position: absolute;
  right: 0;
  top: -320px;
}
.leaf_1_position {
  position: absolute;
  top: 50px;
  right: 25px;
}
.vector_green_position {
  transform: rotate(-25deg);
  position: absolute;
  top: 175px;
  right: 210px;
}
.chip_icon_1 {
  position: absolute;
  bottom: -330px;
  right: 165px;
}
.chip_icon_2 {
  position: absolute;
  bottom: -255px;
  right: 120px;
}
.chip_icon_3 {
  position: absolute;
  bottom: 190px;
  right: 240px;
}
.chip_icon_4 {
  position: absolute;
  bottom: 250px;
  right: 210px;
}
.text_center {
  margin-left: 100px;
}

.second_section h2 {
  color: var(--greenColor);
  font-family: var(--headingText);
  line-height: 1.2;
  font-size: 40px;
  font-weight: 700;
}
.third_section h2 {
  color: var(--blueColor);
  font-family: var(--headingText);
  line-height: 1.2;
  font-size: 40px;
  font-weight: 600;
  width: 400px;
}
.hstag_logo {
  margin-right: 10px;
  width: 690px;
}
.first_section_left_side_image {
  position: absolute;
  left: 0;
}
.first_section_left_side_image img {
  width: 100px;
  height: auto;
}
.first_section_right_side_image {
  position: absolute;
  right: 0;
}
.first_section_right_side_image img {
  width: 350px;
  height: auto;
}

/* ==== Image Hover Change ==== */
.flip-card {
  background-color: transparent;
  width: 100%;
  height: 500px;
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.flip-card-front {
  color: black;
}

.flip-card-back {
  color: white;
  transform: rotateY(180deg);
}

/* ==== Footer Section Style ==== */
footer {
  border-top: 1px solid rgb(58, 58, 58);
  padding: 20px 0px;
}
footer h6 {
  color: #ffffff;
  font-weight: 700;
  font-size: 13px;
}

.links ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0px;
  padding-top: 10px;
}
.links ul li {
  list-style: none;
  border-right: 1px solid rgb(58, 58, 58);
  padding: 0px 10px;
}
.links ul li a {
  color: var(--whiteColor);
  text-decoration: none;
  font-size: 14px;
}

footer .icon {
  display: flex;
  padding: 0;
}
footer .icon li {
  list-style: none;
  border-radius: 50px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.justify-content {
  justify-content: end;
}
.section_content {
  color: #fff;
}
.terms_contents {
  padding-top: 110px !important;
}
.terms_contents h1 {
  color: #fff500;
  text-align: center;
  font-family: var(--headingText);
  font-size: 42px;
  padding-bottom: 30px;
}
.section_content h2 {
  font-family: var(--textStyle);
  font-size: 24px;
  font-weight: 600;
  padding-top: 40px;
}
.section_content p {
  font-family: var(--textStyle);
  color: #e1e1e1;
}
@media (min-width: 1441px) {
  .chilli_flakes_position {
    position: absolute;
    right: 0;
    top: -310px;
  }
}

@media (min-width: 1440px) {
  .bg_section {
    height: auto;
    padding: 50px 0px 0px;
  }
  .bg_section_1st_section {
    height: 100vh;
    padding: 50px 0px;
  }
  .bg_section_2nd_section {
    height: auto;
    padding: 50px 0px;
  }
  .bg_section_3nd_section {
    height: auto;
    padding: 50px 0px;
  }
}
@media (max-width: 1024px) {
  .first_section h2 {
    width: 350px;
  }
}

@media (max-width: 992px) {
  nav {
    justify-content: space-between;
    padding: 0 2rem;
    height: 70px;
  }
  /* .logo {
    display: block;
  } */
  .logo {
    width: 100px;
  }
  .hamburger {
    display: block;
    width: 14px;
    margin-left: auto;
  }
  .active .bar:nth-child(2) {
    opacity: 0;
  }
  .active .bar:nth-child(1) {
    -webkit-transform: translateY(8px) rotate(-315deg);
    transform: translateY(8px) rotate(-315deg);
    width: 300%;
  }
  .active .bar:nth-child(3) {
    -webkit-transform: translateY(-10px) rotate(-45deg);
    transform: translateY(-10px) rotate(-45deg);
    width: 300%;
  }
  .nav-menu {
    width: 100%;
    height: 100%;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0px;
    right: -100%;
    padding: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0.8);
  }
  .nav-menu li {
    padding: 1rem 0;
  }
  a.nav-link {
    color: var(--navBtnColor);
    z-index: 1;
  }
  .active {
    right: 0px;
    z-index: 100;
    transition: 0.2s ease;
  }

  .text_center {
    margin: 0;
  }
  .first_section p {
    width: 100%;
  }
  .popup-content {
    display: none;
    width: 80%;
    height: 70%;
  }
}

/* @media (max-width: 899px) {
  .bg-video-wrap {
    height: 80vh;
  }
} */

@media (max-width: 768px) {
  footer ul li {
    font-size: 10px;
    padding: 0 5px;
  }
  /* .bg-video-wrap {
    height: 75vh;
  } */
  .onions_position1 {
    position: absolute;
    top: 55%;
    width: 60px;
  }
  .mayo_position {
    width: 60px;
  }
  .popup-content {
    display: none;
    width: 80%;
    height: 60%;
  }
  .flip-card {
    height: 320px;
  }
}

@media (max-width: 699px) {
  /* .bg-video-wrap {
    height: 65vh;
  } */
  .first_section {
    height: auto;
  }
  .second_section {
    height: auto;
  }
  .third_section {
    height: auto;
  }
  .bg_section {
    height: auto;
  }
  .bg_section_1st_section {
    background-size: cover;
    padding: 50px 0px;
  }
  .popup-content {
    display: none;
    width: 100%;
    height: 50%;
  }
}

@media (max-width: 576px) {
  /* video {
    width: auto;
    height: 70vh;
    z-index: 1;
  } */
  /* .bg-video-wrap {
    height: 70vh;
  } */
  .first_section h2 {
    line-height: 1.3;
    font-size: 24px;
    font-weight: 700;
    width: auto;
  }
  .first_section h5 {
    font-size: 16px;
  }
  .first_section p {
    font-size: 14px;
  }
  .second_section h2 {
    line-height: 1.3;
    font-size: 24px;
    font-weight: 700;
  }
  .third_section h2 {
    line-height: 1.3;
    font-size: 24px;
    font-weight: 700;
    width: auto;
  }
  .social_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 5px;
  }
  .social_icon h6 {
    margin-right: 10px;
    margin-bottom: 0;
  }
  .justify-content {
    justify-content: space-around;
  }
  .popup-content {
    display: none;
    width: 100%;
    height: 45%;
  }
  .flip-card {
    height: 360px;
  }
}
@media (max-width: 425px) {
  .popup-content {
    display: none;
    width: 100%;
    height: 40%;
  }
}
@media (max-width: 375px) {
  .popup-content {
    display: none;
    width: 100%;
    height: 30%;
  }
}

@media (max-width: 320px) {
  .popup-content {
    display: none;
    width: 100%;
    height: 20%;
  }
  .first_section p {
    width: 310px;
  }
}
