@import url('https://fonts.googleapis.com/css2?family=Karantina:wght@300;400;700&family=Karla:ital,wght@0,200..800;1,200..800&display=swap');

:root {
    --primary: #FFA500;
    --secondary: #004656;
    /* text */
    --text-primary: #212B36;
    --text-secondary: #637381;
    --text-disabled: #919EAB;
    /* text */

    --white: #fff;
    --black: #000;

    /* heading */
    --h1: color: #FFA500;

    /* Transition */
    --transition-half-Sec: 0.5s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Karla", sans-serif;
    font-family: "Karantina", system-ui;
    background-color: #000;
    color: #fff;
}

h2,
h3,
h4,
h5,
h6 {}

ul {
    list-style-type: none;
}

a {
    text-decoration: none;
}

input:focus {
    outline: none;
}

.input:focus {
    outline: none !important;
    color: #FFFFFF;
}


.width-85 {
    width: 85%;
}

.themebtn-trans {
    color: var(--Contrast-Text-primary, #FFA500);
    font-family: Karla;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    display: flex;
    justify-content: center;
    padding: 10px 15px;
    align-items: center;
    border-radius: 500px;
    border: 1px solid #FFA500;
}

.themebtn-bg {
    color: var(--Contrast-Text-primary, #000);
    font-family: Karla;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    display: flex;
    justify-content: center;
    padding: 10px 15px;
    align-items: center;
    border-radius: 500px;
    background: var(--main-light-primary, #FFA500) !important;
}
.themebtn-bg-white {
    color: var(--Contrast-Text-primary, #000);
    font-family: Karla;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    display: flex;
    justify-content: center;
    padding: 10px 15px;
    align-items: center;
    border-radius: 500px;
    background: var(--main-light-primary, #fff) !important;
}