@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');
html {
  scroll-behavior: smooth;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.nav-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 24px;
  background: silver;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  transition: 0.5s ease;
  box-shadow: 0 1px 2px 1px rgba(0,0,0,0.1);
  z-index: 999;
}
.nav-container a:hover {
  text-decoration: none;
}
.nav-container .nav-logo {
  position: relative;
  margin: auto 0;
}
.nav-container .nav-logo h3 {
  margin: 0;
  padding: 0;
}
.nav-container .nav-logo h3 a {
  font-family: 'Anton';
  font-weight: 400;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.nav-container .nav-box {
  position: relative;
  transition: 0.5s ease;
  overflow: hidden;
}
.nav-container .nav-box1 .nav-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto 0;
  list-style: none;
}
.nav-container .nav-box1 .nav-list li {
  position: relative;
  padding: 10px 12px;
  text-align: center;
  transition: 0.5s ease;
  overflow: hidden;
}
.nav-container .nav-box1 .nav-list li a {
  color: #000;
  font-weight: 500;
  letter-spacing: 0.2px;
}
.nav-container .nav-box1 .nav-list li:hover {
  background-color: #343A40;
  border-radius: 4px;
}
.nav-container .nav-box1 .nav-list li:hover a {
  color: #fff;
}
.nav-container .nav-box2 {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-container .nav-box2 .nav-box-icon {
  position: relative;
  margin: auto 10px;
}
.nav-container .nav-box2 .nav-box-icon a i {
  color: silver;
  margin: 0 2px;
  transition: 0.5s ease;
}
.nav-container .nav-box2 .nav-box-icon a i:hover {
  color: #000;
  transform: scale(1.1);
}
.nav-container .nav-box2 .nav-toggle {
  display: none;
}
.container-custom {
  position: relative;
  padding: 20px 24px;
  overflow-x: hidden;
}
#header {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url('../img/banner/banner.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: column;
  z-index: 1;
}
#header:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.4;
}
#header h1 {
  font-family: 'Poppins';
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.3px;
}
.button {
  position: relative;
  padding: 12px 15px;
  border-radius: 4px;
  background-color: #f3f3f3;
  transition: 0.5s ease;
  color: #000;
  font-weight: 500;
  letter-spacing: 0.2px;
}
.button:hover {
  text-decoration: none;
}
.button-radius {
  border-radius: 40px;
}
.button-blue {
  background-color: royalblue;
  color: #fff;
}
.card-custom {
  position: relative;
  transition: 0.5s ease;
  margin: 20px 0;
}
.card-custom .card-custom-header {
  position: relative;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.5s ease;
}
.card-custom .card-custom-header .card-custom-img {
  position: relative;
  width: 100%;
}
.card-custom .card-custom-body {
  position: relative;
  width: 100%;
  padding: 5px;
}
.card-custom .card-custom-body .card-info {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 10px 0;
}
.card-custom .card-custom-body .card-content {
  position: relative;
  margin: 5px 0;
}
.card-custom .card-custom-body .card-content h3 {
  font-family: 'Anton';
  font-weight: 500;
  letter-spacing: 0.2px;
  margin: 0;
}
.text-poppins {
  font-family: 'Poppins';
}
.text-anton {
  font-family: 'Anton';
}
.input-custom-box {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.input-custom-box .input-custom {
  position: relative;
  width: 100%;
  padding: 10px 120px 10px 15px;
  border: none;
  border-radius: 4px;
  outline: none;
  background-color: #f3f3f3;
  transition: 0.5s;
  overflow: hidden;
}
.input-custom-box .button-input-custom {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  padding: 12px 15px;
  border: none;
  border-radius: 0 4px 4px 0;
  color: #fff;
  background-color: black;
  text-align: center;
  font-family: 'Poppins';
}
#o-none {
  outline: none;
}
@media screen and (max-width: 768px) {
  .nav-container .nav-box1 {
    position: fixed;
    top: 0;
    left: 0;
    width: 52%;
    height: 100%;
    background-color: #fff;
    box-shadow: 0 1px 2px 1px rgba(0,0,0,0.1);
    z-index: 999;
    transform: translateX(-100%);
  }
  .nav-container .nav-box1.active {
    transform: translateX(0);
  }
  .nav-container .nav-box1 .nav-list {
    flex-direction: column;
    justify-content: space-evenly;
    height: 50vh;
    margin: 50% 0;
  }
  .nav-container .nav-box2 .nav-toggle {
    position: relative;
    width: 26px;
    height: 26px;
    margin: auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: 0.5s ease;
    overflow: hidden;
    cursor: pointer;
  }
  .nav-container .nav-box2 .nav-toggle span {
    width: 100%;
    height: 4px;
    background-color: #000;
    transition: 0.5s ease;
    margin: 2px 0;
    border-radius: 4px;
  }
  .nav-container .nav-box2 .nav-toggle.active span:first-child {
    transform: translateY(8px) rotate(45deg);
  }
  .nav-container .nav-box2 .nav-toggle.active span:nth-child(2) {
    opacity: 0;
    visibility: hidden;
  }
  .nav-container .nav-box2 .nav-toggle.active span:last-child {
    transform: translateY(-8px) rotate(-45deg);
  }
  .card-custom .card-custom-body .card-info .card-info-content:nth-child(3) {
    display: none;
  }
}
