/* reset browser default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* main */
html, body {
    font-family: 'Segoe UI', Tahoma, Verdana, sans-serif;
    line-height: 1.7;
}

a {
    text-decoration: none;
    color: white;
}



h1, h2, h3 {
    margin-bottom: 20px;
}

/* container */
.container {
    margin: auto;
    padding:0 20px;
    max-width: 2700px;
    overflow: auto;
}

.text-primary {
    color: #f7c08a !important;
}

.btn {
    display: inline-block;
    background: #333;
    color: #fff;
    font-size: 18px;
    padding: 13px 20px;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #f7c08a;
    color: #333
}
/* navbar */

.navbar {
    background-color: #333;
    color: white;
    overflow: auto;
}

.navbar a {
    color: #fff;
}

.navbar ul {
    list-style: none;
    text-align: center;
}

.navbar ul li {
    display: inline-block;
    text-align: center;
}

.navbar ul li a {
    display: block;
    padding: 20px;
    text-align: center;
    margin: 5px;
}

.navbar ul li a:hover
 {
    background: #444;
    color: #f7c08a
}

.navbar h1 {
    float: left;
    padding-top: 20px;
}

.navbar ul li.current a
{
    background: #444;
    color: #f7c08a
}

/* showcase */
.showcase {
    background: url(../showcase.jpg) no-repeat center center/cover;
    height: 600px;
}

.showcase .showcase-content {
    color: white;
    text-align: center;
    padding-top: 170px;
}

.showcase .showcase-content h1 {
    font-size: 60px;
    line-height: 1.2em;
}

.showcase .showcase-content p {
    padding-bottom: 20px;
    line-height: 1.7em;
}

/* info */

.info {
    height: 750px;
    display: flex;
}

.bg-dark {
    background-color: #333;
    color: white;
}

.info .info-content {
    flex: 1;
    text-align: center;
    overflow: hidden;
    padding: 50px 30px;

}

.btn.btn-light {
    background: #ffffff;
    color: #333;
}

.info .info-content p {
    padding: 40px;
}

#info .info-img {
    flex: 1;
    background:  url(../showcase1.jpg) no-repeat center center/cover;
}

#info .info-img::before {
    content: "";
}

.info-content p, h2 {
    text-align: center;
}

/* features */
#features .box {

    width: 33%;
    padding: 30px;
    text-align: center;
    float: left;
}

.bg-light {
    background-color: #f4f4f4;
    color: #333;
}

.bg-primary {
    background-color: #f7c08a;
    color: #333;
}

#features .box i {
    color: #000000;
    margin-bottom: 20px;
}

footer {
    background-color: #444;
    color: white;
    text-align: center;
    padding: 20px;
}

.clear {
    clear: both;
}

/* about info */
#about-info .info-left {
    float: left;
    width: 50%;
    height: 100%;
}

#about-info .info-right {
    float: right;
    width: 50%;
    height: 100%;
    
}

#about-info .info-right img {
    display: block;
    margin: auto;
    width: 40%;
    border-radius: 50%;
}

.py-30 {
    padding: 30px 0;
}

/* client testimonials */
#testimonials {
    height: 600px;
    background: url(../showcase3.jpg) no-repeat center center/cover;
    
}

#testimonials h2 {
    color: white;
    text-align: center;
}
#testimonials .testimonial {
    padding: 20px;
    margin-bottom: 40px;
    border-radius: 5px;
    opacity: 0.9;
}

#testimonials .testimonial img {
    width: 75px;
    float: left;
    margin-right: 20px;
    border-radius: 50%;
}

/* contact */
#contact-form .form-group {
    margin-bottom: 20px;
}

#contact-form .form-group label {
    display: block;
    margin-bottom: 5px;
}

#contact-form .form-group input,
#contact-form .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
}

#contact-form .form-group textarea {
    height: 150px;
}

#contact-form .form-group input:focus,
#contact-form .form-group textarea:focus {
    outline: none;
    border-color: #f7c08a;
}

/* contact info */
#contact-info .box{
    width: 33.33%;
    padding: 50px;
    text-align: center;
    float: left;
}

#contact-info .box i {
    margin-bottom: 10px;
}