* {
    box-sizing: border-box;
}

.container-fluid {
    flex-direction: column;
}

.navbar-brand {
    margin: auto;
    width: 200px;
    padding: 15px 0;
}

.navbar-nav > li > a {
    font-family: 'Amiko', sans-serif;
    font-size: 15px;
    text-transform: uppercase;
    border-top: 0.5px solid #f5f5f5;
    padding-top: 18px;
}

.navbar-toggler {
    border: transparent;
    margin: auto;
}

.dropdown-menu {
    border: transparent;
    font-family: 'Amiko', sans-serif;
    text-transform: uppercase;
    font-size: 14px;
    color: #6e6e6e;
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    padding: 10px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }
  
  .dropdown:hover .dropdown-menu {
    display: block;
  }
/*styling the menu toggle button*/

  button {
    display: block;
    margin: auto;
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-image: linear-gradient(to top, #bd7c46, #d9a66d);
    color: #424242;
    border: transparent;
    padding: 12px 15px;
}

#hero {
    background: url(assets/images/home.jpg);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #b4b4b4;
    background-blend-mode: multiply;
    opacity: 0.95;
    padding: 10em 0;
}

#hero h1 {
    color: #ebe7de;
    font-family: 'Work Sans', sans-serif;
    font-weight: 800;
    font-size: 55px;
    letter-spacing: 2px;
    text-align: center;
    text-transform: uppercase;
}

main {
    color: #6e6e6e;
}

.inner {
    width: 20%;
    height: 3px;
    margin: 0px auto;
    margin-top: 1em;
    border-bottom: 1px solid #ffffff7d;
}

#col {
    padding-top: 2.5em;
    padding-bottom: 2em;
    padding-left: 1.5em;
    padding-right: 1.5em;
    background: linear-gradient(to bottom, #ffffff, #D2CBC6);
    box-shadow: -14px 0px 44px 0px #C1C1C1;
}

#services {
    margin: auto;
    width: 1100px;
    padding: 4em 0;
}

#services h1 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    font-size: 18px;
    text-align: center;
    text-transform: uppercase;
    
}

#services p {
    font-family: 'Public Sans', sans-serif;
    font-weight: 400;
}

.fa-ul {
    font-family: 'Public Sans', sans-serif;
    font-weight: 400;
    margin-top: 1em;
}

#quote {
    background-image: url(assets/images/main_.png);
    background-color: #ffffff;
    background-blend-mode: normal;
    opacity: 0.8;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    font-family: 'Public Sans', sans-serif;
    font-size: 19px;
    padding: 3em 1em;
    margin-top: -3.5em;
    margin-bottom: -3.5em;
    color: #D2CBC6;
    text-align: center;
}

/*scroll to top button*/
#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 14px;
    border: none;
    cursor: pointer;
    border-radius: 100%;
  }
  
  #myBtn:hover {
    background-color: #555;
  }

footer {
    font-family: 'Public Sans', sans-serif;
    font-size: 14px;
    text-align: center;
    color: #ebe7de;
    background-color: #3a3a3a;
    padding-top: 2em;
    padding-bottom: 1em;
}

#developer-link {
    color: #ebe7de;
}

a {
    text-decoration: none;
}

/* Media Queries */

@media (min-width: 250px) and (max-width: 480px) {
    .container-fluid {
        flex-direction:row;
    }

nav li {
        padding: 0 0;
    }

#logo {
    width: 80%;
    height: auto;
}

#hero {
    padding: 5em 0;
}

#hero h1 {
    font-size: 32px;
}

#services {
    width: 100%;
}
}

@media (min-width: 481px) and (max-width: 600px) {
    .container-fluid {
        flex-direction: row;
}
#logo {
    width: 80%;
    height: auto;

}

#hero {
    padding: 5em 0;
}

#hero h1 {
    font-size: 35px;
} 

#services {
    width: 100%;
}

}

@media (min-width: 601px) and (max-width: 768px) {
    .container-fluid {
        flex-direction: row;
}

nav li {
    padding: 0 0;
}

#hero {
    padding: 7em 0;
}

#hero h1 {
    font-size: 40px;
}

#services {
    width: 100%;
}

}


@media (min-width: 769px) and (max-width: 881px) {
    .container-fluid {
        flex-direction: row;
}

#hero {
        padding: 10em 0;
}

nav li {
    padding: 0 0;
}

#hero {
    padding: 7.25em 0;
}

#hero h1 {
    font-size: 45px;
} 

#services {
    width: 100%;
}

#col {
    width: 50%;
}

}

@media (min-width: 881px) and (max-width: 1025px) {
    .container-fluid {
        flex-direction: row;
}

nav li {
    padding: 0 0;
}

#hero {
    padding: 7.25em 0;
}

#hero h1 {
    font-size: 55px;
}

#services {
    width: 100%;
}

#col {
    width: 50%;
}

}

@media (min-width: 1026px) and (max-width: 1201px) {

#hero {
    padding: 10em 0;
}

 #services {
    width: 100%;
}


}