﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-family-main);
}

section {
    align-items: center;
    scroll-snap-align: start;
    width: 100%;
    position: relative;
    justify-content: center;
    display: flex;
    background-color: transparent !important;
}

html {
    max-width: 1920px;
    margin: 0 auto;
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
}

body {
    overflow-x: hidden;
    color: var(--color-text-main);
}

button, a, input, textarea, label {
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
    outline: none;
}

li {
    list-style: none;
}



h1 {
    font-size: var(--font-size-3xl);
    color: var(--color-secondary);
    display: inline-block;
    font-family: var(--font-family-title);
    font-weight: var(--font-weight-regular);
}


h2 {
    font-size: var(--font-size-2xl);
    color: var(--color-secondary);
    display: inline-block;
    font-family: var(--font-family-title);
    font-weight: var(--font-weight-regular);
}


h3 {
    font-size: var(--font-size-xl);
    color: var(--color-primary-dark);
    text-align: start;
    font-weight: var(--font-weight-bold);
}


h4 {
    font-size: var(--font-size-xl);
    text-align: start;
    font-family: var(--font-family-title);
    font-weight: 400;
}

h5 {
    font-family: var(--font-family-title);
    font-weight: 400;
}

span {
    font-size: var(--font-size-text);
}

p {
    color: var(--color-text-sub);
    font-size: var(--font-size-text);
    line-height: 1.8;
}

a {
    text-decoration: none;
    font-size: var(--font-size-md);
    cursor: pointer;
    transition: var(--default-transition);
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    outline: none;

}

a:focus {
    outline: none;
    background: none;
    color: inherit;
}




input {
    width: 100%;
    background: var(--color-white);
    text-align: start;
    font-size: var(--font-size-md);
    border: var(--border);
    border-radius: var(--radius-pill);
    box-shadow: var(--border);
    padding: 15px 20px;
}

input:focus {
    outline: none;
    border-color: var(--color-secondary);
}