/*============================== Global ==============================*/
@font-face {
    font-family: "Schibsted Grotesk"; font-weight: 400;
    src: url("./../webfont/SchibstedGrotesk-Regular.ttf") format("truetype");
}
@font-face {
    font-family: "Schibsted Grotesk"; font-weight: 500;
    src: url("./../webfont/SchibstedGrotesk-Medium.ttf") format("truetype");
}
@font-face {
    font-family: "Schibsted Grotesk"; font-weight: 600;
    src: url("./../webfont/SchibstedGrotesk-SemiBold.ttf") format("truetype");
}
@font-face {
    font-family: "Schibsted Grotesk"; font-weight: 700;
    src: url("./../webfont/SchibstedGrotesk-Bold.ttf") format("truetype");
}
@font-face {
    font-family: "Schibsted Grotesk"; font-weight: 800;
    src: url("./../webfont/SchibstedGrotesk-ExtraBold.ttf") format("truetype");
}
@font-face {
    font-family: "Schibsted Grotesk"; font-weight: 800;
    src: url("./../webfont/SchibstedGrotesk-Black.ttf") format("truetype");
}

@font-face {
    font-family: "PP Telegraf"; font-weight: 300;
    src: url("./../webfont/PPTelegraf-UltraLight.woff") format("truetype");
}
@font-face {
    font-family: "PP Telegraf"; font-weight: 400;
    src: url("./../webfont/PPTelegraf-Regular.woff") format("truetype");
}
@font-face {
    font-family: "PP Telegraf"; font-weight: 800;
    src: url("./../webfont/PPTelegraf-UltraBold.woff") format("truetype");
}

:root {
    --bodyDark: #0A0908;
    --bodyYellow: #FEF5EA;
    --black: #000;
    --white: #fff;
    --theme: #FB8B02;
    --themeDark: #FF4D00;
    --textLight1: #c1bfbf;
    --textLight2: #bcb9b9;
    --textLight3: #A9A9A9;
    --textBrown: #281600;
    --menuDark: #667085;
    --greyLight: #272726;
    --greyMedium: #4F4E4D;
    --darkPrimary: #161514;
    --font-primary: "Schibsted Grotesk", sans-serif;
    --font-secondary: "PP Telegraf", sans-serif;
}

* {
    margin: 0;
    padding: 0;
}
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    overflow-x:hidden;
    scroll-behavior: smooth;
    font-family: var(--font-primary);
}

body {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    padding: 0;
    margin: 0;
    height: 100vh;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    font-family: var(--font-primary);
    background: var(--bodyDark);
}
input:focus, body select:focus, body textarea:focus, body button:focus {
    outline: none;
}
body *{
    -webkit-text-size-adjust:none;
}
button {
    border: none;
}

a, button {
    display: inline-block;
    text-decoration: none;
    color: inherit;
    line-height: 1;
    transition: all 0.7s ease 0s;
    cursor: pointer;
    font-family: var(--font-primary);
}
a:hover {
    color: var(--theme);
    text-decoration: none;
}
img, svg {
    max-width: 100%;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type=search] {
    -webkit-appearance: none;
}
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
    -webkit-appearance: none
}
::selection {
    color: #fff;
    background: var(--theme);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
}
p {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 18px;
    font-weight: 300;
    font-family: var(--font-primary);
}

ul li {
    font-size: 18px;
    line-height: 28px;
    padding: 8px 0;
    font-weight: 300;
    font-family: var(--font-primary);
}
@media (min-width: 980px) {
    .container {
        max-width: 1340px;
    }
}
@media (min-width: 1500px) {
    .container {
        max-width: 1400px;
    }
    .container-fluid {
        max-width: 1450px;
    }
}
@media (min-width: 1600px) {
    .container {
        max-width: 1580px;
    }
}
@media (min-width: 1900px) {
    .container {
        max-width: 1700px;
    }
}
@media (min-width: 2100px) {
    .container {
        max-width: 2140px;
    }
}
.custom-btn {
    background: var(--themeDark);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 8px;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.25);
    letter-spacing: 0.56px;
}
.custom-btn:hover {
    background: var(--theme);
    color: var(--white);
}
/* ================================ Custom Style ================================== */
#mobile-view {
    display: none;
}
@media (max-width: 767px) {
    #desktop-view {
       display: none;
    }
    #mobile-view {
        display: block;
    }
}
/* ================================ //Custom Style ================================== */

/*============================ Footer Global ============================*/
.footer-global {
    position: relative;
    width: 100%;
    background: var(--darkPrimary);
}
.footer-global .footer-top {
    padding-bottom: 60px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.footer-global .top-with-tag {
    padding-top: 150px;
}
.footer-global .no-tag {
    padding-top: 100px;
}
.footer-global .footer-top .foot-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 32px;
}
.footer-global .footer-top .foot-menu a {
    font-size: 14px;
    opacity: 0.8;
    color: var(--white)
}
.footer-global .footer-top .foot-menu a i {
    vertical-align: middle;
    margin-right: 10px;
    font-size: 4px;
}
.footer-global .foot-contact .footer-logo {
    width: 116px;
    margin-bottom: 30px;
}
.footer-global .foot-contact p {
    font-size: 14px;
    opacity: 0.8;
    color: var(--white)
}

.footer-global .footer-bottom {
    padding: 30px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-global .footer-block {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 4px;
}
.footer-global .footer-block .box-zig {
    width: 12px;
    height: 12px;
    border-radius: 1px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-animation: colorchange 4s infinite linear;
    animation: colorchange 4s infinite linear;
}
@-webkit-keyframes colorchange {
    0% { background: #FFF; } 
    15% { background: transparent; }
    28% { background: #FB8B02;}
    36% {background: transparent;}
    48% {background: #6402FA;}
    56% { background: transparent;} 
    83% { background: #02A9FA; }
    100% { background: transparent;}
}
.footer-global .footer-bottom p {
    color: var(--textLight2);
    text-transform: uppercase;
    font-size: 12px;
    line-height: 20px;
    font-weight: 600;
    margin: 0;
}
/*============================ //Footer Global ============================*/

/*============================ Partner Wrap ============================*/
.partner-wrap {
    display: flex;
    padding: 8px 30px;
    border-radius: 8px;
    align-items: center;
    gap: 38px;
    border-top: 1px solid #F3EDE8;
    background: var(--white);
    margin-top: 10px;
    max-width: 950px;
}
.partner-wrap .prt-title {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 20%;
}
.partner-wrap .prt-title p{
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
    margin-bottom: 0;
    color: #2F2E38;
}

.partner-wrap .marquee-container {
    overflow: hidden;
    width: 100%;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}
  
.partner-wrap .investor-list {
    display: flex;
    width: max-content;
    animation: scroll-left 30s linear infinite;
} 
.partner-wrap .item-partners {
    flex: 0 0 auto;
    padding: 0 20px;
}
.partner-wrap .item-partners img {
    height: 18px;
    display: block;

}
@keyframes scroll-left {
    0% {
    transform: translateX(0);
    }
    100% {
    transform: translateX(-50%);
    }
}
/*============================ //Partner Wrap ============================*/