
/* Font Family */
@font-face {
    font-family: "Frutiger 45 Light";
    src: url('../fonts/Frutiger_45_Light.otf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Frutiger Bold";
    src: url('../fonts/Frutiger_bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --WHITE: #FFFFFF;
    --BACKGROUND: #000011;
    --PINK: #F72662;
    --BLUE: #05A8DB;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Frutiger 45 Light";
    background-color: var(--BACKGROUND);
    color: var(--WHITE);
    line-height: 1.6;
}
.page-wrapper {
    min-height: calc(100vh - 114px);
}
.container {
    max-width: 1400px !important;
    padding:0 2rem;
}


/* header */
.quant-analyst-header {
    position: relative;
    margin-bottom: 10rem;
}

.header-pink-line {
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: var(--PINK);
}

.header-blue-line {
    position: absolute;
    left: 5px;
    top: 0;
    width: 5px;
    height: 100%;
    background: var(--BLUE);
}

.header-content {
    display: flex;
    flex-direction: column;
    margin-left: 5rem;
    padding-top: 5rem;
}

.quant-analyst-title {
    font-size: 5rem;
    font-weight: 500;
    color: var(--WHITE);
}

.quant-analyst-subtitle {
    font-size: 3rem;
    color: var(--WHITE);
}

.quant-analyst-cta-button {
    width: fit-content;
    padding: 1rem 2.5rem;
    border: 1px solid var(--WHITE);
    border-radius: 1.5rem;
    color: var(--WHITE);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-top: 4rem;
}

.quant-analyst-cta-button:hover {
    background-color: var(--WHITE);
    color: var(--BACKGROUND);
    text-decoration: none;
}

.quant-analyst-content {
    margin: 14vh 0;
}






.bg-pink {
    background-color: var(--PINK);
}

.bg-blue {
    background-color: var(--BLUE);
}
.text-pink {
    color: var(--PINK);
}

.text-blue {
    color: var(--BLUE);
}

.question {
    font-size: 2rem;
    color: var(--WHITE);
    line-height:1.3;
    margin:0;
    padding:2rem 4rem;
}
.answer {
    font-size: 1.7rem;
    color: var(--WHITE);
    line-height:1.4;

}
.desc-box {
    min-height:160px;
}
.description {
    font-size: 1.5rem;
}
.bg-circle {
    width: 100%;
    height: 190%;
    position: absolute;
    z-index: -1;
    min-height:160px;
}
.bg-circle.bg-pink {
    border-radius: 50% 50% 0 0 ;
    top: 0;
}
.bg-circle.bg-blue {
    border-radius: 0 0 50% 50% ;
    bottom:0;
}

@media (max-width: 1199px) {
    .question {
        font-size: 1.8rem;
    }
    .answer {
        font-size: 1.5rem;
    }
    .description {
        font-size: 1.3rem;
    }

    
    .header-content {
        margin-left: 4rem;
        padding-top: 4rem;
    }
    
    .quant-analyst-title {
        font-size: 4rem;
    }
    
    .quant-analyst-subtitle {
        font-size: 2rem;
    }
    
  
}
@media (max-width: 1024px) {
    .question {
        font-size: 1.6rem;
    }
    .answer {
        font-size: 1.4rem;
    }
    .description {
        font-size: 1.2rem;
    }
    .desc-box {
        min-height:140px;
    }
}
@media (max-width: 991px) {

.bg-circle.bg-pink {
    border-radius: 50% 0 0 50% ;
    top: 0;
    left: 48%;
}
.bg-circle.bg-blue {
    border-radius: 0 50% 50% 0;
    bottom:0;
    right:50%;
}

.container {
    padding:0 1rem;
    max-width:575px !important;
}
.desc-box {
    min-height:210px;
}
.bg-circle  {
    height: 210px;
    width: 210px;
    position: relative;
    z-index: 0;
}
.question {
    font-size: 1.7rem;
    padding:2rem 0;
}
.answer {
    font-size: 1.5rem;
}
.description {
    font-size: 1.3rem;
}
}
@media (max-width: 575px) {

    .question {
        font-size: 1.5rem;
        padding:1rem 0;
    }
    .answer {
        font-size: 1.2rem;
    }
    .description {
        font-size: 1.2rem;
    }
    .header-content {
        margin-left: 3rem;
        padding-top: 3rem;
    }
    
    .quant-analyst-title {
        font-size: 3rem;
        margin-bottom:1rem;
    }
    
    .quant-analyst-subtitle {
        font-size: 1.75rem;
    }
    .quant-analyst-cta-button {
        margin-top:2rem;
    }
    .quant-analyst-header {
        margin-bottom:4rem;
    }
}



