/* landing */
.landing {
    background-image: url('../images/Group 78.png');
    background-size: cover;
    height: 300px;
    margin-bottom: 50px;
}

.landing .container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-top: 100px;
}

.landing .container .callus {
    font-weight: bold;
    color: #2784A1;
    font-size: 28px;
}

.landing .container p {
    color: black;
    font-size: 16px;
    font-weight: 600;
    margin-top: 5px;
}

/* landing */

/* content */
.content {
    background-color: #FFFFFF;
    margin-bottom: 50px;
    padding-bottom: 50px;
    position: relative;
}

.content .row {
    row-gap: 5rem;
}

.content .right-accessories {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translatey(-50%);
    width: 50%;
    height: 500px;
    z-index: 1;
}

.content .right-accessories img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content .box {
    width: 100%;
    max-height: 400px;
    position: relative;
    z-index: 2;
}

.content .box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content .box .text {
    position: absolute;
    bottom: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    text-align: center;
    background-color: #FFFFFF;
    border-top: 7px solid #F79321;
    padding: 10px;
}

.content .box .text .name {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 5px;
}

.content .box .text .job {
    font-weight: 600;
    font-size: 14px;
}


/* content */
