/* Neue Regrade Fonts */
@font-face {
    font-family: 'Neue Regrade';
    src: url('fonts/Neue Regrade Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Neue Regrade';
    src: url('fonts/Neue Regrade Extrabold.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Neue Regrade';
    src: url('fonts/Neue Regrade Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Neue Regrade';
    src: url('fonts/Neue Regrade Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Neue Regrade';
    src: url('fonts/Neue Regrade Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Neue Regrade';
    src: url('fonts/Neue Regrade Semibold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Neue Regrade';
    src: url('fonts/Neue Regrade Variable.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Satoshi Fonts */
@font-face {
    font-family: 'Satoshi';
    src: url('fonts/Satoshi-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi';
    src: url('fonts/Satoshi-Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi';
    src: url('fonts/Satoshi-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi';
    src: url('fonts/Satoshi-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi';
    src: url('fonts/Satoshi-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'Satoshi';
    margin: 0;
    padding: 0;
    background-color: #F6F6F6;
    padding-top: 180px;
}

h1, h2, h3, h4, h5, h6 {
    padding: 0;
    font-family: 'Neue Regrade', sans-serif;
    margin: 0;
    font-weight: 600;
    font-size: inherit;
}

p {
    margin: 0;
    padding: 0;
}

a {
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1400px;
    width: 95%;
    margin: 0 auto;
    position: relative;
}

header, section, footer {
    width: 100%;
    position: relative;
}

.tile-bg {
    background-color: black;
    color: white;
    background-image: url("img/tile-bg.png");
    background-repeat: repeat;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 30;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    height: 72px;
    border-radius: 30px;
    margin-top: 30px;
    background-color: white;
    z-index: 30;
}

.left-header {
    font-family: 'Neue Regrade', sans-serif;
    font-size: 25px;
    font-weight: 500;
    margin-left: 40px;
}

.mid-header {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 18px;
}

.selected-header {
    position: relative;
}

.selected-header::after {
    content: "";
    position: absolute;
    left: 0;
    ruby-overhang: 0;
    bottom: -3px;
    background-color: #DDFF7C;
    border-radius: 50%;
    height: 3px;
    width: 100%;
}

.right-header {
    margin-right: 40px;
}

.right-header a {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 19px;
    font-family: 'Neue Regrade', sans-serif;
    font-weight: 600;
}

#hero {
    padding-bottom: 70px;
}

.hero-container {
    display: flex;
    gap: 5%;
}

.left-hero {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 50%;
}

.left-hero>h1 {
    font-size: 90px;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.left-hero>h1>div {
    display: flex;
    align-items: center;
    gap: 20px;
}

.left-hero>h1>div:nth-child(1)>img {
    height: 83px;
}

.left-hero>h1>div:nth-child(2)>img {
    height: 61px;
    margin-left: 6px;
}

.left-hero>p {
    color: #073126;
    font-size: 25px;
    line-height: 38px;
    font-weight: 400;
}

.left-hero>div {
    display: flex;
    align-items: center;
    gap: 25px;
}

.left-hero>div>a:nth-child(1) {
    background-color: black;
    color: white;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 7px;
    border-radius: 40px;
    height: 62px;
    width: 160px;
    padding-right: 15px;
    font-size: 19px;
}

.left-hero>div>a:nth-child(2) {
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: center;
    font-size: 18px;
    font-weight: 400;
}

.right-hero {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.right-hero>img {
    width: 75%;
}

#about {
    height: 900px;
    border-radius: 50px;
}

.about-container {
    display: flex;
    gap: 5%;
    height: 100%;
    align-items: center;
}

.left-about {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35%;
    margin-left: 7%;
}

.left-about img {
    width: 100%;
}

.right-about {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 50%;
}

.right-about>h2 {
    font-size: 70px;
}

.right-about>p {
    font-size: 25px;
    font-weight: 400;
    line-height: 38px;
}

#approach {
    padding: 100px 0;
}

.approach-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
}

.approach-container>h2 {
    font-size: 70px;
}

.approach-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    row-gap: 20px;
    max-width: 1000px;
    width: 100%;
}

.approach-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: calc(50% - 10px);
    border-radius: 20px;
    padding: 40px 0;
    min-height: 170px;
    background-color: white;
    align-items: center;
}

.approach-box>div {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 25px;
    width: 90%;
}

.approach-box>div>div:nth-child(1) {
    height: 28px;
    width: 28px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.approach-box>div>div:nth-child(1)::after {
    content: "";
    position: absolute;
    left: 0;
    ruby-overhang: 0;
    bottom: -10px;
    background-color: #DDFF7C;
    border-radius: 50%;
    height: 3px;
    width: 100%;
}

.approach-box>p {
    font-size: 18px;
    font-weight: 400;
    line-height: 25px;
    width: 90%;
}

#ready {
    height: 760px;
    border-radius: 50px;
}

.top-swirl {
    position: absolute;
    left: 50px;
    top: 0px;
    height: 200px;
}

#about .top-swirl {
    top: -50px;
}

.down-swirl {
    position: absolute;
    right: 0px;
    bottom: 60px;
    height: 230px;
}

.ready-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    height: 100%;
    justify-content: center;
    text-align: center;
}

.ready-container>h2 {
    font-size: 80px;
}

.ready-container>p {
    font-size: 25px;
    font-weight: 400;
    line-height: 38px;
}

.ready-container>a {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    font-size: 25px;
    background-color: white;
    border-radius: 40px;
    height: 70px;
    width: 216px;
    padding-right: 15px;
    color: black;
}

footer {
    height: 260px;
    overflow: hidden;
    display: flex;
    align-items: center;
    position: relative;
    padding-bottom: 20px;
}

.footer-abs {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(-0%, -50%);
    width: 1440px;
    height: 260px;
}

.footer-container {
    height: 89px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    position: relative;

}

.left-footer {
    display: flex;
    align-items: center;
    margin-left: 40px;
    gap: 15px;
}

.left-footer>a {
    font-family: 'Neue Regrade', sans-serif;
    font-size: 25px;
    font-weight: 500;
}

.left-footer>div {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 18px;
}

.right-footer {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 17px;
    margin-right: 40px;
}



/* Services */

#services {}

.services-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
    padding: 70px 0;
}

.mid-swirl {
    position: absolute;
    top: 0;
    left: 200px;
}

.services-container>h2 {
    font-size: 70px;
}

.services {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 30px;
}

.service {
    border-radius: 50px;
    display: flex;
    gap: 5%;
    align-items: center;
}

.service-left {
    width: 47%;
    margin-left: 4%;
    flex-direction: column;
    display: flex;
    gap: 30px;
}

.service-left>h4 {
    font-size: 40px;
}

.service-left>p {
    font-size: 25px;
    font-weight: 400;
    line-height: 35px;
}

.service-right {
    display: flex;
    align-items: flex-end;
    height: 100%;
    width: 40%;
    margin-right: 4%;
}

.service-right img {
    margin-top: 150px;
    width: 100%;
}

#flex {
    padding: 80px 0;
}

.ws {
    position: absolute;
    left: 20px;
    top: 80px;
}

.flex-container {
    display: flex;
    flex-direction: column;
    gap: 70px;
    align-items: center;
}

.flex-container>h2 {
    font-size: 70px;
}

.flex-container>div {
    display: flex;
}

.left-flex {
    width: 65%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.left-flex>h4 {
    font-size: 40px;
}

.left-flex>p {
    font-size: 25px;
    line-height: 38px;
}

.right-flex {
    width: 35%;
}

.right-flex>img {
    width: 100%;
}




/* About Page */

.about-hero-container {
    display: flex;
    gap: 2%;
}

.about-hero-left {
    display: flex;
    align-items: flex-end;
    width: 38%;
}

.about-hero-left img {
    width: 100%;
}

.about-hero-right {
    display: flex;
    flex-direction: column;
    gap: 50px;
    width: 60%;
}

.about-hero-right>h1 {
    font-size: 80px;
    line-height: 95px;
}

.about-hero-right>p {
    color: #073126;
    font-size: 25px;
    font-weight: 400;
    line-height: 38px;
}

#values {}

.values-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    padding: 90px 0;
}

.vs {
    position: absolute;
    top: -50px;
    right: 200px;
    height: 176px;
}

.values-container>h2 {
    font-size: 70px;
}

.values {
    display: flex;
    gap: 20px;
    width: 100%;
    max-width: 1150px;
}

.values>.approach-box {
    width: calc((100% - 40px) / 3);
    min-height: 140px;
}

.values>.approach-box>* {
    width: 80%;
}




/* Contact Page */


#contact {
    padding: 50px 0;
}

.cs1 {
    position: absolute;
    top: -140px;
    left: 100px;
    height: 200px;
}

.cs2 {
    position: absolute;
    height: 200px;
    right: 0;
    top: 500px;
}

.contact-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.contact-container>h1 {
    font-size: 80px;
    line-height: 95px;
    text-align: center;
}

.contact-container>p {
    color: #073126;
    font-size: 25px;
    line-height: 38px;
    text-align: center;
}

.contact-container>div {
    text-align: center;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 876px;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    gap: 60px;
    border-radius: 50px;
}

.contact-container>div>h3 {
    font-size: 50px;
}

.contact-container>div>p {
    font-size: 25px;
    line-height: 38px;
}

.mobile-menu{
    display: none;
}

@media only screen and (min-width: 1024px) {
    .mob {
        display: none!important;
    }
}

@media only screen and (max-width:1200px) {
    .left-hero>h1 {
        font-size: 60px;
    }
}

@media only screen and (max-width: 1024px) {

    body{
        padding-top: 130px;
    }

    section {
        overflow: hidden;
    }

    .mobnot {
        display: none !important;
    }

    .container {
        width: 90%;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        height: 225px;
        justify-content: center;
        gap: 10px;
    }

    .left-footer {
        margin: 0;
        flex-direction: column;
    }

    .left-footer>a {
        font-size: 24px;
    }

    .left-footer>div {
        font-size: 15px;
    }

    .right-footer {
        margin: 0;
        font-size: 16px;
        flex-direction: column;
        gap: 4px;
    }

    .header-container {
        width: 100%;
        border-radius: 20px;
    }

    .mid-header {
        display: none;
    }

    .right-header {
        display: none;
    }

    .left-header {
        margin-left: 20px;
        font-size: 21px;
        font-weight: 600;
    }

    .burger {
        margin-right: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    .burger img {
        height: 16px;
    }

    .mobile-menu {
        height: 370px;
        box-shadow: 0px 4px 10px 0px #0000001A;
        border-radius: 20px;
        width: 100%;
        position: absolute;
        top: 30px;
        background-color: white;
        z-index: 35;
    }

    .mobhed {
        display: flex;
        justify-content: space-between;
        width: 85%;
        font-size: 21px;
        font-weight: 600;
        align-items: center;
        margin-top: 30px;
    }

    .x {
        cursor: pointer;
    }

    .x img {
        height: 21px;
    }

    .mobile-menu{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        display: none;
    }

    .mobile-menu>a {
        font-size: 18px;
        width: 85%;
        font-weight: 500;
    }

    .mobile-menu>a:nth-child(2){
        margin-top: 15px;
    }

    .mobile-menu>a:last-child {
        background-color: black;
        color: white;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 0px;
        border-radius: 40px;
        height: 54px;
        width: 150px;
        padding-right: 15px;
        font-size: 19px;
        margin-right: auto;
        margin-left: 7.5%;
        margin-top: 20px;
    }

    .mobile-menu>a:last-child img{
        width: 36px;
    }

    #hero {
        padding-bottom: 0;
    }

    .hero-container {
        flex-direction: column;
        gap: 40px;
        padding-bottom: 30px;
    }

    .left-hero {
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .left-hero>h1 {
        font-size: 46px;
        gap: 3px;
        width: 95%;
        line-height: 53px;
    }

    .left-hero>h1>div {
        justify-content: center;
    }

    .left-hero>h1>div:nth-child(1)>img {
        height: 41px;
    }

    .left-hero>h1>div:nth-child(2)>img {
        height: 46px;
    }

    .left-hero>p {
        font-size: 20px;
        line-height: 28px;
    }

    .left-hero>img {
        width: 80%;
    }

    .left-hero>div {
        flex-direction: column;
    }

    .about-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .right-about {
        width: 100%;
        order: -1;
        margin: 0;
        align-items: center;
        text-align: center;
        gap: 30px;
    }

    .left-about {
        width: 100%;
        margin: 0;
    }

    .left-about img {
        width: 90%;
    }

    .right-about>h2 {
        font-size: 40px;
    }

    .right-about>p {
        font-size: 20px;
        line-height: 28px;
        width: 90%;
    }

    #about {
        height: unset;
        padding: 80px 0;
    }

    #about .top-swirl {
        top: -10px;
    }

    .top-swirl {
        height: 87px;
        left: 0px;
        top: 30px;
    }

    .approach-boxes {
        width: 100%;
    }

    .approach-box {
        width: 100%;
    }

    .approach-container>h2 {
        font-size: 40px;
        text-align: center;
    }

    .approach-box>div>h5 {
        font-size: 22px;
    }

    #ready {
        height: unset;
        padding: 130px 0;
        overflow: hidden;
        border-radius: 40px;
    }

    .ready-container>h2 {
        font-size: 38px;
    }

    .ready-container>p {
        font-size: 20px;
        line-height: 28px;
    }

    .down-swirl {
        height: 82px;
        right: -40px;
    }

    .right-hero {
        width: 100%;
        align-items: center !important;
        justify-content: center !important;
    }

    .services-container {
        width: 100%;
    }

    .services-container>h2 {
        font-size: 40px;
    }

    .service {
        padding: 60px 0;
        flex-direction: column;
        gap: 30px;
    }

    .service-left {
        margin: 0;
        align-items: center;
        text-align: center;
        width: 90%;
    }

    .service-right {
        margin: 0;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .service-right img {
        margin: 0;
        width: 90%;
    }

    .service-left>h4 {
        font-size: 33px;
    }

    .service-left p {
        font-size: 19px;
        line-height: 28px;
    }

    #flex {
        padding: 20px 0;
    }

    .flex-container {
        gap: 40px;
    }

    .flex-container>h2 {
        font-size: 40px;
        text-align: center;
    }

    .flex-container>div {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .left-flex {
        gap: 20px;
        width: 100%;
    }

    .left-flex>h4 {
        font-size: 24px;
    }

    .left-flex>p {
        font-size: 20px;
        line-height: 28px;
    }

    .ws {
        height: 76px;
        left: 0;
    }

    .right-flex {
        width: 85%;
    }

    .services {
        gap: 15px;
    }

    .service {
        border-radius: 30px;
    }

    .about-hero-container {
        flex-direction: column;
        gap: 20px;
    }

    .about-hero-left {
        width: 100%;
    }

    .about-hero-right {
        width: 100%;
        order: -1;
        gap: 20px;
        text-align: center;
    }

    .about-hero-right>h1 {
        font-size: 46px;
        line-height: 60px;
    }

    .about-hero-right>p {
        font-size: 20px;
        line-height: 28px;
    }

    .values-container>h2 {
        font-size: 40px;
    }

    #values {
        overflow: visible;
    }

    .values {
        flex-direction: column;
    }

    .values>.approach-box {
        width: 100%;
    }

    .vs {
        height: 76px;
        top: 0;
    }

    .contact-container {
        width: 100%;
        gap: 30px;
    }

    .contact-container>h1 {
        font-size: 53px;
        line-height: 60px;
        width: 95%;
    }

    .contact-container>p {
        width: 95%;
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 15px;
    }

    .contact-container>div {
        border-radius: 30px;
        gap: 30px;
    }

    .contact-container>div>h3 {
        font-size: 42px;
        line-height: 50px;
        width: 90%;
    }

    .contact-container>div>p {
        width: 90%;
        font-size: 20px;
        line-height: 28px;
    }

    #contact {
        overflow: visible;
    }

    .cs1 {
        height: 78px;
        left: 0;
        top: -40px;
    }

    .cs2 {
        height: 78px;
        top: 360px;
    }

    .mid-swirl {
        height: 76px;
        left: 0;
    }
}