.co1 {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.co1>img {
    width: 100%;
    min-height: 30vh;
}

.co1>.info {
    position: absolute;
    left: 5%;
    top: 50%;
}

.co1>.info>h3 {
    font-family: Plus Jakarta Sans ExtraBold;
    font-size: var(--48px--);
    color: #FFFFFF;
    line-height: 61px;
}

.co2 {
    width: 100%;
    padding: 5% calc(5% + 140px);
    position: relative;
}

.co2>.info {
    width: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.co2Item {
    display: flex;
    /* flex-wrap: wrap; */
    align-items: center;
    margin-bottom: 40px;
}

.co2Item>div:nth-child(1) {
    width: 80px;
    height: 80px;
    border-radius: 40%;
    background-color: #dfe7f1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
}


.co2Item>div:nth-child(2)>h3 {
    font-family: Poppins Bold;
    color: #444444;
    font-size: var(--16px--);
}

.co2Item>div:nth-child(2)>p {
    max-width: max(280px, 5vw);
    font-family: Poppins Regular;
    color: #444444;
    font-size: var(--14px--);
}

.map {
    width: 100%;
    height: 500px;
    margin-bottom: 80px;
}

@media (max-width:1200px) {
    .co2 {
        padding: 5%;
    }
}

@media (max-width:480px) {

    .co2Item{
        width: 100%;
    }
    .co2Item>div:nth-child(2) {
        width: calc(100% - 100px);
    }
}