* {
  margin: 0;
}
.home {
  height: 100vh;
  background-image: url("img/bg/bg-image-home.jpg");
  background-size: cover !important;
  transition: 0.5s ease !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  margin-right: 120px;
}

.home__image {
  width: 100%;
  position: absolute;
}

.home__containers {
  display: flex;
  flex-direction: row;
  height: 100%;
  width: 100%;
}

.home__container {
  color: white;
  width: 500px;
  border-right: 1px solid white;
  height: 100%;
}

.home__containerInfo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 75vh;
  transition: all 0.3s ease-in-out;
}

.home__container:hover > .home__containerInfo {
  transform: translateY(-50px);
}

.home__containerInfo > a > h1 {
  font-family: "Roboto", sans-serif !important;
  font-weight: bold;
}

.home__containerInfo > a > h2 {
  font-family: "Source Sans Pro", sans-serif !important ;
}

a {
  text-decoration: none;
  margin: 0;
  color: white !important ;
}
.navbar {
  height: 100vh;
  background-color: black;
  position: fixed;
  right: 0;
  align-items: flex-start !important;
  top: 0;
}

.navbar__main {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 130px;
  height: 100%;

  justify-content: space-between;
  z-index: 1;
}

.navbar__logo {
  width: 100px;
  border-radius: 100px;
}

.navbar__menu {
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.MuiIconButton-root {
  outline: none !important;
  color: ghostwhite !important;
}

.MuiSvgIcon-root {
  font-size: 1.2rem !important;
}

.menu-bars {
  font-size: 2rem;
}

.nav-menu {
  height: 100vh;
  position: absolute;
  right: 80px;
  background-color: black;
  top: 0;
  z-index: -1;
  transition: visibility 0s, opacity 0.5s linear;
  visibility: hidden;
  color: white;
}

.nav-menu-items {
  display: flex;
  height: 88%;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.nav-text {
  margin: 10px;
  font-size: 20px;
  font-weight: 500;
  color: white;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}

.nav-menu.active {
  right: 130px;
  z-index: 1;
  visibility: visible;
  transition: 400ms ease-in-out;
  opacity: 1;
}

.navbar__menu > h3 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 25px;
}

.menu-bars {
  padding: 20px;
  cursor: pointer;
}

@media (max-width: 950px) {
  .home {
    height: fit-content;
    background-image: none;
    margin-top: 100px;
  }
  .home__containers {
    flex-direction: column;
  }
  .home__container {
    height: 100px;
    border: 1px solid black;
    height: 50vh;
    width: 100vw;
  }
  .home__containerInfo {
    margin-top: 180px;
  }

  .navbar {
    height: 110px;
    width: 100vw;
  }

  .navbar__logo {
    margin-left: 20px;
    width: 60px;
  }
  .navbar__main {
    flex-direction: row;
    width: 100%;
  }
  .navbar__menu > h3 {
    visibility: hidden;
  }
  .nav-menu {
    width: 100vw;
    height: fit-content;
    right: 0px;
    top: 100px;
  }

  .nav-menu.active {
    right: 0px;
    transition: 400ms ease-in-out;
  }

  .facebook {
    display: none;
  }

  .home__container:hover > .home__containerInfo {
    transform: none;
  }
  #info1,
  #info2,
  #info3,
  #info4,
  #info5 {
    background-size: cover !important;

    background-position: center !important;
    background-repeat: no-repeat !important;
  }
  #info1 {
    background-image: url("img/bg/bg-image-home.jpg");
  }
  #info2 {
    background-image: url("img/bg/bg-image-about-us.jpg");
  }
  #info3 {
    background-image: url("img/bg/bg-image-our-services.jpg");
  } 
   #info4 {
    background-image: url("img/bg/bg-image-our-events.jpg");
  } 
  #info5 {
    background-image: url("img/bg/bg-image-contact-us.jpg");
  }
}
.popup .overlay {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
  display: none;
}

.popup .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: #fff;
  width: 60%;
  height: fit-content;
  z-index: 2;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
  border-radius: 30px;
}

.popup .close-btn {
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 20px;
  width: 30px;
  height: 30px;
  background: #222;
  color: #fff;
  font-size: 25px;
  font-weight: 600;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
}

.popup.active .overlay {
  display: block;
}

.popup.active .content {
  transition: all 500ms ease-in-out;
  transform: translate(-50%, -50%) scale(1);
}

.orange {
  width: 100%;
  height: 2px;
  background-color: #ff7e00;
}

.whatsapp_btn {
  padding: 15px;
  font-size: 18px;
  color: #ff7e00;
  border: none;

  font-weight: 600;
  background: #fff;
  margin-top: 30px;

  border-bottom: 2px solid #ff7e00;
}

.whatsapp_btn:hover {
  background-color: #ff7e00;
  color: white;
  transition: all 300ms ease-in;
}

.whatsapp_btn:hover > .icon {
  color: white !important;
}

@media (max-width: 770px) {
  .content > h1 {
    font-size: 18px;
  }
  .content > p {
    font-size: 13px;
  }

  .content > a > button {
    font-size: 15px;
  }

  .icon {
    font-size: 20px !important;
  }
  .popup .close-btn {
    width: 20px;
    height: 20px;
    font-size: 18px;
    text-align: center;
    line-height: 25px;
  }
}

