@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Martel:wght@200;300;400;600;700;800;900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Spectral:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

html,
body {
    font-family: "Inter", sans-serif;
    color: #576566;
    font-weight: 400;
    /*user-select: none;*/
    /*-webkit-user-select: none;*/
}

#yii-debug-toolbar {
    display: none !important;
}

a {
    color: unset;
    text-decoration: none;
}

a:hover {
    color: #6daeda;
    text-decoration: none;
}

.brand {
    color: #6daeda;
    font-weight: bold;
}

.title {
    font-family: "Spectral", serif;
    font-weight: 600;
}

.read-more-btn {
    letter-spacing: 1px;
    font-weight: 600;
}

.read-more-btn {
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 600;
    color: #6daeda;
    position: relative;
    padding-bottom: 1px;
    display: inline-block;
    vertical-align: middle;
}

.read-more-btn:hover {
    color: #479bd3;
}

.read-more-btn:after {
    content: "";
    position: absolute;
    bottom: 0;
    background-color: #6daeda;
    width: 100%;
    height: 1.5px;
    left: 0;
}

.two-lines {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* number of lines to show */
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.one-lines {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1; /* number of lines to show */
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.vdom-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 44px;
    background: #6daeda;
    color: #fff;
    text-decoration: none;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;

    position: relative;
    transition: all .25s ease;
}

.vdom-btn::before {
    content: "";
    position: absolute;
    left: 0;
    top: -7px;
    width: 34px;
    height: 2px;
    background: #6daeda;
    transition: all .25s ease;
}

.vdom-btn::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -7px;
    width: 34px;
    height: 2px;
    background: #6daeda;
    transition: all .25s ease;
}

.vdom-btn:hover {
    background: #1f2b2e; /* dark */
    color: #fff;
}

.vdom-btn:hover::before {
    width: 100%;
    left: 0;
    background: #1f2b2e;
}

.vdom-btn:hover::after {
    width: 100%;
    right: 0;
    background: #1f2b2e;
}

