* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #fff;
    color: #383838;
}

.container {
    width: 1154px;
    background-color: #fff;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.title {
    text-align: left;
    margin-bottom: 75px;
    max-width: 745px;
}

.title h2 {
    font-size: 32px;
    color: #383838;
    font-weight: 800;
}

.title h3 {
    font-size: 32px;
    line-height: 32px;
    color: #b1b2ad;
    font-weight: 800;   
}

.boxes {
    display: flex;
    flex-direction: row;
    gap: 60px;
    max-width: 745px;
}

.boxitem {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    width: 200px;
}

.boxitem img {
    max-width: 135px;
    margin: 0 0 15px 15px;
}

.text h2 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding-left: 15px;
}

.text h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 5px;
    height: 5px;
    background-color: #ed1f1f;
    border-radius: 50%;
}

.text p {
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    margin-top: 10px;
}

@media (max-width: 768px) {
.container {
  width: 100%;
  padding: 20px;
 }
 .title {
  margin-bottom: 30px;
}
 .title h2 {
  font-size: 16px;
}
.title h3 {
  font-size: 24px;
  line-height: 24px;
  max-width: 320px;
 }
.boxes {
 display: flex;
 flex-direction: column;
 gap: 35px;
 max-width: 320px;
}
.boxitem {
 align-items: center;
 flex-direction: row;
 width: 320px;
}
.boxitem img {
 width: 105px;
 height: auto;
 margin: 10px 10px 0 15px;
 ma
}
.text h2 {
 margin-bottom: 10px;
}
.text p {
 font-size: 14px;
 line-height: 20px;
 margin-top: 0px;
 padding-left: 15px;
}
}
