body {
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;

}

a {
    text-decoration: none;
}

/* header area css*/

.nav {
    padding: 20px 0;
    background-color:#fff;
    transition: all 0.4s ease-in-out;
}


.sticky {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 9;
    border-top: 0;
    background-color: #fff !important;
    padding: 10px 0px;
    border-bottom: none;
    box-shadow: 0 10px 30px -10px rgb(0 64 128 / 20%);
} 
 
.navbar-brand {
    font-size: 24px;
    font-weight: 600;
    color: #335eea; 
}

.navbar li.nav-item {
    padding: 0 12px;
}

.navbar a.nav-link {
    color: #212121;
    font-weight: 500;
    transition: all 0.2s;
}

.navbar a.nav-link:hover {
    color: #00AF80;
    transition: all 0.2s;
}


.navbar-nav {
    align-items: center;
}

a {
    color: #335eea;
}

.cor {
    color: #335eea;
}

.form-control {
    border: solid 1px #335eea;
}

.bg-grey {
    background-color: #f4f4f4;
}

.btn-one {
    background-color: #335eea;
    border: 2px solid #335eea;
    padding: 12px 30px 12px;
    border-radius: 10px;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s;
    text-transform: capitalize;
    box-shadow: 0 0.3px 1px -5px rgb(0 0 0 / 11%), 0 0.9px 2.6px -5px rgb(0 0 0 / 16%), 0 1.8px 5.3px -5px rgb(0 0 0 / 20%), 0 3.7px 11px -5px rgb(0 0 0 / 24%), 0 10px 30px -5px rgb(0 0 0 / 35%);
}


.btn-one:hover {
    background-color: #0136e0;
    border: 2px solid #0136e0;  
    color: #fff; 
}

.testimonial .ts-card {
    background-color: #f4f4f4;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,.175);
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.testimonial .ts-card .rating i {
    color: #ff9916;
}

 
section.footer {
    background-color: #212121;
    padding: 100px 0 50px 0;
    color: #fff;
}

.footer .social ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .social ul li {
    display: inline-block;
    margin: 6px 2px;
}

.footer .social i {
    background-color: #fff;
    color: #0136e0;
    border-radius: 50px;
    padding: 14px;
    margin: 0px;
    font-size: 18px;
}

.footer .footer-menu li img {
    margin-right: 10px;
    margin-top: 5px;
    display: inline-block;
    color: #ddd !important;
    transition: all 0.5s;
    float: left;
}
.footer .footer-menu li {
    margin-bottom: 15px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

.footer .footer-menu li a {
    display: inline;
    font-size: 16px;
    color: #ddd;
    transition: all 0.5s;
}

.footer-desc {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.vission-area .shadow:hover {
    box-shadow: 0 1rem 3rem rgba(0,0,0,.18) !important;
    transition: all .3s;
}

.vission-area .shadow {
    min-height: 100%;
    height: 100%;
    transition: all .3s;
}

.d-rounded {
    border-radius: 1rem;
}

.img-box {
    overflow: hidden;
    transition: all 0.3s;
}

.img-box img {
    transition: all 0.3s;
}

.img-box:hover img {
    transform: scale(1.2);
    transition: all 0.3s;
}

.price-card {
    box-shadow: 0 1rem 3rem rgba(0,0,0,.18);
    border-radius: 1rem;
    padding-top: 30px;
    position: relative;
}

.price-card .btn-one {
    padding: 10px 20px;
    font-size: 15px;
}

.price-card::after {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    height: 5px;
    width: 170px;
    background-color: transparent;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    content: "";
    background-color: #0136e0;
}