*{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}
main {
    padding-top: 130px; 
}
.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;
    background-color: #d8d5d5;
    overflow: hidden;
    margin: 10px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3;
}
.logo{
    width: 50px;
    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: #fff;
    font-size: 14px;
}
nav ul li a:hover {
    color: #ff5ea2;
}
.row {
    display: flex;
    position: relative;
    align-items: center;
    max-width: 100px 0;
}
.col-1 {
    flex-basis: 40%;
    position: relative;
    margin-left: 50px;
}
.col-1 h2{
    font-size: 44px;
}
.col-1 h3{
    font-size: 30px;
    color: #b7b7b7;
    font-weight: 100;
    margin: 20px 0 10px;
}
.col-1 p{
    font-size: 16px;
    color: #16022a;
    font-weight: 100;
}
.col-1 h4{
    margin: 30px 0;
    font-size: 20px;
}
button{
    width: 140px;
    border: 0;
    padding: 12px 10px;
    outline: none;
    color: #fff;
    background: linear-gradient(to right, #bdbbbc, #191818);
    cursor: pointer;
    transition: width 0.5s;
}
button img{
    width: 30px;
    display: none;

}
button:hover img{
    display: block;
}
button:hover{
    width: 160px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.col-1::after{
    content: '';
    width: 10px;
    height: 100%;
    background:linear-gradient(#e4dfe1, #181717);
    position: absolute;
    left: -40px;
    top: 8px;
}
.col-1 .tableInfo{
    width: 100%;
}
.col-2{
    position: relative;
    flex-basis: 50%;
    display: flex;
    align-items: center;
}
.col-2 .controller{
    width: 90%;
}
.color-box{
    position: absolute;
    right: 0;
    top: 0;
    background: linear-gradient(#949092, #232323);
    border-radius: 20px;
    height: 100%;
    width: 80%;
    z-index: -1;
    transform: translateX(150px);
    display: none;
}
.add-btn img{
    width: 35px;
    margin-bottom: 5px;
    
}
.add-btn{
    text-align: center;
    color:#fff;
    cursor: pointer;
    
}
.social-links img{
    height: 13px;
    margin: 20px;
    cursor: pointer;
    display: none;
}
.social-links{
    text-align: center;
}
.col-1 h2{
    font-size: 35px;
}
.cname{
    padding: 0px;
}

/*contact page things */

.contact {
    display: flex;
    justify-content: space-around;
    padding: 2rem;
}

.contact-info, .contact-form {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    
}
.contact h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 1rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 5px;
}

.contact-form button:hover {
    background-color: #555;
}
.contact-form{
    display: none;
}

@media only screen and (max-width:700px) {
    nav ul{
        width: 100%;
        background: linear-gradient(#e4dfe1, #181717);
        position: absolute;
        top: 30px;
        left: 0;
        
        z-index: 2;

    }
    nav ul li{
        display: block;
        margin-top: 10px;
        margin-bottom: 10px;
        left: 0;
        
    }
    nav ul li a{
        color: #fff;
    }
    .menu-icon{
        display: block;
        margin-top: 0px;
    }
    #menuList{
        overflow: hidden;
        transition: 0.5s;
        
    }
    .row{
        flex-direction: column-reverse;
        margin: 50px 0;
    }
    section {
        flex-direction: column;
    }

    .col-2{
        flex-basis: 100%;
        margin-bottom: 50px;
    }
    .col-2 .controller{
        width: 77%;
    }
    .color-box{
        transform: translateX(75px);
    }
   .col-1{
        flex-basis: 100%;
    }
    .col-1 h2{
        font-size: 20px;
    }
    .col-1 h3{
        font-size: 13px;
    }
}

