.container{
    /* background-color: #16171a; */
    padding: 12.5px 3%;
}

.content-area{
    margin: 25px 6%;
}

.row{
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 100px 0;
}
.col-1{
    flex-basis: 40%;
    position: relative;
    margin-left: 50px;
}
.col-1 h2{
    font-size: 54px;
    /* color: #fff; */
}
.col-1 h3{
    font-size: 30px;
    /* color: #707070; */
    font-weight: 100;
    margin: 20x 0 10px;
}
.col-1 p{
    font-size: 16px;
    /* color: #b7b7b7; */
    font-weight: 100;
}
.col-1 h4{
    /* color: #fff; */
    font-size: 20px;
    margin: 30px 0;
}
#getStartedBtn{
    width: 140px;
    border: 0;
    padding: 12px 10px;
    outline: none;
    /* color: #fff;
    background: #000; */
    border-radius: 6px;
    cursor: pointer;
    transition: width 0.5s;
}
#getStartedBtn img{
    width: 30px;
    display: none;
}
#getStartedBtn:hover img{
    display: block;
}
#getStartedBtn:hover{
    width: 160px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.col-1::after{
    content: "";
    width: 10px;
    height: 57%;
    /* background: #000; */
    position: absolute;
    left: -40px;
    top: 8px;
}
.col-2{
    position: relative;
    flex-basis: 60%;
    display: flex;
    align-items: center;
}
.col-2 .marquess_mako{
    width: 80%;
    z-index: 2;
}
.color-box{
    position: absolute;
    right: 0;
    top: 0;
    /* background: #000; */
    border-radius: 20px 0 0 20px;
    height: 100%;
    width: 84%;
    z-index: -1;
    transform: translate(21.5%);
    z-index: 1;
}
.site-name{
    transform: translateX(5px);
    /* color: #fff; */
}
.mako-name{
    /* color: #fff; */
    font-size: 30px;
    z-index: 2;
}

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

    .row{
        flex-direction: column-reverse;
        margin: 50px 0;
    }
    .col-2{
        flex-basis: 100%;
        margin-bottom: 50px;
    }
    .col-2 .marquess_mako{
        width: 77%;
    }
    .color-box{
        transform: translateX(75px);
    }
    .col-1{
        flex-basis: 100%;
    }
    .col-1 h2{
        font-size: 35px;
    }
    .col-1 h3{
        font-size: 15px;
    }
    .color-box{
        width: 79%;
        transform: translateX(12%);
    }
    .mako-name{
        font-size: 20px;
    }
}