* {
    font-family: "Montserrat", sans-serif;
    box-sizing: border-box;
}

.navbar {
    transition: all ease-in-out 0.5s;
}

.homeSection {
    background-image: url(../images/bg.jpg);
    background-size: cover;
}

.nav-link {
    font-weight: 900;
    font-family: sans-serif;
}

.nav-item .active {
    text-decoration: underline;
}

.homeContent h2 {
    font-size: 2.5rem;
}

.homeContent h3 {
    font-size: 3.125rem;
}

.progress {
    box-shadow: inset 0 0 4px black;
}

.aboutImage {
    width: 35%;
}

.aboutContent {
    padding: 90px 0;
}

.aboutContent p {
    color: #748182;
}

.aboutHeader h2 {
    font-weight: 800;
}

.aboutButtons .one {
    background-color: black;
    color: white;
    transition: all ease-in-out 0.3s;
}

.aboutButtons .two {
    background-color: white;
    border-color: black;
    color: black;
    transition: all ease-in-out 0.3s;
}

.aboutButtons .one:hover {
    background-color: white;
    border-color: black;
    color: black;
}

.aboutButtons .two:hover {
    background-color: black;
    color: white;
}

.servicesSection {
    background-color: #f7f7f7;
    padding-top: 25px;
}

.card {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.card-body i {
    font-size: 1.725rem;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f7f7f7;
    border-radius: 100%;
    padding: 15px;
    margin: 5px;
    transition: all ease-in-out 0.3s;
}

.card:hover i {
    background-color: black;
    color: white;
}

.card-title {
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    font-weight: 800;
}

.card-text {
    color: #748182;
}


.servicesSection h2 {
    font-weight: 900;
    font-size: 3.125rem;
    text-align: center;
    margin: 0;
    position: relative;
    z-index: 1;
}

.servicesSection h2::after {
    content: '';
    background-image: url(../images/dots.png);
    width: 100%;
    height: 30px;
    left: 0;
    top: 55%;
    position: absolute;
    z-index: -1;
}

.clientImage {
    width: 10%;
}

.clientImage img {
    width: 100%;
    border-radius: 100%;
}

.clientsSection {
    width: 100%;
    height: auto;
    background-color: #f7f7f7;
}

.clientsSection h2 {
    font-weight: 900;
    font-size: 3.125rem;
    text-align: center;
    margin: 50px;
    position: relative;
    z-index: 1;
}

.clientsSection h6 {
    font-size: 0.8rem;
    color: #748182;
}

.clientsSection h5 {
    font-size: 0.9rem;
}

.clientsSection h2::after {
    content: '';
    background-image: url(../images/dots.png);
    width: 100%;
    height: 30px;
    left: 0;
    top: 55%;
    position: absolute;
    z-index: -1;
}

.imageOverlay {
    right: 0px;
    left: 0px;
    top: 0px;
    bottom: 0px;
    background-color: rgba(255, 255, 255, 0.85);
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.imageOverlay h6 {
    transform: translateY(-15px);
    transition: all 0.6s ease-in-out;
}

.imageOverlay .imageButtons {
    transform: translateY(15px);
    transition: all 0.6s ease-in-out;
}

.imageOverlay:hover {
    opacity: 1;
}

.imageOverlay:hover h6,
.imageOverlay:hover .imageButtons {
    transform: translateY(0px);
}

.worksSection h2 {
    font-weight: 900;
    font-size: 3.125rem;
    text-align: center;
    margin: 50px;
    position: relative;
    z-index: 1;
}

.worksSection h2::after {
    content: '';
    background-image: url(../images/dots.png);
    width: 100%;
    height: 30px;
    left: 0;
    top: 55%;
    position: absolute;
    z-index: -1;
}

.container .item {
    width: 30%;
}

.statsSection i {
    font-size: 2rem;
    padding: 10px 0;
}

.statsSection h2 {
    font-weight: bold;
    padding: 5px 0;
}

.statsSection h6 {
    color: #748182;
    padding: 5px 0;
}

.blogSection {
    background-color: #f7f7f7;
}

.blogSection h2 {
    font-weight: 900;
    font-size: 2.5rem;
    text-align: center;
    margin: 30px;
    position: relative;
    z-index: 1;
}

.blogSection h2::after {
    content: '';
    background-image: url(../images/dots.png);
    width: 100%;
    height: 30px;
    left: 0;
    top: 55%;
    position: absolute;
    z-index: -1;
}

.blogSection .card-text {
    font-size: 0.75rem;
}

.blogSection .card-title {
    font-size: 1.25rem;
}

.blogSection .card-footer-link {
    font-size: 0.8rem;
}

.carousel-indicators .indicator {
    width: 10px;
    height: 10px;
}

.blogSection .carousel-indicators {
    bottom: -80px;
}

.contactSection .container {
    padding: 30px;
}

.contactSection .container-form {
    padding: 50px 80px;
}

.contactSection input {
    height: 45px;
    background-color: #f4f4f4;
    box-shadow: none !important;
}

.contactSection input:focus,
.contactSection textarea:focus {
    border-color: black;
    border-width: 2px;
    outline: none;
}

.contactSection textarea {
    height: 150px;
    background-color: #f4f4f4;
    box-shadow: none !important;
}

.contactSection i {
    font-size: 1.725rem;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f7f7f7;
    border-radius: 100%;
    transition: all ease-in-out 0.3s;
}

.info:hover i {
    background-color: black;
    color: white;
}

.contactSection h2 {
    font-weight: bold;
    font-size: 1rem;
    padding: 5px 0;
}

.contactSection h6 {
    color: #748182;
    font-size: 0.9rem;
    padding: 5px 0;
}

.contactSection .contactHeader {
    font-weight: 900;
    font-size: 2.5rem;
    margin: 30px;
    position: relative;
    z-index: 1;
}

.contactSection .contactHeader::after {
    content: '';
    background-image: url(../images/dots.png);
    width: 100%;
    height: 30px;
    left: 0;
    top: 55%;
    position: absolute;
    z-index: -1;
}

.footer {
    height: 100px;
}

.footer p {
    color: #748182;
    padding-top: 20px;
    font-size: 0.8rem;
}