﻿#wtb-slide {
    height: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: inset 0 0 0 2000px rgb(100 100 100 / 40%);
}

#wtb-title {
    max-width: 60%;
    color: #fff;
    line-height: 60px;
    font-size: 48px;
    font-weight: 600;
    margin-top: 150px;
    text-align: center;
}

#wtb-content {
    max-width: 60%;
    color: #fff;
    font-size: 14px;
    font-weight: 300;
    text-align: center;
}

#wtb-button {
    padding: 10px 12px;
    background: #b5dc79;
    color: #085288;
    border: none;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 34px;
}

#wtb-button i {
    margin-left: 12px;
}

#wtb-links {
    position: relative;
    z-index: 99;
    width: 100%;
    height: 130px;
    bottom: 130px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#wtb-links span {
    text-align: center;
    flex-grow: 1;
}

#wtb-links span a {
    color: #b5dc79;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
}

@media (max-width: 992px) {
    #wtb-title {
        max-width: 100%;
       
    }
}

    @media (max-width: 768px) {
        #wtb-links {
            flex-direction: column;
            height: 200px;
            bottom: 200px;
        }

            #wtb-links span {
                flex-grow: 0;
                padding: 6px;
                margin: 0;
            }

        #wtb-title {
            font-size: 32px;
            margin-top: 80px;
            line-height: 38px;
        }

        #wtb-content {
            max-width: 90%;
            font-size: 12px;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
        }
    }
}
