* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 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 {
    margin-bottom: 80px;
}

.content p {
    margin: 0;
}

.content video {
    width: 100%;
    height: auto;
    max-height: 260px;
    object-fit: cover;
    /* display: block;
    aspect-ratio: 16 / 9; */
}

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

.content .col {
    position: relative;
}

.content .col .box {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FFFFFF;
    padding: 10px 15px;
    border-radius: 5px;
    box-shadow: 10px 10px 30px 0px #0000001A;
    width: 70%;
}

.content .col .box .firstitems {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.content .col .box .firstitems .stack {
    display: flex;
    align-items: center;
    gap: 10px;
}

.content .col .box .firstitems .stack img {
    width: 20px;
    aspect-ratio: 1;
}

.content .col .box .firstitems .stack p {
    color: #7C8893;
    font-size: 14px;
    font-weight: 400;
}

.content .col .box .second-item h4 {
    color: #000000D4;
    font-size: 18px;
    font-weight: 600;
}


/* content */
