@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #24252a;
}

li, a, button {
    font-weight: 500;
    font-size: 16px;
    color: #edf0f1;
    text-decoration: none;
}

header {
    display: flex;
    background: #24252a;
    justify-content: space-between;
    align-items: center;
    padding: 30px 10%;
    height: 100px;
}

.logo {
    cursor: pointer;
    width: 125px;
    height: 80px;
}

.nav_links {
    list-style: none;
}

.nav_links li {
    display: inline-block;
    padding: 0px 20px;
}

.nav_links li a {
    transition: all 0.3s ease 0s;
}

.nav_links li a:hover {
    color: #0088a9;
}

.navbar-btn {
    padding: 9px 25px;
    background-color: rgba(0, 136, 169, 1);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
}

.navbar-btn:hover {
    background-color: rgba(0, 136, 169, 0.8);
}

body {
    background-color: #383838;
}

h1 {
    color: #fff;
    text-align: center;
    font-size: 30px;
    padding-top: 20px;
}

section {
    padding: 100px 0;
}

.price-table {
    text-align: center;
    overflow: hidden;
    margin: 20px;
    background: #fff;
    box-sizing: border-box;
    box-shadow: inset 0 0 40px rgba(0,0,0,.2), 0 20px 50px rgba(0,0,0,.5);
    border-radius: 20px;
    transition: .5s;
}

.price-table:hover {
    transform: scale(1.1);
}

.price-table .price-head {
    padding: 50px;
    background-color: #ff2d2d;
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%;
}

.price-table .price-head h4 {
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    color: #fff;
    font-weight: 700;
}

.price-table .price-head h2 {
    margin: 0;
    padding: 20px 0 0;
    font-size: 36px;
    color: #fff;
}

.price-content {
    position: relative;
}

.price-content ul {
    position: relative;
    margin: 0;
    padding: 20px 0;
}

.price-content ul li {
    list-style: none;
    font-size: 16px;
    text-transform: uppercase;
    padding: 10px 0;
    color: #777;
    cursor: pointer;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    transition: .5s;
}

.price-content ul li:hover {
    border-left: 15px solid #ff2d2d;
    border-right: 15px solid #ff2d2d;
}

.price-button {
    padding: 0 0 30px;
}

input {
    background-color: #fff;
    font-size: 12px;
    width: 300px;
    padding: 16px 16px;
    border-radius: 10px;
    border-color: #080808;
    margin-bottom: 20px;
}

.price-button button {
    padding: 10px 40px;
    background: #2fc418;
    color: #fff;
    border: none;
    border-radius: 25px;
    font-size: 18px;
    text-transform: uppercase;
}

.footer{
  width:100%;
  padding:60px 40px;
  background:#080808;
  border-top:1px solid rgba(255,255,255,0.06);
  margin-top:120px;
}

.footer-content{
  max-width:1400px;
  background:#080808;
  margin:auto;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:20px;
}

.footer-logo{
  font-size:28px;
  background:#080808;
  font-weight:800;
  letter-spacing:2px;
  text-transform:uppercase;
  color: #fff;
}

.footer-text{
  color:#777;
  background:#080808;
  font-size:15px;
}

.socials{
  display:flex;
  background:#080808;
  gap:18px;
  margin-top:10px;
}

.social-link{
  width:48px;
  height:48px;
  background:#080808;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:white;
  text-decoration:none;
  font-size:20px;
  transition:0.3s ease;
  border:1px solid rgba(255,255,255,0.05);
}

.social-link:hover{
  background:#ff2d2d;
  transform:translateY(-4px);
}

.fa-brands {
    background: none;
}

/* ========================= */
/* MENU HAMBURGER */
/* ========================= */

.menu-toggle{
    display:none;
    font-size:32px;
    color:white;
    background:none;
    border:none;
    cursor:pointer;
    z-index:1001;
}

.mobile-contact{
    display:none;
}

@media (max-width:1024px){

header{
    padding:20px;
    position:relative;
}

.menu-toggle{
    display:block;
}

.cta{
    display:none;
}

nav{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    display:none;
    background:#24252a;
    z-index:999;
}

nav.active{
    display:block;
}

.nav_links{
    display:flex;
    flex-direction:column;
    align-items:center;
    padding:20px 0;
}

.nav_links li{
    display:block;
    padding:20px 0;
}

.mobile-contact{
    display:block;
}
}