body {
    font-family: 'Montserrat', sans-serif;
}

.nav-link {
    color: #232323;
    font-weight: 600;

    &:hover {
        color: #bf1e2e;
    }
}

.navbar-brand img {
    width: 85%;
}


.animated {
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
}

@-webkit-keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100px, 0, 0);
        transform: translate3d(100px, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100px, 0, 0);
        transform: translate3d(100px, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}


.carousel-text {
    position: absolute;
    top: 20%;
    left: 12%;
    font-weight: 700;
    line-height: 80px;
    font-size: 70px;
    color: #ffffff;
}

.carousel-2 {
    display: none;
}

.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.5;
}

.about-us-title {
    margin-top: 15px;
    font-weight: 700;
    letter-spacing: 3px;
}

.about-us {
    margin-top: 7rem;
    margin-bottom: 7rem;
}

.about-us img {
    border-radius: 10px;
}

.call-us {
    background: #bf1e2e;
    color: #ffffff !important;
    padding: 8px 36px !important;
    border-radius: 26px;
}

.separator {
    width: 10%;
}

.sep_line {
    border-top-width: 4px;
    border-top: 3px solid #ebebeb;
    display: block;
    position: relative;
    top: 7px;
}

.about-us p {
    font-size: 21px;
    font-weight: 400;
    line-height: 31px;
}

.about-us-side {
    padding-left: 40px;
}

.projects-section,
.contact-us-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.footer {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.projects-list {
    margin-top: 5rem;
}


.content {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.content .content-overlay {
    background: rgba(0, 0, 0, 0.7);
    position: absolute;
    height: 99%;
    width: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}

.content:hover .content-overlay {
    opacity: 1;
}

.content-image {
    width: 100%;
    height: 100%;
}

.content-details {
    position: absolute;
    text-align: center;
    padding-left: 1em;
    padding-right: 1em;
    width: 100%;
    top: 50%;
    left: 50%;
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.content:hover .content-details {
    top: 50%;
    left: 50%;
    opacity: 1;
}

.content-details h3 {
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 0.5em;
    text-transform: uppercase;
    font-size: 19px;
    margin-top: 35px;
}

.content-details p {
    color: #bf1e2e;
    font-size: 16px;
    margin-top: 14px;
    font-weight: 600;
}

.fadeIn-bottom {
    top: 80%;
}

.fadeIn-top {
    top: 20%;
}

.fadeIn-left {
    left: 20%;
}

.fadeIn-right {
    left: 80%;
}

.contact-details .fa-solid,
.fa-regular {
    font-size: 35px;
    margin-bottom: 30px;
    color: #bf1e2e;
}

.contact-details span {
    color: #232323;
    font-size: 14px;
    font-weight: 600;
}

.contact-us-section p {
    color: #6f6f6f;
    font-size: 14px;
    margin-top: 8px;
}

.contact-us-section a {
    text-decoration: none;
    color: #6f6f6f;

    &:hover {
        color: #bf1e2e;
    }
}

.footer {
    background-color: #1c1c1c;
    color: #8c8c8c;
}

.footer a {
    text-decoration: none;
    color: #8c8c8c;

    &:hover {
        color: white;
    }
}

.footer-list {
    list-style: none;
    display: flex;
    justify-content: end;
}

.footer-list li {
    padding-right: 5px;
    padding-left: 5px;
}

@media only screen and (max-width: 768px) {
    .carousel-text {
        top: 24%;
        left: 16%;
        font-weight: 700;
        line-height: 32px;
        font-size: 28px;
    }

    .footer {
        text-align: center;
    }

    .footer-list {
        margin-top: 2rem;
    }

    .about-us {
        text-align: center;
    }

    .about-us-title {
        margin-top: 35px;
    }

    .about-us-side {
        padding-left: 0px;
    }

    .separator {
        margin: 0 auto;
    }

    .carousel-2 {
        display: block;
    }

    .carousel-1 {
        display: none;
    }
}