
:root{
    --headerclr:#4f5d75;
    --mainclr:#EE6C4D;
}



* {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
}


#banner {
    background: linear-gradient(rgba(0,0,0,0.5),var(--headerclr)), url(./images/background-image.jpg);
    background-size: cover;
    background-position: center;
    height: 100vh;

}

.logo {
    width: 220px;
    position: absolute;
    top: 4%;
    left: 10%;
}

.phone {
    width: 200px;
    position: absolute;
    top: 4%;
    left: 23%;
}

.banner-text {
    text-align: center;
    color: white;
    padding-top: 300px;
}

.banner-text h1 {
    font-size: 130px;
}

.banner-text p {
    font-size: 20px;
    margin: 50px 100px 0 100px;
}

.banner-btn {
    margin: 70px auto 0;
}

.banner-btn a {
    width: 150px;
    text-decoration: none;
    display: inline-block;
    margin: 0 10px;
    padding: 12px 0;
    color: white;
    border: .5px solid white;
    position: relative;
    z-index: 1;
    transition: color 0.5s;
}

.banner-btn a span {
    width: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--mainclr);
    z-index: -1;
    transition: 0.5s;
}

.banner-btn a:hover span {
    width: 100%;
}

.banner-btn a:hover {
    color: white;
}

#side-nav {
    width: 250px;
    height: 100vh;
    position: fixed;
    right: -250px;
    top: 0;
    background: var(--mainclr);
    z-index: 2;
    transition: 0.5s;
}

nav ul li {
    list-style: none;
    margin: 50px 20px;
}

nav ul li a {
    text-decoration: none;
    color: white;
}

#menu-btn {
    width: 50px;
    height: 50px;
    background: var(--mainclr);
    text-align: center;
    position: fixed;
    right: 30px;
    top: 20px;
    border-radius: 3px;
    z-index: 3;
    cursor: pointer;
}

#menu-btn img {
    width:  20px;
    margin-top: 15px;
}

/* About */

#about {
    width: 100%;
    padding: 70px 0;
}

.title-text {
    text-align: center;
    padding-bottom: 70px;
}

.title-text  h1 {
    margin-top: 30px;
}

.title-text p {
    margin: auto;
    font-size: 20px;
    color: var(--mainclr);
    font-weight: bold;
    position: relative;
    z-index: 1;
    display: inline-block;
}

.title-text p::after {
    content: '';
    width: 50px;
    height: 35px;
    /* background: linear-gradient(var(--mainclr), white); */
    position: absolute;
    top: -20px;
    left: 0;
    z-index: -1;
    transform: rotate(10deg);
    border-top-left-radius: 35px;
    border-bottom-right-radius: 35px;
}

.title-text h1 {
    font-size: 50px;
}

.about-box {
    width: 80%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    text-align: center;    
}

.about-info {
    flex-basis: 50%;
}

.about-info h2 {
    text-align: initial;
}

.about-img {
    flex-basis: 50%;
    margin: auto;
}

.about-img img {
    width: 70%;
    border-radius: 10px;
}

.about-icon .fa {
    width: 50px;
    height: 50px;
    font-size: 30px;
    line-height: 50px;
    border-radius: 8px;
    color: var(--mainclr);
    border: 1px solid var(--mainclr); 
}

/* Testimonial */

#testimonial {
    background: #efefef;
    width: 100%;
    padding: 70px 0;
}

.testimonial-row {
    width: 80%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.testimonial-col {
    flex-basis: 34%;
    padding: 10px;
    margin-bottom: 30px;
    border-radius: 5px;
    box-shadow: 0 10px 20px 3px var(--headerclr);
    cursor: pointer;
}

.testimonial-col p {
    font-size: 20px;
}

.user {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.user img {
    width: 100%;
}

/* bcrp */

#bcrp {
    padding: 70px 0 10px;
}

.bcrp-box {
    width: 50%;
    margin: auto;
}

.bcrp-text h2 {
    font-size: 40px;
    color: var(--mainclr);
    margin-bottom: 30px;
}

.bcrp-text p {
    font-size: 15px;
    margin-bottom: 15px;
}

.bcrp-text a {
    text-decoration: none;
    color: var(--mainclr);
    font-weight: bold;

}

.bcrp-text img {
    border-radius: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
    margin-bottom: 30px;
}

.bcrp-text span {
    font-size: 20px;
    font-weight: bold;
    color: var(--mainclr);
}

.bcrp-text table {
    margin-bottom: 20px;
    border: 1px solid var(--headerclr);
}



table, th, tr, td {
    border: 1px solid var(--headerclr);
    border-collapse: collapse;
}

/* footer */

#footer {
    padding: 80px 0 50px;
    background: var(--headerclr);
    color: white;
    position: relative;
}



.footer-row {
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-left, .footer-middle .footer-right {
    flex-basis: 45%;
    padding: 10px;
    margin-bottom: 20px;
}

.footer-left img {
    width: 30%;
}

.footer-left h3 {
    color: var(--mainclr);
    margin-top: 15px;
}

.footer-right {
    text-align: right;
}

.footer-middle a {
    text-transform: none;
    text-decoration: none;
    color: var(--mainclr);
    list-style: none;
    margin: 10px 0;
}

.footer-middle ul {
    list-style: none;
    text-decoration: none;
}


.footer-middle li {
    list-style: none;
    text-decoration: none;
}

.footer-right a {
    text-transform: none;
    text-decoration: none;
    color: var(--mainclr);
    list-style: none;
    margin: 10px 0;
    font-size: 20px;
}

.footer-right ul {
    list-style: none;
    text-decoration: none;
}


.footer-right li {
    list-style: none;
    text-decoration: none;
}

.footer-row h2 {
    font-size: 35px;
    margin: 10px 0;
}

.footer-row p {
    line-height: 35px;
}

.footer-bottom {
    text-align: center; 
    margin: 30px 0 10px;   
}







@media screen and (max-width: 770px) {
    .banner-text h1 {
        font-size: 44px;
    }

    .phone {
        display: none;
    }

    .banner-btn a {
        margin: 20px auto;
        display: none;
    }

    .title-text h1 {
        font-size: 35px;
    }

    .banner-text p {
        font-size: 15px;
    }

    .about-info {
        flex-basis: 200%;
    }

    .about-img {
        flex-basis: 200%;
    }

    .about-img img {
        width: 100%;
        margin-top: 20px;
        border-radius: 20px;
    }

    .testimonial-col {
        flex-basis: 100%;
    }

    .bcrp-box {
        width: 90%;
    }

    .bcrp-text h2 {
        text-align: center;
    }

    .bcrp-text img {
        width: 100%;
    }

    .footer-left, .footer-middle, .footer-right {
        flex-basis: 100%;
        font-size: 14px;
    }

    .footer-left img {
        width: 50%;
    }
}
