@import url(../css/clash-display.css);

:root{
    --c-dark:#212529;
    --c-brand:#4e57d4;
    --c-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;

}
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(--c-brand-light);
}

img{
    max-width: 100%;
    height: auto;
}
.section-padding{
    padding-top: 140px;
    padding-bottom: 140px;
}
.theme-shadow{
    box-shadow: var(--box-shadow);
}

/* ...................... */

.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);

}

/* ........................... */

#hero{
    background: linear-gradient(rgba(0, 0, 0, 0.484), rgba(0, 0, 0, 0.446)), url(../Images/bg.png);
    background-position: center;
    background-size: cover;
}

/* ............................ */

.section-title{
    margin-bottom: 40px;
}
.section-title .line{
    width: 60px;
    height: 4px;
    background-color: #4e57d4;
    margin: 16px auto 24px auto;
}
section-title p{
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.iconbox{
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 33px;
    color:  #4e57d4;
    flex: none;
}

/* .................................... */

.service:hover{
    background-color: #4e57d4;
    color: white;

}

 .service h5:hover{
    color: white;
}

.iconbox i:hover{
    color: white;
}

/* ................................. */

#counter{
    background: linear-gradient(rgba(0, 0, 0, 0.338), rgba(0, 0, 0, 0.564)), url(../Images/counter.jpg);
    background-position: center;
    background-size: cover;
}

/* .................................... */

#contact{
    position: relative;
    z-index: 2;
}

#contact::after{
    width: 100%;
    height: 70%;
    background: linear-gradient(rgba(0, 0, 0, 0.338), rgba(0, 0, 0, 0.564)), url(../Images/counter.jpg);
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;

}