* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #272622;
    color: #fff;
}
.section {
    width: 100%;
    height: 355px;
    background-color: #272622;
    display: flex;
    align-items: center;
}
.container {
    width: 1154px;
    display: flex;
    align-items: center;
    gap: 110px;
}
.container img {
    max-width: 470px;
    height: auto;
}
.text-content {
    max-width: 250px;
}
.text-content h2 {
    margin: 25px 0 20px 0;
    font-size: 22px;
    line-height: 26px;
    font-weight: 700;
}
.text-content hr {
    margin: 10px 0;
    border: none;
    height: 5px;
    width: 12%;
    background-color: #ed1f1f;
}
.text-content p {
    margin: 0;
    font-size: 16px;
    line-height: 24px;
    font-weight: 300;
    font-style: normal;
}

/* Responsive */
@media (max-width: 768px) {
.container {
   flex-direction: column;
   text-align: center;
   gap: 40px;
   padding: 10px 0;
}
.section {
   height: auto;
   background-color: #272622;
}    
.container img {
   max-width: 320px;
}
.text-content {
   max-width: 320px;
   text-align: left;
}
.text-content img {
   width: 40px;
   height: 40px;
   display: inline-block;
   vertical-align: middle;
}
.text-content h2 {
   margin: 0 10px;
   font-size: 15px;
   line-height: 18px;
   display: inline-block;
}
.text-content hr {
   display: none;
}
.text-content p {
   margin: 20px 0 0 0;
   font-size: 14px;
   line-height: 20px;
}
}