@import url(../css/satoshi.css);

:root {
    --c-dark: #212529;
    --c-brand: #4e57d4;
    --c-brand-light: #6970dd;
    --c-brand-rgb: 78, 87, 212;
    --c-body: #727272;
    --font-base: "Satoshi", 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);
}

.image-resize {
    height: 500px;
    width: 450px;
    object-fit: cover;
    object-position: center center;
}

/*Image Zoom*/
.image-zoom {
    position: relative;
    overflow: hidden;
}

.unsure-image-zoom {
    position: relative;
    overflow: hidden;
    filter: blur(10px);
}

.image-zoom-wrapper {
    overflow: hidden;
    position: relative;
}

.image-zoom-wrapper img {
    transition: var(--transition);
}

.image-zoom:hover .image-zoom-wrapper img {
    transform: scale(1.1);
}

/*NAVBAR*/
.navbar {
    box-shadow: var(--c-body);
    display: flex;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--c-dark);
    width: 100px;
}

/*Button*/
.btn {
    font-weight: 600;
    font-size: 16px;
    /* text-transform: uppercase; */
    border-radius: 5px;
    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;
}

/*Hero*/
#hero {
    background: linear-gradient(#0000009a, #00000077), url(../images/homepage.png);
    background-size: cover;
    background-position: center;
} 

/*Section Title*/
.section-title {
    margin-bottom: 60px;
}

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

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

/*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 {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.service::after {
    content: "";
    width: 40px;
    height: 40px;
    background: 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;
}

/*Team*/
.team-member-content {
    background-color: var(--c-brand);
    position: absolute;
    bottom: 24px;
    width: 90%;
    padding: 24px;
    transition: var(--transition);
}

/*Gantt Chart*/
.chartBox {
    width: 700px;
    padding: 20px;
    border-radius: 20px;
    border: solid 3px var(--c-brand);
    background: white;
}

/*Contact*/
.contact {
    width: 100%;
    height: 100%;
    /* background-color: #272c30; */
    background-color: #323d4e;
    position: relative;
    overflow: hidden;
    z-index: 2;
    border-radius: 10px;
}

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

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

.contact:hover h5,
.contact:hover p {
    color: white;
}

.emaillink {
    color: white;
}

