@import url('https://fonts.cdnfonts.com/css/bungee');
@import url('https://fonts.cdnfonts.com/css/inter');

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background-color: #fff;
}

header{
    background-color: black;
    width: 100%;
    position: fixed;
    top: 0;
}

header a{
    text-decoration: none;
    color: #fff;
    font-family: "Bungee";
}

.navigation{
    margin: 0 0 0 auto;
}

.left-one p{
    font-family: "Inter";
}

.left-two p{
    font-family: "Calisto MT";
    color: #21439A;
}

.left-three p{
    font-family: "Calisto MT";
}

.red {
    color: #c32c2c;
}

.green {
    color: #23670C;
}

.purple{
    color: #7F19AE;
}

.cyan{
    color: #168097;
}

.second-inner p{
    font-family: "Calisto MT";
}

@media screen and (min-width: 1600px){ 
    header{
        height: 140px;
        display: flex;
        align-items: center;
    }

    header img:not(.hamburger){
        width: 240px;
        height: 120px;
        flex-shrink: 0;
        padding: 20px 0 0 50px;
    }

    header a{
        font-size: 24px;
        font-weight: 400;
        margin: 0 30px 0 0;
    }

    .hamburger{
        display: none;
    }

    content{
        width: 100%;
        display: flex;
        flex-direction: column;
        padding-top: 140px;
    }

    first-container {
        width: 100%;
        display: flex;
        align-items: center;
    }

    .left{
        width: 50%;
        padding-left: 165px;
    }

    .left-one p{
        font-size: 24px;
    }

    .left-two p{
        margin-top: 48px;
        margin-bottom: 48px;
        font-size: 96px;
    }

    .left-three p{
        font-size: 40px;
    }

    .right{
        width: 50%;
        padding-top: 30px;
    }

    second-container{
        width: 100%;
        padding-right: 165px;
        padding-left: 165px;
    }
}

@media screen and (min-width: 830px) and (max-width:1599px){
    header{
        height: 100px;
        display: flex;
        align-items: center;
    }

    header img:not(.hamburger){
        width: 160px;
        height: 85px;
        flex-shrink: 0;
        padding: 15px 0 0 35px;
    }

    header a{
        font-size: 24px;
        font-weight: 400;
        margin: 0 30px 0 0;
    }

    .hamburger{
        display: none;
    }

    content{
        width: 100%;
        display: flex;
        flex-direction: column;
        padding-top: 100px;
    }

    first-container {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .left{
        width: 100%;
        padding-left: 35px;
    }

    .left-one p{
        font-size: 24px;
    }

    .left-two p{
        margin-top: 48px;
        margin-bottom: 48px;
        font-size: 96px;
    }

    .left-three p{
        font-size: 40px;
    }

    .right{
        width: 100%;
    }

    .right img{
        width: 90%;
        padding-left: 10%;
    }

    second-container{
        width: 100%;
        padding-right: 35px;
        padding-left: 35px;
    }
}

@media screen and (max-width: 829px){
    header{
        height: 100px;
        display: flex;
        align-items: center;
    }

    header img:not(.hamburger){
        width: 160px;
        height: 85px;
        flex-shrink: 0;
        padding: 15px 0 0 35px;
    }

    header a{
        display: none;
    }

    .hamburger{
        width: 60px;
        height: 68px;
        flex-shrink: 0;
    }

    content{
        width: 100%;
        display: flex;
        flex-direction: column;
        padding-top: 110px;
    }

    first-container {
        width: 100%;
        display: flex;
        flex-direction: column-reverse;
    }

    .left{
        width: 100%;
        padding-left: 35px;
    }

    .left-one p{
        font-size: 13px;
    }

    .left-two p{
        margin-top: 24px;
        margin-bottom: 24px;
        font-size: 48px;
    }

    .left-three p{
        font-size: 20px;
    }

    .right{
        width: 100%;
    }

    .right img{
        width: 90%;
        padding-left: 10%;
    }

    second-container{
        width: 100%;
        padding-right: 35px;
        padding-left: 35px;
    }
}