/*
=====================
CSS Table of Conttent 
=====================
*/
/**
* This is a ClashDisplay font
* You can controll variable axes as shown below:
* font-variation-settings: 'wght' 900.0;
*
* available axes:

* 'wght' (range from 300.0 to 900.0)

*/
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 400;
    color: #555555;
}

:root {
    scrollbar-color: #1D1D1E #212224 !important;
    scrollbar-width: thin !important;
}

b {
    font-weight: bold;
}

strong {
    font-weight: bolder;
}

hr {
    border-color: #E2E8F0;
    max-width: 526px;
    margin: auto;
}

body::-webkit-scrollbar {
    width: .8rem;
}

body::-webkit-scrollbar-track {
    border-radius: 0;
}

body::-webkit-scrollbar-thumb {
    background-color: #1D1D1E;
    border-radius: 0;
}

.hero-search-form input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #ADADAD;
}

.hero-search-form input::-moz-placeholder {
    /* Firefox 19+ */
    color: #ADADAD;
}

.hero-search-form input:-ms-input-placeholder {
    /* IE 10+ */
    color: #ADADAD;
}

.hero-search-form input:-moz-placeholder {
    /* Firefox 18- */
    color: #ADADAD;
}


input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #B7B7B7;
}

input::-moz-placeholder {
    /* Firefox 19+ */
    color: #B7B7B7;
}

input:-ms-input-placeholder {
    /* IE 10+ */
    color: #B7B7B7;
}

input:-moz-placeholder {
    /* Firefox 18- */
    color: #B7B7B7;
}

img {
    max-width: 100%;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: '';
}

input[type="checkbox"] {
    display: grid;
    place-content: center;
    appearance: none;
    border: 2px solid #DCDCDC;
    margin: 0;
    font: inherit;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 0.25rem;
}

input[type="checkbox"]::before {
    content: "";
    width: 1.25rem;
    height: 1.25rem;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    background-color: #3175f3;
    background-image: url(../images/checkbox-mark.svg);
    background-size: contain;
    border-radius: 0.25rem;
}

input[type="checkbox"]:checked::before {
    transform: scale(1);
}


/*
=====================
CSS Slimmenu 
=====================
*/

ul.slimmenu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
}

ul.slimmenu li {
    background-color: transparent;
    border: 0;
}

ul.slimmenu li ul li {
    display: block;
    background: #232536;
    float: none;
}

ul.slimmenu li ul li a {
    position: relative;
    padding: 12px 12px 12px;
}

ul.slimmenu li a:hover {
    color: #ff4c60;
}

ul.slimmenu li ul {
    min-width: 180px;
}

ul.slimmenu li a {
    padding: 10px 12px 10px 12px;
    color: #ffffff;
    transition: 300ms all ease;
}

ul.slimmenu li a:hover {
    background-color: transparent;
}

ul.slimmenu>li>.sub-toggle {
    display: none;
}

ul.slimmenu>li .sub-toggle>i {
    color: #ffffff;
    font-size: 14px;
}

.menu-collapser {
    background-color: transparent;
}

.collapse-button {
    background-color: rgba(0, 0, 0, .075);
    width: 44px
}

.collapse-button .icon-bar {
    height: 2px;
    width: 24px;
    margin: 5px 0;
}

/*
=====================
CSS Custom 
=====================
*/
.owl-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.owl-nav .prev,
.owl-nav .next {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 100%;
    background-color: #4B7CFB;
}

.owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.owl-dots .owl-dot {
    width: 8px;
    height: 8px;
    border-radius: 10px;
    background-color: #D9D9D9;
}

.owl-dots .owl-dot.active {
    width: 20px;
    background-color: #FF4B55;
}

.hero-search-form {
    background-color: #2c2c38;
}

.hero-line::before {
    content: url(../images/hero-line.svg);
    position: absolute;
    bottom: -10px;
}

.feature-post .overlay {
    background: linear-gradient(180deg, rgba(24, 59, 86, 0) 0, rgba(22, 49, 70, .45) 45.38%, #152532 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; 
    height: 100%;
} 
.feature-post figure img{
    min-height: 400px;
}
.newsletter-box {
    background-color: rgba(255, 75, 84, 0.03);
}

@media only screen and (max-width: 991px) {
    ul.slimmenu {
        position: absolute;
        top: 96px;
        background: #232536;
        padding: 0 20px;
        right: 0;
        left: 0;
        z-index: 1111;
    }

    ul.slimmenu li .sub-toggle {
        display: block;
    }

}

@media only screen and (min-width: 1080px) {
    .owl-nav .prev {
        position: relative;
        left: -26px;  
    }

    .owl-nav .next {
        position: relative;
        right: -26px;
    }

}