/******************* VARS *******************/
:root {
    --body-background-color: #222;
    --body-background-color-opacity: rgba(34, 34, 34, 1);
    --footer-bg: rgba(23,23, 23, 1);
    --free-color-text: limegreen;
    --request-color-text: #CB2F2F;
    /*--main-color: #A6A6A6;
    --hover-color: #0088CC;
    --light-text-color: #A6A6A6;*/

    --light-text-color: #A6A6A6;
    --main-color: #A6A6A6;
    --hover-color: #FFF;

/*    --main-color: #A6A6A6;
    --hover-color: #50C878;
    --light-text-color: #A6A6A6;*/

    --padding-body: 40px 8% 5px;
    --padding-block: 0 8%;
    --trans: .5s;
    --br: 8px;
    --scale-img: 1.03;
    --gradient-text: linear-gradient(to right, #CCC, var(--main-color), #444);
}

* {
    box-sizing: border-box;
    font-family: "Inter", Arial, sans-serif;
}

/******************* VARS *******************/

@font-face {
    font-family: "Inter";
    src: url("./fonts/Inter_24pt-ExtraLight.ttf") format("truetype");
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("./fonts/Inter_24pt-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("./fonts/Inter_24pt-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("./fonts/Inter_24pt-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("./fonts/Inter_24pt-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/******************* DISPLAY *******************/
html, body {
    background-color: var(--body-background-color);
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    min-height: 100%;
}

.dn {
    display: none;
}

.frow_nw {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

.frow {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.fcol_nw {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}

.jce {
    justify-content: end;
}

.jcs {
    justify-content: start;
}

.jcsb {
    justify-content: space-between;
}

/******************* DISPLAY *******************/

/******************* WIDTH & HEIGHTS *******************/
.w100p {
    width: 100%;
}

.h100p {
    height: 100%;
}

/******************* WIDTH & HEIGHTS *******************/

/******************* MARGINS *******************/
.m0 {
    margin: 0;
}


/******************* MARGINS *******************/
@media only screen and (max-width: 1440px) {
    :root {
        --padding-block: 0 4%;
    }
}

@media only screen and (max-width: 860px) {
    :root {
        --padding-block: 0 5%;
    }
}

@media only screen and (max-width: 760px) {
    :root {
        --padding-body: 30px 5% 10px;
    }
}


@media only screen and (max-width: 640px) {
    :root {
        --padding-body: 25px 3% 10px;
    }
}

