.contact-content {
    display: flex;
    align-items: center;
    justify-content: space-between;


}

.top-contact {
    align-items: center;
    text-align: center;
}

.contact-content .img-contact img {
    height: 600px;
    width: auto;

}

.timeline {
    width: 50%;
    padding: 30px 20px;

}

.timeline ul {
    list-style-type: none;
    border-left: 2px solid var(--color-border);
    padding: 10px 0px 20px 40px;

}

.timeline ul li {
    padding: 20px 20px;
    position: relative;
    cursor: pointer;
    transition: .5s;
}

.timeline ul li span {
    display: inline-block;
    background-color: var(--bg-green-02);
    border-radius: 25px;
    padding: 2px 5px;
    font-size: 15px;
    text-align: center;
}

.timeline ul li .content h3 {
    color: var(--color-text-primary);
    font-size: 17px;
    padding-top: 5px;
}

.timeline ul li .content p {
    padding: 5px 0px 15px 0px;
    font-size: 15px;
}

.timeline ul li:before {
    position: absolute;
    content: '';
    width: 10px;
    height: 10px;
    background-color: var(--color-primary);
    border-radius: 50%;
    left: -46px;
    top: 28px;
    transition: .5s;
}

.timeline ul li .icon {
    position: absolute;
    left: -65px;
    top: 20px;
    transition: transform .5s ease;

}

.icon img {
    width: 48px;
    height: 48px;

}

.timeline ul li:hover {
    /* background-color:#071f2a; */
}

.timeline ul li .icon:hover {
    animation: shake 0.82s cubic-bezier(.36, .07, .19, .97) both;
    transform: translate3d(0, 0, 0);
    perspective: 1000px;
   
   
}
@keyframes shake {
    10%, 90% {
      transform: translate3d(-1px, 0, 0);
    }
    20%, 80% {
      transform: translate3d(2px, 0, 0);
    }
    
    30%, 50%, 70% {
      transform: translate3d(-2px, 0, 0);
    }
    40%, 60% {
      transform: translate3d(2px, 0, 0);
  }}

@media (max-width:300px) {
    .timeline {
        width: 100%;
        padding: 30px 5px 30px 10px;
    }

    .timeline ul li .content h3 {
        color: #34ace0;
        font-size: 15px;
    }

}

.contact {
    padding: 60px 0;
    background-image: var(--bg-gradien);
    margin: 60px 0 0 0;

}