/* Reset */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    margin: 0 auto;
    max-width: 1200px;
    background-color: black;
}
/* Utilities */
.container{
    margin: auto;
    padding: 0 20px;
    max-width: 1100px;
    overflow: auto;

}

.shade1{
    background-color: #CFCFCF;
}

.text-primary{
    color: #ffea20;
}

.paragraph-big{
    font-size: 25px;
}

.btn{
    display: inline-block;
    color: #fff;
    font-size: 20px;
    background-color: #000;
    border: none;
    padding: 10px 20px;
}

.btn:hover{
    background-color: #ffea20;
    color:#000;
}

.btn-light{
    background-color: #f4f4f4;
    color: #000;
}

.bg-dark{
    background-color: #000;
    color: #fff;
}

.bg-light{
    background-color: #fff;
    color: #000;
}

.bg-primary{
    background-color: #ffea20;
    color: #000;
}

.clr{
    clear: both;
}

/* padding utilities */
.py-1{
    padding: 10px 0;
}
.py-2{
    padding: 20px 0;
}
.py-3{
    padding: 30px 0;
}

.l-heading{
    font-size: 40px;
    line-height: 1;
   
}
/* Main styling */
html, body{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7em;
}

a{
    color: #333;
    text-decoration: none;
}

h1, h2, h3{
    padding-bottom: 20px;
}

p{
    margin: 10px 0;
    font-size: 20px;
}

#navbar{
    background-color: #333;
    color: #fff;
    overflow: auto;

}

#navbar a{
    color:#fff;
}

#navbar .logo{
    padding-top: 20px;
    float: left;
}

#navbar ul{
    float: right;
    list-style: none;
}

#navbar ul li{
    
    float: left;
}

#navbar ul li a{
    display: block;
    padding: 20px;
    text-align: center;

}

#navbar ul li a:hover,
#navbar ul li a.current{
    background-color: #444;
    color: #ffea20;
}

/* Showcase */
#showcase{
    background: url('./img/image-1.jpeg') no-repeat center center/cover;
    height: 305px;
    opacity: 1;
    

}

#showcase .showcase-content{
    color: #fff;
    text-align: center;
    padding-top: 50px;
    opacity: 1;

}

#showcase .showcase-content h1{
    font-size: 40px;
    line-height: 60px;
}

#showcase .showcase-content p{
    padding-bottom: 20px;
    line-height: 33px;
    
}

/* Home Info */

#home-info{
    height: 350px;
}

#home-info .info-image{
    float: left;
    background: url('./img/Photo-2.jpg') no-repeat center center/cover;
    min-height: 100%;
    width: 50%;
}

#home-info .info-content{
    float: right;
    min-height: 100%;
    width: 50%;
    text-align: center;
    padding: 30px 30px;
    overflow: hidden;
}

#home-info .info-content .btn{
    margin-top: 20px;
}

/* Features */
.box{
    float: left;
    width:33.3%;
    text-align: center;
    padding: 50px;
}

/* About info */
#about-info{
    height: 425px;
}

#about-info .info-left{
    float: left;
    width: 50%;
    min-height: 100%;
    padding-top: 20px;
}
#about-info .info-right{
    float: right;
    width: 50%;
    min-height: 100%;
    
}
#about-info .info-right img{
    display: block;
    margin: auto;
    width: 90%;
    border-radius: 50%;
}

/* testimonials */
#testimonials{
    height: 600px;
    background: url('./img/photo-4.jpg') no-repeat center center/cover;
    padding-top: 100px;
}

#testimonials .testimonial{
    padding: 20px;
    margin-bottom: 40px;
    border-radius: 5px;
    opacity: 0.9;
}

#testimonials h2{
    text-align: center;
    color: #f4f4f4;
    padding-bottom: 40px;
}
#testimonials .testimonial img{
    width: 60px;
    float: left;
    margin-right: 20px;
    border-radius: 50%;
    
}

/* contact form */

#contact-form{
    height: 640px;
}

#contact-form form{
    padding-top: 20px;
}
#contact-form .form-group{
    margin-bottom: 30px;
}

#contact-form .form-group label{
    display: block;
    margin-bottom: 10px;
    font-size: 20px;
}

#contact-form input, #contact-form textarea{
    width: 100%;
    padding: 10px;
    border: 1px #ddd solid;

}

#contact-form textarea{
    height: 100px;
}

#contact-form input:hover, #contact-form textarea:hover{
    outline: none;
    border-color: #ffea20;
}

#contact-info .container{
    height: 390px;
}

#contact-info .box{
    margin-top: 50px;
}

/* footer */
#main-footer{
    text-align: center;
    background-color: #444;
    padding: 20px;
    color: #fff;
}