* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: #fff;
}

.section-padding {
    padding: 60px 0;
}

/*chat button*/
.chat {
    position: fixed;
    bottom: 20px;
    right: 25px;
    z-index: 2;
}
/*Qualities Section*/

.qualities .container img {
    height: 250px;
    width: 100%;
    border-radius: 20px;
}

.qualities .container .row h2 {
    margin-bottom: 0;
    font-size: 40px;
    font-weight: 700;
    text-align: center;
}

/*.carousel-item img {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
}*/

.carousel-item {
    height: 100vh;
    min-height: 300px;
    
}



.carousel-caption {
    bottom: 220px;
    z-index: 2;
}

    .carousel-caption h1 {
        font-size: 80px;
        margin-top: 25px;
    }

    .carousel-caption p {
        font-size: 30px;
        margin: auto;
        line-height: 1.9;
        width: 60%;
    }

    .carousel-caption a {
        font-size: 22px;
        font-weight: 400;
        margin-top: 20px;
        padding: 10px 30px;
        border-radius: 25px;
        background-color: red;
        color: white;
        text-decoration: none;
    }

.carousel-inner::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1;
}

.navbar {
    z-index: 1;
}

/*.navbar .navbar-nav .nav-link:active {
    color: #ffd800 !important;
}*/

.navbar-nav a {
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 500;

}

.navbar .navbar-nav li a:hover {
    color: red !important;
}

.navbar-light .navbar-brand {
    color: #000;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

    .navbar-light .navbar-brand:focus, .navbar-light .navbar-brand:hover {
        color: #000;
    }

.navbar-light .navbar-nav .nav-link {
    color: #000;
}

.w-100 {
    height: 100vh;
}

/*responsive code*/

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .carousel-caption {
        bottom: 50px;
    }

        .carousel-caption h1 {
            font-size: 30px;
        }

        .carousel-caption p {
            width: 100%;
        }
}




@media only screen and (max-width: 768px) {
    .navbar-nav {
        text-align: center;
    }

    .carousel-caption {
        bottom: 75px;
    }

        .carousel-caption h1 {
            font-size: 30px;
        }

        .carousel-caption a {
            padding: 10px 15px;
        }

        .carousel-caption p {
            width: 100%;
            line-height: 1.6;
            font-size: 20px;
        }
}

/*Services Section*/




.services .container .row h2 {
    margin-bottom: 0;
    font-size: 40px;
    font-weight: 700;
    text-align: center;
}

.services .container .row h3 {
    font-size: 30px;
    font-weight: 700;
}

.services .container .row p {
    font-size: 18px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: justify;
}



.services .container .row .image {
    text-align: center;
}

    .services .container .row .image img {
        width: 100%;
        height: 100%;
    }

/*Innovation Section*/



.innovation .container .row h2 {
    margin-bottom: 0;
    font-size: 40px;
    font-weight: 700;
    text-align: center;
}

.innovation .container .row h3 {
    font-size: 30px;
    font-weight: 700;
}

.innovation .container .row p {
    font-size: 18px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: justify;
}



.innovation .container .row .image {
    text-align: center;
}

    .innovation .container .row .image img {
        width: 100%;
        height: 100%;
    }

/*Contact Section*/

.contact .container .row h2 {
    margin-bottom: 0;
    font-size: 40px;
    font-weight: 700;
    text-align: center;
}

.contact .container .row h3 {
    font-size: 30px;
    font-weight: 700;
}

.contact .container .row p {
    font-size: 18px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: justify;
}



.contact .container .row .image {
    text-align: center;
}

    .contact .container .row .image img {
        width: 100%;
        height: 100%;
    }

/*Footer Section*/
footer {
    background: #343434;
    padding-top: 50px;
    font-family: 'DM Serif Display', serif;
    font-size: 18px;
    color: white;
}

    footer .container {
        width: 1140px;
        margin: auto;
        display: flex;
        justify-content: left;
    }

.footer-content {
    width: 33.3%;
}

.footer-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
    text-align: left;
}

.container .footer-content p {
    width: 190px;
    
    padding: 7px;
    
}

.footer-content ul {
    text-align: left;
}


.list {
    padding: 0;
}

    .list li {
        width: auto;
        text-align: left;
        list-style-type: none;
        padding: 7px;
        position: relative;
    }

        .list li::before {
            content: '';
            position: absolute;
            transform: translate(-50%,-50%);
            left: 50%;
            top: 100%;
            width: 0;
            height: 2px;
            transition-duration: .5s;
        }

        .list li:hover::before {
            width: 70px;
        }

.social-icons {
    text-align: left;
    padding: 0;
}

    .social-icons li {
        display: inline-block;
        text-align: left;
        padding: 5px;
    }

    .social-icons i {
        color: white;
        font-size: 25px;
    }

a {
    text-decoration: none;
    color: white;
}

    a:hover {
        color: red;
    }

.social-icons i:hover {
    color: whitesmoke;
    cursor: pointer;
}

.bottom-bar {
    background-color: black;
    text-align: center;
    padding: 10px 0;
    margin-top: 50px;
}

    .bottom-bar p {
        color: white;
        margin: 0;
        font-size: 16px;
        padding: 7px;
    }