@import url('https://fonts.googleleapis.com/css?family=Roboto'); 

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

body {
   font-family: 'Robot', sans-serif; 
   line-height: 1.4;
}

a {
    text-decoration: none;
}

p {
    margin: 0.75rem 0;
}

/* Utility Classes */
.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 2rem;
    overflow: hidden; 
    border-radius: 10px;
}

.text-center {
    text-align: center;
}

.text-primary {
    color: red;
}

.bg-light {
    background: #f4f4f4;
    color:#333;
}

.bg-dark {
    background: #333;
    color: #f4f4f4; /*You can change back to black*/
}

.bg-primary {
    background: /*rgb(95, 30, 30);*/#333;
    color: #fff;
}

.l-heading {
    font-size: 4rem;
    margin-bottom: 0.75rem;
    line-height: 1.1;
}

.m-heading {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    line-height: 1.1;
}

.lead {
    font-size: 1rem; /*1*/
    margin-bottom: 2rem; /*0.75rem*/
    /*line-height: 1.1;*/
} 

.py-1 { padding: 1.5rem 0; }
.py-2 { padding: 2rem 0; }
.py-3 { padding: 3rem 0; }

.py-1 { padding: 1.5rem; }
.py-2 { padding: 2rem; }
.py-3 { padding: 3rem; }

.btn {
    display: inline-block;
    color: #fff;
    background: red;
    padding: 0.5rem 2rem;
    border: none;
    border-radius: 10px;
}

.btn:hover {
   background: black; 
}

.btn-dark {
    background: #333;
    color: #fff;
}

.list {
  margin: 0.5rem 0;
  list-style: none;
}

.list li {
    padding: 0.5rem 0;
    border-bottom: #444 dotted 1px;
}

/*Logo sizing*/
.logo {
    opacity: 0.9;
    z-index: -1;
    width: 80%;
    border-spacing: 1em;
}

/* Navbar */
#navbar {
    display: flex;
    position: sticky;
    top: 0;
    background: #333;
    color: #fff;
    justify-content: space-between;
    z-index: 1;
    padding: 1rem;   
}

#navbar ul {
    display: flex; 
    align-items: center;
    list-style: none;
}

#navbar ul li a {
    color: #fff;
    padding: 0.75rem;
    margin: 0 0.25rem;
}

#navbar ul li a:hover {
    background: red;
    border-radius: 10px;
}

/* Showcase */
#showcase {
    background: #333 url('../Img/showcase.jpg') no-repeat center center/cover;
    height: 100vh;
    color: #fff;
}

#showcase .showcase-content {
    display: flex;
    flex-direction: column; 
    text-align: center;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 0 2rem;
}

/* Section: Services */
#services .items {
    display: flex;
    padding: 1rem;
}

#services .items {
    flex: 1;
    text-align: center;
    padding: 1rem
}

#services .item .item i {
    background: red;
    padding: 1rem;
    border-radius: 50%;
    margin-bottom: 1rem;
}

/* Section: Who We Are */
#aboutus {
    display: flex;
}

#aboutus div {
    flex: 1;
    flex-basis: 50%;
    border-radius: 5px;
}

#aboutus .about-img {
    background: url('../Img/IMG_5707.jpg') no-repeat center center/cover;  
}

/* Section: Clients */
#clients .items {
    display: flex;
}

#clients .items img {
    display: block;
    margin: auto;
    width: 60%;
}

/* Section: Contact */
#contact {
    display: flex;
}

#contact .map, #contact .contact-form {
    flex: 1;
    border-radius: 10px;
}

#contact .contact-form .form-group {
    margin: 0.75rem;
}

#contact .contact-form label {
    display: block;
}

#contact .contact-form input,
#contact .contact-form textarea {
    width: 100%;
    padding: 0.5rem;
    border-radius: 5px;
   /* margin-bottom: .25rem;
    margin-top: 15px;
    line-height: 2;
    display: block; */
    /*font-size: .75rem;
    font-weight: 700;
    border-radius: 5px;*/
}

.btn #contact .contact-form {
    display: block;
    width: 60%;
}

/* Audio styling */
.audio {
    float: right;
    height: 300px;
    width: 300px;
    position: absolute;
    filter: sepia(20%) saturate(70%) grayscale(1) contrast(99%) invert(12%);
    /*display: block;*/
    margin: 0 auto;
    /*display: none;*/
} 

.audio:hover {
    transform: scale(1,1);filter: drop-shadow(2px 3px 3px #333);
} 

audio::-webkit-media-controls-panel {
background-color: #d80505f3;}
::-webkit-media-controls-enclosure {
    border-radius: 20px;
}
