body {
    font-family: "Sora", sans-serif;
}

.navbar .nav-link {
    font-weight: 600;
    color: #222;
}

.hero {
    height: 88vh;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.80) 0%, rgba(0, 0, 0, 0.00) 80%), url(../img/hero-bg.jpg) no-repeat;
    background-size: 100% auto;
    display: flex;
    align-items: center;
}


.hero .title {
    font-size: 52px;
    font-weight: 700;
    color: #fff;
}

.hero .title span {
    color: #FF9884;
}

.about {
    padding-top: 100px;
    padding-bottom: 100px;
    background: linear-gradient(107deg, #726CBF 0%, #613072 100%);
    position: relative;
}

.about .container {
    position: relative;
    z-index: 100;
}

.about::after {
    content: " ";
    position: absolute;
    width: 30vw;
    background: #49457D;
    right: 0;
    height: calc(100% - 120px);
    top: 60px;
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
    z-index: 1;
}

.about-content {
    display: flex;
    align-items: center;
    height: 100%;
    color: #fff;
    font-size: 20px;
}

.about-content b {
    font-size: 24px;
}

.about-img {
    border-radius: 16px;
    overflow: hidden;
}

.services {
    padding-top: 120px;
    padding-bottom: 120px;
}

.services .title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
}

.services-item {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.services-item .services-img::before {
    background: rgba(0, 0, 0, 0.50);
    backdrop-filter: blur(1.850000023841858px);
    content: " ";
    position: absolute;
    width: 100%;
    height: 100%;
}

.services-item .services-title {
    position: absolute;
    z-index: 100;
    color: #FFF;
    top: 40%;
    color: #fff;
    width: 100%;
    padding: 0 20px;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -0.48px;
}

.contact {
    background: #292747;
    text-align: center;
    padding-top: 80px;
    padding-bottom: 80px;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.4px;
}

.contact .email-address a {
    font-weight: 700;
    color: #fff;
}

.contact .social-media span {
    margin: 0 10px;
}

.contact .social-media span a {
    font-size: 24px;
    color: #fff;
}

#back-to-top {
    display: none;
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 999;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    color: #fff;
    background: #ab3f2a;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .4);
    justify-content: center;
    align-items: center;
}

@media (max-width: 520px) {
    .navbar-collapse {
        padding-top: 12px;
    }

    .nav-item {
        border-bottom: solid 1px #eee;
    }

    .nav-item:last-child {
        border-bottom: 0;
    }

    .nav-link {
        font-size: 20px;
        font-weight: 600;
        text-align: center;
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .navbar-toggler {
        border: none;
        padding: 0;
    }

    .hero {
        height: 72vh;
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.70) 0%, rgba(0, 0, 0, 0.70) 100%), url(../img/hero-bg.jpg) no-repeat;
        background-size: cover;
        display: flex;
        align-items: center;
        background-position: center;
    }

    .hero .title {
        font-size: 32px;
        text-align: center;
    }

    .about {
        scroll-margin-top:180px; 
        padding-top: 80px;
        padding-bottom: 60px;
    }

    .about>.container>.row {
        flex-direction: column-reverse;
        gap: 40px;
    }

    .about::after {
        display: none;
    }

    .about-content {
        font-size: 16px;
    }
    
    .about-content b {
        font-size: 18px;
    }

    .services {
        scroll-margin-top:180px; 
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .services .title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .services .services-list {
        gap: 32px;
    }

    .contact {
        font-size: 16px;
    }
}