/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/ClientSide/css.css to edit this template
*/
/* 
    Created on : Jan 24, 2024, 8:54:35 AM
    Author     : contronics
*/

@import url("/web/css/style.css");

html {
  background-color: black;
}

video {
  margin: auto;
  max-width: 100%;
  height: 100%;
}

#videoContainer {
  display: flex;
  margin: auto;

  height: 100%;
  width: 100%;
  background-color: black;
}

#menu-logo {
  margin-left: -10px;
  display: block;
  width: auto;
  height: 100%;
}

#divMainText {
  background: transparent;
  font-size: medium;
  text-transform: capitalize;
}

#divSubTitle {
  text-transform: capitalize;
}

.form {
  min-width: 50%;
  min-height: 70%;
  z-index:1;
}

#background-img {
  display: flex;
  top: 10%;
  left: 10%;
  position: absolute;
  width: 80%;
  height: 80%;
  margin: auto;
  background-image: url("/images/background.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 50%;
  z-index: -999999;
  opacity: .5;
}


/****************************************************************************/
/****************************************************************************/

header {
  padding: 0 20px;
  background-color: #1d1f1d;
  display: flex;
  justify-content: space-between;
  font-size: 1.5vw;
  text-transform: uppercase;
}

#brand {
  margin-right: auto;
  font-weight: bold;
  font-size: 18px;
  display: flex;
  align-items: center;
  background-color: blue;
}

#brand a {
  color: #09c372;
}

ul {
  list-style: none;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

ul a {
  color: white;
}

ul li {
  padding: 5px;
  margin-left: 10px;
  cursor: pointer;
}

ul li:hover {
  transform: scale(1.1);
  transition: 0.3s;
}

button i {
  width: 60px;
  height: 60px;
  border-radius: 5px;

  background-position: center;
  background-repeat: no-repeat;
  background-size: 60%;
}

button span {
  margin: auto;
  padding: 10px;
  font-weight: bolder;
}

.btn-login {
  display: flex;
  height: 40px;
  padding: 0;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1vh;
  flex-direction: row;
}

#btnWhatsApp {
  background-color: #28d065;
}

#btnWhatsApp i {
  height: 40px;
  width: 40px;
  background-color: #25b058;
  background-image: url("/images/icons/ic_whatsapp.png");
  background-size: contain;
}

#hamburger-icon {
  margin: auto 0;
  display: none;
  cursor: pointer;
}

#hamburger-icon div {
  width: 35px;
  height: 3px;
  background-color: white;
  margin: 6px 0;
  transition: 0.4s;
}

.open .bar1 {
  -webkit-transform: rotate(-45deg) translate(-6px, 6px);
  transform: rotate(-45deg) translate(-6px, 6px);
}

.open .bar2 {
  opacity: 0;
}

.open .bar3 {
  -webkit-transform: rotate(45deg) translate(-6px, -8px);
  transform: rotate(45deg) translate(-6px, -8px);
}

.open .mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;

}

.mobile-menu {
  display: none;
  position: absolute;
  top: 50px;
  right: 0;
  height: calc(100vh - 50px);
  width: auto;
  height: auto;
  background-color: #1d1f1d;
  border: 2px #404040 solid;
  z-index: 9999999;
}

.mobile-menu li {
  margin-bottom: 10px;
}

@media only screen and (max-width: 800px) {
  header {
    font-size: large
  }

  header nav {
    display: none;
  }

  #hamburger-icon {
    display: block;
  }


}
