
:root {
 
    /* Accent Shades  */ 
    --accShade-100: #e6e6e6;
    --accShade-200: #CCCCCC;
    --accShade-300: #B3B3B3;
    --accShade-400: #999999;
    --accShade-500: #808080;
    --accShade-600: #666666;
    --accShade-700: #4C4C4C;
    --accShade-800: #333333;
    --accShade-900: #191919;
    
    
    /* Focus  */ 
    --focus-100:#057BFF;
    --focus-75: #0469D9;
    --focus-50: #0356B2;
    --focus-25: #02438C;
    
    
    /* Success  */ 
    --success-100: #5BFF4D;
    --success-75:  #4DD941;
    --success-50:  #40B336;
    --success-25:  #328C2A;
    
    
    /* Error  */ 
    --error-100: color: #FF3338;
    --error-75: color: #D92B30;
    --error-50: #B32427;
    --error-25: #8C1C1F;
    
    
    /* Alert  */ 
    --alert-100: #FF8200;
    --alert-75:  #BF6100;
    --alert-50:  #804100;
    --alert-25:  #402000;
    
    
    /* Neutral Dark  */ 
    --neuDark-100: #0D0D0D;
    --neuDark-75:  #1A1A1A;
    --neuDark-50:  #262626;
    --neuDark-25:  #333333;
    
    
    /* Neutral White  */ 
    --neuWhite-100: #EBEBEB;
    --neuWhite-75:  #F2F2F2;
    --neuWhite-50:  #F7F7F7;
    --neuWhite-25:  #FFFFFF;

}
* , ** , *::before , *::after {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    appearance: none;
}

body {
    width: 100vw;
    overflow-x: hidden;
    margin: 0;
    background-color: var(--neuDark-75);
}

/* 
        Typography
                        */


@font-face {
    font-family: 'Givonic-Black';
    src: url(/assets/fonts/Givonic/Givonic-Black.ttf) format('ttf');
    font-weight: 900;
    font-style: normal;
}
@font-face {
    font-family: 'Givonic-Bold';
    src: url(/assets/fonts/Givonic/Givonic-Bold.ttf) format('ttf');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Givonic-Semibold';
    src: url(/assets/fonts/Givonic/Givonic-SemiBold.ttf) format('ttf');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'Givonic-Regular';
    src: url(/assets/fonts/Givonic/Givonic-Regular.ttf) format('ttf');
    font-weight: 450;
    font-style: normal;
}
@font-face {
    font-family: 'Givonic-Light';
    src: url(/assets/fonts/Givonic/Givonic-Light.ttf) format('ttf');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'Givonic-Thin';
    src: url(/assets/fonts/Givonic/Givonic-Thin.ttf) format('ttf');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Inter-Light';
    src: url(/assets/fonts/Inter/Inter-Light.ttf) format('ttf');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'Inter-Regular';
    src: url(/assets/fonts/Inter/Inter-Regular.ttf) format('ttf');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Inter-Medium';
    src: url(/assets/fonts/Inter/Inter-Medium.ttf) format('ttf');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Inter-Semibold';
    src: url(/assets/fonts/Inter/Inter-SemiBold.ttf) format('ttf');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'Inter-Bold';
    src: url(/assets/fonts/Inter/Inter-Bold.ttf) format('ttf');
    font-weight: 700;
    font-style: normal;
}



/* Headlines */

.headlineBold {
    font-family: 'Givonic-Bold', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--neuWhite-100);

    line-height: 110%;
    letter-spacing: 0.5 px;
    margin: 0;
}

.headlineLarge {
    font-family: 'Givonic-Semibold', sans-serif;
    font-size: 40px;
    font-weight: 600;
    color: var(--accShade-100);
    margin: 0;
}

.headlineRegular {
    font-family: 'Givonic-Semibold', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--accShade-100);
    margin: 0;
}

.headlineSmall {
    font-family: 'Givonic-Semibold', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--accShade-100);
    margin: 0;
}

.headlineSubheadline {
    font-family: 'Givonic-Semibold', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--accShade-100);
    margin: 0;
}


/*          
            Body        
                         */

/* Body Large */
.bodyLarge {
    font-family: 'Inter-Medium', sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: var(--accShade-300);

    line-height: 140%;
    letter-spacing: 0;
    margin: 0;
}
.bodyLarge .SemiBold {
    font-family: 'Inter-Semibold', sans-serif;
    font-weight: 600;
    color: var(--accShade-200);
}
.bodyLarge .Bold {
    font-family: 'Inter-Bold', sans-serif;
    font-weight: 700;
    color: var(--accShade-200);
}

/* Body Regular */
.bodyRegular {
    font-family: 'Inter-Medium', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: var(--accShade-300);

    line-height: 130%;
    letter-spacing: 0;
    margin: 0;
}
.bodyRegular .SemiBold {
    font-family: 'Inter-Semibold', sans-serif;
    font-weight: 600;
    color: var(--accShade-200);

}
.bodyRegulare .Bold {
    font-family: 'Inter-Bold', sans-serif;
    font-weight: 700;
    color: var(--accShade-200);

}

/* Body Small */
.bodySmall {
    font-family: 'Inter-Medium', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: var(--accShade-300);

    line-height: 130%;
    letter-spacing: 0;
    margin: 0;
}
.bodySmall .SemiBold {
    font-family: 'Inter-Semibold', sans-serif;
    font-weight: 600;
    color: var(--accShade-200);

}
.bodySmall .Bold {
    font-family: 'Inter-Bold', sans-serif;
    font-weight: 700;
    color: var(--accShade-200);

    line-height: 110%;
    letter-spacing: 0;
}


/*          
            CaptionsText        
                         */


/* Caption Large */
.captionLarge {
    font-family: 'Inter-Regular', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: var(--accShade-400);

    line-height: 110%;
    letter-spacing: 0;
    margin: 0;
}
.captionLarge .Medium {
    font-family: 'Inter-Medium', sans-serif;
    font-weight: 500;
    color: var(--accShade-300);

    line-height: 110%;
    letter-spacing: 0;
}
.captionLarge .Light {
    font-family: 'Inter-Light', sans-serif;
    font-weight: 300;
    color: var(--accShade-400);

    line-height: 110%;
    letter-spacing: 0;
}


/* Caption Regular */
.captionRegular {
    font-family: 'Inter-Regular', sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: var(--accShade-400);

    line-height: 110%;
    letter-spacing: 0;
    margin: 0;
}
.captionRegular .Medium {
    font-family: 'Inter-Medium', sans-serif;
    font-weight: 500;
    color: var(--accShade-300);

    line-height: 110%;
    letter-spacing: 0;
}
.captionRegular .Light {
    font-family: 'Inter-Light', sans-serif;
    font-weight: 300;
    color: var(--accShade-400);

    line-height: 110%;
    letter-spacing: 0;
}



/* Caption Small */
.captionSmall {
    font-family: 'Inter-Regular', sans-serif;
    font-weight: 400;
    font-size: 10px;
    color: var(--accShade-400);

    line-height: 110%;
    letter-spacing: 0;
    margin: 0;
}
.captionSmall .Medium {
    font-family: 'Inter-Medium', sans-serif;
    font-weight: 500;
    color: var(--accShade-300);

    line-height: 110%;
    letter-spacing: 0;
}
.captionSmall .Light {
    font-family: 'Inter-Light', sans-serif;
    font-weight: 300;
    color: var(--accShade-400);

    line-height: 110%;
    letter-spacing: 0;
}








/* Layout */
.heroeSection {
    position: static;
    display: flex;
    flex-direction: row;
    gap: 20px;

    width: 100%;
    max-width: 1060px;
    margin: 180px auto;
    padding: 0 0;
}

.heroeSection .main {
    position: static;
    width: 520px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;

    margin: 0px 0px;
    padding: 0px 0px;
}
.heroeSection .main p{
    max-width: 430px;
}

.heroeSection .aside {
    position: static;
    width: 520px;
    max-width: 100%;
}


.aboutMe {
    width: 100%;
    max-width: 1060px;

    margin: 64px auto;
}

.aboutMe .innerWrapper {
    width: 100%;
    max-width: 610px;
    display: flex;
    flex-direction: column;
    align-self: center;
    margin: 0 auto;
}

.mySkills {
    width: 100%;
    max-width: 1060px;

    margin: 92px auto;
}
.mySkills .innerWrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 610px;
}

/* Navbar */
nav {
    position: fixed;
    top: 0%;
    width: 100vw;
    height: 60px;

    background-color: #333333;
}

nav .innerWrapper {
    width: 100%;
    max-width: 1060px;
    display: flex;
    flex-direction: row;

    justify-content: space-between;
    gap: 20px;
    margin: 0 auto;
}
nav ul{
    display: flex;
    flex-direction: row;
}
nav li {
    list-style-type: none;
}

nav a {
    font-family: 'Givonic-Bold', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--accShade-100);
    width: max-content;
    padding: 0 6px;
    cursor: pointer;
    text-decoration: none;

    transition: all 50ms ease;
}
nav a:hover {
    color: var(--focus-75);
}
nav a:active {
    color: var(--focus-75);
}

nav button {
    font-family: 'Inter-Semibold', sans-serif;
    font-size: 13px;
    background-color: orangered;
    border: none;
    border-radius: 4px;
    outline: none;

    padding: 4px 8px;

    cursor: pointer;
}

.testimonialsSection {
    width: 100%;
    max-width: 1060px;
    margin: 92px auto;

    background-color: rgba(102, 51, 153, .0);
}

section .sliderItems {
    display: flex;
    flex-direction: row;
    gap: 20px;
    position: relative;
    left: -240px;
    padding-left: 240px;
    margin-top: 24px;
    /*-230px*/
    width: 100vw;
    height: auto;
    max-height: 270px;
    background-color: rgba(102, 51, 153, .0); 
}

.testimonialsSection .testimonialTitleCell {
    max-width: 610px;
}

.testimonialItem {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    width: 340px;
    height: 267px;

    padding: 17px;

    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);

    border-radius: 8px;

    cursor: auto;

    transition: all 100ms ease-out;
}
.testimonialItem:hover {
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.9);
    filter: drop-shadow(0px 4px 15px rgba(255, 255, 255, 0.05));
}
.profileSection {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.detailSection {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 8px;

    margin-top: 24px;
}

.detailSection img {
    width: 45px;
    height: 45px;
}

.textGradient-1 {
    background: linear-gradient(180deg, #C4A710 0%, #EC4D0A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}