/*!
 * baguetteBox.js
 * @author  feimosi
 * @version 1.11.1
 * @url https://github.com/feimosi/baguetteBox.js
 */

@import url("https://fonts.googleapis.com/css2?family=Faustina:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");

#baguetteBox-overlay {
    background-color: #222;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    height: 100%;
    left: 0;
    opacity: 0;
    overflow: hidden;
    position: fixed;
    top: 0;
    transition: opacity 0.5s ease;
    width: 100%;
    z-index: 1000000;
}

#baguetteBox-overlay.visible {
    opacity: 1;
}

#baguetteBox-overlay .full-image {
    display: inline-block;
    height: 100%;
    position: relative;
    text-align: center;
    width: 100%;
}

#baguetteBox-overlay .full-image figure {
    display: inline;
    height: 100%;
    margin: 0;
}

#baguetteBox-overlay .full-image img {
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    display: inline-block;
    height: auto;
    max-height: 100%;
    max-width: 100%;
    vertical-align: middle;
    width: auto;
}

#baguetteBox-overlay .full-image figcaption {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.6);
    bottom: 0;
    color: #ccc;
    display: block;
    font-family: sans-serif;
    line-height: 1.8;
    position: absolute;
    text-align: center;
    white-space: normal;
    width: 100%;
}

#baguetteBox-overlay .full-image:before {
    content: "";
    display: inline-block;
    height: 50%;
    margin-right: -1px;
    width: 1px;
}

#baguetteBox-slider {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transition: left 0.4s ease, transform 0.4s ease;
    white-space: nowrap;
    width: 100%;
}

#baguetteBox-slider.bounce-from-right {
    -webkit-animation: bounceFromRight 0.4s ease-out;
    animation: bounceFromRight 0.4s ease-out;
}

#baguetteBox-slider.bounce-from-left {
    -webkit-animation: bounceFromLeft 0.4s ease-out;
    animation: bounceFromLeft 0.4s ease-out;
}

@-webkit-keyframes bounceFromRight {
    0%,
    to {
        margin-left: 0;
    }

    50% {
        margin-left: -30px;
    }
}

@keyframes bounceFromRight {
    0%,
    to {
        margin-left: 0;
    }

    50% {
        margin-left: -30px;
    }
}

@-webkit-keyframes bounceFromLeft {
    0%,
    to {
        margin-left: 0;
    }

    50% {
        margin-left: 30px;
    }
}

@keyframes bounceFromLeft {
    0%,
    to {
        margin-left: 0;
    }

    50% {
        margin-left: 30px;
    }
}

.baguetteBox-button#next-button,
.baguetteBox-button#previous-button {
    height: 60px;
    top: 50%;
    top: calc(50% - 30px);
    width: 44px;
}

.baguetteBox-button {
    background-color: #323232;
    background-color: rgba(50, 50, 50, 0.5);
    border: 0;
    border-radius: 15%;
    color: #ddd;
    cursor: pointer;
    font: 1.6em sans-serif;
    margin: 0;
    outline: 0;
    padding: 0;
    position: absolute;
    transition: background-color 0.4s ease;
}

.baguetteBox-button:focus,
.baguetteBox-button:hover {
    background-color: rgba(50, 50, 50, 0.9);
}

.baguetteBox-button#next-button {
    right: 2%;
}

.baguetteBox-button#previous-button {
    left: 2%;
}

.baguetteBox-button#close-button {
    height: 30px;
    right: 2%;
    right: calc(2% + 6px);
    top: 20px;
    width: 30px;
}

.baguetteBox-button svg {
    left: 0;
    position: absolute;
    top: 0;
}

.baguetteBox-spinner {
    display: inline-block;
    height: 40px;
    left: 50%;
    margin-left: -20px;
    margin-top: -20px;
    position: absolute;
    top: 50%;
    width: 40px;
}

.baguetteBox-double-bounce1,
.baguetteBox-double-bounce2 {
    -webkit-animation: bounce 2s ease-in-out infinite;
    animation: bounce 2s ease-in-out infinite;
    background-color: #fff;
    border-radius: 50%;
    height: 100%;
    left: 0;
    opacity: 0.6;
    position: absolute;
    top: 0;
    width: 100%;
}

.baguetteBox-double-bounce2 {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

@-webkit-keyframes bounce {
    0%,
    to {
        transform: scale(0);
    }

    50% {
        transform: scale(1);
    }
}

@keyframes bounce {
    0%,
    to {
        transform: scale(0);
    }

    50% {
        transform: scale(1);
    }
}

:root {
    --color-primary-bright: #004f94;
    --color-primary: #00417a;
    --color-primary-dark: #003461;
    --color-secondary-bright: #001238;
    --color-secondary: #000a1f;
    --color-secondary-dark: #000205;
    --color-tertiary-bright: #404040;
    --color-tertiary: #212121;
    --color-tertiary-dark: #262626;
    --color-inverse: #ffff;
    --color-white: #fff;
    --color-black: #000;
    --selection-color: var(--color-inverse);
    --selection-background-color: var(--color-primary);
    --outline-color: var(--color-primary);
    --input-text-color: var(--color-white);
    /* --input-placeholder-color: hsla(0, 0%, 95%, 0.38); */
    --input-border-color: hsla(0, 0%, 95%, 0.38);
    --input-checkbox-color: var(--color-primary);
    --input-checkbox-background-color: hsla(0, 0%, 95%, 0.38);
    --horizontal-rule-color: #d4d4d4;
    --body-background-color: #fff;
    --header-background-color: #fff;
    --header-shadow-color: rgba(0, 0, 0, 0.15);
    --header-text-color: var(--color-tertiary);
    --header-inverse-text-color: var(--color-inverse);
    --header-menu-background-color: #fff;
    --navigation-color: var(--text-color);
    --footer-horizontal-rule-color: #d4d4d4;
    --text-color: var(--color-tertiary);
    --heading-color: var(--color-tertiary);
    --link-color: var(--color-primary);
    --link-hover-color: var(--color-primary-dark);
    --button-primary-color: var(--color-inverse);
    --button-primary-background-color: var(--color-primary);
    --button-primary-border-color: var(--color-primary);
    --button-primary-focus-background-color: var(
        --color-primary-dark,
        --color-primary
    );
    --button-primary-focus-border-color: var(
        --button-primary-focus-background-color
    );
    --button-outline-primary-color: var(--color-primary);
    --button-outline-primary-focus-color: var(--color-inverse);
    --button-inverse-color: var(--color-primary);
    --button-inverse-background-color: var(--color-inverse);
    --button-inverse-border-color: var(--color-inverse);
    --button-inverse-focus-background-color: var(--color-inverse);
    --button-inverse-focus-border-color: var(--color-inverse);
    --facts-background-color: var(--color-tertiary);
    --fact-text-color: #bababa;
    --fact-heading-color: #fff;
    --fact-divider-color: hsla(0, 0%, 100%, 0.38);
    --pictogram-label-color: var(--color-primary);
    --pictogram-icon-shadow-color: rgba(0, 0, 0, 0.05);
    --cookies-background-color: #fff;
    --timeline-border-color: rgba(0, 65, 122, 1);
    --limeline-point-border-color: var(--color-primary);
    --timeline-period-label-color: var(--color-primary);
    --form-error-color: #ff4747;
    --alert-error-background-color: #dc3848;
    --alert-error-color: #fff;
    --alert-success-background-color: #29a847;
    --alert-success-color: #fff;
    --hero-scenery-color: var(--color-primary);
    --hero-overlay-color: rgba(0, 0, 0, 0.4);
    --hero-title-color: #fff;
    --hero-arrow-color: #fff;
    --services-background-color: #f5f5f5;
    --locality-information-background-color: var(--color-primary);
    --locality-place-navigation-border-color: #bababa;
    --contact-text-color: var(--color-inverse);
    --contact-form-background-color: var(--color-primary);
    --contact-place-background-color: #f5f5f5;
    --email-form-condition-color: hsla(0, 0%, 95%, 0.38);
    --gallery-border-color: #d4d4d4;
    --gallery-control-background-color: var(--body-background-color);
    --baguette-button-color: var(--color-inverse);
    --baguette-button-background-color: var(--color-primary);
    --viewport-height: 100vh;
}

*,
:after,
:before {
    box-sizing: border-box;
    margin: 0;
    outline-color: var(--outline-color);
    padding: 0;
}

::-moz-selection {
    background: var(--selection-background-color);
    color: var(--selection-color);
}

::selection {
    background: var(--selection-background-color);
    color: var(--selection-color);
}

hr {
    background-color: var(--horizontal-rule-color);
    border: 0;
    color: inherit;
    margin: 1rem 0;
}

hr:not([size]) {
    height: 1px;
}

table {
    border-collapse: collapse;
    caption-side: bottom;
}

th {
    font-variation-settings: "wght" 590;
    font-weight: 590;
    text-align: inherit;
    text-align: -webkit-match-parent;
}

tbody,
td,
tfoot,
th,
thead,
tr {
    border: 0 solid;
    border-color: inherit;
}

label {
    display: inline-block;
}

button,
input,
optgroup,
select,
textarea {
    box-shadow: none;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    margin: 0;
    outline-color: var(--outline-color);
}

select {
    word-wrap: normal;
}

textarea {
    resize: vertical;
}

[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}

button {
    background: none;
    border: none;
    border-radius: 0;
    outline: none;
}

button,
select {
    text-transform: none;
}

[type="button"],
[type="reset"],
[type="submit"],
button {
    -webkit-appearance: button;
    cursor: pointer;
}

button:focus:not(:focus-visible) {
    outline: 0;
}

[role="button"] {
    cursor: pointer;
}

[list]::-webkit-calendar-picker-indicator {
    display: none;
}

output {
    display: inline-block;
}

::-moz-placeholder {
    color: var(--input-placeholder-color);
}

:-ms-input-placeholder {
    color: var(--input-placeholder-color);
}

::placeholder {
    color: var(--input-placeholder-color);
}

::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

::-moz-placeholder,
::-webkit-input-placeholder {
    color: var(--input-placeholder-color);
}

:-moz-placeholder,
:-ms-input-placeholder {
    color: var(--input-placeholder-color);
}

::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-year-field {
    padding: 0;
}

::-webkit-inner-spin-button {
    height: auto;
}

::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
    padding: 0;
}

::file-selector-button {
    font: inherit;
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

iframe {
    border: 0;
}

summary {
    cursor: pointer;
    display: list-item;
}

progress {
    vertical-align: baseline;
}

img,
svg {
    vertical-align: middle;
}

:root {
    --gap: 2.25rem;
    --gap-xxs: 0.855rem;
    --gap-xs: 1.125rem;
    --gap-sm: 1.395rem;
    --gap-md: 1.9125rem;
    --gap-lg: 2.5875rem;
    --gap-xl: 3.105rem;
    --gap-xxl: 3.375rem;
    --gap-xxxl: 3.645rem;
    --gap-xxxxl: 5.895rem;
}

html {
    -ms-overflow-style: scrollbar;
    -webkit-backface-visibility: hidden;
    scroll-behavior: smooth;
}

body {
    -webkit-tap-highlight-color: transparent;
    background-color: var(--body-background-color);
    color: var(--text-color);

    font-family: "Faustina", serif;
    height: 100%;
}

body,
html {
    overflow-x: hidden;
}

:root {
    --side-edge: 2.25rem;
    --vertical-interspace: clamp(3.5rem, 3.5vw, 3.875rem);
    --font-size: 18px;
    --font-family: "Faustina", serif;
    --font-family-heading: "Faustina", serif;
}

@font-face {
    font-display: fallback;
    font-family: Video;
    font-style: normal;
    src: url(../font/6dcf39d7bff7.woff2) format("woff2"),
        url(../font/5ab172365eab.woff) format("woff");
}

@font-face {
    font-display: swap;
    font-family: Video;
    font-style: normal;
    font-weight: 600;
    src: url(../font/36d3b9739757.woff2) format("woff2"),
        url(../font/0e53905d5ac3.woff) format("woff");
}

@font-face {
    font-display: fallback;
    font-family: Raleway;
    font-style: normal;
    font-weight: 400 500 600 700 900;
    src: url(../font/06f19a052058.woff2) format("woff2 supports variations"),
        url(../font/06f19a052058.woff2) format("woff2-variations"),
        url(../font/39e5f42b4ef1.woff) format("woff supports variations"),
        url(../font/39e5f42b4ef1.woff) format("woff-variations");
}

@font-face {
    font-display: swap;
    font-family: Raleway--fallback;
    font-style: normal;
    font-weight: 400;
    src: url(../font/3c98aa7fab16.woff2) format("woff2"),
        url(../font/5fa23bf3e9ef.woff) format("woff");
}

@supports (font-variation-settings: normal) {
    :root {
        --font-family: "Faustina", serif;
    }
}

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: var(--font-family);
    font-size: 100%;
    font-variation-settings: "wght" 400;
    font-weight: 400;
    line-height: 1.2;
}

body {
    font-size: 1.125rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    /* color: var(--heading-color) !important; */
    font-family: "Faustina", serif;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.38;
    margin: 0 0 var(--gap-xxl);
}

h1 .highlight,
h2 .highlight,
h3 .highlight,
h4 .highlight,
h5 .highlight,
h6 .highlight {
    color: var(--color-primary);
}

h1 .nowrap,
h2 .nowrap,
h3 .nowrap,
h4 .nowrap,
h5 .nowrap,
h6 .nowrap {
    white-space: nowrap;
}

h1 {
    font-size: clamp(2.625rem, 5vw, 5.375rem);
}

h2 {
    font-size: clamp(2.25rem, 5.15vw, 3.125rem);
}

h3 {
    font-size: clamp(2rem, 3.75vw, 2.75rem);
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.125rem;
}

h6 {
    font-size: 1rem;
}

p {
    letter-spacing: 0;
    line-height: 1.5;
    margin: 0;
}

p ~ p {
    margin-top: var(--gap);
}

a {
    color: var(--text-color);
}

a,
a:hover {
    text-decoration: underline;
}

small {
    font-size: 82.5%;
}

b,
strong {
    font-variation-settings: "wght" 590;
    font-weight: 590;
}

sub,
sup {
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25rem;
}

sub,
sup {
    font-size: 0.75rem;
}

sup {
    top: -0.5rem;
}

br {
    display: block;
}

ol,
ul {
    margin: 0 auto 1rem;
    padding-left: 2rem;
}

address {
    font-style: normal;
    line-height: inherit;
    margin-bottom: 1rem;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    color: rgba(0, 65, 122, 1);
}

blockquote {
    margin: 0 0 1rem;
}

.caption {
    align-items: center;
    display: flex;
    flex-flow: column nowrap;
    height: var(--viewport-height);
    justify-content: center;
    margin: 0 auto;
    max-width: 101.25rem;
    padding-left: var(--side-edge);
    padding-right: var(--side-edge);
    text-align: center;
    width: 100%;
}

.gallery__control {
    /* Add any necessary styling for positioning */
}

.glide__circles {
    display: flex;
    justify-content: center;
}

.glide__circle {
    width: 10px;
    /* Adjust size as needed */
    height: 10px;
    /* Adjust size as needed */
    border-radius: 50%;
    /* This makes it a circle */
    background-color: gray;
    /* Change color as needed */
    margin: 0 5px;
    /* Adjust spacing as needed */
}

.glide__circle--active {
    background-color: black;
    /* Change color of active circle */
}

@media (max-width: 554px) {
    .header {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
}

@media only screen and (min-width: 37.5rem) {
    .caption {
        max-height: 62rem;
        padding-bottom: var(--vertical-interspace);
    }
}

.caption--reduced {
    height: calc(var(--viewport-height) - var(--vertical-interspace));
}

@media only screen and (min-width: 37.5rem) {
    .caption--reduced {
        max-height: 48rem;
        padding-bottom: calc(var(--vertical-interspace) / 2);
        padding-top: calc(var(--vertical-interspace));
    }
}

@media only screen and (min-width: 60.0625rem) {
    .caption--reduced {
        align-items: flex-end;
        text-align: left;
    }
}

.caption__title {
    font-size: clamp(2.25rem, 5.15vw, 3.125rem);
    margin: 0;
    max-width: 92rem;
    /* width: 100%; */
    color: white;
    font-family: Faustina;
    /* font-size: 78px;  */
    font-style: normal;
    font-weight: 800;
    line-height: 130%;
    text-align: center;
}

.container {
    margin: 0 auto;
    max-width: 101.25rem;
    position: relative;
    width: 100%;
}

.container--narrow {
    /* max-width: 84.25rem; */
    max-width: 1133px;
}

.container--fluid {
    max-width: 100%;
}

.header {
    color: var(--header-text-color);
    height: clamp(6rem, 11vw, 9.375rem);
    padding-left: var(--side-edge);
    padding-right: var(--side-edge);
    position: fixed;
    top: 0;
    transition-duration: 0.3s;
    transition-property: background-color, height, box-shadow, color;
    transition-timing-function: ease-in-out;
    width: 100%;
    z-index: 90;
}

.header--inverse {
    color: var(--header-inverse-text-color);
}

.header--shrink {
    background: var(--header-background-color);
    box-shadow: 0 0.25rem 1.125rem var(--header-shadow-color);
    color: var(--header-text-color);
    height: 6rem;
}

.header__panel {
    align-items: center;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}

.header__logo,
.header__panel {
    height: 100%;
    /* height: 80px !important; */
}

.header__toggler {
    color: inherit;
}

@media only screen and (min-width: 60.0625rem) {
    .header__toggler {
        display: none;
    }
}

.header__logo,
.header__toggler {
    z-index: 99;
}

.header__menu {
    background-color: var(--header-menu-background-color);
    display: flex;
    flex-flow: column nowrap;
    height: 100%;
    justify-content: space-around;
    left: 101%;
    padding: 6rem 0 0;
    position: fixed;
    top: 0;
    transition: left 0.5s;
    width: 100%;
    z-index: 95;
}

.header__menu--opened {
    color: var(--header-text-color);
    left: 0;
}

@media only screen and (min-width: 60.0625rem) {
    .header__menu {
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
        background-color: transparent;
        height: auto;
        left: unset;
        margin: 0;
        padding: 0;
        position: unset;
        top: unset;
        transition: none;
        width: auto;
    }
}

.cover {
    height: var(--viewport-height);
    min-height: 28rem;
    padding: 0 var(--side-edge);
    position: relative;
    width: 100%;
}

.cover__scenery {
    bottom: 0;
    height: 100%;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 0;
}

.cover__video {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}

.cover__stage {
    display: flex;
    flex-flow: column nowrap;
    height: 100%;
    justify-content: center;
    margin: auto;
    position: relative;
    width: 100%;
    z-index: 10;
}

@media only screen and (min-width: 60.0625rem) {
    .cover__stage {
        height: calc(100% - clamp(6rem, 7vw, 10rem));
    }
}

@media only screen and (min-width: 80.0625rem) {
    .cover__stage {
        max-width: 62rem;
    }
}

.cover__title {
    color: var(--hero-title-color);
    margin: 0;
    text-align: center;
}

@media only screen and (min-width: 80.0625rem) {
    .cover__title {
        max-width: 48rem;
        text-align: left;
    }
}

.cover__cta {
    display: none;
}

@media only screen and (min-width: 60.0625rem) {
    .cover__cta {
        bottom: 7rem;
        color: var(--hero-title-color);
        display: block;
        position: absolute;
        text-align: center;
        text-decoration: none;
        width: calc(100% - var(--side-edge) * 2);
        z-index: 10;
    }
}

.cover__cta:hover {
    text-decoration: none;
}

.cover__cta:before {
    background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16.79' height='18'%3E%3Cpath d='m.359 10.495 7.2 7.136a1.139 1.139 0 0 0 1.679 0l7.2-7.136a1.259 1.259 0 0 0 .12-1.619 1.139 1.139 0 0 0-1.8-.12l-5.167 5.157V1.2a1.2 1.2 0 1 0-2.4 0v12.713L2.034 8.756a1.139 1.139 0 0 0-1.8.12 1.259 1.259 0 0 0 .125 1.619z'/%3E%3C/svg%3E")
        50% / clamp(0.937rem, 1.51vw, 1.25rem) no-repeat var(--hero-arrow-color);
    border-radius: 50%;
    content: "";
    display: block;
    height: clamp(3.15rem, 5vw, 4.625rem);
    margin: 0 auto var(--gap);
    width: clamp(3.15rem, 5vw, 4.625rem);
}

.hero {
    height: var(--viewport-height);
    min-height: 100vh;
    padding: 0 var(--side-edge);
    position: relative;
    width: 100%;
}

.hero__scenery {
    background: url(../media/DJI_0060.png) no-repeat var(--hero-scenery-color);
    z-index: 0;

    width: 100%;
    height: 100vh;
    background-size: 100% 100%;
}
.hero__scenery1 {
    background: url(../media/DJI_0062kans.png) no-repeat var(--hero-scenery-color) !important;
    z-index: 0;

    width: 100%;
    height: 100vh;
    background-size: 100% 100% !important;

}
.hero__scenery2 {
    background: url(../media/DJI_0059skal.png) no-repeat var(--hero-scenery-color) !important;
    z-index: 0;

    width: 100%;
    height: 100vh;
    background-size: 100% 100% !important;

}
.hero__scenery3 {
    background: url(../media/DJI_00662con.png) no-repeat var(--hero-scenery-color) !important;
    z-index: 0;

    width: 100%;
    height: 100vh;
    background-size: 100% 100% !important;

}

@media (max-width: 992px) {
    .hero__scenery {
        background: url(../media/DJI_0060.png) no-repeat
            var(--hero-scenery-color);
        z-index: 0;

        width: 100%;
        height: 100% !important;
        object-fit: cover;
        background-size: 100% 100%;
    }
    .hero__scenery1 {
        background: url(../media/DJI_0062kans.png) no-repeat
            var(--hero-scenery-color) !important;
        z-index: 0;

        width: 100%;
        height: 100% !important;
        object-fit: cover;
    }
    .hero__scenery2 {
        background: url(../media/DJI_0059skal.png) no-repeat
            var(--hero-scenery-color) !important;
        z-index: 0;

        width: 100%;
        height: 100% !important;
        object-fit: cover;
    }
    .hero__scenery3 {
        background: url(../media/DJI_00662con.png) no-repeat
            var(--hero-scenery-color) !important;
        z-index: 0;

        width: 100%;
        height: 100% !important;
        object-fit: cover;
    }

    .hero__title {
        color: var(--hero-title-color);
        margin: 0;
        color: #fff;
        font-feature-settings: "clig" off, "liga" off;
        font-family: Faustina;
        font-size: 40px !important;
        font-style: normal;
        font-weight: 800;
        line-height: 130%;
    }

    .title-contact-us {
        color: var(--hero-title-color);
        margin: 0;
        color: #fff;
        font-feature-settings: "clig" off, "liga" off;
        font-family: Faustina;
        font-size: 40px !important;
        font-style: normal;
        font-weight: 800;
        line-height: 130%;
    }
}

.hero__scenery,
.hero__scenery:after {
    bottom: 0;
    height: 100%;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
}

.hero__scenery:after {
    background-color: var(--hero-overlay-color);
    content: "";
}

.hero__video {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}

.hero__stage {
    display: flex;
    flex-flow: column nowrap;
    height: 100%;
    justify-content: center;
    margin: auto;
    position: relative;
    width: 100%;
    z-index: 10;
}

@media only screen and (min-width: 60.0625rem) {
    .hero__stage {
        height: calc(100% - clamp(6rem, 7vw, 10rem));
    }
}

@media only screen and (min-width: 80.0625rem) {
    .hero__stage {
        max-width: 62rem;
    }
}

.hero__title {
    color: var(--hero-title-color);
    margin: 0;
    color: #fff;
    padding-left: 60px;

    font-feature-settings: "clig" off, "liga" off;
    font-family: "Faustina", serif;
    font-size: px48;
    font-style: normal;
    font-weight: 800;
    line-height: 130%;
}

.title-contact-us {
    color: var(--hero-title-color);
    margin: 0;
    color: #fff;

    font-feature-settings: "clig" off, "liga" off;
    font-family: Faustina;
    font-size: 43px;
    font-style: normal;
    font-weight: 800;
    line-height: 130%;
}

@media only screen and (min-width: 80.0625rem) {
    .hero__title {
        margin-top: 60px;
        max-width: 48rem;
        text-align: left;
        font-family: Faustina;
        font-size: 47px;
        font-style: normal;
        font-weight: 800;
        line-height: 130%;
    }

    .title-contact-us {
        color: white;
        margin-top: 60px;
        /* max-width: 48rem;  */
        text-align: left;
        font-family: Faustina;
        font-size: 47px;
        font-style: normal;
        font-weight: 800;
        line-height: 130%;
    }
}

.hero__cta {
    display: none;
}

@media only screen and (min-width: 60.0625rem) {
    .hero__cta {
        bottom: 4rem;
        color: var(--hero-title-color);
        display: block;
        position: absolute;
        text-align: center;
        text-decoration: none;
        width: calc(100% - var(--side-edge) * 2);
        z-index: 10;
    }
}

.hero__cta:hover {
    text-decoration: none;
}

.hero__cta:before {
    background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16.79' height='18'%3E%3Cpath d='m.359 10.495 7.2 7.136a1.139 1.139 0 0 0 1.679 0l7.2-7.136a1.259 1.259 0 0 0 .12-1.619 1.139 1.139 0 0 0-1.8-.12l-5.167 5.157V1.2a1.2 1.2 0 1 0-2.4 0v12.713L2.034 8.756a1.139 1.139 0 0 0-1.8.12 1.259 1.259 0 0 0 .125 1.619z'/%3E%3C/svg%3E")
        50% / clamp(0.937rem, 1.51vw, 1.25rem) no-repeat var(--hero-arrow-color);
    border-radius: 50%;
    content: "";
    display: block;
    height: clamp(3.15rem, 5vw, 4.625rem);
    margin: 0 auto var(--gap);
    width: clamp(3.15rem, 5vw, 4.625rem);
}

.layer {
    margin: var(--vertical-interspace) auto;
    /* padding-left: var(--side-edge)article__action */
    position: relative;
    text-align: center;
}

@media only screen and (min-width: 60.0625rem) {
    .layer {
        text-align: left;
    }
}

.layer--without-interspace {
    margin: 0 auto;
}

.layer--without-edge {
    padding-left: 0;
    padding-right: 0;
}

.navigation {
    overflow-y: scroll;
    text-align: center;
}

@media only screen and (min-width: 60.0625rem) {
    .navigation {
        overflow: hidden;
    }
}

.navigation__link {
    color: inherit;
    display: block;
    padding: var(--gap-sm) 0;
    text-align: center;
    text-decoration: none;
    transition: font-weight 0.15s ease-in-out;
    font-size: 20px;
    font-weight: 700;
    font-family: var(--font-family);
}

@media only screen and (max-width: _max-width-of-breakpoint-before(37.5rem)) {
    .navigation__link {
        font-size: 1.25rem;
    }
}

@media only screen and (min-width: 60.0625rem) {
    .navigation__link {
        display: inline-block;
        padding: var(--gap) clamp(var(--gap-md), 3vw, var(--gap-xl));
    }
}

.navigation__link:hover {
    /* font-variation-settings: "wght" 450; */
    font-weight: 700;
    text-decoration: none;
    font-family: var(--font-family);
}

.footer {
    margin: var(--vertical-interspace) auto;
    margin-bottom: 0;
    /* padding-left: var(--side-edge);
  padding-right: var(--side-edge); */
}

.footer__panel {
    display: flex;

    gap: var(--gap-xxxxl);
    /* gap: 23rem; */

    text-align: center;
}

.buttondocuments {
    margin-top: 20px;
    margin-bottom: 200px;
}

@media (max-width: 768px) {
    .buttondocuments {
        margin-top: 3px;
        margin-bottom: 130px;
    }
}

.footer__logo H3 {
    color: #00417a;
    text-align: center;
    font-feature-settings: "clig" off, "liga" off;
    font-family: Faustina;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
}

.footer__links a {
    color: rgba(0, 65, 122, 1);
    font-family: var(--font-family);
    font-size: 24px;
    position: relative;
}

.footer__links a::before {
    content: "";
    position: absolute;
    left: -5px;
    top: 7px;
    width: 2px;
    height: 20px;
    background-color: rgba(0, 65, 122, 1);
}

.footer__links a {
    color: rgba(0, 65, 122, 1);
    font-family: var(--font-family);
    font-size: 24px;
    position: relative;
}

.footer__link {
    text-decoration: none;
}

.footer__rental {
    flex-basis: 100%;
}

@media only screen and (min-width: 80.0625rem) {
    .footer__rental {
        flex-basis: auto;
    }
}

.footer__note {
    /* border-top: 1px solid var(--footer-horizontal-rule-color); */
    margin: var(--gap-xxxl) auto;
    /* padding-top: var(--gap-xxxl); */
}

.alert {
    align-items: center;
    display: flex;
    flex-flow: column nowrap;
    height: calc(var(--viewport-height) - var(--vertical-interspace));
    justify-content: center;
    margin: 0 auto;
    padding-left: var(--side-edge);
    padding-right: var(--side-edge);
    text-align: center;
    width: 100%;
}

@media only screen and (min-width: 37.5rem) {
    .alert {
        max-height: 48rem;
        padding-bottom: calc(var(--vertical-interspace) / 2);
        padding-top: calc(var(--vertical-interspace));
    }
}

.alert__message {
    color: inherit;
    font-size: clamp(2.25rem, 5.15vw, 3.125rem);
    margin: 0;
    max-width: 52rem;
    width: 100%;
}

.alert--error {
    background-color: var(--alert-error-background-color);
    color: var(--alert-error-color);
}

.alert--success {
    background-color: var(--alert-success-background-color);
    color: var(--alert-success-color);
}

.anchor {
    content: "";
    display: block;
    height: 6rem;
    margin-top: -6rem;
    opacity: 0;
    position: relative;
    visibility: hidden;
    z-index: -999;
}

.btn-dif {
    width: 90% !important;
    font-size: 15px;
}

.button {
    background-color: rgba(0, 0, 0, 0.05);
    border: 1px solid transparent;
    color: var(--text-color);
    display: inline-block;
    font-variation-settings: "wght" 500;
    font-weight: 500;
    line-height: 1.2;
    max-width: 19.5rem;
    padding: 1.1rem 1.1rem;
    text-align: center;
    transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out,
        color 0.2s ease-in-out;
    width: 100%;
}

.button,
.button:focus,
.button:hover {
    text-decoration: none;
}

.button--primary {
    background-color: var(--button-primary-background-color);
    border-color: var(--button-primary-border-color);
    color: var(--button-primary-color);
}

.button--outline[class*="primary"] {
    color: var(--button-outline-primary-color);
    color: black;
}

.button--primary:focus,
.button--primary:hover {
    background-color: var(--button-primary-focus-background-color);
    border-color: var(--button-primary-focus-border-color);
    color: var(--button-primary-color);
}

.button--inverse {
    background-color: var(--button-inverse-background-color);
    border-color: var(--button-inverse-border-color);
    color: var(--button-inverse-color);
}

.button--outline[class*="inverse"] {
    color: var(--button-outline-inverse-color);
}

.button--inverse:focus,
.button--inverse:hover {
    background-color: var(--button-inverse-focus-background-color);
    border-color: var(--button-inverse-focus-border-color);
    color: var(--button-inverse-color);
}

.button--outline {
    background-color: transparent;
}

.button--long {
    max-width: 20rem;
}

.button--with-pictogram {
    align-items: center;
    display: inline-flex;
    flex-flow: row nowrap;
    gap: 1rem;
}

.button__pictogram {
    flex: 0 1 auto;
}

.cookies {
    align-items: center;
    background-color: var(--cookies-background-color);
    bottom: 0;
    display: none;
    flex-flow: column nowrap;
    gap: var(--gap);
    justify-content: center;
    left: 0;
    padding: var(--gap);
    position: fixed;
    right: 0;
    z-index: 999;
}

@media only screen and (min-width: 60.0625rem) {
    .cookies {
        flex-direction: row;
    }
}

.cookies--open {
    display: flex;
}

.cookies__close,
.cookies__notice {
    height: auto;
    margin: 0 auto;
}

.cookies__notice {
    text-align: center;
}

@media only screen and (min-width: 60.0625rem) {
    .cookies__notice {
        text-align: left;
        width: 60%;
    }
}

.cookies__close {
    max-width: 20rem;
}

.facts {
    background-color: var(--facts-background-color);
    display: flex;
    flex-flow: column nowrap;
}

@media only screen and (min-width: 56rem) {
    .facts {
        flex-direction: row;
    }
}

.facts__item {
    flex: 0 0 33.33%;
}

.facts__item + .facts__item {
    border-top: 1px solid var(--fact-divider-color);
}

@media only screen and (min-width: 56rem) {
    .facts__item + .facts__item {
        border-left: 1px solid var(--fact-divider-color);
        border-top: none;
    }
}

.facts .fact {
    color: var(--fact-text-color);
    display: flex;
    flex-flow: column nowrap;
    padding-inline: 20px;
    padding-block: 20px;
    text-align: justify;
}

@media only screen and (min-width: 56rem) {
    .facts .fact {
        text-align: left;
    }
}

.facts .fact__type {
    color: inherit;
    font-family: var(--font-family);
    font-size: 38px;
    font-weight: 400;
    text-align: center;
    color: white;
    margin-bottom: 1rem;
}

.facts .fact__value {
    margin-inline: 35px;
    color: var(--fact-heading-color);
    font-size: 64px;
    text-align: center;
    font-weight: 590;
    margin-bottom: clamp(var(--gap), 3vw, var(--gap-xxxl));
    white-space: nowrap;
}

.facts .fact__description {
    font-size: 14px;
    color: white;
    text-align: left;
    line-height: 22px;
}

.footnote {
    align-items: center;
    display: flex;
    flex-flow: column nowrap;
    gap: var(--gap-xxl);
    justify-content: space-between;
    text-align: center;
}

@media only screen and (min-width: 60.0625rem) {
    .footnote {
        flex-direction: row;
        text-align: left;
    }
}

.footnote__copyright {
    font-size: 18px;
    font: var(--font-family);
    color: rgba(0, 0, 0, 1);
    font-style: normal;
    font-weight: 400;
}

.footnote__visuals {
    display: block;
    margin: var(--gap) auto 0;
    background-color: transparent;
}

@media only screen and (min-width: 60.0625rem) {
    .footnote__visuals {
        display: inline;
        margin: 0 auto;
        max-width: 100%;
        width: auto;
    }
}

.footnote__socials {
    flex: 0 0 auto;
}

.form {
    color: var(--color-white);
}

/* .form-placeholder{
  color: white !important;
  background-color: transparent;
    border: none;
    border-bottom: 1px solid var(--input-border-color);
    border-radius: 0;
    padding: 1.425rem;
    width: 100%;
} */
.form__select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: calc(100% - 1.375rem)
        url("data:image/svg+xml;utf8,<svg xmlns=%27http://www.w3.org/2000/svg%27 width=%2712%27 height=%2712%27 fill=%27%23F2F2F261%27><polygon points=%270,0 12,0 6,6%27/></svg>")
        no-repeat;
}

.form__input,
.form__select {
    font-size: 20px;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid var(--input-border-color);
    border-radius: 0;
    color: white !important;
    padding: 1.425rem;
    width: 100%;
}

.form__input--checkbox,
.form__select--checkbox {
    font-size: 22px;
    grid-gap: 0.5em;
    cursor: pointer;
    display: grid;
    grid-template-columns: -webkit-min-content auto;
    grid-template-columns: min-content auto;
}

.form__input--checkbox--invalid,
.form__select--checkbox--invalid {
    color: var(--form-error-color) !important;
}

.form__input--auxiliary,
.form__select--auxiliary {
    display: none;
}

.form__select {
    outline: none;
}

.form__select:invalid {
    /* color: var(--input-placeholder-color); */
    color: #fff !important;
}

.form__select option {
    background: var(--color-primary-dark);
    color: var(--color-inverse);
}

.form__select option:first-child,
.form__select option[disabled] {
    display: none;
}

.form__errors {
    list-style: none;
    margin: 0;
    padding: 0;
}

.form__error {
    color: var(--form-error-color);
    display: block;
    font-size: 0.875rem;
    line-height: 2;
}

.checkbox__control {
    align-items: center;
    background-color: var(--input-checkbox-background-color);
    border: none;
    border-radius: 0.275rem;
    color: var(--text-color);
    display: inline-grid;
    height: 1.333rem;
    justify-content: center;
    width: 1.333rem;
}

.checkbox__control svg {
    transform: scale(0);
    transform-origin: bottom left;
    transition: transform 0.1s ease-in 25ms;
    width: 0.875rem;
}

.checkbox__input {
    display: grid;
    grid-template-areas: "checkbox";
}

.checkbox__input > * {
    grid-area: checkbox;
    background-color: #ffff;
}

.checkbox__input input {
    height: 1.333rem;
    opacity: 0;
    width: 1.333rem;
}

.checkbox__input input:checked + .checkbox__control svg {
    transform: scale(1);
}

.checkbox__label {
    color: #91adc6 !important;

    font-size: 18px;
    font-variation-settings: "wght" 500;
    font-weight: 500;
    line-height: 1.5rem;
    text-align: left;
}

.pictograms {
    grid-column-gap: var(--gap);
    grid-row-gap: clamp(var(--gap-xxl), 11vw, var(--gap-xxl) * 3);
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    justify-content: space-between;
    list-style: none;
    margin: 0 auto;
    padding: 0;
}

@media only screen and (min-width: 37.5rem) {
    .pictograms {
        grid-template-columns: repeat(auto-fill, minmax(12.25rem, 1fr));
    }
}

@media only screen and (min-width: 60.0625rem) {
    .pictograms,
    .pictograms--4-in-row {
        grid-template-columns: repeat(3, 1fr);
    }

    .pictograms--3-in-row {
        grid-template-columns: repeat(3, 14rem);
    }
}

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

.pictograms .pictogram__icon {
    align-items: center;
    background-color: var(--body-background-color);
    border-radius: 50%;
    /* box-shadow: 0 0.25rem 1.125rem var(--pictogram-icon-shadow-color); */
    display: flex;
    height: 6.625rem;
    justify-content: center;
    margin: 0 auto var(--gap-lg);
    width: 6.625rem;
}

.pictograms .pictogram__label {
    font-size: 24px;
    font-weight: 400;
    line-height: 31.2px;
    font-family: "Faustina";
    color: var(--pictogram-label-color);
    /* font-size: clamp(var(--font-size), 2.625vw, 1.375rem);  */
}

.shapes {
    background-color: var(--body-background-color);
    margin-left: calc(var(--side-edge) * -1 - 0.375rem);
    margin-right: calc(var(--side-edge) * -1 - 0.375rem);
    overflow: visible;
    position: relative;
}

.shapes--lower-outer,
.shapes--upper-marginal-outer,
.shapes--upper-outer {
    background-color: transparent;
    height: 0;
    left: var(--side-edge);
    position: absolute;
    right: var(--side-edge);
}

.shapes--lower-outer .shapes__canvas,
.shapes--upper-marginal-outer .shapes__canvas,
.shapes--upper-outer .shapes__canvas {
    position: absolute;
}

.shapes--upper-outer {
    top: 0;
}

.shapes--upper-marginal-outer {
    top: calc(var(--vertical-interspace) * -1 + 1px);
}

.shapes--lower-outer {
    bottom: 0;
}

.shapes--lower,
.shapes--lower-outer {
    top: 1px;
    transform: scaleY(-1);
}

.shapes__canvas {
    align-items: baseline;
    bottom: -3px;
    display: flex;
    flex-flow: row nowrap;
    gap: 5%;
    justify-content: space-between;
    position: relative;
    width: 100%;
}

.shapes .triangles {
    display: block;
    height: auto;
    max-width: 35rem;
    -o-object-fit: contain;
    object-fit: contain;
    width: 48%;
    z-index: -1;
}

@media only screen and (min-width: 37.5rem) {
    .shapes .triangles {
        width: 38%;
    }
}

.shapes .triangles:nth-child(2n) {
    transform: scaleX(-1);
}

.shapes .triangles--alpha {
    max-width: clamp(24rem, 30vw, 36rem);
}

.shapes .triangles--beta,
.shapes .triangles--gamma {
    max-width: 28rem;
}

.socials__link {
    display: inline-block;
    height: 2.825rem;
    line-height: 2.375em;
    position: relative;
    text-align: center;
    width: 2.825rem;
}

.socials__link--rhombus:before {
    border: 1px solid var(--color-primary);
    border-radius: 0.625rem;
    content: "";
    display: block;
    height: 2.825rem;
    left: 0;
    position: absolute;
    top: 0;
    transform: matrix(0.71, 0.71, -0.71, 0.71, 0, 0);
    transition: background-color 0.2s;
    width: 2.825rem;
    z-index: -1;
}

.socials__link--rhombus + .socials__link--rhombus {
    margin-left: 1.7438271605rem;
}

.socials__link--rhombus:hover:before {
    background-color: var(--color-primary);
}

.timeline {
    display: flex;
    flex-flow: column nowrap;
    text-align: left;
}

.timeline p {
    font-size: 18px;
    font-weight: 400;
    color: rgba(0, 0, 0, 1);
    line-height: 22px;
    text-align: center;
    font-family: "Faustina", serif;
}

@media (max-width: 768px) {
    .timeline .period {
        padding-left: var(--gap-md) !important;
    }
}

@media only screen and (min-width: 37.5rem) {
    .timeline {
        flex-flow: row wrap;
        height: 28rem;
        position: relative;
    }

    .timeline:after {
        border-bottom: 2px dashed var(--timeline-border-color);
        bottom: 0;
        content: "";
        height: 0;
        left: 0;
        position: absolute;
        right: 0;
        top: calc(50% - 1px);
        z-index: -1;
    }
}

@media only screen and (min-width: 60.0625rem) {
    .timeline {
        flex-wrap: nowrap;
    }
}

.timeline__point {
    border-left: 2px solid var(--color-primary);
    height: 14rem;
}

.timeline__point + .timeline__point {
    border-top: 2px dotted var(--timeline-border-color);
}

@media only screen and (min-width: 37.5rem) {
    .timeline__point {
        flex-basis: 50%;
        position: relative;
    }

    .timeline__point + .timeline__point {
        border-top: none;
    }
}

@media only screen and (min-width: 60.0625rem) {
    .timeline__point {
        flex-basis: 30%;
    }

    .timeline__point:nth-child(2n) {
        top: 50%;
    }
}

.timeline .period {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    padding-left: var(--gap-xl);
    padding-right: var(--gap-xl);
}

.timeline .period__label {
    color: var(--timeline-period-label-color);
    font-size: 48px;
    margin-bottom: 1rem;
    text-align: center;
}

.burger {
    display: flex;
    flex-flow: column nowrap;
    width: 1.875rem;
}

.burger__line {
    background-color: currentColor;
    border-radius: 0.75rem;
    height: 3px;
    margin: 3px 0;
    transition: all 0.2s;
}

.burger__line:first-of-type {
    width: 50%;
}

.burger__line:nth-of-type(2) {
    width: 100%;
}

.burger__line:nth-of-type(3) {
    width: 75%;
}

.burger--activated {
    color: var(--navigation-color);
}

.burger--activated .burger__line:first-of-type {
    transform: rotate(45deg) translate(4px);
    transform-origin: bottom;
    width: 50%;
}

.burger--activated .burger__line:nth-of-type(2) {
    transform: rotate(-45deg);
    transform-origin: top;
    width: 100%;
}

.burger--activated .burger__line:nth-of-type(3) {
    transform: translate(13px, -5px) rotate(45deg);
    transform-origin: bottom;
    width: 50%;
}

.video {
    height: auto;
    padding-bottom: 56.25%;
    position: relative;
    width: 100%;
}

.video--fullheight {
    height: 100%;
}

.video > iframe {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.article {
    align-items: center;
    display: flex;
    flex-flow: column nowrap;
    gap: var(--gap-xxxl);
    justify-content: space-between;
}

@media only screen and (min-width: 60.0625rem) {
    .article {
        flex-direction: row;
    }
}

.article__title {
    align-self: flex-end;
    margin: 0 auto;

    text-align: center;
    font-size:38px ;
}


@media only screen and (max-width: 1300px) and (min-width: 1200px)  {


    .article__title {
        align-self: flex-end;
        margin: 0 auto;

        text-align: center;
        font-size:42px ;
    }

}

/* .about-title-one{
    padding-inline: 20px;
} */

/* .article-description-two{
    padding-inline: 18px !important;
} */

@media (max-width: 768px) {
    .article__title {
        align-self: flex-end;
        margin: 0 auto;

        text-align: center;
        font-size: 30 !important;
    }
}

@media only screen and (min-width: 80.0625rem) {
    .article__title {
        margin: 0 auto var(--gap-xxxl);
        /* max-width: 35rem; */
        font-family: Faustina;
        font-size: 33px;
        font-style: normal;
        font-weight: 600;
        line-height: 130%;
    }
}

@media only screen and (min-width: 60.0625rem) {
    .article__description {
        color: rgba(0, 0, 0, 0.57);
        /* max-width: 28.5rem; */
        font-family: Faustina;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 130%;
    }
}

.article__information {
    margin-top: var(--gap-xxxl);
}

.article__media,
.article__photo {
    height: auto;
    max-width: 41.25rem;
    width: auto;
}

.btt1 a {
    font-size: 18px;
    font-family: Faustina;
    border: 1px solid black;
}

@media only screen and (min-width: 60.0625rem) {
    .article__media,
    .article__photo {
        align-self: flex-start;
        flex: 1 0 50%;
        order: 1;
    }

    .article__media--left,
    .article__photo--left {
        order: 0;
    }
}

.article__media {
    width: min(100%, 45rem);
}

.article__action {
    align-self: flex-start;

    /* padding-left: var(--gap-md); */
}

.article--extended {
    grid-gap: var(--gap-xxxl);
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, auto);
}

@media only screen and (max-width: 600px) {
    .about__title {
        font-size: 3rem;
    }
}

@media only screen and (min-width: 60.0625rem) {
    .article--extended {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, auto);
    }
}

@media only screen and (min-width: 80.0625rem) {
    .article--extended {
        grid-gap: 4.5rem;
    }
}

.article--extended > .article__photo {
    margin: 0 auto;
    max-width: 32.5rem;
}

@media only screen and (min-width: 60.0625rem) {
    .article--extended > .article__photo {
        grid-column: 2 / span 1;
        grid-row: 1 / span 3;
        justify-self: flex-end;
        margin: 0;
    }

    .article--extended > .article__photo--left {
        grid-column: 1 / span 1;
        justify-self: flex-start;
    }
}

.contact {
    background: #00427c;
    background: linear-gradient(
        90deg,
        var(--contact-form-background-color) 50%,
        var(--contact-place-background-color) 50%
    );
}

.contact__shape {
    height: 0;
    overflow: visible;
    position: relative;
    width: 100%;
}

.contact__shape > img {
    bottom: -1px;
    height: auto;
    left: -0.25rem;
    max-width: 42rem;
    position: absolute;
    width: 50%;
    z-index: 5;
}

.contact__container {
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-around;
}

@media only screen and (min-width: 75rem) {
    .contact__container {
        flex-direction: row;
    }
}

.contact__form,
.contact__place {
    flex: 0 0 100%;
    padding: var(--vertical-interspace) var(--side-edge);
}

@media only screen and (min-width: 75rem) {
    .contact__form,
    .contact__place {
        padding: var(--vertical-interspace);
    }
}

.contact__form {
    background-color: var(--contact-form-background-color);
    color: var(--contact-text-color);
    position: relative;
    z-index: 1;
}

@media only screen and (min-width: 60.0625rem) {
    .contact__form {
        flex-basis: 60%;
    }

    .contact__place {
        flex-basis: auto;
    }
}

.contact__subtitle,
.contact__title {
    color: inherit;
}

.contact-bold {
    font-size: 47px;
    font-weight: 400;
    font-family: var(--font-family);
}

.contact__subtitle {
    font-family: var(--font-family);

    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
}

.contact__place {
    background-color: var(--contact-place-background-color);
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
}

.contact .office {
    line-height: 1.5;
    margin: 0 auto;
    text-align: center;
}

.contact .office__title {
    padding-bottom: 30px;

    /* color: var(--color-primary);  */
    color: #00417a;
    text-align: center;
    font-feature-settings: "clig" off, "liga" off;
    font-family: Faustina;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    /* 36.4px */
    text-transform: capitalize;
}

.contact .office__contacts {
    margin: var(--gap-lg) auto;
}

.contact .office__contacts > a {
    display: block;
    text-decoration: none;
    text-align: center;

    font-family: var(--font-family);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    /* 31.2px */
    text-transform: lowercase;
    color: rgba(0, 65, 122, 1) !important;
}

.contact .office__navigation {
    /* border-top: 1px solid var(--locality-place-navigation-border-color);   */
    /* padding-top: var(--gap-lg);
  text-align: center; */
}

.contact .office__contacts {
    border-bottom: 3px solid var(--locality-place-navigation-border-color);

    padding-bottom: var(--gap-lg);
    text-align: center;
}

.email-form__actions,
.email-form__inputs {
    grid-gap: var(--gap-xxl);
    display: grid;
    grid-template-columns: 1fr;
}

@media only screen and (min-width: 60.0625rem) {
    .email-form__inputs {
        grid-row-gap: var(--gap-xl);
        grid-template-columns: repeat(2, 1fr);
    }
}

.email-form__actions {
    align-content: stretch;
    align-items: center;
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    margin-top: var(--gap-xl);
}

@media only screen and (min-width: 60.0625rem) {
    .email-form__actions {
        margin-top: var(--gap-xxxxl);
    }
}

@media only screen and (min-width: 768px) {
    .email-form__actions {
        flex-direction: row;
    }
}

.email-form__condition {
    color: var(--email-form-condition-color);
}

.email-form__condition a {
    color: inherit;
}

.about__title {
    margin: 0 auto;
    /* Center the text */

    color: var(--HB, rgba(0, 0, 0, 0.87));
    text-align: justify;

    font-feature-settings: "clig" off, "liga" off;
    font-family: Faustina;
    font-size: 46px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    /* text-align: center; */
    /* 101.4px */
}


@media(min-width:1400px)
{
    .about__title {
        font-size: 49px;
    }
}
/* .about__title {
  margin: 0 auto var(--gap-xxxl);
  max-width: 50rem;
  font-size: 78px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;

} */
@media only screen and (min-width: 992px) {
    /* .para-apartments{
        padding: 0px !important;
        padding-inline: 44px !important;
    } */
    .aparpments-para2{
        /* padding: 0% !important; */
        /* padding-inline: 31px !important; */
    }
    /* .offices-para1{
        padding-inline: 70px !important;
    } */
}

@media only screen and (min-width: 60.0625rem) {
    .about__title {
        /* margin: 0; */
    }
}

.about__content {
    /* align-items: center;  */
    /* display: flex;  */
    flex-flow: column nowrap;
    /* justify-content: space-between; */
}

@media only screen and (min-width: 60.0625rem) {
    .about__content {
        /* align-items: flex-start;
    flex-direction: row; */
        gap: var(--gap-xxxl);
    }
}

.about__media,
.about__photo {
    order: 0;
}

@media only screen and (min-width: 60.0625rem) {
    .about__media,
    .about__photo {
        order: 3;
    }
}

.about__description {
    margin-block: var(--gap-xxxl);
}

@media only screen and (min-width: 60.0625rem) {
    .about__description {
    }
}

#map {
    top: 0;
    bottom: 0;
    width: 100% !important;
    height: 100vh;
}

@media only screen and (max-width: 768px) {
    .about__description,
    .about__photo {
        max-width: 100%;
        font-size: 18px;
    }
}

.about__description,
.about__photo {
    /* max-width: 55rem; */
    /* color: rgba(0, 0, 0, 0.57); */

    color: rgba(0, 0, 0, 1);
    font-family: Faustina;
    font-size: 18px;
    text-align: justify;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
}

.about__media {
    width: min(100%, 45rem);
}

.benefits {
    text-align: center;
}

.layer-benefits h2 {
    font-size: 40px;
}

.benefits__description {
    margin: 0 auto clamp(var(--gap-xxxl), 6.5vw, var(--gap-xxxxl));
    max-width: 32rem;
    width: 100%;
    font-size: 20px;
}

.gallery {
    margin: 0 auto var(--vertical-interspace);
    padding: 0;
    text-align: center;
}

.gallery__carousel {
    border-bottom: 2px solid var(--gallery-border-color);
    margin: 0 auto;
    max-width: 120rem;
    padding-bottom: var(--vertical-interspace);
    width: 100%;
}

.gallery__photo {
    display: block;
    height: auto;
    transition: all 0.2s ease-in-out;
    width: 100%;
}

.gallery__link {
    cursor: zoom-in;
}

.gallery__control {
    background-color: var(--gallery-control-background-color);
    bottom: -0.6875rem;
    height: 1.325rem;
    max-width: 28rem;
    position: absolute;
    width: 50%;
}

.locality__detail {
    background: var(--color-primary);
    color: var(--color-white);
    display: flex;
    flex-flow: column nowrap;
    margin: auto;
    max-width: 100%;
    padding-left: var(--side-edge);
    padding-right: var(--side-edge);
    text-align: center;
    width: 84.25rem;
}

.div-rel {
    position: relative;
}

.img-abslt {
    position: absolute;
    right: 14px;
}

.img-abslt img {
    width: 700px;
    height: 330px;
}

/* .main-11 .article__title {
    padding-right: 55px !important;
} */

.article__description P {
    /* padding-right: var(--gap-xxl);
    padding-left: var(--gap-md); */
    font-size: 18px;
    font-family: var(--font-family);
    line-height: 22px;

    text-align: justify;
    font-weight: 400;
    color: rgba(0, 0, 0, 1);
    text-align: justify;
}

.article__description .para-two{
    padding:0%;
    /* padding-inline:10px; */
}

/* .article__description a {
    padding-right: 55px !important;
} */

.btn-extra {
    background-color: #00417a;
    color: white;
}

@media (max-width: 768px) {
    .article__description P {
        padding-right: 0px !important;
        font-size: 18px;
    }

    .main-11 .article__title {
        padding-right: 0px !important;
    }

    .footer__logo {
        display: inline-block;
        padding-left: 0px;
    }

    .button {
        width: 100%;
    }
}

@media only screen and (min-width: 992px) {
    .img-abslt img {
        width: 700px;
        height: 330px;
    }

    .img-abslt {
        position: absolute;
        right: 14px;
        top: 12px;
    }
}

@media only screen and (min-width: 762px) {
    .img-abslt {
        position: static;
    }

    .div-rel {
        position: static;
    }
}

@media only screen and (max-width: 992px) {
    .img-abslt {
        position: static;
    }
}

@media screen and (max-width: 576px) {
    .img-abslt {
        position: static;
        display: none;
    }
}

@media only screen and (min-width: 60.0625rem) {
    .locality__detail {
        background: transparent;
        flex-direction: row;
        padding: 0;
        text-align: left;
    }
}

.locality__view {
    display: block;
    position: relative;
    width: 100%;
    z-index: 1;
}

.locality__view:after {
    background: #fff;
    background: linear-gradient(180deg, #fff 65%, #00427c 0);
    bottom: 0;
    content: "";
    left: calc(var(--side-edge) * -1);
    position: absolute;
    right: calc(var(--side-edge) * -1);
    top: 0;
    z-index: -1;
}

.locality__view > img {
    height: auto;
    width: 100%;
}

@media only screen and (min-width: 60.0625rem) {
    .locality__view {
        flex: 1 0 50%;
        order: 2;
    }

    .locality__view:after {
        display: none;
    }

    .locality__view > img {
        width: 40rem;
    }
}

@media only screen and (min-width: 80.0625rem) {
    .locality__view {
        flex-basis: 52%;
        margin-left: -7rem;
    }

    .locality__view > img {
        width: 100%;
    }
}

.locality__information {
    background: var(--locality-information-background-color);
}

.locality__title {
    /* color: inherit;  */
    color: white !important;
}

.locality__description {
    /* font-size: clamp(82.5%, 4.5vw, 1.125rem);   */
    font-size: 18px;
    font-family: "Faustina", serif;
    line-height: 22.4px;
    font-weight: 400;
    color: white;
    text-align: justify;
    /* width: 89%;  */
}

.bt-clr {
    font-size: 22px;
    color: black;
}

.locality__map {
    display: block;
    margin-top: -5rem;
    position: relative;
    z-index: -1;
}

.service {
    background-color: var(--services-background-color);
    display: flex;
    flex-flow: column nowrap;
}

.service__benefits,
.service__cta,
.service__detail {
    margin: var(--vertical-interspace) 0;
}

.rental {
    background-color: var(--services-background-color);
}

.renttl__items {
    gap: 50px;
}

.renttl2__items {
    gap: 320px;
}

.ren-1 {
    background-color: #f5f5f5;
}

.rental__items {
    display: flex;
    flex-flow: column nowrap;
    gap: var(--vertical-interspace);

    margin: 0px auto;

    padding: var(--vertical-interspace) 0;
    padding-bottom: 0;
}

.baguetteBox-button {
    border-radius: 0;
    color: var(--baguette-button-color);
}

.baguetteBox-button:focus,
.baguetteBox-button:hover {
    background-color: transparent;
}

.baguetteBox-button svg g {
    stroke: var(--baguette-button-color);
}

.baguetteBox-button#close-button {
    height: 3rem;
    width: 3rem;
}

.baguetteBox-button#close-button svg {
    left: 18%;
    top: 18%;
}

.baguetteBox-button#close-button:focus,
.baguetteBox-button#close-button:hover {
    background-color: var(--baguette-button-background-color);
}

.baguetteBox-button#close-button:focus svg g,
.baguetteBox-button#close-button:hover svg g {
    stroke: var(--baguette-button-color);
}

.glide {
    box-sizing: border-box;
    position: relative;
    width: 100%;
}

.glide * {
    box-sizing: inherit;
}

.glide__slides,
.glide__track {
    overflow: hidden;
}

.glide__slides {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    display: flex;
    flex-wrap: nowrap;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    touch-action: pan-Y;
    transform-style: preserve-3d;
    white-space: nowrap;
    width: 100%;
    will-change: transform;
}

.glide__slide,
.glide__slides--dragging {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.glide__slide {
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
    flex-shrink: 0;
    height: 100%;
    white-space: normal;
    width: 100%;
}

.glide__slide a {
    -webkit-user-drag: none;
    -webkit-user-select: none;
    user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.glide__arrows,
.glide__bullets {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.glide--rtl {
    direction: rtl;
}

.glide__arrows {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
}

.glide__arrow {
    background-color: transparent;
    background-position: 50%;
    background-repeat: no-repeat;
    border: none;
    height: 1.375rem;
    line-height: 1;
    padding: 0 2rem;
    width: 2.5rem;
}

.glide__arrow--left {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='39.33' height='21.574'%3E%3Cpath d='m10.786 21.574 1.752-1.752-7.8-7.8H39.33V9.544H4.742l7.8-7.8L10.79-.008 0 10.787z' fill='%23b9b9b9'/%3E%3C/svg%3E");
}

.glide__arrow--right {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='39.33' height='21.574'%3E%3Cpath d='m28.544 0-1.752 1.752 7.8 7.8H0v2.478h34.588l-7.8 7.8 1.752 1.752 10.79-10.795z' fill='%2300427c'/%3E%3C/svg%3E");
}

.glide__arrow--inverse-left {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='39.33' height='21.574'%3E%3Cpath d='m10.786 21.574 1.752-1.752-7.8-7.8H39.33V9.544H4.742l7.8-7.8L10.79-.008 0 10.787z' fill='%23b9b9b9'/%3E%3C/svg%3E");
}

.glide__arrow--inverse-right {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='39.33' height='21.574'%3E%3Cpath d='m28.544 0-1.752 1.752 7.8 7.8H0v2.478h34.588l-7.8 7.8 1.752 1.752 10.79-10.795z' fill='%2300427c'/%3E%3C/svg%3E");
}

.fluid-width {
    height: auto;
    max-width: 100%;
    width: 100%;
}

.fluid-height {
    height: 100%;
    max-height: 100%;
    width: auto;
}

@media (max-width: 992px) {
    .about__title {
        margin: 0 auto;
        /* Center the text */

        color: var(--HB, rgba(0, 0, 0, 0.87));
        text-align: center;

        max-width: 100%;
        font-feature-settings: "clig" off, "liga" off;
        font-family: Faustina;
        font-size: 47px;
        font-style: normal;
        font-weight: 600;
        line-height: 130%;
        /* 101.4px */
    }
}

@media (max-width: 768px) {
    .about__title {
        color: var(--HB, rgba(0, 0, 0, 0.87));

        max-width: 100%;
        font-feature-settings: "clig" off, "liga" off;
        font-family: Faustina;
        font-size: 47px;
        font-style: normal;
        font-weight: 600;
        line-height: 130%;
        /* 101.4px */
    }
}

@media (max-width: 554px) {
    .about__description {
        text-align: center;
    }

    .about__title {
        color: var(--HB, rgba(0, 0, 0, 0.87));
        text-align: center;

        max-width: 100%;
        font-feature-settings: "clig" off, "liga" off;
        font-family: Faustina;
        font-size: 32px;
        font-style: normal;
        font-weight: 600;
        line-height: 130%;
        /* 101.4px */
    }
}

@media (min-width: 768px) {
    .locality__information {
        height: 270px;
    }

    .localbannerstartsecond img {
        height: 270px;
    }

    .localbannerstart {
        position: relative;
        height: 70vh;
    }

    /* .localbannerstartfirst{
    position: absolute;
    top: 100px;
  }
  .localbannerstartsecond{
    position: absolute;
   right: 30px;
  } */
}

/* Service Page Start  */
.serviceparagraphh p {
    color: var(--MB, rgba(0, 0, 0, 1));

    font-family: var(--font-family);
    font-size: 18px;
    font-style: normal;

    text-align: justify;
    font-weight: 400;
    line-height: 130%;
    /* 23.4px */
}

/*##############> Slick Slider Start <########### */

.alider img {
    width: 100%;
    height: 295px;
    padding: 5px;
    cursor: pointer;
}

.aboutimgslider img {
    border-radius: 30px !important;
}

.slick-dots {
    text-align: center;
    margin: 0 0 10px 0;
    padding: 0;

    li {
        display: inline-block;
        margin-left: 4px;
        margin-right: 4px;

        &.slick-active {
            button {
                background-color: #00417a;
            }
        }

        button {
            font: 0/0 a;
            text-shadow: none;
            color: transparent;
            background-color: #999;
            border: none;
            width: 15px;
            height: 15px;
            border-radius: 50%;
        }

        :hover {
            background-color: black;
        }
    }
}

/* Custom Arrow */
.prev {
    color: #999;
    position: absolute;
    top: 38%;
    left: -2em;
    font-size: 1.5em;

    :hover {
        cursor: pointer;
        color: black;
    }
}

.next {
    color: #999;
    position: absolute;
    top: 38%;
    right: -2em;
    font-size: 1.5em;

    :hover {
        cursor: pointer;
        color: black;
    }
}

@media screen and (max-width: 800px) {
    .next {
        display: none !important;
    }
}

.slick-dots li &.slick-active button {
    background-color: #00417a !important;
}

.slick-list {
    background-color: black;
}

/* ajhsdkfsh */

#fullScreenOverlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    z-index: 10000000 !important;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

#fullScreenImage {
    max-width: 100%;
    max-height: 100%;
}

.closeButton {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}

.mapboxgl-ctrl {
    display: none !important;
}

/*##############> Slick Slider End <########### */

.popup-success {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #28a745;
    color: white;
    padding: 30px;
    border-radius: 12px;
    z-index: 9999;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    font-family: "Arial", sans-serif;
    text-align: center;
    width: 80%;
    max-width: 400px;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.popup-success h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.popup-success p {
    font-size: 16px;
    margin-bottom: 20px;
}

.popup-success button {
    margin-top: 10px;
    background-color: #6c757d;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

/* .popup-success button:hover {
            background-color: #5a6268;
        } */

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 9998;
    display: none;
    transition: opacity 0.3s ease-in-out;
}

.popup-overlay.show {
    display: block;
    opacity: 1;
}

/* .offices-par2{
    padding-inline: 74px !important;
} */

@media (min-width: 1440px) {
    /* .Container-narrow1st .about__content {
        padding-inline: 100px;
    } */

    /* .article__action {
        padding-inline: 89px;
    } */
    .para-apartments{
        padding-left: 0% !important;
        padding-right: 0% !important;
    }

    .para-one{
        margin-top: -30px !important;
        /* padding-inline: 88px !important; */
    }
    /* .article__description .para-two{
        padding-inline:42px ;
    } */
    /* .article-btt2{
        padding-inline: 42px !important;
    } */
    .para-apartments{
        padding-inline: 30px !important;
    }
    /* .aparpments-para2{
        padding-inline: 78px !important;
    } */
    /* .serviceparagraphh p{
        padding-inline: 75px !important;
    } */
    .offices-par2{
        padding-inline: 46px !important ;
    }
    /* .article-description-two{
        padding-inline: 68px !important;
    } */
    /* .article-description-one{
        padding-inline:60px !important;
    } */
    .offices-para1{
        /* padding-inline:20px !important; */
        margin-top: -20px !important;
    }
}


@media (max-width: 1920px) {
    .footer-last-container {
        font-size: 9px;
        padding-inline: 13px;
    }

}

.offices-img2{
    margin-top: -47px;
}
.offices-img1{
    margin-top: 60px !important;
}
.about-img3{
    margin-top: 55px !important;
}

.about-secondrow{
    margin-top: -33px !important;
}


@media(max-width:1100px)
{
    .article__title{
        font-size: 35px;
    }
}
