.company-info-section{
    margin: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 300px;
    margin-bottom: 300px;
}

.company-info-section h2 {
    font-size: 40px;
    padding: 0px 50px;
}

li{
    padding: 10px 20px;
    font-size: 20px;
}

.company-info-img{
    width: 200px;
}

.company-image-list{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    width: 800px;
}

.social-qr{
    width: 100px;
    height: 100px;
}

.company-image-list a{
    width: 100px;
    height: 100px;
    background: url(../components/linebtn.png) center center;
    background-size: 100%;
    border: none;
    border-radius: 10px;
}
.company-image-list a:hover{
    filter: brightness(0.8);
    cursor: pointer;
}

.company-image-list a.clicked{
    box-shadow: inset 0px 0px 20px 0px white;
    transform: scale(0.9);
}

.heart-frame{
    position: relative;
}

.hearts-container{
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    top: 0;
}

.hearts-row{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    color: #e01313;
}

.hearts-col{
    font-size: 20px;
}

.hearts-row-first{
    justify-content: center;
}
.hearts-row-second{
    margin-bottom: 15px;
}

.hearts-row-second .hearts-col{
    padding: 0px 30px;
}

.hearts-row-last{
    justify-content: center;
}

.hearts-row-last .hearts-col{
    padding: 0px 40px;
}

.company-image-list .hearts-container{
    width: 130%;
    margin-left: -15%;
    height: 130%;
    margin-top: -17%;
}

.company-image-list .hearts-row-second .hearts-col {
    padding: 0px;
}

.company-image-list .hearts-row-second {
    margin-top: -15px;
}

@media (max-width:800px){
    .company-image-list{
        width: 80vw;
    }
    .company-info-img {
        width: 130px;
    }
}

@media (max-width:500px){
    li {
        padding:10px 20px;
    }
    .company-info-img {
        width: 50vw;
        margin-left: 0;
        margin-top: 10vw;
    }
    .company-info-section{
        margin-top: 40vw;
        margin-bottom: 40vw;
    }
    .company-image-list{
        flex-direction: column;
        width: 100vw;
    }
    .company-image-list{
        margin-top: 50px;
    }
    .company-image-list > div{
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 50vw;
    }
    .company-image-list > div:first-child{
        width: 60vw;
    }
    .company-image-list .hearts-container {
        width: 120%;
        margin-left: -10%;
        height: 110%;
        margin-top: 5%;
    }
}