.customInfo{
    width: 100%;
    display: flex;
    padding: 20px 10px 20px 40px;
    align-items: center;
    font-family: arial, helvetica, sans-serif;
}
.customInfoRight{
    margin-left: 20px;
    padding: 5px 5px;
}
.infoContent1 h1{
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #000;
}
.infoContent1 p{
    margin-bottom: 0;
    color: #000;
    line-height: 18px;
    font-size: 12px;

}
.infoContent2 h2{
    color: #000;
    text-shadow: none;
    margin-top: 14px;
    margin-bottom: 10px;
}
.infoContent2 ul{
    display: flex;
    flex-wrap: wrap;
    color: #000;
    font-size: 12px;
}
.infoContent2 p{
    color: #000;
    line-height: 14px;
    margin: 5px 0 5px 0;
}
.infoContent2 ul li{
    line-height: 26px;
    padding-left: 20px;
    position: relative;
    margin-left: 5px;
}
.infoContent2 ul li::before{
    content:"";
    width: 14px;
    height: 14px;
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: url(../images/arrow.png);
    background-size: cover;
}
.infoContent2 ul li:nth-child(2n+1){
    width: 39.4%;
}
.infoContent2 ul li:nth-child(2n){
width: 58%;
}
.infoContent3{
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    color: #000;
    font-size: 12px;
}
.infoContent3 ul li{
    margin: 12px 5px;
    line-height: 12px;
}
.infoContent3 ul li:nth-child(1){
    font-size: 16px;
    font-weight: bold;
}
.infoContent3 ul li:nth-child(n+2){
    padding-left: 20px;
    position: relative;
}
.infoContent3 ul li:nth-child(n+2)::before{
    content:"";
    width: 14px;
    height: 14px;
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: url(../images/arrow.png);
    background-size: cover;
}
@media screen and (max-width: 770px) {
    .customInfo{
        flex-direction: column;
        padding: 0;
    }
    .customInfoRight{
        margin-left: 0;
    }
    .infoContent2 ul li{
        width: 100% !important;
    }
    .infoContent2 p{
        margin-top: 20px;
    }
    .infoContent3{
        grid-template-columns: 1fr;
    }
    .customInfoLeft img{
        width: 100% !important;
    }
}
@media screen and (max-width: 1200px) and (min-width: 768px) {
   .customInfo{
        flex-direction: column;
        padding: 0;
    }
    .customInfoRight{
        margin-left: 0;
    }
    .infoContent2 ul li{
        width: 100% !important;
    }
    .infoContent2 p{
        margin-top: 20px;
    }
    .infoContent3{
        grid-template-columns: 1fr;
    }
    .customInfoLeft img{
        width: 100% !important;
    }  
}