.contact_list {
    margin-top: 77px;
}

.contact_info {
    width: 100%;
    display: flex;
    justify-content: flex-start;
}

.info_item {
    width: 35%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.info_item:nth-child(2) {
    width: 25%;
}

.info_item .info_img {
    width: 80px;
    padding: 25px;
    box-sizing: border-box;
    background: #3AD82E;
    border-radius: 50px;
    margin-bottom: 12px;
}

.info_item .info_img img {
    width: 30px;
    height: 30px;
}

@keyframes swing {
    20% {
        -webkit-transform: rotate(40deg);
        -ms-transform: rotate(40deg);
        transform: rotate(40deg)
    }

    40% {
        -webkit-transform: rotate(-20deg);
        -ms-transform: rotate(-20deg);
        transform: rotate(-20deg)
    }

    60% {
        -webkit-transform: rotate(10deg);
        -ms-transform: rotate(10deg);
        transform: rotate(10deg)
    }

    80% {
        -webkit-transform: rotate(-10deg);
        -ms-transform: rotate(-10deg);
        transform: rotate(-10deg)
    }

    to {
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0)
    }
}

.swing {
    -webkit-transform-origin: top center;
    -ms-transform-origin: top center;
    transform-origin: top center;
    -webkit-animation-name: swing;
    animation-name: swing
}

.info_item .info_img:hover img {
    animation: swing 0.5s;
}

.info_item .info_title {
    color: #333333;
    font-family: 'Poppins';
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0px;
    text-align: left;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.info_content {
    width: 90%;
    text-align: center;
    border-right: 1px solid rgb(243, 238, 231);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 8;
    overflow: hidden;
    text-overflow: ellipsis;
}

.info_item:last-child .info_content {
    border: none;
}

.info_content,
.info_content a {
    color: #333333;
    font-family: 'Poppins-blog';
    font-size: 20px;
    font-weight: 700;
    line-height: 42px;
    letter-spacing: 0px;
    text-align: center;
    text-transform: capitalize;
}

.info_content a:hover {
    text-decoration: underline;
    color: #3AD82E;
}
@media (max-width:1200px) {
    
    .info_content,.info_content a{
        font-size: 18px;
        line-height: 1.5;
    }
}
.address_info iframe{
    width: 100%;
    height: 700px;
}

/* contact list end */

/*---------------mobile start--------------------*/
@media (max-width:950px) {
    .contact_info {
        flex-direction: column;
    }

    .info_item {
        width: 100%;
    }

    .info_item:nth-child(2) {
        width: 100%;
    }

    .info_content a {
        font-size: 16px;
    }

    .userInfo_warp {
        padding: 20px;
    }

    .userInfo_warp {
        flex-wrap: wrap;
    }

    .userInfo-left {
        width: 100%;
    }

    .userInfo_title {
        font-size: 29px;
    }

    .userInfo_right {
        width: 100%;
    }

    .userInfo_image {
        text-align: center;
        margin-left: 0;
    }
}

/*---------------mobile end------------------*/