html {
    scroll-behavior: smooth;
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Safari */
    -khtml-user-select: none;
    /* Konqueror HTML */
    -moz-user-select: none;
    /* Old versions of Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

body {
    margin: 0;
    padding: 0;
    font-family: Jost;
}

a {
    text-decoration: none;
}

/*#region utils*/
@font-face {
    font-family: Jost;
    src: url("src/fonts/jost/Jost-VariableFont_wght.ttf");
    /*MENTÉNEMEL*/
}

.clickable:hover {
    cursor: pointer;
}

/*pc/mobile switch, csak baszd mellé class-ban és működik*/
.pcVisible {
    position: static;
    opacity: 1;
    pointer-events: all;
}

.mobileVisible {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 1200px) {
    .pcVisible {
        position: absolute;
        opacity: 0;
        pointer-events: none;
    }

    .mobileVisible {
        position: static;
        opacity: 1;
        pointer-events: all;
    }
}

/*#endregion*/

/*#region scrollbar*/
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    box-shadow: inset 0 0 5px grey;

}

::-webkit-scrollbar-thumb {
    background: #3d508f;

}

::-webkit-scrollbar-thumb:hover {
    background: #2e3f64;
}

/*#endregion*/

/*#region TwoCollumnBase*/
.TCB {
    display: flex;
    padding: 5vh 10vw;

}

@media (max-width: 1200px) {
    .TCB {
        display: block;
    }
}

/*#endregion*/

/*#region ContentAndPoint*/
.CAPc {
    width: 60%;
    margin: auto 0;
}

.CAPp {
    width: 40%;
    margin: auto 0;
}

.CAPpElement {
    width: 80%;
    display: block;
    flex-wrap: wrap;
    align-items: center;
    flex-direction: row;
    justify-content: flex-start;
    margin: 0 auto;
}

.CAPpTitle {
    display: flex;
}

@media (max-width: 1200px) {
    .CAPc {
        width: 90%;
    }

    .CAPp {
        width: 90%;
        margin-top: 10%;
    }

    .CAPpElement {
        width: 90%;
        justify-content: center;
        margin: 40px auto;
    }

    .CAPpTitle {
        justify-content: center;
    }
}

/*#endregion*/

/*#region Good To Have*/
.scale-up-center {
    -webkit-animation: scale-up-center 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    animation: scale-up-center 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

.svgBlack {
    filter: brightness(0%);
}

.svgWhite {
    filter: invert(100%);
}

/*#endregion*/