:root {
    --border: solid 0.5px var(--bordercolor);
    --bordercolor: #0d5e94;
    --font: #404040;
    --radius: 4px;
    --header-height: 90px;
    --footer-height: 156px;
    --max-width: 1440px;
    --pad-main: 0 clamp(10px, 2vw, 56px);

    /* --h1c: #0282b1; */
    /* --h1c: #0176a0; */
    /* --h1c: #1c80c6; */
    /* --h1c: #2d84c3; */
    --h1c: #2f80b9;
    --btn: #1d689d;
    /* --bth:#2e8fc6; */
    /* --btn: #016489; */
    /* --bth: #058cc1; */
    --bth: #2d84c3;
    --shdw: 0 2px 5px rgba(0, 0, 0, 0.2);
    --font-lg: #606060;
    --error: rgb(169, 3, 3);
    --hv: #3ba3ed17;
}

@font-face {
    font-family: 'Roboto';
    src: url(../assets/fonts/Roboto/Roboto-VariableFont_wdth\,wght.ttf);
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;

}

@font-face {
    font-family: 'Inter';
    src: url(../assets/fonts/Inter/Inter-VariableFont_opsz\,wght.ttf);
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;

}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    min-height: calc(100vh + var(--footer-height));
    min-height: 100vh;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Inter';
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--font);
    overflow-x: hidden;
    /* background-color: rgb(235, 235, 235); */
}

header,
textarea,
footer,
section,
div,
p,
span,
a,
nav {
    box-sizing: border-box;
    margin: 0;

}





h1 {
    font-size: clamp(28px, 2vw, 32px);
    font-weight: 500;
    color: var(--h1c);
    margin: 0;
}

h2 {
    font-size: clamp(24px, 2vw, 28px);
    font-weight: 500;
    color: var(--h1c);
    margin: 0;
}

h3 {
    font-size: clamp(16px, 1vw, 18px);
    font-weight: 500;
    margin: 0;
}

h4 {
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 500;
    margin: 0;
}

input {
    all: unset;
    width: 100%;
    font-size: 14px;


}

input::placeholder {
    font-size: 12px;


}

input:focus::placeholder {
    opacity: 0;
}


input:focus {

    input:-webkit-autofill,
    input:-webkit-autofill:hover,
    input:-webkit-autofill:focus,
    textarea:-webkit-autofill,
    select:-webkit-autofill {
        -webkit-box-shadow: 0 0 0px 1000px white inset !important;
        box-shadow: 0 0 0px 1000px white inset !important;
        -webkit-text-fill-color: #000 !important;
        background-color: white !important;
    }
}


textarea {

    all: unset;
    width: 100%;

    height: 100px;
    overflow: auto;
    resize: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    scrollbar-width: none;
    -ms-overflow-style: none;
    border: var(--border);
    border-radius: var(--radius);
    padding: 12px;
    box-sizing: border-box;
    font-size: 14px;
    font-family: 'Inter';


}

textarea::placeholder {
    font-size: 12px;
}

textarea:focus::placeholder {
    opacity: 0;
}

textarea:focus,
textarea:active {
    outline: none;
    box-shadow: none;
}

textarea::-webkit-scrollbar {
    display: none;
}

.slideOut {
    transform: translateY(-120%);

}


.mainCont {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--pad-main);
    margin-bottom: 56px;
    flex: 1;

}

.padsmall {
    padding: 15px clamp(7.5px, 2vw, 56px);
}

.content {
    width: 100%;
    height: 100%;
    max-width: var(--max-width);
    display: flex;
    flex-direction: column;

    gap: clamp(0px, 5vw, 56px);
}

.opacity {
    opacity: 1 !important;
}

.margin {
    margin-top: 56px;
    padding-bottom: 12px;
}

.divider {
    width: 100%;
    min-height: 1px;
    background-color: var(--h1c);
    border-radius: 100px;
}

.borderBtm {
    border-bottom: var(--border);
}

.fadeIn {
    animation: fade 1s ease-in-out;
}

@keyframes fade {
    0% {
        opacity: 0.3;
    }

    100% {
        opacity: 1;
    }
}

.scale {
    animation: scale 1s ease-in-out;
}

@keyframes scale {
    0% {
        transform: scale(0.8);
    }

    100% {
        transform: scale(1);
    }
}

@media(max-width:750px) {

    :root {
        --header-height: 70px;
    }

}