@import url("https://fonts.googleapis.com/css2?family=Kaisei+HarunoUmi:wght@400;700&family=Roboto:wght@300;400;700&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --blue: #003d5b;
    --light-gray: #f4f4f4;
    --gold: #ba9f81;
    --roboto: "Roboto", sans-serif;
    --haruno: "Kaisei HarunoUmi", serif;
}

body {
    min-height: 100vh;
    height: 100%;
}

html {
    font-size: 10px;
    font-family: "Roboto", sans-serif;
    line-height: 1.25;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

main {
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 2rem;
    font-weight: normal;
}

ul,
ol {
    list-style: none;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

pre {
    font-family: monospace, monospace;
}

a {
    background-color: transparent;
    color: inherit;
    text-decoration: none;
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    text-decoration: underline dotted;
}

b,
strong {
    font-weight: bolder;
}

code,
kbd,
samp {
    font-family: monospace, monospace;
}

sub,
sup {
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

img {
    border-style: none;
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    line-height: 1.15;
    margin: 0;
}

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}

legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal;
}

progress {
    vertical-align: baseline;
}

textarea {
    overflow: auto;
}

[type="checkbox"],
[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

details {
    display: block;
}

summary {
    display: list-item;
}

template {
    display: none;
}

[hidden] {
    display: none;
}

/*
    UTILS
*/
.pl-6 {
    padding-left: 6rem;
}

.bold {
    font-weight: bold;
}

.no-scroll {
    overflow-y: hidden;
}

.w-50 {
    width: 50%;
}
.w-60 {
    width: 60%;
}

.d-none {
    display: none;
}

.pl-13 {
    padding-left: 13rem;
}

.pr-13 {
    padding-right: 13rem;
}

.block {
    display: block;
}

.flex {
    display: flex;
}

.inline-block {
    display: inline-block;
}

.grid {
    display: grid;
}

.title {
    display: block;
    font-size: 3.8rem;
    line-height: 1.3;
    font-weight: 400;
    color: var(--blue);
    font-family: "Kaisei HarunoUmi", serif;
    letter-spacing: 0.1rem;
}

.gold {
    color: var(--gold);
}

.uppercase {
    text-transform: uppercase;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.static {
    position: static;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-container {
    width: 100%;
    height: 100%;
}

.button-rounded {
    display: block;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 0.6rem 3rem;
    border-radius: 10rem;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    background-color: transparent;
    transition: 500ms ease;
    width: max-content;
    cursor: pointer;
}

@media (hover: hover) {
    .button-rounded:hover {
        background-color: var(--gold);
        color: #fff;
    }
}

.mt-1 {
    margin-top: 1rem;
}
.mt-2 {
    margin-top: 2rem;
}
.mt-3 {
    margin-top: 3rem;
}
.mt-4 {
    margin-top: 4rem;
}
.mt-5 {
    margin-top: 5rem;
}
.mb-1 {
    margin-bottom: 1rem;
}
.mb-2 {
    margin-bottom: 2rem;
}
.mb-3 {
    margin-bottom: 3rem;
}
.mb-4 {
    margin-bottom: 4rem;
}
.mb-5 {
    margin-bottom: 5rem;
}
.pb-1 {
    padding-bottom: 1rem;
}
.pb-2 {
    padding-bottom: 2rem;
}
.pb-3 {
    padding-bottom: 3rem;
}
.pb-4 {
    padding-bottom: 4rem;
}
.pb-5 {
    padding-bottom: 5rem;
}
.pt-1 {
    padding-top: 1rem;
}
.pt-2 {
    padding-top: 2rem;
}
.pt-3 {
    padding-top: 3rem;
}
.pt-4 {
    padding-top: 4rem;
}
.pt-5 {
    padding-top: 5rem;
}

/*
    COMPONENTS
*/
footer {
    background-color: var(--blue);
    font-size: 1.8rem;
    color: #fff;
    margin-top: auto;
}

footer .title {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: "Roboto", sans-serif;
    color: #fff;
    margin-bottom: 3.7rem;
}

footer .top {
    position: relative;
    padding-top: 9rem;
}

footer .middle {
    border-top: 1px solid var(--gold);
    border-bottom: 1px solid var(--gold);
    padding-top: 9rem;
    padding-bottom: 9rem;
    padding-left: 11rem;
    padding-right: 11rem;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    justify-content: space-between;
}

@media screen and (max-width: 1366px) {
    footer .middle {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 680px) {
    footer .middle {
        grid-template-columns: 1fr;
    }
}

footer .middle .col {
    width: 80%;
}

footer .bottom {
    padding-top: 2.5rem;
    padding-bottom: 3.5rem;
    padding-left: 11rem;
    padding-right: 11rem;
    font-size: 1.6rem;
}

footer .back-to-top-wrapper {
    background-color: var(--blue);
    width: max-content;
    padding: 2.7rem;
    position: absolute;
    right: 25%;
    bottom: -4rem;
}

footer .back-to-top {
    display: block;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 0.6rem 3rem;
    border-radius: 10rem;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    transition: 350ms ease;
}

footer .middle .socials li + li {
    margin-top: 1.4rem;
}

footer .middle .complains > a {
    display: block;
    width: max-content;
    margin-left: auto;
}

footer .middle .complains img {
    width: max(100%, 20rem);
    object-fit: contain;
}

@media screen and (max-width: 1366px) {
    footer .middle .complains > a {
        margin-left: 0;
    }
}

footer .bottom ul {
    display: flex;
}

footer .bottom .grid {
    grid-template-columns: 1fr 1fr;
}

footer .bottom .logo-container {
    justify-self: end;
    width: 8.5rem;
    height: 3rem;
    opacity: 0.5;
}

footer .bottom .logo-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

footer .bottom ul li {
    white-space: nowrap;
}

footer .bottom ul li + li::before {
    content: "";
    width: 0.4rem;
    height: 0.4rem;
    background-color: #fff;
    display: inline-block;
    margin-left: 12px;
    margin-right: 12px;
    border-radius: 50%;
    vertical-align: middle;
}

header {
    padding-top: 3rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--blue);
    position: absolute;
    width: min(calc(192rem - 40px), 100%);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

body:not(.homepage) header {
    position: fixed;
    background-color: #fff;
}

header .row {
    margin-left: -2rem;
    margin-right: -2rem;
}

main {
    z-index: -1;
}

header nav {
    height: 100%;
}

header nav ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    gap: 5rem;
}

header nav #speak-with-us {
    margin-left: 4rem;
    margin-right: 4rem;
}

header nav a.active {
    color: var(--gold);
}

header nav a {
    transition: color ease 0.25s;
}

@media (hover: hover) {
    header nav a:hover {
        color: var(--gold);
    }
}

header .subnav-services {
    background-color: var(--blue);
    width: 100%;
    height: 5.2rem;
    position: absolute;
    bottom: 4rem;
    left: 0;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 500ms ease;
    z-index: -1;
}

header .subnav-services::after {
    content: "";
    background-color: rgba(0, 0, 0, 0.6);
    display: block;
    width: min(100vw, 1880px);
    height: calc(100vh - calc(12.7rem + 5.2rem));
    position: fixed;
    opacity: 0;
    top: calc(8.7rem + 5.2rem);
    left: 0;
    transition: 500ms ease;
    z-index: -2;
    pointer-events: none;
}

header .subnav-services:hover,
header .subnav-services.active {
    top: 12.7rem;
    opacity: 1;
}
header .subnav-services:hover::after,
header .subnav-services.active::after {
    opacity: 1;
    top: calc(12.7rem + 5.2rem);
}

header .subnav-services.active {
    opacity: 1;
    bottom: -2.2rem;
}
@media (hover: hover) {
    header .subnav-services:hover {
        opacity: 1;
        bottom: -2.2rem;
    }
}

header .logo-container {
    width: 15rem;
}

header .logo-container img {
    width: 100%;
    object-fit: contain;
}

header .navigation {
    height: 100%;
    position: absolute;
    right: 1rem;
    transition: top ease 0.7s;
    display: flex;
    align-items: center;
    top: 0;
}

header .languages {
    display: flex;
    flex-direction: column;
    margin-top: 3.75rem;
    position: relative;
    gap: 2rem;
}

header .language {
    opacity: 0;
    transition: 350ms ease;
}

#contacts #contacts-link,
#local #services-nav,
#insurance #services-nav,
#fruits #services-nav,
#beekeeping #services-nav,
#local .subnav-services li:nth-child(1) a,
#insurance .subnav-services li:nth-child(2) a,
#fruits .subnav-services li:nth-child(3) a,
#beekeeping .subnav-services li:nth-child(4) a,
#about #about-link {
    color: var(--gold);
}

html[lang="pt"] a#uk,
html[lang="en"] a#pt {
    order: 2;
}
html[lang="pt"] a#pt,
html[lang="en"] a#uk {
    order: 1;
    opacity: 1;
    color: var(--gold);
}

header .language.active {
    opacity: 1;
}

@media (hover: hover) {
    header .languages:hover .language {
        opacity: 1;
    }
}

header .close {
    top: -13rem;
}

header .hamburger {
    cursor: pointer;
}
header .hamburger #hamburger-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}
header .hamburger .icon-container {
    width: 32px;
}
header .hamburger .icon {
    height: 3px;
    width: 100%;
    background-color: #000;
    display: block;
    position: relative;
    transition: 200ms ease;
}
header .hamburger .icon::before,
header .hamburger .icon::after {
    content: "";
    width: 100%;
    background-color: #000;
    height: 3px;
    display: block;
    position: absolute;
    transform-origin: center;
    transform: rotate(0deg);
    transition: 300ms ease;
}
header .hamburger .icon::before {
    transform-origin: center;
    top: 1rem;
}
header .hamburger .icon::after {
    transform-origin: center;
    bottom: 1rem;
}
header .hamburger.active .icon::before {
    top: 0;
    transform: rotate(45deg);
    transform-origin: center;
}
header .hamburger.active .icon::after {
    bottom: 0;
    transform: rotate(-45deg);
    transform-origin: center;
}
header .hamburger.active .icon {
    background-color: transparent;
}

header .mobile-menu {
    position: fixed;
    width: min(100vw, 1880px);
    height: 100vh;
    left: 0;
    top: -100vh;
    background-color: rgba(255, 255, 255, 0.8);
    transition: 500ms ease;
    opacity: 0;
}
header .mobile-menu.active {
    top: 0;
    opacity: 1;
}
.mobile-menu-active header .mobile-menu {
    opacity: 1;
}

header .hamburger .icon-container img {
    width: 100%;
    object-fit: contain;
}

header #logo {
    z-index: 1;
    padding-left: 13rem;
}

header .header-navigation {
    z-index: 1;
    right: 13rem;
}

header .speak-with-us {
    background-color: var(--blue);
    color: var(--gold);
    position: absolute;
    left: 0;
    top: 7.2rem;
    opacity: 0;
    padding-top: 8rem;
    padding-bottom: 8rem;
    transition: 500ms ease;
    z-index: -1;
    pointer-events: none;
}
header .speak-with-us::after {
    content: "";
    background-color: rgba(0, 0, 0, 0.6);
    display: block;
    width: min(100vw, 1880px);
    height: calc(100vh - calc(12.7rem + 42.8rem));
    position: fixed;
    opacity: 0;
    top: calc(8.7rem + 42.8rem);
    left: 0;
    transition: 500ms ease;
    z-index: -2;
    pointer-events: none;
}

header .speak-with-us:hover,
header .speak-with-us.active {
    top: 12.7rem;
    opacity: 1;
    display: block;
    pointer-events: all;
    z-index: 1;
}
header .speak-with-us:hover::after,
header .speak-with-us.active::after {
    opacity: 1;
    top: calc(12.7rem + 42.8rem);
}

header .speak-with-us .left-side {
    padding-right: 10rem;
}
header .speak-with-us .left-side .title {
    color: #fff;
    text-transform: none;
}
header .speak-with-us .left-side .text {
    text-transform: none;
    line-height: 1.75;
    font-size: 1.6rem;
    margin-top: 2rem;
    font-weight: normal;
}
header .speak-with-us .right-side {
    padding-left: 10rem;
    color: #fff;
}
header .speak-with-us .right-side .field {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
    gap: 0.8rem;
}
header .speak-with-us .right-side label {
    text-transform: none;
    font-size: 1.6rem;
    font-weight: normal;
}
header .speak-with-us .right-side label.required::after {
    content: "*";
    padding-left: 0.6rem;
}
header .speak-with-us .right-side input {
    border: none;
    border-bottom: 1px solid #fff;
    background-color: transparent;
    outline: none;
    font-size: 1.6rem;
    color: #fff;
    padding-bottom: 0.4rem;
}

header .speak-with-us .right-side .fields-row:first-child .field:nth-child(1) {
    flex-basis: 45%;
}
header .speak-with-us .right-side .fields-row:first-child .field:nth-child(2) {
    flex-basis: 45%;
}
header .speak-with-us .right-side .fields-row:first-child .field:nth-child(3) {
    flex-basis: 10%;
}

header .speak-with-us .right-side .fields-row {
    display: flex;
    gap: 2.4rem;
    width: 100%;
}
header .speak-with-us .right-side .fields-row + .fields-row {
    margin-top: 1.8rem;
}
header .speak-with-us .right-side .verification-code {
    max-width: 20rem;
}
header .speak-with-us .right-side .code {
    max-width: 10rem;
}
header .speak-with-us .right-side .agree {
    flex-direction: row;
    margin-left: 13rem;
}
header .speak-with-us .right-side .agree label {
    font-size: 12px;
    color: var(--gold);
}
header .speak-with-us .right-side input.button-rounded {
    color: var(--gold);
    border: 1px solid var(--gold);
    min-width: 13rem;
    cursor: pointer;
    background-color: transparent;
    transition: 500ms ease;
}

@media (hover: hover) {
    header .speak-with-us .right-side input.button-rounded:hover {
        background-color: var(--gold);
        color: #fff;
    }
}

.panel-snap {
    scroll-snap-type: y mandatory;
    max-height: 100vh;
    overflow-y: auto;
    scroll-behavior: smooth;
}

.panel-snap > section {
    scroll-snap-align: center;
    min-height: 100vh;
    max-height: 100vh;
}

.panel-snap > .footer {
    min-height: unset;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.panel-snap::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.panel-snap {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

/* HOMEPAGE  */
.info > .wrapper {
    height: 100vh;
    grid-template-rows: 50%;
    grid-auto-rows: 50%;
    grid-template-columns: 35%;
}

.info .offer {
    grid-column: 1 / 3;
    padding-top: 5.8rem;
    padding-bottom: 5.8rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.info .lead {
    font-size: 2.1rem;
    color: var(--gold);
}

.info h1,
.info h2 {
    color: var(--blue);
    font-size: 3.8rem;
    font-family: var(--haruno);
}

.info .taste {
    background-color: var(--blue);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info .taste h2 {
    color: #fff;
}

.info .taste .wrapper {
    height: 100%;
    display: flex;
    gap: 0.8rem;
    flex-direction: column;
    justify-content: center;
}

.info .taste .wrapper a {
    margin-top: 5rem;
}

.info .hero-image .image-container {
    height: 100%;
}

.info .hero-image .image-container img {
    object-fit: cover;
}

#about .wrapper {
    grid-template-columns: 60% 40%;
    grid-template-rows: 100vh;
}
#about .wrapper .right .image-container {
    height: min(100vh, 100%);
}

#about .left .text-container {
    height: min(100%, 100%);
    display: flex;
    gap: 4rem;
    flex-direction: column;
    justify-content: center;
}

#about .left .lead {
    color: var(--gold);
    font-size: 2.1rem;
}

#about .left h3 {
    color: var(--blue);
    font-size: 3.8rem;
    font-family: var(--haruno);
}

#about .left p {
    color: var(--blue);
    font-size: 1.8rem;
    line-height: 1.5;
}

#services {
    display: flex;
}

#services > article {
    position: relative;
    color: #fff;
    font-size: 1.8rem;
    width: 25%;
    min-width: 14%;
    flex-grow: 0.001;
    transition: all ease 0.5s;
}

@media (hover: hover) {
    #services > article:hover {
        flex-grow: 1;
        width: 70%;
    }
}

#services > article .bg-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#services > article .bg-image::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: block;
}

#services > article .bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#services > article .content {
    padding-left: 9rem;
    padding-right: 9rem;
    padding-top: 26rem;
    overflow: hidden;
    height: 80%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    cursor: pointer;
}

#services > article .content h2 {
    color: #fff;
    font-size: 3.8rem;
    font-family: var(--haruno);
    height: 25%;
    transition: 500ms ease;
}

#services > article.shrink h2 {
    font-size: 2.4rem;
}

#services > article .content .wrapper {
    height: 100%;
    position: relative;
    bottom: -75%;
    transition: bottom ease 0.4s;
    transition-delay: 0s;
}

@media (hover: hover) {
    #services > article .content:hover .wrapper {
        transition-delay: 0.5s;
        bottom: 0;
    }
}

#services .content .text-container {
    max-width: 60%;
    margin-top: 3rem;
}
#services .content .links ul {
    margin-top: 5rem;
    display: flex;
    flex-wrap: wrap;
    font-size: 12px;
    max-width: 50%;
}
#services .content .links ul li {
    border: 1px solid #fff;
    flex-grow: 1;
    text-align: center;
}
#services .content .links ul li a {
    padding: 0.6rem 1.4rem;
    display: block;
    width: 100%;
    height: 100%;
    background-color: transparent;
    color: #fff;
    font-weight: bold;
    transition: 500ms ease;
}
@media (hover: hover) {
    #services .content .links ul li a:hover {
        background-color: #fff;
        color: var(--gold);
    }
}
#services .content .button-rounded {
    margin-top: 5rem;
}

header .mobile-menu.active {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 65% 35%;
}
header .mobile-menu .speak-with-us {
    opacity: 1;
    height: 100%;
    display: flex;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
    position: static;
    transition: none;
}
header .mobile-menu .speak-with-us.active {
    display: flex;
    top: unset;
}
.mobile-speak-with-us {
    display: none;
}
header .mobile-menu .speak-with-us::after {
    content: none;
}
header .mobile-menu .bottom-menu {
    position: relative;
}
header .mobile-menu .top-menu {
    position: relative;
    padding-top: 25rem;
    display: flex;
}
header .mobile-menu .top-menu .right-side,
header .mobile-menu .top-menu .left-side {
    flex-basis: 50%;
}
header .mobile-menu .top-menu .left-side .grid {
    row-gap: 4rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: max-content;
    grid-auto-rows: max-content;
}
header .mobile-menu .top-menu .left-side .grid .title {
    font-family: var(--roboto);
}
header .mobile-menu .top-menu .left-side .subnav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 3.6rem;
    gap: 2.4rem;
    margin-top: 2.4rem;
}

header .mobile-menu .top-menu .right-side {
    display: flex;
}
header .mobile-menu .top-menu .right-side > div {
    flex-basis: 50%;
    display: flex;
    flex-direction: column;
    font-size: 1.8rem;
    font-weight: normal;
}
header .mobile-menu .top-menu .right-side > .customer-support {
    gap: 0.6rem;
}
header .mobile-menu .top-menu .right-side > .customer-support span {
    margin-bottom: 2.4rem;
    font-weight: bold;
}
header .mobile-menu .top-menu .right-side > .customer-support a {
    text-transform: none;
}
header .mobile-menu .top-menu .right-side > .socials-complains {
    font-weight: bold;
    color: var(--gold);
}
header .mobile-menu .top-menu .right-side > .socials-complains ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
header .mobile-menu .top-menu .right-side .complains {
    margin-top: 16rem;
}
header .mobile-menu .top-menu .right-side .complains .image-container {
    width: 16rem;
}
header .hamburger .languages .language a {
    pointer-events: none;
}
header .hamburger .languages {
    right: 0rem;
    opacity: 0;
    margin-top: 0;
    flex-direction: row;
    transition: 500ms ease;
}
header .hamburger.active .languages {
    opacity: 1;
    right: 10rem;
}
header .hamburger.active .languages .language a {
    transition: 350ms ease;
    pointer-events: all;
}
header .hamburger .languages .language {
    opacity: 1;
    margin-top: 0;
    margin-right: 3.6rem;
}
header .hamburger .languages .language a.active {
    font-weight: bold;
    color: var(--gold);
}
ul.socials a {
    opacity: 1;
    transition: 350ms ease;
}
@media (hover: hover) {
    header .hamburger .languages .language a:hover {
        color: var(--gold);
    }

    header .mobile-menu .top-menu .right-side > .customer-support a:hover {
        text-decoration: underline;
    }
    footer a:hover {
        text-decoration: underline;
    }
    ul.socials a:hover {
        opacity: 0.6;
        text-decoration: none;
    }
    footer .back-to-top:hover {
        background-color: var(--gold);
        color: #fff;
    }
}

header .mobile-menu a {
    max-width: max-content;
}

.homepage main aside.side-links {
    position: fixed;
    color: black;
    font-size: 24px;
    right: calc((100vw - calc(min(100%, 1880px) - 5rem)) / 2);
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}
.homepage main aside.side-links nav {
    position: relative;
    width: 2px;
    background-color: var(--gold);
    height: calc(5 * 5rem + 1.5rem * 4);
}
.homepage main aside.side-links ul {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.homepage main aside.side-links a {
    width: 15px;
    height: 15px;
    display: block;
    border: 3px solid var(--gold);
    background-color: #fff;
    border-radius: 50%;
}
.homepage main aside.side-links a.active {
    background-color: var(--gold);
}
.tab-services header .subnav-services {
    opacity: 1;
    position: static;
    z-index: 1;
}
.mobile-active.tab-services header .subnav-services {
    opacity: 0;
    z-index: -1;
}
#local main {
    padding-top: 17.9rem;
}

#local #hero {
    display: grid;
    justify-content: center;
    align-items: center;
    grid-template-columns: 1fr 2fr;
    grid-template-rows: 1fr;
}

#local #hero .left-side {
    background-color: var(--gold);
    height: 53rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
#local #hero .left-side .wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-right: 5rem;
}
#local #hero .left-side .title {
    color: #fff;
}
#local #hero .left-side .content {
    font-size: 1.8rem;
    line-height: 1.5;
    margin-top: 2.4rem;
}
#local #hero .left-side .button-rounded {
    color: #fff;
    background-color: var(--gold);
    border-color: #fff;
    cursor: pointer;
    margin-top: 2.4rem;
}
@media (hover: hover) {
    #local #hero .left-side .button-rounded:hover {
        background-color: #fff;
        color: var(--gold);
    }
}
#local #hero .right-side {
    position: relative;
    height: 53rem;
}
#local #hero .right-side .details {
    position: absolute;
    bottom: 3rem;
    left: 3rem;
    color: #fff;
    font-size: 1.4rem;
    font-weight: bold;
}
#local #hero .right-side .details li {
    border: 2px solid #fff;
    padding: 0.6rem 1.4rem;
}
#local #hero .right-side .details li + li {
    border-left: none;
    margin-left: -0.1rem;
}
.tab-services .subnav-services::after {
    content: none;
}

#hero {
    margin-bottom: 20rem;
}

#items {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 20rem;
    gap: 10rem;
}
#items .item-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-template-rows: 1fr;
    height: 80rem;
    width: min(100%, 155rem);
    position: relative;
    overflow: hidden;
}
#items .item-card .left-side {
    height: 100%;
    width: 100%;
}

#items .item-card .right-side {
    background-color: var(--blue);
    padding: 8rem;
}
#items .item-card .right-side .wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 80%;
    min-height: 100%;
}
#items .item-card .right-side .title {
    color: var(--gold);
}
#items .item-card .right-side .subtitle {
    font-size: 1.8rem;
    color: var(--gold);
    margin-top: 1rem;
}
#items .item-card .right-side .content {
    color: #fff;
    font-size: 1.8rem;
    line-height: 1.5;
    margin-top: 4.8rem;
}
#items .item-card .right-side .button-rounded {
    margin-top: 4.8rem;
}
#items .item-card .left-side .image-container {
    height: 80rem;
}
#items .right-side .id {
    position: absolute;
    display: block;
    font-size: 28.5rem;
    right: -4rem;
    top: -10rem;
    opacity: 0.3;
    color: #fff;
    font-family: var(--haruno);
}
#insurance main .wrapper {
    padding-top: 17.9rem;
}
#insurance section.content {
    position: relative;
    padding-bottom: 10rem;
}
#insurance section.content .bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    z-index: -1;
}
#insurance .wrapper .description {
    padding-top: 10rem;
    max-width: 80%;
}
#insurance main .wrapper .title {
    color: var(--gold);
}
#insurance main .wrapper .text {
    font-size: 1.8rem;
    line-height: 1.5;
    margin-top: 4.8rem;
}
#insurance .services {
    margin-top: 4.8rem;
    background-color: var(--blue);
    color: #fff;
    padding: 5rem 8rem;
}
#insurance .services .grid {
    grid-template-columns: 1fr 1fr;
}
#insurance .services .title {
    font-size: 1.8rem;
    font-family: var(--roboto);
    font-weight: bold;
    letter-spacing: 0.2rem;
}

#insurance .services .grid .left-side ul {
    font-size: 3.8rem;
    font-family: var(--haruno);
    line-height: 1.5;
    margin-top: 2rem;
}
#insurance .services .grid .left-side li::before {
    content: "";
    width: 1rem;
    height: 1rem;
    background-color: #fff;
    border-radius: 50%;
    margin-right: 2rem;
    display: inline-block;
    vertical-align: middle;
}
#insurance .services .grid .right-side {
    align-self: flex-end;
    justify-self: flex-end;
    font-size: 1.8rem;
    font-size: 1.8rem;
}
#insurance .services .grid .right-side ul {
    margin-top: 2rem;
}
#insurance .services .grid .right-side ul li + li {
    margin-top: 12px;
}
@media (hover: hover) {
    #insurance .services .grid .right-side a:hover {
        text-decoration: underline;
    }
}

.custom-page main {
    padding-top: 17.9rem;
}
.custom-page .container-fluid > .wrapper {
    padding-top: 10rem;
    padding-bottom: 10rem;
}
.custom-page .wrapper .grid {
    grid-template-columns: 20% 80%;
    column-gap: 8rem;
}
.custom-page .wrapper .grid .left-side aside {
    color: var(--gold);
    font-size: 1.4rem;
    text-align: end;
    max-width: 75%;
    margin-left: auto;
    padding-top: 10rem;
    position: sticky;
    top: 10rem;
}
.custom-page .wrapper .grid .right-side .title {
    line-height: 1;
    margin-bottom: calc(10rem - 3.8rem);
}
.custom-page .wrapper .grid .right-side .content {
    font-size: 1.8rem;
    line-height: 1.5;
    color: var(--blue);
    max-width: 60%;
}
.custom-page .wrapper .grid .right-side .splide {
    margin-top: 8rem;
    margin-bottom: 8rem;
}
.custom-page .wrapper .grid .right-side .splide .image-container {
    height: 35rem;
    width: 52.5rem;
}
.custom-page .wrapper .grid .right-side .splide .splide__slide {
    width: max-content !important;
    margin-left: 2.4rem;
}

#contacts main {
    padding-top: 17.9rem;
}
#contacts main .wrapper {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

#contacts section.grid {
    grid-template-columns: 25% 75%;
    grid-template-rows: 60rem;
}
#contacts section .right-side .map-container {
    height: 100%;
}
#contacts section .right-side .map-container iframe {
    height: 100%;
    width: 100%;
}
#contacts section .left-side {
    font-size: 1.8rem;
    color: var(--blue);
    position: sticky;
    top: 10rem;
}
#contacts section .left-side h2 {
    font-weight: bold;
}
#contacts section .left-side .address ul {
    margin-top: 2.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
@media (hover: hover) {
    #contacts section .left-side .address ul a:hover {
        text-decoration: underline;
    }
}
#contacts section .left-side address {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    font-style: normal;
    gap: 0.8rem;
}
#contacts section .left-side .socials li + li {
    margin-top: 1rem;
}

#single-local .left-side aside {
    text-align: end;
    color: var(--blue);
    margin-left: 0;
    max-width: unset;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    position: sticky;
    top: 10rem;
}

#single-local .wrapper .grid {
    grid-template-columns: 15% 85%;
    gap: 10rem;
}

#single-local .left-side aside .field {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}
#single-local .left-side aside .field label {
    font-weight: bold;
    padding-right: 1.6rem;
}
#single-local .left-side aside .field input {
    padding: 0.6rem 12px;
    width: 100%;
    display: block;
    font-size: 1.4rem;
}

#single-local .left-side aside h2.title {
    text-align: end;
    font-size: 2.8rem;
}
#single-local .left-side aside .availability {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
#single-local .left-side aside .availability a.button {
    padding: 0.6rem 3rem;
    display: block;
    width: 100%;
    border: 1px solid var(--blue);
    text-align: center;
    font-weight: bold;
    margin-top: 1rem;
    transition: 500ms ease;
}
@media (hover: hover) {
    #single-local .left-side aside .availability a.button:hover {
        background-color: var(--blue);
        color: #fff;
    }
}

#single-local .left-side aside .characteristics {
    margin-top: 8rem;
}
#single-local .left-side aside #characteristics {
    margin-top: 3rem;
}
#single-local .left-side aside #characteristics li + li {
    margin-top: 1rem;
}
#single-local .left-side aside #characteristics li::after {
    content: "";
    width: 0.3rem;
    height: 0.3rem;
    border-radius: 50%;
    display: inline-block;
    margin-left: 0.6rem;
    background-color: var(--blue);
    vertical-align: middle;
}
#single-local .left-side aside .location a {
    margin-left: auto;
}
#single-local .left-side aside .clean-safe {
    margin-left: auto;
    width: 50%;
}
#single-local .left-side aside .clean-safe .legal {
    font-size: 12px;
    line-height: 1.35;
    margin-top: 3rem;
}

#single-local .container-fluid > .wrapper {
    padding-top: 0;
}
#single-local .right-side .up #id {
    position: absolute;
    right: -4rem;
    top: -10rem;
    font-size: 28.5rem;
    opacity: 0.3;
    color: #fff;
    font-family: var(--haruno);
}
#single-local .right-side .up {
    background-color: var(--gold);
    padding-left: 6rem;
    padding-right: 6rem;
    padding-top: 8rem;
    padding-bottom: 16rem;
    position: relative;
    overflow: hidden;
}

#single-local .wrapper .grid .right-side .splide {
    margin-top: -8rem;
    margin-left: calc(6rem - 2.4rem);
}
#single-local .wrapper .grid .right-side .splide .image-container {
    width: 35rem;
    height: 52.5rem;
}

.mobile-speak {
    display: none;
}

@media screen and (max-width: 1680px) {
    html {
        font-size: 9px;
    }
    header .mobile-menu .top-menu {
        padding-top: 20rem;
    }
}

@media screen and (max-width: 1440px) {
    .pl-13 {
        padding-left: 8rem;
    }
    .pr-13 {
        padding-right: 8rem;
    }

    header #logo {
        padding-left: 8rem;
    }

    header .header-navigation {
        right: 8rem;
    }

    #services > article .content {
        padding-left: 6rem;
        padding-right: 6rem;
    }

    #services > article .content h2 {
        font-size: 3.2rem;
    }

    #services > article.shrink h2 {
        font-size: 2rem;
    }

    #services .content .text-container {
        max-width: 100%;
    }

    header nav #speak-with-us {
        margin-right: 0;
    }

    #single-local .wrapper .grid {
        grid-template-columns: 22% 72%;
        gap: 6%;
    }

    #single-local .container-fluid > .wrapper {
        padding-right: 0;
        padding-left: 3rem;
    }

    header .mobile-menu .top-menu {
        padding-top: 16rem;
    }

    header .row {
        margin-left: 0;
        margin-right: 0;
    }

    footer .top,
    footer .middle,
    footer .bottom {
        padding-left: 8rem;
        padding-right: 8rem;
    }
}

@media screen and (max-width: 1024px) {
    .mobile-speak-with-us {
        display: block;
    }

    header .navigation.bar {
        display: none;
    }

    header .header-navigation .hamburger {
        top: 0;
    }

    header {
        padding-top: 1rem;
    }

    header .mobile-menu .top-menu {
        padding-top: 14rem;
    }

    header .mobile-menu .top-menu .left-side .grid {
        gap: 2rem;
    }

    header .mobile-menu .top-menu .left-side .grid .title {
        font-size: 2.4rem;
    }

    header .mobile-menu .top-menu .right-side .complains {
        margin-top: 2rem;
    }

    header .mobile-menu .bottom-menu {
        display: none;
    }

    .homepage main aside.side-links {
        display: none;
    }

    .panel-snap {
        scroll-snap-type: none;
    }

    #services {
        padding-left: 8rem;
        padding-right: 8rem;
        margin-top: 10rem;
        margin-bottom: 10rem;
        max-height: unset;
        flex-direction: column;
    }

    #services > article {
        width: 100%;
    }
    #services > article + article {
        margin-top: 3rem;
    }
    #services > article .content {
        padding: 10rem 8rem;
    }

    #services > article .content .wrapper {
        max-width: 70%;
        position: static;
    }
    #services .content .links ul {
        max-width: 100%;
    }

    header {
        background-color: #fff;
    }

    footer .middle {
        padding-top: 6rem;
        padding-bottom: 6rem;
        row-gap: 2.4rem;
    }

    footer .title {
        margin-bottom: 1.6rem;
    }

    footer a {
        line-height: 1.75;
    }

    #contacts main .wrapper {
        padding-right: 8rem;
    }

    #insurance main .wrapper,
    .custom-page main,
    #contacts main {
        padding-top: 15rem;
    }
    #contacts main .wrapper {
        padding-bottom: 10rem;
    }
    .custom-page .wrapper .grid {
        grid-template-columns: 12% 88%;
        column-gap: 4rem;
    }

    .custom-page .wrapper .grid .left-side aside {
        max-width: 100%;
    }

    #local main {
        padding-top: 15.9rem;
    }
    #local #hero .right-side,
    #local #hero .left-side {
        max-height: 50rem;
        height: 45rem;
    }
    #local #hero .left-side .wrapper {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
    #local #hero {
        grid-template-columns: 1fr 1fr;
    }
    #hero {
        margin-bottom: 10rem;
    }

    #items .item-card {
        grid-template-columns: 1fr;
        height: unset;
        padding-left: 8rem;
        padding-right: 8rem;
    }
    #items .item-card .left-side .image-container {
        height: 40rem;
    }
    #items .item-card .right-side .wrapper {
        max-width: 100%;
    }
    #items .right-side .id {
        right: 8rem;
    }
    #items .item-card .right-side {
        padding: 4rem 8rem;
    }

    .mobile-speak {
        font-weight: bold;
        font-size: 2rem;
        margin-right: 6rem;
        display: inline-block;
    }

    .mobile-speak-with-us {
        position: fixed;
        top: -100vh;
        opacity: 0;
        left: 0;
        width: 100vw;
        height: calc(100vh - 11rem);
        background-color: var(--blue);
        z-index: 999;
        color: #fff;
        padding: 0rem 8rem;
        transition: 500ms ease;
        text-transform: none;
    }

    .mobile-menu-active .mobile-speak-with-us {
        top: 11rem;
        opacity: 1;
    }

    .mobile-menu-active header .subnav-services {
        z-index: -1;
    }

    .custom-page .wrapper .grid .right-side .content {
        max-width: 100%;
        width: 100%;
    }

    .mobile-speak-with-us .title {
        color: #fff;
    }
    .mobile-speak-with-us .text {
        color: var(--gold);
        font-size: 1.8rem;
        margin-top: 1.4rem;
    }

    .mobile-speak-with-us .fields-row + .fields-row,
    .mobile-speak-with-us .field + .field {
        margin-top: 2rem;
    }
    .mobile-speak-with-us .field.code,
    .mobile-speak-with-us .field.verification-code {
        max-width: 40%;
    }
    .mobile-speak-with-us .field.code input,
    .mobile-speak-with-us .field.verification-code input {
        display: inline-block;
    }
    .mobile-speak-with-us .field label {
        font-size: 1.4rem;
    }
    .mobile-speak-with-us .field label.required::after {
        content: "*";
        margin-left: 0.6rem;
    }
    .mobile-speak-with-us .field.agree {
        display: flex;
    }

    .mobile-speak-with-us .fields-row,
    .mobile-speak-with-us .field {
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
    }
    .mobile-speak-with-us .button-rounded {
        border: 1px solid var(--gold);
        color: var(--gold);
        padding: 0.8rem 1.8rem;
    }
    .mobile-speak-with-us input {
        background-color: transparent;
        border: none;
        border-bottom: 1px solid #fff;
        font-size: 1.8rem;
        outline: none;
        color: #fff;
        padding: 0.8rem 0.4rem;
    }
    .mobile-speak-with-us > .row {
        height: 100%;
        overflow-y: auto;
        overflow-x: hidden;
        padding-right: 1rem;
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    .mobile-speak-with-us .right-side {
        margin-top: 2.4rem;
        overflow-y: auto;
        background-color: var(--blue);
        padding-bottom: 6rem;
    }
    .mobile-menu-active .mobile-speak-with-us::after,
    .mobile-menu-active .mobile-speak-with-us::before {
        content: "";
        width: 100%;
        height: 8rem;
        position: absolute;
        left: 0;
        display: block;
    }
    .mobile-menu-active .mobile-speak-with-us::after {
        bottom: 0;
        background: linear-gradient(
            0deg,
            rgba(0, 61, 91, 1) 0%,
            rgba(255, 255, 255, 0) 70%
        );
    }
    .mobile-menu-active .mobile-speak-with-us::before {
        background: linear-gradient(
            180deg,
            rgba(0, 61, 91, 1) 0%,
            rgba(255, 255, 255, 0) 70%
        );
        top: 0;
    }

    .homepage section#about {
        padding-top: 10rem;
    }

    .panel-snap > section {
        min-height: unset;
        max-height: unset;
    }

    #about .wrapper {
        grid-template-rows: auto;
    }

    #items {
        padding-bottom: 10rem;
    }
}

@media screen and (max-width: 768px) {
    html {
        font-size: 8px;
    }

    .pl-13 {
        padding-left: 1.5rem;
    }
    .pr-13 {
        padding-right: 1.5rem;
    }

    header #logo {
        padding-left: 1.5rem;
    }

    header .header-navigation {
        right: 1.5rem;
    }

    .info > .wrapper {
        grid-template-rows: auto;
        grid-auto-rows: auto;
        height: auto;
    }

    .homepage main {
        padding-top: 0rem;
    }
    .info .taste .wrapper {
        padding: 4rem;
    }
    .mobile-menu-active .mobile-speak-with-us {
        top: 10rem;
    }
    .mobile-speak-with-us {
        height: calc(100vh - 10rem);
    }

    section.info {
        padding-top: 10rem;
    }

    #services {
        padding-right: 1.5rem;
        padding-left: 1.5rem;
    }

    #services > article .content .wrapper {
        max-width: 100%;
    }

    .custom-page .wrapper .grid {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .custom-page .wrapper .grid .left-side aside {
        padding-top: 0;
        margin-left: 0;
        position: static;
        text-align: start;
        font-size: 2rem;
    }

    #contacts section.grid {
        display: flex;
        flex-direction: column;
    }

    #contacts section .left-side {
        position: static;
        display: flex;
        justify-content: space-around;
        padding-bottom: 10rem;
    }

    #contacts section .right-side .map-container {
        height: 50rem;
    }
    #contacts main .wrapper {
        padding-right: 1.5rem;
    }

    #single-local .container-fluid > .wrapper {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    #single-local .left-side aside .field {
        align-items: flex-start;
        width: 50%;
    }
    #single-local .left-side aside .availability a.button {
        width: 50%;
    }

    #single-local .left-side aside,
    #single-local .left-side aside h2.title {
        text-align: start;
    }

    #single-local .left-side aside .clean-safe {
        width: 15rem;
    }
    #single-local .left-side aside .location a,
    #single-local .left-side aside .clean-safe {
        margin-left: 0;
    }
    #single-local .left-side aside #characteristics li::after {
        content: none;
    }
    #single-local .left-side aside #characteristics li::before {
        content: "";
        width: 0.3rem;
        height: 0.3rem;
        border-radius: 50%;
        display: inline-block;
        margin-right: 0.6rem;
        background-color: var(--blue);
        vertical-align: middle;
    }
    #single-local .wrapper .grid {
        flex-direction: column-reverse;
    }
}

@media screen and (max-width: 767px) {
    header .hamburger.active .languages {
        top: 100%;
        left: 70%;
    }

    .pl-13 {
        padding-left: 1rem;
    }

    .pr-13 {
        padding-right: 1rem;
    }
    header #logo {
        padding-left: 1rem;
    }
    header .header-navigation {
        right: 1rem;
    }

    .mobile-speak {
        font-size: 1.8rem;
        margin-right: 3rem;
        white-space: nowrap;
    }

    .info h1,
    .info h2 {
        font-size: 3.2rem;
    }

    .info > .wrapper {
        display: flex;
        flex-direction: column;
    }
    .info .offer {
        order: 1;
    }
    .info .taste {
        order: 3;
    }
    .info .hero-image {
        order: 2;
        height: 35rem;
    }
    section#about .wrapper {
        display: flex;
        flex-direction: column-reverse;
    }
    #about .wrapper .left {
        padding-top: 5rem;
    }
    #about .wrapper .right {
        height: 35rem;
    }

    #services > article .content {
        padding: 3rem;
    }

    footer .bottom .grid {
        display: flex;
        flex-direction: column;
    }

    footer .top,
    footer .middle,
    footer .bottom {
        padding-left: 1rem;
        padding-right: 1rem;
        gap: 3rem;
        margin: 0;
        font-size: 2rem;
    }

    footer .title {
        font-size: 2rem;
    }

    header .mobile-menu .top-menu .left-side .grid {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    header .mobile-menu .top-menu .right-side {
        flex-direction: column;
    }
    header .mobile-menu .top-menu .left-side .subnav {
        margin-top: 1rem;
        padding-left: 1rem;
        gap: 2rem;
    }
    header .mobile-menu.active {
        display: flex;
    }
    header .mobile-menu .top-menu {
        flex-basis: 100%;
        justify-content: flex-start;
        flex-direction: column;
        gap: 3rem;
    }
    header .mobile-menu .top-menu nav {
        height: unset;
    }
    header .mobile-menu .top-menu .right-side,
    header .mobile-menu .top-menu .left-side {
        flex-basis: unset;
    }
    header .mobile-menu .top-menu .right-side > .socials-complains {
        flex-direction: row;
        justify-content: space-between;
    }
    header .mobile-menu .top-menu .right-side {
        gap: 3rem;
        margin-top: 4rem;
    }

    header .mobile-menu .top-menu .left-side .subnav {
        justify-content: flex-start;
    }

    header .mobile-menu .top-menu .left-side .grid {
        font-size: 2rem;
        font-weight: normal;
    }
    header .mobile-menu .top-menu .right-side > .socials-complains ul,
    header .mobile-menu .top-menu .right-side > .customer-support {
        font-size: 2rem;
    }
    header .mobile-menu .top-menu .right-side {
        gap: 6rem;
    }
    header .mobile-menu .top-menu .right-side .complains img {
        object-fit: contain;
    }
    footer .middle .col {
        width: 100%;
    }
    footer .back-to-top-wrapper {
        right: 50%;
        transform: translateX(50%);
    }
    .mobile-speak-with-us {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .mobile-speak-with-us .text,
    .mobile-speak-with-us .field label {
        font-size: 14px;
    }
    .mobile-speak-with-us .field label {
        font-size: 12px;
        font-weight: normal;
    }

    .mobile-speak-with-us .button-rounded {
        padding: 1rem 6rem;
        font-size: 2.2rem;
    }

    .tab-services header .subnav-services {
        position: absolute;
        opacity: 0;
    }

    .button-rounded {
        font-size: 14px;
        padding: 1rem 6rem;
    }

    .mobile-speak-with-us input {
        font-size: 16px;
    }
    .custom-page .container-fluid > .wrapper {
        padding-top: 0;
    }
    #about .wrapper {
        flex-direction: column;
    }

    .custom-page .wrapper .grid .right-side .splide {
        margin-top: 4rem;
        margin-bottom: 4rem;
    }
    .custom-page .wrapper .grid .right-side .splide .splide__slide {
        margin-left: 1rem;
        margin-right: 1rem;
    }
    .custom-page .wrapper .grid .right-side .splide .image-container {
        width: calc(90vw - 2rem);
        margin-left: -1rem;
    }
    #insurance .wrapper .description {
        max-width: 100%;
        padding-top: 5rem;
    }
    #insurance .services {
        padding: 2rem;
    }
    #insurance .services .grid .right-side {
        align-self: flex-start;
    }
    #insurance .services .grid {
        display: flex;
        flex-direction: column;
        gap: 3rem;
        align-items: flex-start;
    }
    #local #hero {
        display: flex;
        flex-direction: column-reverse;
    }
    #local #hero .right-side,
    #local #hero .left-side {
        height: auto;
    }
    #local #hero .right-side {
        height: 35rem;
        width: 100%;
    }
    #local #hero .left-side .wrapper {
        padding-right: 1rem;
    }

    #items .item-card .right-side,
    #items .item-card {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    #single-local .right-side .up #id,
    #items .right-side .id {
        font-size: 20rem;
        top: 0;
        right: 0;
    }

    #single-local .wrapper .grid {
        flex-direction: column-reverse;
        gap: 4rem;
    }
    .custom-page .wrapper .grid .right-side .content,
    #single-local .right-side .up,
    #single-local .container-fluid > .wrapper {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    #single-local .left-side aside .clean-safe,
    #single-local .left-side aside .location a {
        margin: 0;
    }
    #single-local .left-side aside .field {
        align-items: flex-start;
        width: 100%;
    }
    #single-local .left-side aside .availability a.button {
        width: 100%;
    }
    #single-local .left-side aside .characteristics {
        margin-top: 0;
    }
    #single-local .left-side aside h2.title,
    #single-local .left-side aside {
        text-align: start;
    }
    #contacts section .left-side {
        justify-content: space-between;
        align-items: flex-end;
        padding-bottom: 5rem;
    }
    .homepage section#about {
        padding-top: 5rem;
    }
}
