@import url('margin.css');
@import url('padding.css');
@import url('font-size.css');

:root {
    --black: #000000;
    --white: #FFFFFF;
    --gray: #f8faf9;
    --blue: #0E6596;
    --green: #0B7535;
    --orange: #F15A24;
}

.bg-black {
    background-color: var(--black) !important;
}

.black {
    color: var(--black) !important;
}

.bg-white {
    background-color: var(--white) !important;
}

.white {
    color: var(--white) !important;
}

.bg-gray {
    background-color: var(--gray) !important;
}

.gray {
    color: var(--gray) !important;
}

.bg-blue {
    background-color: var(--blue) !important;
}

.blue {
    color: var(--blue) !important;
}

.bg-green {
    background-color: var(--green) !important;
}

.green {
    color: var(--green) !important;
}

.bg-orange {
    background-color: var(--orange) !important;
}

.orange {
    color: var(--orange) !important;
}

.border-1 {
    border-width: 1px !important;
    border-style: solid !important;
}

.b-gray {
    border-color: var(--gray) !important;
}

.shadow {
    -webkit-box-shadow: 0 10px 10px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 10px 10px rgba(0, 0, 0, 0.3);
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.3);
}

/*Displays*/
.d-inline {
    display: inline !important;
}

.d-inline-block {
    display: inline-block !important;
}

.d-block {
    display: block !important;
}

.d-flex {
    display: flex !important;
}

.flex-center {
    align-items: center !important;
}

/* style fonts */
.lighter {
    font-weight: 100 !important;
}

.light {
    font-weight: 300 !important;
}

.normal {
    font-weight: 400 !important;
}

.medium {
    font-weight: 500 !important;
}

.bold {
    font-weight: bold !important;
}

.active.hover-bold {
    font-weight: bold !important;
}

.active-bold.active {
    font-weight: bold;
}

.extrabold {
    font-weight: 800 !important;    
}

.bolder {
    font-weight: 900 !important;
}

.italic {
    font-style: italic;
}

.through {
    text-decoration: line-through;
}

.underline {
    text-decoration: underline;
}

.uppercase {
    text-transform: uppercase;
}

.lowercase {
    text-transform: lowercase;
}

.capitalize {
    text-transform: capitalize;
}

.max_line {
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
}

.max_line_2 {
    -webkit-line-clamp: 2;
}

.max_line_3 {
    -webkit-line-clamp: 3;
}

.max_line_4 {
    -webkit-line-clamp: 4;
}

.max_line_5 {
    -webkit-line-clamp: 5;
}

/* position */

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.bottom-0 {
    bottom: 0;
}

.top-0 {
    top: 0;
}

.right-0 {
    right: 0;
}
.right-48 {
    right: 48;
}

.left-0 {
    left: 0;
}

.pointer {
    cursor: pointer;
}

.transition3 {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.responsive-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    padding-top: 0px;
    height: 0;
    overflow: hidden;
}

.responsive-container.vertical {
    padding-bottom: 175.25%;
}

.responsive-container iframe,
.responsive-container object,
.responsive-container embed,
.responsive-container video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.responsive-container.tiktok {
    position: initial !important;
}

.trim {
    leading-trim: both;
    text-edge: cap;
}

.fit-cover {
    object-fit: cover;
}

.cover {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
}

.radius-4 { border-radius: 4px; }
.radius-8 { border-radius: 8px; }
.radius-12 { border-radius: 12px; }
.radius-16 { border-radius: 16px; }
.radius-20 { border-radius: 20px; }
.radius-24 { border-radius: 24px; }
.radius-28 { border-radius: 28px; }
.radius-32 { border-radius: 32px; }
.radius-36 { border-radius: 36px; }
.radius-40 { border-radius: 40px; }
.radius-44 { border-radius: 44px; }
.radius-48 { border-radius: 48px; }
.radius-50 { border-radius: 50px; }
.radius-50p { border-radius: 50%; }

/*xl*/
@media (max-width: 1900px) {
    .xl-radius-4 { border-radius: 4px; }
    .xl-radius-8 { border-radius: 8px; }
    .xl-radius-12 { border-radius: 12px; }
    .xl-radius-16 { border-radius: 16px; }
    .xl-radius-20 { border-radius: 20px; }
    .xl-radius-24 { border-radius: 24px; }
    .xl-radius-28 { border-radius: 28px; }
    .xl-radius-32 { border-radius: 32px; }
    .xl-radius-36 { border-radius: 36px; }
    .xl-radius-40 { border-radius: 40px; }
    .xl-radius-44 { border-radius: 44px; }
    .xl-radius-48 { border-radius: 48px; }
}

/*lg*/
@media (max-width: 1399px) {
    .lg-radius-4 { border-radius: 4px; }
    .lg-radius-8 { border-radius: 8px; }
    .lg-radius-12 { border-radius: 12px; }
    .lg-radius-16 { border-radius: 16px; }
    .lg-radius-20 { border-radius: 20px; }
    .lg-radius-24 { border-radius: 24px; }
    .lg-radius-28 { border-radius: 28px; }
    .lg-radius-32 { border-radius: 32px; }
    .lg-radius-36 { border-radius: 36px; }
    .lg-radius-40 { border-radius: 40px; }
    .lg-radius-44 { border-radius: 44px; }
    .lg-radius-48 { border-radius: 48px; }
}

/*md*/
@media (max-width: 1199px) {
    .md-radius-4 { border-radius: 4px; }
    .md-radius-8 { border-radius: 8px; }
    .md-radius-12 { border-radius: 12px; }
    .md-radius-16 { border-radius: 16px; }
    .md-radius-20 { border-radius: 20px; }
    .md-radius-24 { border-radius: 24px; }
    .md-radius-28 { border-radius: 28px; }
    .md-radius-32 { border-radius: 32px; }
    .md-radius-36 { border-radius: 36px; }
    .md-radius-40 { border-radius: 40px; }
    .md-radius-44 { border-radius: 44px; }
    .md-radius-48 { border-radius: 48px; }
}

/*sm*/
@media (max-width: 743px) {
    .sm-radius-4 { border-radius: 4px; }
    .sm-radius-8 { border-radius: 8px; }
    .sm-radius-12 { border-radius: 12px; }
    .sm-radius-16 { border-radius: 16px; }
    .sm-radius-20 { border-radius: 20px; }
    .sm-radius-24 { border-radius: 24px; }
    .sm-radius-28 { border-radius: 28px; }
    .sm-radius-32 { border-radius: 32px; }
    .sm-radius-36 { border-radius: 36px; }
    .sm-radius-40 { border-radius: 40px; }
    .sm-radius-44 { border-radius: 44px; }
    .sm-radius-48 { border-radius: 48px; }
}

.ratio-1x1 {
    aspect-ratio: 1 / 1 !important;
}

/*Top menu*/

/* #header-2 .wsmenu > .wsmenu-list > li:first-child > a {
    padding-left: 0;
} */

.wsmenu >.wsmenu-list > li a {
    color: var(--black);
    text-transform: uppercase;
    border-bottom: 2px solid transparent;
    font-size: 12px;
    letter-spacing: 0.25px;
}

.wsmenu >.wsmenu-list > li.current-menu-item a {
    border-bottom: 2px solid var(--orange);
}

#header-2 .wsmainfull.cloned .wsmenu > .wsmenu-list > li > a {
    padding: 10px 6px 10px 6px;
}

#header-2 .wsmainfull.cloned .wsmenu .wsmenu-arrow {
    margin-right: 0;
}

#header-2 .wsmainfull.cloned .wsmenu >.wsmenu-list > li a {
    font-size: 11px;
    letter-spacing: 0.12px;
}