/* ************************************************************************************************* */
/* *************************************     BASIC     ********************************************* */
/* ************************************************************************************************* */


:root {
    --main-color: #302E2B;
    --secondary-color: #DEFF56;
    --third-color: #C3E04B;

    --black: #000000;
    --grey: #F3F3F3;
    --white: #ffffff;

    --main-font-color: #000000;
    --secondary-font-color: #BEB47E;
    --header-font-color: rgba(255, 255, 255, 0.73);

    /* some more colors */
    --menu-transparency: rgba(0, 0, 0, 0.2); /* if transparent is enabled in admin panel */
    --border-color: #707070;

    --du-color: #a1d1e4;
    --copyrights-bg-color: #FBFBFB;
    --copyrights-font-color: #000000;
    --breadcrumbs-bg-color: transparent;

    /* theme general transitions time */
    --transition-time: 0.3s;

    /* font sizes */
    --font-size-1 : 25px;
    --font-size-2 : 20px;
    --font-size-3 : 19px;
    --font-size-4 : 18px;
    --font-size-5 : 17px;

    --font-size-normal : 16px; /* Default body font-size */
    --font-size-medium : 15px;
    --font-size-small : 14px;
    --font-size-xs : 12px;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body {
    scroll-behavior: smooth;
    /*     height: auto;
        min-height: 100vh; */
}

html,
body {
    width: auto !important;
    overflow-x: hidden !important
}


html{
    margin-top: 0 !important;
}
p{
    font-family: 'Open Sans', sans-serif;
    font-size:16px;
}

body {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    color: var(--black);
    font-size:var(--font-size-normal);
    line-height: 1.2em;
    /*   background-color: #eeeded; */

    /* *** Better Font Rendering *** */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: var(--black);
}
a:hover{
    color: var(--secondary-font-color);
}

a:hover,
a:link,
a:visited,
a:active {
    text-decoration: none;
    -webkit-transition: var(--transition-time)  ease-in-out;
    -moz-transition: var(--transition-time)  ease-in-out;
    -ms-transition: var(--transition-time)  ease-in-out;
    -o-transition: var(--transition-time)  ease-in-out;
    transition: var(--transition-time)  ease-in-out;
}

ul {
    list-style-type: none;
    padding-inline-start: 0px;
    margin-bottom: 0rem;
}

img {
    width: 100%;
    height: auto;
    display: block;
}



h1 {
    font-size: 25px;
    padding: 0.6em 0;
    font-weight: 600;
}
h2 {
    font-family: 'Tall Films Expanded';
    line-height: 1em;
    color: #000;
    font-size: 60px;
    padding-top: 0;
    font-weight: 400;
    padding-bottom: 16px;
}
h3 {
    font-size: 19px;
    padding: 0.6em 0;
    font-weight: 600;
}
h4 {
    font-size: 18px;
    padding: 0.6em 0;
    font-weight: 600;
}
h5 {
    font-size: 17px;
    padding: 0.6em 0;
    font-weight: 600;
}

hr {
    border: none;
    border-top: 2px solid var(--border-color);
    margin: 0;
}

select, option {
    -webkit-appearance: none;
    font-family: 'proxima-nova';
    font: -moz-pull-down-menu;
}

input[type="text"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="email"]{
    /* *** Disable iphone input field rounding corners *** */
    -webkit-appearance: none;
    border-radius: 0;
    -webkit-border-radius: 0;
}

input,
input[type="text"] {
    padding: 12px 10px;
    border: 1px solid var(--border-color);
}
input[type='checkbox'] {
    border: 1px solid var(--border-color);
    -webkit-text-fill-color: #000000;
    width: 14px;
    height: 14px;
    margin-right: 6px;
    border-radius: 0;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px #ffffff inset;
    -webkit-text-fill-color: #000000 !important;
}
input:focus-visible{
    outline-offset: -1px;
    outline: 1px solid black;
}
input[type="radio"] {
    cursor:pointer;
    accent-color: var(--main-color);
}

textarea {
    resize: vertical;
    width: 100%;
    min-height: 80px;
    background: var(--white);
    padding:10px;
    -webkit-appearance: none;
    -webkit-border-radius: 0;
    border-radius: 0;
    outline: none;
    position: relative;
    caret-color: var(--black);
    border: 1px solid var(--border-color);

}

textarea:focus-visible {
    outline-offset: -1px;
    outline: 1px solid black;
}

::placeholder {
    color: #A8A8A8;
}

/* ************************************************************************************************* */
/* scrollbar */

/* width for y-axis , height for x-axis */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 2px grey;
    border-radius: 0px;
}
/* Handle */
::-webkit-scrollbar-thumb {
    background: black;
    border-radius: 0px;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #434343;
}

/* FIREFOX scrollbar*/
:root {
    scrollbar-color: black white !important;
    scrollbar-width: thin !important;
}

/*scrollbar END*/
/* ************************************************************************************************* */

/* ************************************************************************************************* */
/* ************************************      BASIC END     ***************************************** */
/* ************************************************************************************************* */




