@font-face {
    font-family: 'Montserrat';
    src: url('../../fonts/Montserrat-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

:root {
    --blue: rgb(0, 66, 137);
    --white: rgb(255, 255, 255);
    --black: rgb(0, 0, 0);
    --border: rgb(214, 214, 214);
    --border-sw: rgb(214, 214, 214);
    --white-t-sw: rgba(255, 255, 255, 0.7);
    --text-gray-sw: rgb(80, 80, 80);
    --shadow-sw: rgb(126, 126, 126);
    --dirt-white-sw: rgb(247, 247, 247);
    --white-sw: rgb(255, 255, 255);
    --black-sw: rgb(0, 0, 0);
    font-size: 10px;
}

.dark {
    --border-sw: rgb(75, 75, 75);
    --white-t-sw: rgba(26, 26, 26, 0.7);
    --text-gray-sw: rgb(190, 190, 190);
    --shadow-sw: rgb(19, 19, 19);
    --dirt-white-sw: rgb(39, 39, 39);
    --white-sw: rgb(26, 26, 26);
    --black-sw: rgb(230, 230, 230);
}

a[x-apple-data-detectors] {
    color: inherit !important;
    text-decoration: none !important;
    font-size: inherit !important;
    font-family: inherit !important;
    font-weight: inherit !important;
    line-height: inherit !important;
}

a[href^="tel"] {
    color: inherit;
    text-decoration: none;
}

body {
    text-decoration: none;
    color: var(--black-sw);
    background-color: var(--white-sw);
    padding: 0;
    margin: 0;
    font-family: sans-serif;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    padding-top: 8rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    background-color: var(--white-sw);
    z-index: 90;
    transition: filter 0.3s ease;
}

@media screen and (max-width: 1150px) {
    .container.active {
        filter: blur(4px);
        pointer-events: none !important;
        user-select: none !important;
        overflow: hidden !important;
    }
}

main {
    margin: 0 auto;
    padding: 3rem 0 5rem 0;
    width: 130rem;
}

@media screen and (max-width: 1350px) {
    main {
        width: auto;
        margin: 0;
        padding: 3rem 1.3rem 5rem 1.3rem;
    }
}

h1 {
    position: relative;
    display: inline-block;
    padding: 0 0.7rem 0.3rem 0.7rem;
    font-weight: 500;
    font-size: 3rem;
    margin: 0 0 3rem 0;
    color: var(--black-sw);
    letter-spacing: 1px;
}

h1::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0.3rem;
    border-radius: 1rem;
    background: var(--blue);
}

@media screen and (max-width: 820px) {
    h1 {
        font-size: 2.5rem;
    }

}