@import url("./font.css");
@import url("./root.css");
@import url("./components/header.css");
@import url("./components/anchor.css");
@import url("./components/footer.css");
@import url("./fa-all.css");
@import url("./main.css");
@import url("./tests.css");
@import url("./info-a.css");

html {
    background-color: white;
  
}
*,*:focus {
    outline: none;
}

h1 {
    color: var(--primary);
}
.wrapper {
    background-color: var(--bg-body);
}
@supports selector(::-webkit-scrollbar) {
    *::-webkit-scrollbar-thumb {
        border-radius: 0.1875rem;
        background-color: var(--bg-hover-light);
    }
}

@supports selector(::-webkit-scrollbar) {
    *::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 0.5rem var(--bg-dark);
        box-shadow: inset 0 0 0.5rem var(--bg-dark);
    }
}

section {
    padding-bottom: 2rem;
}

p {
    line-height: 1.5 !important;
}

@supports (overflow: clip) {
    .wrapp {
        overflow: clip;
    }
}

[class*=__container] {
    max-width: 102.5rem;
    margin: 0 auto;
    padding: 0 1.25rem !important;
}

.wrapper {
    min-height: 100dvh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

main {
    flex: 1 1 auto !important;
}
 
.wrapper {
    height: 100vh;
}
body {
    font-family: var(--font-primary);
    padding: 0px !important;
    margin: 0px !important;
    background-color: var(--bg-body);
    scroll-behavior: smooth !important;
    display: flex;
    flex-direction: column;
    height: 100dvh !important;
}

ul:not(.submenu__list, .menu__list) {
    margin: 2rem 0;
    line-height: 1.6rem;
}

.center{
    width: 100% !important;
    text-align: center;
    color: black;
    font-weight: 300 !important;
}


.center *{
    width: 100% !important;
    text-align: center;
    color: var(--primary);
    
}

strong {
    font-weight: 600 !important;
}

main {
    position: relative;
}

.bg-icons {
    position: absolute;
    width: calc(100% - 2rem) !important;
    overflow: hidden;
    align-self: center;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    
}
.bg-icons__item {
    position: absolute;
    transition: transform 2s ease-out;
}
.bg-icons__icon {
    width: 35px;
    height: 35px;
    transition: transform 1s ease-out;
    opacity: 0.2;
}

p, h1, h2, h3, textarea, button, .catalog-item,.info__item, .test-item, .result-container {
    z-index: 10 !important;
}