/* 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;
}

.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;
}

.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/bee-landing.jpg);
  background-size: cover;
  position: relative;
  min-height: 70vh;
}

.landing::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 50%);
}

.landing .text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.landing .text h3 {
  font-size: 50px;
  color: white;
}

.landing .text h3 span {
  color: var(--main-color);
}

.landing img {
  position: absolute;
  max-width: 100%;
  bottom: 0%;
}

/* Landing Media */
@media screen and (max-width: 767px) {
  .landing img {
    bottom: 0%;
  }
  .landing .text h3 {
    font-size: 32px;
  }
}

@media (min-width: 1280px) and (max-width: 1280px) {
  .landing img {
    bottom: 0;
  }
}
/* Landing Media */
/* End Landing */
/* 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%;
  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 */
