@import url(../css//clash-display.css);

:root {
    --c-dark: #212519;
    --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);
}

.contact-div-text > p {
    font-size: 24px;
    font-weight: 400;
}

.contact-text {
    font-weight: 500;
}

.carousel-caption h1,
.carousel-caption h5 {
    color: white;
    text-shadow: 2px 2px 5px black;

}

a {
    text-decoration: none;
    color: var(--c-b);
    transition: var(--transition);
}

a:hover {
    color: var(--c-brand-light);
}


.section {
    padding-top: 200px !important;
    padding-bottom: 140px;
}

.theme-shadow {
    box-shadow: var(--box-shadow);
}

/* Navbar */
.navbar {
    box-shadow: var(--box-shadow);
}


.navbar-nav .nav-item {
    font-weight: 900;
    color: var(--c-dark);
}

.navbar-nav .nav--link .active {
    color: var(--c-brand) !important;
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: var(--c-brand) !important;
}

/* BTN */
.btn {
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    /* border-radius: 0; */
    padding: 10px 24px;
}

.btn-brand {
    background-color: var(--c-brand);
    border-color: var(--c-brand);
    color: white;
}

.btn-brand:hover {
    background-color: var(--c-brand-light);
    border-color: var(--c-brand-light);
    color: white;
}

.carousel-custom {
    height: 500px !important;
}

.carousel-item > img {
    height: 100%;
    object-fit: cover;
}

.carousel-item {
    transition-duration: 0.3s;
}

.carousel-caption {
    top: 50%;
transform: translateY(-50%);
}

/* SECTION TITILE */
.section-title {
    margin-bottom: 30px;
    margin-top: 70px;
}

.section-title .line {
    width: 60px;
    height: 4px;
    background-color: var(--c-brand);
    margin: 16px auto 24px auto;
}

.section-title p {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.img-col-6 {
    max-width:100%;

}

.col-lg-6 > .custom-image-div {
    margin: auto;
}

.custom-image {
    max-width: 75%;
    margin: auto;
}

.custom-image-div {
    margin:auto !important;
    width: 80%;
}

.img-col-8 {
    min-width: 100%;
}

/* .custom-img {
    max-width: 110%;
    left: 0 !important;
} */

/* img{
    transition: transform .2s;
    margin:0 auto;
    background-color: rgb(173, 173, 237);
    border-radius: 10px;
    border: 1px solid black;
}
img:hover {
    transform:scale(1.1);
}  */

.service-title {
    margin: auto;
}

.services > .row>* {
    padding-left: 0px !important;
    padding-right: 0px !important;
 }

 .services {
    padding-left: 30px;
    padding-right: 30px;
    max-width: 1500px;
    justify-content: center;
    align-items: center;
    margin: auto;
    padding-top: 30px;
 }

 html, body {overflow-x: clip}


/* icon box */

.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;
}

.service::after {
    content: "";
    width: 40px;
    height: 40px;
    background-color: rgba(var(--c-brand), 0.2);
    position: absolute;
    bottom: 0;
    right: 0;
    transition: var(--transition);
}

.service:hover::after {
    width: 100%;
    height: 100%;
    background-color: var(--c-brand);
    z-index: -1;
}

.service:hover h5,
.service:hover p {
    color: white;

}

.service:hover .iconbox {
    background-color: rgba(255,255,255,0.2);
    color: white;
}

/* CONTACT */

#contact {
    position: relative;
    z-index: 2;
}

#contact::after {
    content: "";
    width: 100%;
    height: 70%;
    /* background: li; */
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

#contact .form-control:focus {
    box-shadow: none;
}

footer li,
footer p,
footer a {
    color: rgba(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;
}

footer {
    padding-top: 100px;
}

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

.footer-bottom {
    padding-top: 40px;
    padding-bottom: 40px;
}

.about-container {
    padding-top: 40px;
    padding-bottom: 30px;
}

.footer-container {
    padding-top: 5px;
}

/* .service-row {
    text-align: center;
    border-top: 1px solid black;
    border-width: 50%;
}

li {
    text-align: start;
} */

li {
    color: var(--c-dark);
}