:root {
    --accent-color: #5641b8;
    --title-color: #040404;
    --text-color: #666666;
    --light-color: #F7F7F7;
    --highlight-color: #f4efff;
    --box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    --transition-duration: 0.5s;
}

* {
    font-family: 'Poppins', sans-serif;
}



body {
    margin: 0px;
    padding: 0px;
    overflow-x: hidden;
    padding-top: 88px;
}


/* Headings */
.title {
    color: var(--title-color);
    font-weight: 500;
    margin-bottom: 30px;
}

.subtitle {
    font-size: 1.5rem;
    line-height: 2rem;
}

.highlight {
    position: relative;
    display: inline-block;
}

.highlight::before {
    content: '';
    position: absolute;
    bottom: 0%;
    left: -2%;
    width: 105%;
    height: 40%;
    background-color: var(--highlight-color);
    transform: translateY(-50%);
    z-index: -1;
}

#services h3, #testimonials h3 {
    color: var(--accent-color);
    font-weight: 500;
    font-size: 1.5rem;
    margin-top: 30px;
}



/* Paragraphs */
p {
    color: var(--text-color);
    line-height: 1.75rem;
    margin-bottom: 30px;
}


/* Links */
a {
    text-decoration: none;
    color: var(--text-color);
    transition-duration: var(--transition-duration);
}

a:hover {
    color: var(--accent-color);
    transition-duration: var(--transition-duration);
}


/* Buttons */
.btn {
    color: #FFFFFF;
    line-height: 1rem;
    font-weight: 500;
    padding: 12px 18px 12px 24px;
    border-radius: 25px;
    background-color: var(--accent-color);
    border: 2px solid transparent;
    transition-duration: var(--transition-duration);
}

.btn:hover {
    transition-duration: var(--transition-duration);
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.bi-chevron-right::before {
    font-weight: 600!important;
    font-size: 16px;
}



/* Header */
#logo img {
    max-height: 20px;
}

nav li {
    text-transform: uppercase;
}

header {
    position: relative;
    z-index: 2;

}

.header-container {
    background-color: #FFFFFF;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}



/* subs */
#subs::after {
    content: "";
    background-image: url(../img/Shape-Gradient.svg);
    background-position: right top;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: -425px;
    right: -325px; 
    width: 1100px;
    height: 1070px;
    z-index: -1;
}

#subs {
    position: relative;
    /*z-index: 1;*/
    overflow-x: clip;
}





/* Performances */

#performances img {
    max-width: 100%;
}

#performances::after {
    content: "";
    background-image: url(../img/Shape-Grey.svg);
    background-size: contain;
    background-position: left;
    background-repeat: no-repeat;
    position: absolute;
    top: -40px;
    right: 66%;
    width: 800px;
    height: 770px;
    z-index: -2;
}

#performances {
    position: relative;
    overflow-x: clip;
}





/* Services */
#services img {
    height: 75px;
    padding: 15px;
}

#services-details {
    background-image: url(../img/Shape-Grey.svg);
    background-size: 85%;
    background-position: center;
    background-repeat: no-repeat;
}
.icon {
    background-image: url(../img/Shape-Purple.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}



/* Testimonials */ 
#testimonials {
    position: relative;
    overflow: clip;
}

#testimonials::after {
    content: "";
    background-image: url(../img/Shape-Grey.svg);
    background-size: contain;
    background-position: right bottom;
    background-repeat: no-repeat;
    position: absolute;
    top: 30%;
    right: -15%;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.icon-box, .testimonial-box {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 5px;
    box-shadow: var(--box-shadow);
    border: 2px solid transparent;
    transition-duration: var(--transition-duration);
}

.testimonial-box:hover {
    border: 2px solid var(--accent-color);
    transition-duration: var(--transition-duration);
}

.testimonial-box img {
    height: 100px;
}



/* Footer */
footer {
    font-size: 14px;
    padding: 30px 0 15px 0;
    background-color: transparent;
    border-top: 1px solid #e9e9e9;
}

footer img {
    height: 20px;
    margin-bottom: 30px;
}


/* Animations */
.up {
    transition-duration: var(--transition-duration);
}

.up:hover {
    transform:translate(0, -5px);
    transition-duration: var(--transition-duration);
}



/* Media Queries */
@media (max-width: 768px) {
    #subs .title, .subtitle {
        color: #FFFFFF;
    }

    nav ul {
        flex-direction: row!important;
        justify-content: space-around;
    }

    nav {
        padding: 16px 0 0 0!important;
    }
}

@media (max-width: 1399px) {
    #performances::after {
        top: -107px;
        right: 66%;
        width: 700px;
        height: 800px;
    }
}


@media (max-width: 991px) {
    #performances::after {
        top: 31%;
        right: 53%;
        width: 770px;
        height: 800px;
    }
}

@media (max-width: 575px) {
    #performances::after {
        top: 42%;
        right: 53%;
        width: 700px;
        height: 600px;
    }
}