@import url('https://fonts.googleapis.com/css2?family=Epilogue:wght@400;700&display=swap');
:root {
    --almost-white: hsl(0, 0%, 98%);
    --medium-gray: hsl(0, 0%, 41%);
    --almost-black: rgb(20, 20, 20);
}
body {
	font-family: 'Epilogue', sans-serif;
}
header li {
    cursor: pointer;
    color: var(--medium-gray);
    transition: 0.6s;
}
header li:hover {
    color: var(--almost-black);
}
.close-menu {
    display: none;
}
.w-60 {
    width: 60%;
}
.navbar {
    width: 75%;
}
.navbar-left {
    display: none;
}
.menu {
    cursor: pointer;
}

/* Features Dropdown */
.features-dropdown {
    width: 20%;
}
.company-dropdown, .features-dropdown{
    padding: 10px 25px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 3px 3px 20px gray;
    position: absolute;
    display: none;
    z-index: 1;
}
.company-dropdown {
  left: 15%;
  width: 15%;
}
.features-dropdown p, .company-dropdown p {
    cursor: pointer;
    transition: 0.6s;
    color: var(--medium-gray);
}
.features-dropdown p:hover, .company-dropdown p:hover {
    color: var(--almost-black);
}
.features-dropdown img{
    margin-right: 10px;
}
.hero-header {
    font-weight: 700;
    font-size: 4.5em;
    line-height: 60px;
    color: var(--almost-black);
}
.hero-text {
    font-size: 1.5em;
    font-weight: 400;
    color: var(--medium-gray);
    line-height: 30px;
}

.btn-dark{
    background-color: var(--almost-black)!important;
    border-radius: 12px!important;
    border: 2px solid var(--almost-black)!important;
    width: 25%;
}
.btn-dark:hover{
    background-color: var(--almost-white)!important;
    color: var(--almost-black)!important;
}

@media (max-width: 1199.98px) {
  .navbar {
      width: 70%;
  }
  .w-60 {
	width: 80%;
  }
  .btn-dark{
		width: 45%;
   }
   .features-dropdown{
		width: 25%;
	}
  .company-dropdown {
	  left: 24%;
	  width: 20%;
  }
}
@media (max-width: 991.98px) {
  .navbar {
      width: 65%;
  }
  .btn-dark{
		width: 50%;
   }
   .hero-header {
		font-size: 3em!important;
	}
	.hero-text {
		font-size: 1.1em;
	}
   .w-60 {
	width: 95%;
  }
  .features-dropdown{
		width: 32%;
	}
  .company-dropdown {
	  left: 24%;
	  width: 25%;
  }
}
@media (max-width: 811.98px) {
	  .navbar {
		  width: 60%;
	  }
	  .w-60 {
		width: 95%;
	  }
	.hero-header {
		font-size: 3em!important;
	}
	.hero-text {
		font-size: 1.1em;
	}
	.btn-dark{
		width: 60%;
	}
	.features-dropdown{
		width: 40%;
	}
	.company-dropdown {
	  left: 35%;
	  width: 30%;
	}
}
@media (max-width: 767.98px) {
    .logo {
      width: 100px;
    }
    .menu {
      width: 40px
    }

    /* Features Dropdown */
    .features-dropdown, .company-dropdown {
        padding: 10px 25px;
        background-color: var(--almost-white);
        border-radius: none;
        box-shadow: none;
        width: 100%;
        position:static;
    }

    .hero-header {
        font-size: 2em!important;
    }
    .hero-text {
        font-size: 1em;
    }
    .btn-dark{
        width: 55%;
    }
    .display-none {
        display: none;
    }
    .navbar-left, .navbar-right {
        position: fixed;
        z-index: 2;
    }
    .navbar-left {
        background-color: rgba(0, 0, 0, 0.8);
        left: 0;
        bottom: 0;
        display: block;
        width: 40%;
        height: 0;
    }
    .navbar-right{
        background-color: var(--almost-white);
        right: 0;
        top: 0;
        width: 60%;
        padding-top: 40px;
        transition: 0.6s;
        height: 100vh;
    }
    .close-menu {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        cursor: pointer;
    }
    .navbar-active-right {
        margin-top: -800px!important;
    }
    .hero-header {
        font-size: 2.5em;
    }
}
