body {
    font-size: 18px;
    color: #000000;
    font-family:'Circular Std Book';
    font-weight: 400;
}
body.dark-mode {
    background-color: #000000;
    color: #ffffff;
}
h1, h2 {
    font-family: 'Obviously Narrow';
    font-weight: bold;
}
ul, li, ul li {
    list-style: none;
    margin: 0;
    padding: 0;
}
a {
    text-decoration: none;
    color: #000000;
}
.dark-mode a {
    text-decoration: none;
    color: #ffffff;
}
.fixed-block {
    height: 100vh;
    top: 0;
    bottom: 0;
    position: fixed;
    right: 0;
    width: calc(50% - calc(var(--bs-gutter-x) * .5));
    padding-right: 15px;
}
.fixed-block .slick-slide img {
    object-fit: cover;
    width: 100%;
    height: 100vh;
    object-position: center;
}
/* toggle button */
.toggle {
    position: relative;
    display: inline-block;
}

.toggle__input {
    display: none;
}

.toggle__label {
    display: block;
    width: 62px;
    height: 21px;
    background-color: #EFEFEF;
    background: linear-gradient(0deg, rgba(239,239,239,1) 0%, rgba(232,234,234,1) 100%);
    border-radius: 99px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dark-mode .toggle__label {
    background-color: #FFF200;
    background-image: none;
}

.toggle__input:checked + .toggle__label::after {
    left: 42px;
}

.toggle__label::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 17px;
    height: 17px;
    background-color: #ffffff;
    border-radius: 50%;
    transition: left 0.3s ease;
    box-shadow: 2px 1px 6px 0 rgba(0, 0, 0, .25);
}
.toggle__label .light-tx, .toggle__label .dark-tx {
    text-transform: uppercase;
    color: #27293775;
    text-transform: uppercase;
    font-size: 11px;
    display: block;
    line-height: 23px;
    font-weight: 700;
}
.toggle__label .light-tx {
    text-align: right;
    padding-right: 6px;
}
.toggle__label .dark-tx {
    text-align: left;
    padding-left: 6px;
}
.dark-mode .toggle__label .light-tx {
    display: none;
}
.toggle__label .dark-tx {
    display: none;
}
.dark-mode .toggle__label .dark-tx {
    display: block;
}
.top-head {
    padding-top: 34px;
    /* position: absolute;
    background-color: #ffffff; */
    /* padding-left: calc(var(--bs-gutter-x) * .5);
    padding-right: calc(var(--bs-gutter-x) * .5);
    left: 0;
    right: 0; */
    padding-bottom: 10px;
    /* width: calc(100% +(var(--bs-gutter-x)* .5)); */
}
/* .dark-mode .top-head { 
    background-color: #000000;
} */
/* logo part */
.head-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo-dark {
    display: none;
}
.dark-mode .logo-dark {
    display: block;
}
.dark-mode .logo-light {
    display: none;
}
.header-text {
    margin: 35px 0;
}
.header-text p {
    font-size: 24px;
}
.header-text p span {
    font-weight: bold;
}
.dark-mode .header-text p span {
    color: #FFF200;
}
.latest-expos ul li {
    border-bottom: 4px solid #000000;
    font-size: 28px;
    font-weight: 500;
    transition: all 0.3s;
}
.latest-expos ul li.no-link {
    pointer-events: none;
}
.latest-expos ul li:hover {
    padding-left: 10px;
    background-color: rgba(0,0,0,0.1);
}
.dark-mode .latest-expos ul li:hover {
    padding-left: 10px;
    background-color: rgba(255,255,255,0.1);
}
.latest-expos ul li a {
    display: block;
    padding: 18px 0;

}
.latest-expos ul li:last-child {
    border-bottom: 0;
}
.dark-mode .latest-expos ul li {
    border-bottom: 4px solid #ffffff;
}
.dark-mode .latest-expos ul li a {
    color: #FFF200;
}
.latest-expos ul li span {
    display: block;
    font-size: 18px;
    font-weight: normal;
}
.dark-mode .latest-expos ul li span {
    color: #ffffff;
}
.slide-text {
    position: fixed;
    width: calc(50% - calc(var(--bs-gutter-x) * .5));
    right: 0;
    top: 0;
    padding: 5% 0 0 100px;
    z-index: 9;
}
.slide-text h1 {
    font-weight: bold;
    font-size: 90px;
    max-width: 750px;
    color: #FFF200;
    line-height: 1;
}
.slide-text.page-big {
    padding: 20px;
    height: 100vh;
    justify-content: center;
    align-items: center;
    display: flex;
}
.slide-text.page-big h1 {
    font-size: 120px;
    max-width: 580px;
}
.slide-text h1 span {
    color: #ffffff;
}

.dark-mode .slide-text h1 {
    color: #ffffff;
}
.dark-mode .slide-text h1 span {
    color: #FFF200;
}
.left-box {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-bottom: 100px;
}
.left-box h2 {
    font-size: 42px;
}
.dark-mode .left-box h2 {
    color: #FFF200;
}
.latest-help ul li {
    font-size: 32px;
    font-family: 'Obviously Narrow';
    font-weight: 300;
    line-height: 40px;
}
.latest-help ul li span {
    font-weight: bold;
}
.latest-discuss ul li {
    margin-bottom: 20px;
     transition: all 0.3s;
}
.latest-discuss ul li:hover {
    padding-left: 10px;
}
.latest-discuss ul li:last-child {
    margin-bottom: 0px;
}
.header-text-2 p {
    font-size: 24px;
}
.header-text-2 p span {
    font-weight: bold;
}
.privacy {
    padding: 0 0 50px;
}
.dark-mode .header-text-2 p span {
    color: #FFF200;
}
.dark-mode .latest-help ul li span {
    color: #FFF200;
}
/* .fixed-header {
    position: fixed;
    width: 50%;
    padding-top: 10px;
    width: calc(50% + (var(--bs-gutter-x)* .5));
    box-shadow: -4px 3px 5px rgba(0, 0, 0, 0.3);
}
.dark-mode .fixed-header {
    box-shadow: -4px 3px 10px rgba(255, 255, 255, 0.5);
} */
  .blog-gap {
    padding-bottom: 35px;
  }
 .blog-gap.border-bottm {
    border-bottom: 4px solid #000000;
 }
  .dark-mode .blog-gap.border-bottm {
    border-bottom: 4px solid #ffffff;
 }
 .speed-slide img {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    height: 100vh;
 }
