*{
    margin: 0; 
    padding: 0; 
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
}
body{
    background-color: #2e2e2e;
}

/*--------------Nav Bar ----------------*/
nav {
    width: 100%; 
    display: flex;
    background-color: #e53f30;
    justify-content: space-between;
}
.logo {
    padding: 20px 20; 
    text-decoration: none;
    background-color: #e53f30;
    color: #fff;
    text-transform: uppercase;
}
nav .nav-bar {
    padding: 20px; 
    background-color: #e53f30;
    display: flex; 
}
nav .nav-bar .nav-bar-item {
    list-style-type: none;
    padding: 0px 20px;
}
nav .nav-bar .nav-bar-item a {
    position: relative;
    display: block; 
    padding-bottom: 5px;
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
}
nav .nav-bar .nav-bar-item a:after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #fff;
    transition: 0.1s ease-in-out;
}
nav .nav-bar .nav-bar-item a:hover:after {
    width: 100%;
}
nav .nav-bar .dropdown {
    position: relative;
    visibility: hidden;
    height: 0px;
    padding: 0px 0px;
    font-size: 1px;
}

/*--------------Quick Links----------------*/
.quick-links{
    text-align: center;
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 20px
}
.quick-links .hero-btn{
    display: inline-block;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 5px;
    padding: 20px;
    font-size: 20px;
    position: relative;
    flex-basis: 5%;
    background: transparent;
    cursor: pointer;
    max-width: 500px;
    align-self: center;
    width: 100%;
}
.quick-links .hero-btn:hover{
    border: 1px solid #797979;
    background: #797979;
    transition: 0.2s;

}
.quick-links .fa{
    padding-right: 30px;
}

/*--------------Footer ----------------*/
.footer{
    width: 100%;
    text-align: center;
    background-color: #fff;
    padding: 10px 0;

}
.footer p{
    margin-bottom: 5px;
    margin-top: 5px;
    font-weight: 600;
}
.icons .fa{
    cursor: pointer;
}

 /*-------------- Phone Settings ---------------------*/

  @media(max-width: 700px){
    nav .nav-bar .nav-bar-item {
        visibility: hidden;
        padding: 0px 0px;
        font-size: 1px;
    }
    nav .nav-bar .dropdown {
        visibility: visible;
        font-size: 15px;
        text-align: right;
        padding: 0px 20px;
        z-index: 1;
    }
    nav .nav-bar .dropdown:after {
        content: "";
        position: absolute;
        right: 0;
        top: 5px;
        width: 7px;
        height: 7px;
        cursor: pointer;
        transform: rotate(-45deg);
        border-left: 2px solid #fff;
        border-bottom: 2px solid #fff;
        transition: 0.2s ease-in-out;
    }  
     nav .nav-bar .dropdown .dropdown-list{
        position: absolute;
        right: -25px;
        transform: translateX(-20px) translateY(5px);
        background-color: #797979;
        padding: 20px;
        border-radius: 10px;
        height: 0px;
        overflow: hidden;
        visibility: hidden;
        transition: 0.2s ease-in-out;
    }
    nav .nav-bar .dropdown:hover .dropdown-list{
        height: 150px;
        visibility: visible;
        z-index: 1;
    } 
    nav .nav-bar .dropdown .dropdown-list .drop-item {
        list-style-type: none;
        margin-bottom: 10px;
    }
  }
  