/* Start Global Rules */

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  --main-color: #eba937;
  --main-alt-color: #ffd900;
  --borders-color: #ebebeb;
  --titles-color: #cac7c7;
  --main-transition: 0.6s;
  --main-padding-top: 100px;
  --main-padding-bottom: 100px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans Arabic", sans-serif;
  user-select: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

.container {
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

/* Small */

@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}

/* Medium */

@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}

/* Large */

@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}

.main-title {
  font-size: 30px;
  margin: auto;
  margin-bottom: 15px;
  border: 2px solid var(--main-alt-color);
  width: fit-content;
  padding: 10px 20px;
  border-radius: 100px;
  z-index: 5;
  position: relative;
  transition: var(--main-transition);
}

@media (max-width: 400px) {
  .main-title::before,
  .main-title::after {
    max-width: 20px;
  }
}

@media (max-width: 400px) {
  .main-title:hover::before,
  .main-title:hover::after {
    max-width: 30px;
  }
}

.main-title:hover {
  color: var(--main-alt-color);
  border-color: var(--borders-color);
}

.main-title::before {
  content: "";
  background-color: var(--main-alt-color);
  width: 70px;
  height: 2px;
  position: absolute;
  bottom: 50%;
  left: 100%;
  transition: var(--main-transition);
}

.main-title:hover::before {
  background-color: var(--borders-color);
  width: 90px;
}

.main-title::after {
  content: "";
  background-color: var(--main-alt-color);
  width: 70px;
  height: 2px;
  position: absolute;
  bottom: 50%;
  right: 100%;
  transition: var(--main-transition);
}

.main-title:hover::after {
  background-color: var(--borders-color);
  width: 90px;
}

.floated-whatsapp {
  position: fixed;
  z-index: 10;
  bottom: 30px;
  left: 30px;
  background-color: white;
  border-radius: 70%;
  padding: 3px;
  box-shadow: 0 2px 15px rgb(64 195 81 / 15%);
  z-index: 1000;
  transition: var(--main-transition);
}

.floated-whatsapp:hover {
  box-shadow: 0 2px 15px rgb(64 195 81 / 30%);
  padding: 4px;
}

.floated-whatsapp a {
  position: relative;
  z-index: 1000;
}

.to-top {
  background: #ffb759;
  position: fixed;
  bottom: 16px;
  right: 32px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #1f1f1f;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transition: var(--main-transition);
  z-index: 20;
}

.to-top:hover {
  background-color: #ffaf46;
}

.to-top.active {
  bottom: 32px;
  pointer-events: auto;
  opacity: 1;
}
/* End Global Rules */

/* Start Header */

header {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 20;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  min-height: 77px;
}

header .container::after {
  content: "";
  position: absolute;
  height: 1px;
  background-color: #a2a2a2;
  bottom: 0;
  width: calc(100% - 30px);
  left: 15px;
}

.header .navbar {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.header .logo img {
  width: 70%;
  position: relative;
}

.header .logo {
  width: 10%;
  position: absolute;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.close {
  user-select: none;
  cursor: pointer;
}

.hamburger {
  display: none;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #f8f6f6;
}

.header .navbar .nav-menu span {
  display: none;
}

.nav-menu {
  display: flex;
}

.nav-link {
  padding: 38px 10px;
  display: block;
  color: white;
  text-decoration: none;
  font-size: 17px;
  transition: 0.3s;
  position: relative;
  z-index: 2;
}

.nav-link.active {
  color: var(--main-color);
  border-bottom: 1px solid var(--main-color);
}

.nav-link:hover {
  color: var(--main-color);
  border-bottom: 1px solid var(--main-color);
}

/* Header Media */
@media only screen and (max-width: 768px) {
  .nav-menu {
    position: fixed;
    right: -100%;
    top: 0;
    flex-direction: column;
    background-color: white;
    width: 50%;
    height: 100%;
    border-radius: 1px;
    transition: var(--main-transition);
    border-top: 0.5px solid #ece9e9;
    z-index: 3;
  }

  .header {
    background-color: rgba(0, 0, 0, 0.473);
  }

  .header .navbar .nav-menu .cls span {
    font-weight: bold;
    font-size: 30px;
    display: flex;
    float: left;
    padding: 20px;
    font-family: "Montserrat", sans-serif;
    transition: var(--main-transition);
  }

  .header .navbar .nav-menu .cls span:hover {
    color: var(--main-alt-color);
  }

  .header .container::after {
    display: none;
  }

  .nav-menu.active {
    right: 0%;
  }

  .header .nav-link.active {
    border-top: 1px solid #ece9e9;
  }

  .header .nav-link {
    color: black;
    padding: 30px 10px;
    border-bottom: 1px solid #ece9e9;
  }

  .header .nav-link:hover {
    color: var(--main-color);
  }

  .hamburger {
    display: block;
    cursor: pointer;
  }
}

@media (max-width: 599px) {
  .header .logo {
    width: 17%;
  }
}

@media (min-height: 720px) and (max-height: 720px) {
  .header .logo {
    width: 15%;
  }
}

@media (min-width: 600px) and (max-width: 766px) {
  .header .logo {
    width: 12%;
  }
}

@media only screen and (max-width: 414px) {
  .nav-menu {
    width: 75%;
  }
}
/* Header Media */

/* End Header */
/* Start Landing */
.landing {
  background-image: url(/images/landing6.jpg);
  background-size: cover;
  position: relative;
  min-height: 100vh;
}

.landing::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 30%);
}

.landing .container {
  min-height: 100vh;
}

.landing .container .text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 400px;
  transition: var(--main-transition);
}

.landing .text h3 {
  font-size: 50px;
  color: white;
  margin: 0%;
  max-width: 100%;
}

.landing .text h3 span {
  color: var(--main-color);
  transition: var(--main-transition);
}

.landing .text h3 span:hover {
  color: var(--main-alt-color);
}

.landing .text p {
  font-size: 30px;
  color: rgb(241, 241, 241);
  line-height: 1.7;
}

.landing .text p a {
  font-weight: 600;
  color: var(--main-color);
  transition: var(--main-transition);
}

.landing .text p a:hover {
  color: var(--main-alt-color);
}

.landing img {
  position: absolute;
  max-width: 100%;
  bottom: -8%;
}

.landing .go-down {
  color: var(--main-color);
  position: absolute;
  bottom: 150px;
  left: 50%;
  transform: translateX(-50%);
  transition: var(--main-transition);
}

.landing .go-down:hover {
  color: var(--main-alt-color);
}

.landing .go-down i {
  animation: bounsing 1.5s infinite;
}

/* Landing Media */
@media (min-width: 1000px) {
  .landing .container .text {
    max-width: 800px;
  }
  .landing .go-down {
    bottom: 200px;
  }
}

/* Here the wave */

@media screen and (max-width: 767px) {
  .landing img {
    bottom: 0;
  }
  .landing {
    background-image: url(/images/landing6.jpg);
  }
}

@media (min-width: 1280px) and (max-width: 1280px) {
  .landing img {
    bottom: 0;
  }
}

/* Here the landing background */

@media screen and (min-width: 768px) {
  .landing .container .text {
    width: 600px;
  }
}

@media (min-height: 1366px) and (max-height: 1367px) {
  .landing .container .text {
    width: 1000px;
    top: 450px;
  }
  .header .nav ul li a {
    font-size: 20px;
  }
  .landing .text h3 {
    font-size: 80px;
  }
  .landing .text p {
    font-size: 45px;
  }
  .landing img {
    bottom: -10px;
  }
  .landing .go-down {
    font-size: 30px;
  }
  .landing {
    background-image: url(/images/landing6.jpg);
  }
}

@media (min-height: 1024px) and (max-height: 1365px) {
  .landing .container .text {
    width: 700px;
    top: 250px;
  }
  .landing .text h3 {
    font-size: 70px;
  }
  .landing .text p {
    font-size: 50px;
  }
  .landing img {
    bottom: -10px;
  }
  .landing {
    background-image: url(/images/landing6.jpg);
  }
  .landing .go-down {
    font-size: 27px;
  }
}

@media (min-height: 600px) and (max-height: 1023px) {
  .landing .go-down {
    bottom: 100px;
  }
}

@media (min-width: 1280px) and (max-width: 1281px) {
  .landing .container .text {
    top: 250px;
  }
  .landing .go-down {
    bottom: 180px;
  }
}

@media screen and (max-width: 767px) {
  .landing .go-down {
    bottom: 210px;
  }
  .landing .container .text {
    margin: auto;
  }
  .landing .text h3 {
    font-size: 40px;
  }
  .landing .text p {
    font-size: 25px;
  }
}

@media (max-width: 450px) {
  .landing .container .text {
    width: 300px;
  }
}

@media (max-width: 280px) {
  .landing .container .text {
    width: 250px;
  }
}

@media (max-width: 410px) {
  .landing .go-down {
    bottom: 40px;
  }
}

@media (min-height: 812px) and (max-height: 822px) {
  .landing .go-down {
    bottom: 150px;
  }
}

@media (min-height: 731px) and (max-height: 736px) {
  .landing .go-down {
    bottom: 150px;
  }
}

/* Landing Media */

/* End Landing */
/* Start About Us */
.about-us {
  padding-top: var(--main-padding-top);
  padding-bottom: var(--main-padding-bottom);
  background-color: #fff8ef;
  position: relative;
  min-height: 110vh;
  overflow: hidden;
}

.about-us .container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 40px;
}

.about-us .box img {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto;
  width: 100px;
  border-bottom: 1px solid var(--borders-color);
  padding: 10px;
}

.about-us .box {
  box-shadow: 0 2px 15px rgb(0 0 0 / 10%);
  align-items: center;
  background-color: white;
  border-radius: 20px;
  transition: transform var(--main-transition),
    box-shadow var(--main-transition);
  z-index: 5;
}

.about-us .box .content {
  position: relative;
  padding: 10px 20px 20px 20px;
}

.about-us .box .content h3 {
  margin: 0;
  text-align: center;
  font-size: 20px;
}

.about-us .box .content p {
  color: #777;
  word-spacing: 3px;
  text-align: center;
  font-size: 13px;
}

.about-us .box:hover {
  box-shadow: 0 2px 15px rgb(0 0 0 / 20%);
}

.about-us .rev-images img {
  position: absolute;
  top: 180px;
}

.about-us .rev-images img:nth-child(1) {
  max-width: 15%;
  top: 100px;
}

.about-us .rev-images img:nth-child(2) {
  left: 0;
  top: 100px;
  max-width: 12%;
  z-index: 10;
}

.about-us .rev-images img:nth-child(3) {
  top: 30px;
  right: 30px;
}

.about-us .rev-images img:nth-child(4) {
  left: 20px;
  top: 350px;
}

.about-us .rev-images img:nth-child(5) {
  top: 55%;
  z-index: 1;
  right: 2%;
}

.about-us .rev-images img:nth-child(4) {
  z-index: 4;
  left: 0;
  max-width: 30%;
}
.about-us .rev-images img:nth-child(5) {
  top: 280px;
  right: -100px;
  max-width: 40%;
}

.definition {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  margin-bottom: 40px;
  position: relative;
  z-index: 10;
}

.definition p {
  max-width: 600px;
  line-height: 1.5;
  word-spacing: 3;
  font-size: 20px;
}

.dropped-honey img {
  max-width: 100%;
  position: absolute;
}

/* About Media */
@media (min-width: 992px) and (max-width: 1199px) {
  .about-us .container {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

@media (max-width: 767px) {
  .about-us .rev-images img:nth-child(1) {
    max-width: 17%;
  }

  .about-us .rev-images img:nth-child(2) {
    max-width: 15%;
  }

  .definition p {
    margin-left: 20px;
    margin-right: 20px;
  }
}

@media (min-width: 1200px) {
  .about-us .rev-images img:nth-child(4),
  .about-us .rev-images img:nth-child(5) {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .about-us .rev-images img:nth-child(4),
  .about-us .rev-images img:nth-child(5) {
    max-width: 40%;
    top: 600px;
  }
}

@media (max-width: 414px) {
  .about-us .rev-images img:nth-child(4),
  .about-us .rev-images img:nth-child(5) {
    max-width: 60%;
    top: 1000px;
  }
}
/* About Media */
/* End About Us */
/* Start Honeybenif */
.honeybenif {
  padding-top: var(--main-padding-top);
  padding-bottom: var(--main-padding-top);
}

.honeybenif .container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.honeybenif .container .cell {
  flex-basis: 48%;
  background-color: white;
  box-shadow: 0 2px 15px rgb(0 0 0 / 10%);
  border-radius: 6px;
  overflow: hidden;
  transition: var(--main-transition);
}

.honeybenif .container .cell .inside .image-holder {
  overflow: hidden;
}

.honeybenif .container .cell .inside .image-holder img {
  max-width: 100%;
  width: 100%;
}

.honeybenif .container .cell h3 {
  text-align: center;
}

.honeybenif .container .cell p {
  display: flex;
  padding-top: 30px;
  padding-bottom: 15px;
  padding-right: 15px;
  border-top: 1px solid var(--borders-color);
}

.honeybenif .container .cell p:first-of-type {
  border-top: 1px solid var(--borders-color);
  padding-top: 30px;
  padding-bottom: 15px;
  padding-right: 15px;
}

.honeybenif .container a {
  width: fit-content;
  margin: auto;
  margin-top: 30px;
  font-size: 20px;
  border: 2px dashed var(--main-alt-color);
  padding: 20px;
  border-radius: 10px;
  color: black;
  transition: var(--main-transition);
}

.honeybenif .container a:hover {
  border-color: var(--borders-color);
  color: var(--main-alt-color);
}

/* Honeybenif Media */
@media (max-width: 1199px) {
  .honeybenif .container .cell {
    flex-basis: 100%;
  }
}
/* Honeybenif Media */
/* End Honeybenif */
/* Start Quran */
.quran-img {
  position: relative;
  margin: 0;
  background-color: #fff8ef;
}

.quran-img video {
  width: 100%;
}
/* End Quran */
/* Start Why Us */
.why-us {
  background-color: #fff8ef;
  padding-bottom: var(--main-padding-bottom);
  margin: 0;
  padding-top: 0;
}

.why-us .container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 40px;
}

.why-us .main-title {
  margin-bottom: 50px;
  top: 30px;
}

.why-us .why-box img {
  display: flex;
  margin: 20px auto;
}

.why-us .why-box {
  z-index: 5;
  background-color: rgba(255, 255, 255, 0.63);
  border-radius: 12px;
  transition: var(--main-transition);
  box-shadow: 0 2px 15px rgb(0 0 0 / 10%);
}

.why-us .why-box p {
  margin: auto auto 25px;
  width: fit-content;
  font-size: 20px;
  margin-top: 30px;
  color: rgb(104, 104, 104);
}
/* Start Why Us Media */
@media (min-width: 1200px) {
  .why-us .why-box:hover {
    transform: translateY(-15px);
    box-shadow: 0 2px 15px rgb(0 0 0 / 20%);
  }

  .why-us .why-box:nth-child(2):hover {
    transform: translateY(-15px);
    box-shadow: 0 2px 15px rgb(0 0 0 / 20%);
  }
}

@media (min-width: 688px) and (max-width: 1199px) {
  .why-us .why-box {
    margin: 0;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .why-us .container {
    width: 750px;
  }
}
/* Start Why Us Media */
/* End Why Us */
/* Start Products */
.products {
  padding-top: var(--main-padding-top);
  position: relative;
}

.products .container {
  display: flex;
  flex-wrap: wrap;
  gap: 45px;
}

.products .box-1 {
  flex-basis: 22%;
  background-color: white;
  box-shadow: 0 2px 15px rgb(0 0 0 / 10%);
  margin-bottom: 20px;
  margin-top: 20px;
  overflow: hidden;
  transition: var(--main-transition);
}

.products .box-1:hover {
  transform: translateY(-10px);
  box-shadow: 0 2px 15px rgb(0 0 0 / 20%);
}

.products .box-1 .image-holder {
  overflow: hidden;
}

.products .box-1 .image-holder img {
  max-width: 100%;
  width: 100%;
}

.products .box-1 .content-1 {
  padding: 20px;
}

.products .box-1 .content-1 .prices {
  display: flex;
  position: relative;
}

.products .box-1 h3 {
  margin: 0;
  margin-bottom: 5px;
}

.products .box-2 .image-holder {
  height: 33vh;
}

.products .box-2 {
  height: 49vh;
}

.products .box-1 span {
  line-height: 1.5;
  margin: 20px 0 0;
  display: inline;
  font-size: 15px;
  color: red;
  font-family: "Aref Ruqaa", serif;
}

.products .box-1 span.new-price {
  margin-left: 10px;
  font-size: 18px;
}

.products .box-1 span.old-price {
  color: var(--titles-color);
}

.products .box-1 span.old-price::before {
  content: "";
  border-bottom: 1px solid var(--titles-color);
  width: 25%;
  height: 1px;
  position: absolute;
  bottom: 24%;
  transform: rotate(-10deg);
}

.products .products-title {
  color: var(--main-color);
  font-weight: 550;
  position: absolute;
  top: 225px;
  padding-right: 10px;
  border-right: 4px solid;
  font-size: 21px;
}

.s-2 .products-title {
  top: 19px;
}

.s-3 .products-title {
  top: 19px;
}

.s-4 {
  padding-bottom: var(--main-padding-top);
}

.s-4 .products-title {
  top: 19px;
}

.products .container a {
  width: fit-content;
  margin: auto;
  margin-top: 30px;
  font-size: 20px;
  border: 2px dashed var(--main-alt-color);
  padding: 20px;
  border-radius: 10px;
  color: black;
  transition: var(--main-transition);
}

.products .container a:hover {
  border-color: var(--borders-color);
  color: var(--main-alt-color);
}

/* Products Media */
@media (min-width: 992px) and (max-width: 1199px) {
  .products .box-1 {
    flex-basis: 21%;
    gap: 50px;
  }
}
@media (max-width: 991px) {
  .products .box-1 {
    flex-basis: 45%;
  }
}

@media (max-width: 499px) {
  .products .box-1 {
    flex-basis: 43%;
  }
}

@media (max-width: 369px) {
  .products .box-1 {
    flex-basis: 100%;
  }
}

@media (max-width: 400px) {
  .products .box-1 span.old-price::before {
    width: 20%;
    bottom: 25%;
  }
}
@media (min-width: 401px) and (max-width: 599px) {
  .products .box-1 span.old-price::before {
    width: 12%;
    bottom: 25%;
  }
}

@media (min-width: 600px) and (max-width: 991px) {
  .products .box-1 span.old-price::before {
    width: 20%;
  }
}
/* Products Media */
/* End Products */
/* Start Bee Products */
.bee {
  padding-bottom: var(--main-padding-bottom);
  position: relative;
  background-color: #fff8ef;
}

.bee .imgs-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 40px;
}

.bee .main-title {
  margin-bottom: 40px;
  top: 50px;
}

.bee .bee-img img {
  max-width: 100%;
}

.bee .imgs-container .bee-box {
  position: relative;
  flex-basis: 25%;
}

.bee .imgs-container .bee-box img {
  max-width: 100%;
  border: 3px solid var(--borders-color);
  border-radius: 6px;
  box-shadow: 0 2px 15px rgb(0 0 0 / 10%);
}
/* Bee Products Media */
@media (min-width: 1199px) {
  .bee .imgs-container {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}
/* Bee Products Media */
/* End Bee Products */
/* Start Contact Us */
.contact {
  padding-top: var(--main-padding-top);
  padding-bottom: var(--main-padding-bottom);
}
.contact .container .content-2 {
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  box-shadow: 0 2px 15px rgb(0 0 0 / 5%);
  background-color: white;
  border-radius: 8px;
  margin-bottom: 20px;
}

.contact .info {
  display: flex;
  justify-content: space-around;
  margin-bottom: 100px;
  position: relative;
  border-bottom: 1px solid var(--borders-color);
}

.contact .info .info-cont {
  margin-bottom: 100px;
}

.contact .info .info-cont i {
  display: flex;
  justify-content: center;
  color: var(--main-alt-color);
  margin-bottom: 10px;
}

.contact .info .info-cont p {
  color: gray;
  text-align: center;
}

.contact .form-group {
  width: 100%;
  margin-top: 20px;
  font-size: 20px;
}

.contact .form-group input,
.contact .form-group textarea {
  width: 100%;
  padding: 12px;
  font-size: 18px;
  border: 1px solid rgba(128, 128, 128, 0.199);
  margin-top: 15px;
  outline-color: var(--main-color);
}

.contact textarea {
  resize: none;
}

.contact .btn button[type="submit"] {
  width: 100%;
  border: none;
  outline: none;
  padding: 20px;
  font-size: 24px;
  border-radius: 8px;
  color: var(--main-color);
  text-align: center;
  cursor: pointer;
  margin-top: 10px;
  margin-bottom: 20px;
  transition: var(--main-transition);
}

.contact .btn button[type="submit"]:hover {
  background-color: #ffd90062;
  color: white;
}

#status {
  width: 90%;
  max-width: 500px;
  text-align: center;
  padding: 10px;
  margin: 0 auto;
}

#status .success {
  border-radius: 8px;
  padding: 10px;
  background-color: #ffd90098;
  animation: success 4s ease forwards;
}

#status .error {
  border-radius: 8px;
  padding: 10px;
  background-color: rgb(250, 129, 92);
  color: white;
  animation: error 4s ease forwards;
}

.contact iframe {
  width: 100%;
  margin-top: 20px;
  box-shadow: 0 2px 15px rgb(0 0 0 / 15%);
  border-radius: 6px;
}

/* Contact Us Media */
@media (max-width: 767px) {
  .contact .container .content-2 {
    width: 100%;
  }

  .contact .info {
    flex-direction: column;
    align-items: center;
    border: none;
    margin-bottom: 30px;
  }

  .contact .info p {
    display: flex;
    justify-content: center;
  }

  .contact .info .info-cont::before {
    display: none;
  }
  .contact .info .info-cont {
    border-bottom: 1px solid var(--borders-color);
    border-left: none;
    width: 50%;
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
  }
  .contact .info .info-cont:nth-child(4) {
    border: none;
  }
}
/* Contact Us Media */
/* End Contact Us */
/* Start Footer */
.footer {
  background-image: url(/images/footer-bg.jpg);
  background-size: cover;
  position: relative;
  color: white;
  text-align: center;
}

.footer::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 70%);
}

.footer .container {
  position: relative;
}
.footer img {
  margin-bottom: 20px;
  width: 20%;
  margin-top: 30px;
}
.footer p:not(.copyright) {
  text-transform: uppercase;
  padding: 20px;
  border-bottom: 1px solid white;
  font-size: 22px;
  width: fit-content;
  margin: 20px auto;
}
.footer .social-icons i {
  padding: 10px 15px;
  transition: var(--main-transition);
}

.footer .social-icons a i.fa-facebook-f {
  background-color: #3b5998;
  color: white;
}

.footer .social-icons a i.fa-facebook-f:hover {
  color: rgb(189, 189, 189);
}

.footer .social-icons a i.fa-instagram {
  background: #f09433;
  background: -moz-linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  background: -webkit-linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
  color: white;
}

.footer .social-icons a i.fa-instagram:hover {
  color: rgb(189, 189, 189);
}

.footer .social-icons a i.fa-whatsapp {
  background-color: #2fd254;
  color: white;
}

.footer .social-icons a i.fa-whatsapp:hover {
  color: rgb(189, 189, 189);
}

.footer .social-icons a i.fa-envelope {
  color: white;
  background-color: #777;
}

.footer .social-icons a i.fa-envelope:hover {
  color: rgb(189, 189, 189);
}
.footer .copyright {
  margin-top: 60px;
  margin-bottom: 0;
  background-color: #1a1a1a;
  z-index: 10;
  padding: 20px;
}
.footer .copyright span {
  font-weight: bold;
  color: var(--main-color);
}
/* Footer Media */
@media (max-width: 767px) {
  .footer img {
    width: 40%;
  }

  .footer {
    background-position: -350px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .footer {
    background-position: -50px;
  }
}
/* Footer Media */
/* End Footer */
/* Start Animation */

@keyframes bounsing {
  0%,
  10%,
  20%,
  50%,
  80%,
  100% {
    transform: translate(0);
  }
  40%,
  60% {
    transform: translateY(15px);
  }
}

@keyframes success {
  0% {
    opacity: 1;
    pointer-events: all;
  }

  90% {
    opacity: 1;
    pointer-events: all;
  }

  100% {
    opacity: 0;
    pointer-events: none;
  }
}

@keyframes error {
  0% {
    opacity: 1;
    pointer-events: all;
  }

  90% {
    opacity: 1;
    pointer-events: all;
  }

  100% {
    opacity: 0;
    pointer-events: none;
  }
}

/* End Animation */
