*{
    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;
}

.navbar{
    width: 100%;
    display: flex;
    align-items: center;
}

.logo{
    width: 60px;
    cursor: pointer;
    margin: 30px 0;
}

.menu-icon {
    width: 25px;
    cursor: pointer;
    display: none;
}

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: #000;
    font-size: 14px;
}

nav ul li a:hover{
    color: #ae56c9;
    font-weight: bold;
}

.row{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 100px 0;
}

.col-1{
    flex-basis: 40%;
    position: relative;
    margin-left: 50px;
}

.col-1 h4{
    line-height: 30px;
}

.heat-map{
    float: right;
    width: 600px;
}

.col-1 h2{
    font-size: 54px;
}

.col-1 h3{
    font-size: 30px;
    font-weight: 100;
    margin: 20px 0 10px;
}

.wordCloud{
    width: 400px;
    height: 200px;
    margin: 20px 0 10px;
}

figure figcaption{
    text-align: center;
}

.imageRow{
    display: flex;
}

.imageCol{
    flex: 33.33%;
    padding: 5px;
}

.col-1 p{
    font-size: 16px;
    font-weight: 100;
}

a.button{
    width: 90px;
    border: 0;
    padding: 12px 10px;
    outline: none;
    color: #fff;
    background: linear-gradient(to right, #3BA6C2, #ae56c9);
    border-radius: 6px;
    cursor: pointer;
    transition: width 0.5s;
}

a.button img{
    width: 30px;
    display: none;
}

a.button:hover img{
    display: block;
}

a.button:hover{
    width: 160px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-weight: bold;
}

.col-1::after{
    content: '';
    width: 10px;
    height: 57%;
    background: linear-gradient(#3BA6C2, #ae56c9);
    position: absolute;
    left: -40px;
    top: 8px;
}

.col-2{
    position: relative;
    flex-basis: 50%;
    display: flex;
    align-items: center;
}

.col-2 .handshake{
    width: 70%;
}

.color-box{
    position: absolute;
    /* left: 0; */
    top: 0;
    background: linear-gradient(#3BA6C2, #ae56c9);
    border-radius: 20px 0 0 20px;
    height: 103%;
    width: 51%;
    z-index: -1;
    transform: translateX(150px);
}

.social-links img{
    width: 100px;
    cursor: pointer;
}

.social-links{
    text-align: center;
}

.col_ABUS{
    float:left;
    width: 25%;
    padding: 15px;
    text-align: center;

}

.headerlol{
    text-align: center;
}

@media only screen and (max-width:700px) {
    nav ul{
        width: 100%;
        background: linear-gradient(#3BA6C2, #ae56c9);
        position: absolute;
        top: 75px;
        right: 0;
        z-index: 2;
    }
    nav ul li{
        display: block;
        margin-top: 10px;
        margin-bottom: 10px;   
    }
    nav ul li a{
        color: #fff;
    }
    .menu-icon{
        display: block;
    }
    #menulist{
        transition: 0.5s;
        overflow: hidden;
    }
    .row{
        flex-direction: column-reverse;
    }

    .col-2{
        flex-basis: 100%;
        margin-bottom: 50px;
    }

    .col-2 .handshake{
        width: 77%;
    }

    .color-box{
        transform: translateX(75px);
    }
    .col-1{
        flex-basis: 100%;
    }

    .col-1 h2{
        font-size: 35px;
    }


}