* {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

.container {
    width: 100%;
    min-height: 100vh;
    padding-left: 8%;
    padding-right: 8%;
    box-sizing: border-box;
    overflow: hidden;
    background-color: #1A1A2E;
}

.navbar {
    width: 100%;
    display: flex;
    align-items: center;
}

.logo {
    width: 250px;
    cursor: pointer;
    margin: 30px 10px 10px 50px;
}

nav {
    flex: 1;
    text-align: right;
}

nav ul li {
    list-style: none;
    display: inline-block;
    margin-right: 30px;
}

nav ul li a {
    text-decoration: none;
    color: rgb(255, 255, 255);
    font-size: 14px;
}

nav ul li a:hover {
    color: #f06969;
}

.row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 100px 0;
}

.col-1 {
    flex-basis: 40%;
    position: relative;
    margin-top: 70px;
    margin-left: 50px;
}

.col-1 h2 {
    font-size: 54px;
}

.col-1 h3 {
    font-size: 30px;
    color: white;
    font-weight: 500;
    margin: 20px 0 10px;
}

.col-1 p {
    font-size: 16px;
    color: #f28383;
    font-weight: 100;
}

.col-1 a {
    text-decoration: none;
    color: #f28383;
    font-size: 16px;
    font-weight: 100;
}

.col-1 a:hover {
    color: #f06969;
}

.col-1 h4 {
    margin: 30px 0;
    color: #8686ae;
    font-size: 20px;
}

button {
    width: 140px;
    border: 0;
    padding: 12px 10px;
    outline: none;
    color: #fff;
    background: rgb(243, 54, 54);
    border-radius: 6px;
    cursor: pointer;
    transition: width 0.5s;
}

button a:visited, a:link a:hover {
    text-decoration: none;
    color: white;
}

.col-1:after {
    content: '';
    width: 10px;
    height: 57%;
    background: rgb(243, 54, 54);
    position: absolute;
    left: -40px;
    top: 8px;
}

.col-2 {
    position: relative;
    flex-basis: 60%;
    display: flex;
    align-items: center;
}

.col-2 .controller {
    margin-left: 200px;
    width: 10%;
}

.social-links img {
    height: 13px;
    margin: 10px;
    margin-bottom: -180px;
    cursor: pointer;
}

.social-links {
    text-align: center;
}

#menuList {
    letter-spacing: 0.2px;
}

@media only screen and (max-width: 700px){
    
    nav ul {
        width: 100%;
        position: absolute;
        top: 0;
        right: 0;
        z-index: 2;
        display: none;
    }

    .row {
        flex-direction: column-reverse;
        margin: -20px 0;
    }

    .col-2 {
        flex-basis: 100%;
        /* margin-bottom: 50px; */
    }

    .col-2 .controller {
        height: 50px;
        width: 50px;
        width: 100%;
        transform: translate(-195%, -10%);
    }

    .logo {
        margin: 30px 0 0 40px;
    }

    .col-1 {
        flex-basis: 100%;
        margin-bottom: 40px;
    }

    .col-1 h2 {
        font-size: 35px;
    }

    .col-1 h3 {
        font-size: 15px;
    }

    button {
        width: 100%;
        transform: translate(20%, 0%);
    }

    button {
        width: 140px;
        border: 0;
        padding: 12px 10px;
        outline: none;
        color: #fff;
        background: rgb(243, 54, 54);
        border-radius: 6px;
        cursor: pointer;
        transition: width 0.5s;
    }

    button a:visited, a:link a:hover {
        text-decoration: none;
        color: white;
    }

    .social-links img {
        height: 13px;
        margin: 10px;
        cursor: pointer;
    }

    .social-links {
        width: 100%;
        transform: translate(0%, 90%);
    }
    
}