/* desktop */
/* nav */
.--suf-nav {
    display: flex;
}

.navbar-nav .--suf-nav-item {
    display: none;
}

/* Get Started Button */
.--btn-get-start {
    padding: 0.5rem 1.5rem;
    font-weight: bold;
    background-color: #f62c22;
    border-color: #ff6969;
    box-shadow: 0 0 5px 1px red;
    border-radius: 20px;
    opacity: 0;
    animation: 0.5s ease 3s forwards slide-b2t;
}

.--btn-get-start:hover {
    box-shadow: 0 0 15px 5px red;
}
/* End Get Started Button */

.--text-2-line {
    line-height: 1.5em;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* get in touch */
.--get-in-touch {
    background-image: url("../imgs/background/bg-getintouch.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    /* height: 200px; */
}
