/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Alex+Brush&family=Poppins:wght@400;500;600;700&display=swap');

/* Default CSS */
* {
    margin: 0;
    padding: 0;
    outline: 0;
    box-sizing: border-box;
    font-family: 'Poppins';
}

html {
    scroll-behavior: smooth;
}

body {
    width: 100%;
    font-size: 18px;
    background-color: #F7F6F2;
}

a {
    color: inherit;
    text-decoration: none;
}

.sign-font {
    font-family: 'Alex Brush';
    font-size: 30px;
}

i {
    font-size: 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    margin-bottom: 0;
}

img {
    max-width: 100%;
}

.btn {
    padding: 10px 40px;
}

.mt-150 {
    margin-top: 150px;
}

@media screen and (max-width: 992px) {
    .mt-150 {
        margin-top: 100px;
    }
}

.my-80 {
    margin: 80px 0;
}

/* Title Area Start */
.title h3 {
    font-size: 50px;
}

.title p {
    padding: 0 350px;
}

@media screen and (max-width: 992px) {
    .title h3 {
        font-size: 30px;
    }

    .title p {
        padding: 0;
    }
}
/* Title Area Ending */

/* Header Area Start */
.header_area {
    background-color: #ffffff;
    padding: 30px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.header_area ul {
    list-style-type: none;
    margin-bottom: 0;
}

.header_area ul li {
    display: inline;
    position: relative;
}

.header_area ul li a {
    padding: 30px 15px;
}

@media screen and (max-width: 992px) {
    .header_area .menu {
        width: 300px;
        height: 100vh;
        background-color: #ffffff;
        position: fixed;
        top: 0;
        left: -100%;
        text-align: left !important;
        z-index: 1000;
        transition: .3s all ease-in-out;
    }

    .header_area ul {
        padding-left: 0;
        margin-top: 60px;
    }

    .header_area ul li {
        display: block;
        border-bottom: 1px dashed #00000025;
    }

    .header_area ul li a {
        display: block;
        padding: 10px;
    }

    .header_area .menu-active {
        left: 0 !important;
    }
}
/* Header Area Ending */

/* Banner Area Start */
.banner_area h1 {
    font-size: 60px;
}

@media screen and (max-width: 992px) {
    .banner_area {
        margin-top: 80px;
    }

    .banner_area h1 {
        text-align: center;
        font-size: 35px;
    }

    .banner_area p {
        text-align: justify;
    }
}
/* Banner Area Ending */

/* Services Area Start */
.services_area .service-box {
    background-color: #ffffff;
    padding: 30px 25px;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: .3s all ease-in-out;
}

.services_area .service-box:hover {
    box-shadow: none;
}

.service-box .box-icon {
    background-color: #F7F6F2;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    text-align: center;
    line-height: 80px;
    margin-bottom: 20px;
}

.service-box .box-icon i {
    font-size: 30px;
}
/* Services Area Ending */

/* Features Area Start */
.features_area .feature-box {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: .3s all ease-in-out;
}

.feature-box .box-icon {
    background-color: #F7F6F2;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    margin-bottom: 20px;
}

.feature-right img {
    border-radius: 10px;
    margin-bottom: 20px;
}
/* Features Area Ending */

/* About Us Area Start */
.about_area .about-right p {
    text-align: justify;
}

.about_area .about-left img {
    border-radius: 10px;
}
/* About Us Area Ending */

/* Overview Area Start */
.overview_area {
    background-color: #7C83FD;
    padding: 80px 0;
    text-align: center;
    color: #ffffff;
}

.overview_area h3 {
    margin-bottom: 30px;
}

.overview_area .counter {
    font-weight: 600;
    font-size: 50px;
}
/* Overview Area Ending */

/* Contact Us Area Start */
.contact_area .contact-box {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: .3s all ease-in-out;
    text-align: center;
}

.contact-box .box-icon {
    background-color: #F7F6F2;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    margin-left: 50%;
    transform: translateX(-50%);
    margin-bottom: 20px;
}

.contact-box .box-data a {
    display: block;
}

.contact-right .form-group {
    margin-bottom: 20px;
}

.contact-right label {
    margin-left: 10px;
}

.contact-right .form-control {
    border: none;
    border-radius: 10px;
    padding: 12px;
}
/* Contact Us Area Ending */

/* Footer Area Start */
.footer_area {
    background-color: #ffffff;
    padding: 80px 0 20px 0;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
}

.footer_area p > a {
    color: #7C83FD;
}
/* Footer Area Ending */