/*Fonts*/
@import url(../css/clash-display.css);

/*Variables*/
:root {
    --c-dark: #212529;
    --c-brand: #4e57d4;
    ---brand-light: #6970dd;
    --c-brand-rgb: 78, 87, 212;
    --c-body: #727272;
    --font-base: "ClashDisplay", sans-serif;
    --box-shadow: 0px 15px 25px rgba(0, 0, 0, 0.08);
    --transition: all 0.5s ease;

}

/*Reset & Helpers*/
body {
    font-family: var(--font-base);
    line-height: 1.7;
    color: var(--c-body);

}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-weight: 600;
    color: var(--c-dark);
}

a {
    text-decoration: none;
    color: var(--c-brand);
    transition: var(--transition);
}

a:hover {
    color: var(---brand-light);
}

img {
    max-width: 100%;
    height: auto;
}

.section-padding {
    padding-top: 100px;
    padding-bottom: 140px;
}

/*NAVBAR*/

.navbar {
    box-shadow: var(--box-shadow);
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--c-dark);
}

.navbar-nav .nav-link.active {
    color: var(--c-brand);
}


*BTN*/

.btn {
    font-weight: 300;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 0;
    padding: 10px 24px;
    width: 100%;
}

.btn-brand {
    background-color: var(--c-brand);
    border-color: var(--c-brand);
    color: white;
}

.btn-brand:hover {
    background: var(---brand-light);
    border-color: var(---brand-light);
    color: white;
}


/*ICONBOX*/

.iconbox {
    width: 70px;
    height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--c-brand-rgb), 0.1);
    color: var(--c-brand);
    font-size: 34px;
    flex: none;
}

/* service*/

.service {
    position: relative;
    overflow: hidden;
    z-index: 2;
}

section .container .row .section-title p 
{
    font-size: 30px;
}

.service::after {
    content: "";
    width: 40px;
    height: 40px;
    background-color: rgba(var(--c-brand-rgb), 0.2);
    position: absolute;
    bottom: 0;
    right: 0;
    transition: var(--transition);
}

.service:hover::after {
    width: 100%;
    height: 100%;
    background: var(--c-brand);
    z-index: -1;
}

.service:hover h5,
.service:hover p {
    color: white;
}

.service h5
{
    font-size: 40px;
}

.service p
{
    font-size: 25px;
}



.service:hover .iconbox {
    background-color: rgb(255, 255, 255, 0.2);
    color: white;
}


/*footer*/

footer
{
    padding-top: 120px;
}
.footer-top
{
    padding-bottom: 40px;
    border-bottom: 1px solid rgb(255, 255, 255, 0.1);
}

.footer-bottom
{
    padding-top: 40px;
    padding-bottom: 40px;
}


footer li,footer p, footer a
{
    color: rgb(255, 255, 255, 0.7);
}

footer ul
{
    list-style: none;
    padding: 0;
}

footer .line
{
    width: 40px;
    height: 4px;
    background-color: var(--c-brand);
    margin-top: 12px;
    margin-bottom: 24px;
}

.social-icons a
{
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(255, 255, 255, 0.1);
    border-radius: 100px;
}

.social-icons a:hover
{
    background-color: var(--c-brand);
    color: white;
}