.hto {
    text-align: center;

    padding: 120px 160px;
}

.hto_txt {
    display: flex;
    justify-content: center;

    padding-bottom: 64px;
}

.hto_icon_wrapper {
    display: flex;
    justify-content: space-between;
}

.hto_icon {
    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 16px;
}

.hto_icon img {
    width: 128px;
    height: 128px;
}

@media (max-width: 768px) {

    .hto {
        padding: 96px 24px 96px 24px;
    }

    .hto_txt {
        padding-bottom: 48px;
    }

    .hto_icon_wrapper {
        justify-content: space-evenly;
    }

    .hto_icon {
        gap: 8px;
    }

    .hto_icon img {
        width: 112px;
        height: 112px;
    }

}

@media (max-width: 660px) {

    .hto_icon_wrapper {
        flex-direction: column;
        justify-content: center;

        gap: 32px;
    }

}

@media (max-width: 375px) {
    
    .hto {
        padding: 72px 16px 72px 16px;
    }
    
}