@import url(root.css);

*,
::before,
::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* outline: 1px solid orange; */
}

html,
body {
    font-size: 62.5%;
    overflow-x: hidden;
}


body {
    position: relative;
    font-family: var(--fam-public-sans);

}

.filter {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(45, 49, 77, 0.363);
    z-index: 6;
}

h1 {
    font-size: clamp(3rem, 5vw, 6rem);
    font-weight: var(--Weights-300);
    color: var(--Blue-950);
}

h2 {
    font-size: 5rem;
    font-weight: var(--Weights-300);
    margin-bottom: 6rem;
    color: var(--Blue-950);
}

section {
    padding: 100px 150px;
}

p {
    color: var(--Gray-600);
}

.btn-cta {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    background: var(--btn-cta);
    padding: 14px 30px;
    color: var(--White);
    text-decoration: none;
    max-width: 180px;
    border-radius: 100px;
    z-index: 1;
    overflow: hidden;
}

.btn-cta::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 100px;
    background: var(--btn-cta-hover);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s linear;
}

.btn-cta:hover::after {
    opacity: 1;
}

footer {
    display: flex;
    justify-content: space-between;
    padding: 50px 150px;
    background-color: var(--Blue-950);
}

