* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f0f0f0;
    color: #383838;
}

.container {
    width: 1154px;
    background-color: #f0f0f0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.title {
    text-align: left;
    margin-bottom: 35px;
}

.title h2 {
    font-size: 32px;
    color: #383838;
    font-weight: 800;
    margin-bottom: 15px;
}

.title span {
    color: #ed1f1f;
    text-decoration: underline;
}

.title h3 {
    font-size: 20px;
    color: #383838;
    font-weight: 400;   
}

.boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 30px;
    max-width: 600px;
}

.boxitem {
    display: flex;
    flex-direction: column;
    padding: 0;
    max-width: 240px;
}

.text h2 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding-left: 15px;
}

.text h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 5px;
    height: 5px;
    background-color: #ed1f1f;
    border-radius: 50%;
    transform: translateY(-50%);
}

.text p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}

.title-icon {
    position: absolute;
    top: 100px;
    width: 205px;
    height: auto;
    left: 560px;
}

@media (max-width: 768px) {
    .container {
        width: 100%;
        padding: 20px;
    }
    .title {
    margin-bottom: 15px;
    }
    .title h3 {
        font-size: 16px;
    }
    .title h2 {
        font-size: 24px;
        line-height: 26px;
        padding: 0 30px 0 0;
    }
    .boxes {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .boxitem {
        max-width: 320px;
    }
    .text p {
        font-size: 14px;
        line-height: 20px;
        padding-left: 15px;
    }
    .title-icon {
    display: none;
    }
}
