.tal {
    background: linear-gradient(to bottom, #fff 0%, #eee 100%);
}

.tal-title {
    width: 100%;
    margin-bottom: 4rem;
}

.tal-title h5 {
    color: #222;
    font-size: 55px;
    line-height: 1.3;
    font-weight: 400;
}

.tal-title h5 span {
    color: var(--main-color);
    font-weight: 800;
}

.tal-title h5 b {
    font-weight: 800;
}

.tal-box-wrapper {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    box-shadow: 0 4px 16px rgb(0 0 0 / 5%);
    overflow: hidden;
}

.tal-logo {
    position: absolute;
    top: 50%; left: 50%;
    width: 25%;
    transform: translate(-50%, -50%);
    opacity: .2;
}

.tal-logo img {
    width: 100%;
}

.tal-box {
    padding: 80px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background-color: #fff;
}
.tal-box:nth-child(2n-1) {
    align-items: flex-end;
}
.tal-box:nth-child(2n-1) .tal-box-text {
    text-align: right;
}

.tal-box-icon img {
    height: 70px;
}

.tal-box-text h5 {
    color: #222;
    font-size: 32px;
}

.tal-box-text p {
    color: #aaa;
    font-size: 19px;
    font-weight: 500;
    line-height: 1.6;
    margin-top: 1.5rem;
}


/*==================================================*/
@media (max-width: 1100px) {
    .tal-box-text p br {
        display: none;
    }
}


@media (max-width: 768px) {
    .tal-logo {
        display: none;
    }
    
    .tal-box-wrapper {
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
    }

    .tal-box:nth-child(2n) {
        align-items: flex-end;
    }
    .tal-box:nth-child(2n-1) .tal-box-text {
        text-align: left;
    }

    .tal-box {
        padding: 50px;
    }
}


@media (max-width: 550px) {
    .tal-box {
        gap: 0;
    }
    
    .tal-box-icon img {
        height: 50px;
    }
    
    .tal-box-text h5 {
        font-size: 24px;
    }

    .tal-box-text p {
        font-size: 15px;
        margin-top: 1rem;
    }
}


@media (max-width: 450px) {
    .tal-box {
        padding: 40px;
    }
}