:root {
    --bg-header-top: #820018;
    --bg-footer: #ffffff;
    --bg-copyright: #ebebeb;
    --bg-body: #EBEBEB;
    --bg-menu: #ffffff;
    --color-red: #D30000;
    --color-body: #343a40;
}

.container_custom {
    max-width: 1200px;
    margin: 60px auto;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.flex {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.banner {
    width: 100%;
}


.banner>img {
    width: 100%;
    border-radius: 30px;
}

.absolute-custom {
    top: 40%;
    left: 37%;
    transform: translate(-50%, -50%);
}

.absolute-custom .title>h1 {
    font-size: 48px;
    text-transform: uppercase;
    font-weight: bold;
    color: var(--bg-menu);
}

/* Overview */

.overview_box {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 62px;
    padding: 60px 0px;
}

.overview_text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.overview_text>.ov-name {
    font-size: 24px;
    font-weight: light;
    color: var(--color-red);
}

.overview_text>p {
    line-height: 1.5;
    max-width: 485px;
}

.btn-contact {
    margin-top: 12px;
}

.btn-contact>a {
    padding: 10px 20px;
    background-color: var(--color-red);
    text-decoration: none;
    color: var(--bg-menu);
    text-transform: uppercase;
}

.overview_img {
    width: 100%;
    position: relative;
    border-radius: 30px;
    max-width: 570px;
}

.overview_img>img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.5);
}

.image_1 {
    position: absolute;
    bottom: -30px;
    left: 42%;
}

.image_1>img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.5);
}

.image_2 {
    position: absolute;
    top: 0;
    right: -30px;
}

.image_2>img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.5);
}

/* Commitment */

.commitment_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--bg-menu);
    border-radius: 30px;
    padding: 50px;
    gap: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.commitment_box .title {
    font-family: 'Times New Roman', Times, serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
}

.commitment_box .title>p {
    color: var(--color-red);
    font-size: 24px;
    font-weight: light;
}

.commitment_box .title>h3 {
    font-size: 36px;
    text-align: center;
}

.commitment_box .title>h3>strong {
    text-transform: uppercase;
    color: var(--color-red);
}

.commitment_box .title>h3>span {
    text-transform: capitalize;
}

.commitment_item {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 310px;
    transition: all 0.3s ease-in-out;
}

.commitment_item .commitment_item_text {
    flex: 1;
    text-align: center;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.commitment_item_text>h3 {
    text-transform: uppercase;
    font-size: 1.5rem;
}

.commitment_item_text>p {
    line-height: 1.5;
}

.commitment_item:hover {
    transform: translateY(-10px);
}

.commitment_item:hover .commitment_item_text {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.commitment_item:hover .commitment_item_text>h3 {
    color: var(--color-red);
}

/* Company stats */

.company_stats {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.company_stats_box {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 30px 0px;
    max-width: 1000px;
    margin: 0px auto;
}

.company_stats_item {
    text-align: center;
}

.company_stats_item_text>h3 {
    text-transform: uppercase;
    font-size: 3rem;
    color: var(--color-red);
    font-weight: bolder;
}

.company_stats_item_text>p {
    font-size: 1rem;
    color: var(--color-red);
    font-weight: bold;
    text-transform: uppercase;
}

/* Team */

.team_box {
    position: relative;
    padding: 60px 0px;
}

.team-list-nav {
    position: absolute;
    left: 0;
    bottom: 50%;
    transform: translateY(50px);
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 10;
    pointer-events: none;
}

.team_box .title {
    font-family: 'Times New Roman', Times, serif;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 40px;
}

.team_box>.title>p {
    font-size: 1.5rem;
    color: var(--color-red);
}

.team_box>.title>span {
    font-weight: lighter;
}

.team_box .title>h3>strong {
    font-size: 2.25rem;
    color: var(--color-red);
    text-transform: uppercase;
}

.team_box .title>h3>span {
    font-size: 2.25rem;
}

.team_list {
    margin-top: 50px;
}

.team_item {
    background-color: rgba(128, 128, 128, 0.336);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    max-width: 220px;
}

.team_item_text {
    height: 90px;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.product-hot {
    padding: 0 !important;
}

.product-item .info .title {
    display: flex;
    align-items: start;
    gap: 5px;
}

.product-item .info .title h3 {
    font-weight: 400;
    text-transform: uppercase;
}

.product-item .info h3>a {
    text-decoration: none;
    color: var(--color-red);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.product-hot-box {
    padding: 60px 0px;
    background-color: var(--bg-menu);
    border-radius: 30px;
    gap: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.background-image-about {
    background-image: url('../images/background_about.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.contact {
    padding: 120px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact>.title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 80%;
    background-color: rgba(240, 240, 240, 0.3);
    text-align: center;
    padding: 60px 0px;
}

.contact>.title>p {
    color: var(--color-red);
    font-size: 24px;
    font-weight: lighter;
}

.contact>.title>h3 {
    font-size: 48px;
    text-transform: uppercase;
    color: var(--bg-menu);
    margin-bottom: 40px;
}

.contact>.title>a {
    padding: 10px 20px;
    background-color: var(--color-red);
    color: var(--bg-menu);
    text-decoration: none;
    cursor: pointer;
}

.contact>.title>a:hover {
    background-color: #000;
}

@media (max-width:575px) {
    .container_custom {
        margin: 30px 0px !important;
        padding: 0px 10px;
    }

    .absolute-custom {
        top: 40%;
        left: 37%;
        transform: translate(-50%, -50%);
    }

    .absolute-custom .title>h1 {
        font-size: 24px;
    }

    .flex {
        gap: 10px;
        flex-direction: column;
    }

    .team_box>.title>p {
        font-size: 1rem;
    }

    .team_box>.title>span {
        text-align: center;
    }

    .team_box>.title {
        text-align: center;
    }

    .commitment_box {
        padding: 20px;
    }

    .commitment_item {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
        transition: all 0.3s ease-in-out;
        overflow: hidden;
    }

    .commitment_item_img>img {
        width: 100px;
    }

    .commitment_box .title>p {
        font-size: 16px;
    }

    .commitment_box .title>h3 {
        font-size: 24px;
    }

    .commitment_box .title>h3>span {
        text-wrap: nowrap;
    }

    .commitment_box .title {
        margin-bottom: 0;
    }

    .commitment_item .commitment_item_text {
        padding: 10px;
    }

    .overview_box {
        flex-wrap: wrap;
        padding: 30px 0px;
        gap: 30px;
    }

    .image_1 {
        max-width: 150px !important;
        max-height: 150px !important;
        bottom: 0 !important;
        left: 0 !important;
    }

    .image_1>img {
        width: 100% !important;
        height: 100% !important;
    }

    .image_2 {
        max-width: 150px !important;
        max-height: 150px !important;
        top: 54% !important;
        right: 0;
    }

    .image_2>img {
        width: 100% !important;
        height: 100% !important;
    }

    .company_stats_box {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .team_box .title>h3>strong {
        font-size: 24px;
    }

    .team_box .title>h3>span {
        font-size: 24px;
    }

    .team_item_img {
        width: 100%;
    }

    .team_item_img>img {
        width: 100%;
    }

    .contact>.title>h3 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .contact {
        padding: 30px 0px;
    }

    .contact>.title>p {
        font-size: 16px;
    }

    .contact>.title {
        padding: 30px 0px;
        width: 100%;
    }

    .team_box {
        padding: 10px 0px;
    }

    .team_item {
        max-width: 100%;
    }

    .team-list-nav {
        display: none;
    }

}

@media (max-width:767px) {
    .overview_box {
        flex-direction: column;
    }

    .overview_img {
        max-width: 100%;
        margin-top: 20px;
    }

    .image_2 {
        top: 30%;
    }

    .image_2>img {
        width: 200px;
        height: 200px;
    }

    .image_1 {
        left: 0 !important;
    }
}

@media (max-width:991px) {
    .overview_box {
        gap: 10px;
    }

    .image_1>img {
        width: 200px;
        height: 200px;
    }

    .image_2 {
        right: 0;
    }

    .image_1 {
        left: 38%;
    }
}