:root {
  --primary-color: #28a745;
  --secondary-color: #000000;
  --overlay-color: rgba(24, 39, 51, 0.85);
  --menu-speed: 0.75s;
  --regular: 300;
  --medium: 400;
  --semibold: 700;
  --bold: 700;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: 'poppins', sans-serif;
  font-weight: 400;
  background: var(--primary-color);
  color: #333;
  line-height: 1.6;
}
.hdd-container {
  background-color: #ffffff;
  max-width: 1920px;
  margin: 0 auto;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.footer {
  flex-grow: 1;
}

.hdd-container img {
  width: 100%;
  display: block;
}
.hdd-container a {
  text-decoration: none;
}
.hdd-container p {
  font-weight: var(--regular);
}

h1,
h2 {
  font-weight: var(--bold);
  line-height: 1.2;
}

/* =================== */

#about,
.solutions,
#cases,
#blog,
#team {
  display: none;
}
/* BUTTONS */
.btn {
  text-align: center;
  display: block;
  border: none;
  font-weight: var(--bold);
  font-size: 1.3rem;
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
  padding: 0.75rem 1.5rem;
  margin-top: 1rem;
  transition: all 500ms ease-in-out;
  text-decoration: none;
}

.btn:hover {
  background-color: var(--secondary-color);
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

/* ======= LOGO ============ */
.hdd-container .logo {
  width: 30%;
}
/* Navbar */
/* NAVIGATION */
#nav {
  width: 100%;
  background-color: var(--secondary-color);
  position: fixed;
  top: 0px;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  height: 70px;
  transition: 0.5s;
}

nav .desk-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}
nav .desk-nav li a {
  padding: 5px 15px;
  color: #ffffff;
  font-weight: var(--regular);
}

nav .desk-nav li a:hover {
  color: var(--primary-color);
}

nav li .current {
  border-bottom: 2px solid var(--primary-color);
}
.nav-box {
  height: 70px;
}
/* NAVIGATION MOBILE */
.mob-nav {
  width: 20px;
  height: 20px;
  position: absolute;
  transform: rotate(0deg);
  z-index: 9999;
  right: 20px;
  top: 20px;
  display: none;
}
.line-top,
.line-middle,
.line-bottom {
  width: 20px;
  height: 4px;
  background-color: #ffffff;
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 1s ease;
}
.line-middle {
  transform: translateY(7px);
}
.line-bottom {
  transform: translateY(14px);
}

.move {
  transform: rotate(0);

  transition: all 1s ease;
}
.move .line-top {
  transform: rotate(45deg) translateX(6px) translateY(6px);
  background-color: #ffffff;
  transition: all 1s ease;
}
.move .line-middle {
  opacity: 0;
}
.move .line-bottom {
  transform: rotate(-45deg) translateX(-6px) translateY(6px);
  background-color: #ffffff;
  transition: all 1s ease;
}
.mob-nav-items {
  background-color: var(--primary-color);
  opacity: 0;
  transition: all 1s ease;
  transform: translateX(30px);
  padding: 1rem;
  position: absolute;
  top: -10px;
  right: -80px;
  z-index: 1000;
}
.mob-nav-items li a {
  padding: 0.3rem 0;
  color: #ffffff;
  display: inline-block;
}

.mob-nav-items {
  list-style: none;
}
.mob-nav-items li {
  opacity: 0;
  transform: translateX(40px);
  transition: all 1s ease;
}
.mob-nav-items-opened {
  transform: translate(-95px, 20px);
  opacity: 1;
}
.mob-nav-items-opened li {
  opacity: 1;
  transform: translateX(0px);
}

/* Header */
.hero {
  background: url('../images/home/showcase-ginger.jpg') no-repeat center
    center/cover;
  height: 100vh;
  position: relative;
  color: #fff;
}

.hero .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  padding: 0 20px;
}

.hero .content h1 {
  font-size: 55px;
  font-family: 'poppins', sans-serif;
  font-weight: var(--bold);
}
.txt-type > .txt {
  border-right: 0.2rem solid #ffffff;
  font-weight: var(--regular);
}

.hero .content p {
  font-size: 23px;
  max-width: 600px;
  margin: 20px 0 30px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.hero * {
  z-index: 10;
}

/* Footer */
.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 200px;
  background-color: var(--secondary-color);
}

.footer a {
  color: #ffffff;
}

.footer a:hover {
  color: #28a745;
}

.footer .social > * {
  margin-right: 30px;
}
.footer .social a:last-of-type {
  margin-right: 0px;
}
.footer .copyright {
  margin-top: 15px;
}

/* =========CONTACT PAGE ======= */

/* ========= SUBMITED PAGE ======= */
.toast-thank-you {
  height: calc(100vh - 250px);
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Mobile */
@media (max-width: 823px) {
  #nav {
    padding: 1rem;
  }
  #nav .desk-nav {
    display: none;
  }
  .mob-nav {
    display: block;
  }
  /* homepage */
  .hero .content h1 span {
    display: block;
    height: 70px;
    overflow: hidden;
  }
}
