*, *::before, *::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

ul[role='list'], ol[role='list'] {
    list-style: none;
}

html:focus-within {
    scroll-behavior: smooth;
}

a:not([class]) {
    text-decoration-skip-ink: auto;
}

img, picture, svg, video, canvas {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    vertical-align: middle;
    font-style: italic;
    background-repeat: no-repeat;
    background-size: cover;
}

input, button, textarea, select {
    font: inherit;
}

@media (prefers-reduced-motion: reduce) {
    html:focus-within {
        scroll-behavior: auto;
    }

    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
        transition: none;
    }
}

.gradient-background {
    background: linear-gradient(150deg,#e2f6f7,#ffffff,#f6e2f7);
    background-size: 180% 180%;
    animation: gradient-animation 16s ease infinite;
}

@keyframes gradient-animation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

body, html {
    min-height: 100%;
    scroll-behavior: smooth;
}

body {
    padding: 0;
    margin: 0;
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.7;
    color: #fff;
    background: #444;
    overflow-x: hidden;
}

h1,
.h1 {
    font-size: 3.5em;
    font-family: serif;
    line-height: 1;
    font-weight: 600;
}

h2,
.h2 {
    font-size: 2.5em;
    line-height: 1.3;
    font-weight: 200;
}

h3,
.h3 {
    font-size: 2em;
}

h4,
.h4 {
    font-size: 1.8em;
    font-weight: 500;
}

h5,
.h5 {
    font-size: 1.5em;
}

h6,
.h6 {
    font-size: 1.2em;
}

a {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px dashed #fff;
}

.text-right {
    text-align: right;
}

.text-center {
    text-align: center;
}

.text-thin {
    font-weight: 200;
}

.text-u-c {
    text-transform: uppercase;
}

.strong {
    font-weight: 500;
}

p + p {
    margin-top: 16px;
}

.flex {
    display: flex;
    flex-wrap: wrap;
}

.flex-end {
    justify-content: flex-end;
}

.flex-align-center {
    align-items: center;
}

.no-shrink {
    flex-shrink: 0;
}

.container-fluid {
    padding: 0 24px;
}

.m-t {
    margin-top: 24px;
}

.m-t-sm {
    margin-top: 16px;
}

.m-t-md {
    margin-top: 32px;
}

.m-t-lg {
    margin-top: 48px;
}

.m-t-none {
    margin-top: 0;
}

.main {
    margin: 50px;
    padding: 50px;
    border: 2px solid #fff;
}

.main .herb {
    max-height: 200px;
}

.main h1 {
    position: relative;
    margin: 65px 0 50px;
    color: #fff;
    line-height: 1.3;
}

.main h1:before {
    content: '';
    display: block;
    position: absolute;
    background: #2f2f2f;
    width: 300%;
    left: -100%;
    right: -100%;
    top: -20px;
    bottom: -20px;
    z-index: -1;
}

.main .qr-code {
    max-height: 200px;
    width: 200px;
}

.main .container-xl {
    max-width: 1800px;
}

.name {
    font-size: 1.2em;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.name-title {
    color: #fff;
    font-size: 1.2em;
    letter-spacing: 2px;
    border-bottom: 4px solid #927413;
}

.person,
.contact {
    margin-right: 65px;
}

.person {
    margin-bottom: 30px;
}

.person:last-of-type,
.contact:last-of-type {
    margin-right: 0;
}

.address {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    text-align: right;
}

.qr-code-holder {
    position: relative;
    text-decoration: none;
    border: none;
}

.show-map {
    position: absolute;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    margin-top: 8px;
}

.hours-title {
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.working-hours {
    margin-top: 8px;
}

.working-hours td + td {
    padding-left: 25px;
}

footer {
    font-size: 18px;
    color: #838383;
    letter-spacing: 1px;
    padding: 50px 0 0;
}

footer img {
    height: 70px;
    margin-right: 24px;
}

footer .h1 {
    margin-top: 5px;
}

@media (max-width: 767px) {
    .main {
        margin: 25px;
        padding: 25px;
    }

    .main h1 {
        margin-top: 25px;
        font-size: 2.5em;
    }

    .address {
        justify-content: flex-start;
        text-align: left;
        margin-top: 25px;
        margin-bottom: 25px;
    }

    .person {
        width: 100%;
    }

    .person + .person {
        margin-left: 0;
        margin-top: 25px;
    }
}