/*! ------------------------------------------------
 * Project Name: Ad Hocratia - Coming Soon
 * Project Description: Ad Hocratia - Coming Soon page
 * Tags: 
 * Version: 1.0.0
 * Build Date: December 2024
 * Last Update: December 2024
 * Author: Amenofisc / 16th Ventures
 * File name: main.css
 * ------------------------------------------------
 *
 * ------------------------------------------------
 * Table of Contents
 * ------------------------------------------------
 *  1. Template Backgrounds
 *  2. Fonts
 *  3. Base CSS Styles
 *  4. Animated Headline
 *  5. Loading Animation
 *  6. Typography
 *  7. Buttons & Triggers
 *  8. Forms and Forms Reply Groups
 *  9. Animated Backgrounds
 *  10. Main Section
 *  11. Menu Styles
 *  12. Socials Styles
 *  13. Countdown Styles
 *  14. Popup Dialogs
 *  15. Content Sections
 *  16. Features
 *  17. Google Map
 *  18. Gallery Custom Styles
 * ------------------------------------------------
 * Table of Contents End
 * ------------------------------------------------ */

/* ------------------------------------------------*/
/* Template Backgrounds Start */
/* ------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat: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");
.media-mono-02 {
    /* background-image: url("https://dummyimage.com/1600x1200/3d3d3d/7a7a7a"); */
    background-image: url("../img/adh-bg.jpeg");
}
/* ------------------------------------------------*/
/* Template Backgrounds End */
/* ------------------------------------------------*/

/* ------------------------------------------------*/
/* Fonts Start */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Fonts End */
/* ------------------------------------------------*/

/* ------------------------------------------------*/
/* Base CSS Styles Start */
/* ------------------------------------------------*/
*, *::before, *::after {
    box-sizing: border-box;
}
button:active, button:focus {
    outline: none !important;
}
::selection {
    background-color: #adafaf;
    color: #fff;
    text-shadow: none;
}
html {
    font-family: sans-serif;
    font-size: 62.5%;
}
html,
body {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
body {
    position: relative;
    min-width: 320px;
    overflow-x: hidden !important;
    font: normal 400 1.4rem/1.7 "Montserrat", sans-serif;
    background-color: #fff;
    color: #313637;
}
section {
    position: relative;
    min-width: 320px;
}
a {
    text-decoration: none;
    outline: 0;
    color: #313637;
    transition: color 0.3s ease-in-out;
}
a.light {
    color: #fff;
}
.no-touch a:hover {
    color: #6f7273;
}
.no-touch a:hover.light {
    color: #b3b3b3;
}
a:hover,
a:active,
a:focus {
    outline: 0;
}
img {
    display: block;
    width: 100%;
    height: auto;
}
.overflow-hidden {
    overflow: hidden !important;
}
.fullheight {
    position: static;
    height: auto;
}
@media only screen and (min-width: 1200px) {
    .fullheight {
        position: relative;
        height: 100%;
    }
}
.fullheight-mobile {
    position: relative;
    height: 100%;
}
.color-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.color-layer-medium {
    background-color: rgba(0, 0, 0, 0.6);
}
.color-layer-dark {
    background-color: rgba(0, 0, 0, 0.8);
}
.bg-light {
    background-color: #fff;
}
.bg-medium {
    background-color: #e6e6e6;
}
.bg-dark {
    background-color: #313637;
}
/* ------------------------------------------------*/
/* Base CSS Styles End */
/* ------------------------------------------------*/

/* ------------------------------------------------*/
/* Loading Animation Start */
/* ------------------------------------------------*/
.section-main .headline__subtitle,
.section-main .headline__title {
    opacity: 0;
    transform: translateZ(0);
    transform: translateY(-50px);
    transition: opacity 0.3s, transform 0.3s;
}
.section-main .headline__description,
.section-main .headline__btnholder {
    opacity: 0;
    transform: translateZ(0);
    transform: translateY(50px);
    transition: opacity 0.3s, transform 0.3s;
}
.section-main .intro__header .logo,
.section-main .intro__header .menu-trigger {
    opacity: 0;
    transition: opacity 1s;
}
.section-main .intro__countdown {
    opacity: 0;
    transition: opacity 1s;
}
.section-main .intro__copyright {
    opacity: 0;
    transition: opacity 1s;
}
.section-main .aside__content {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.section-main .aside__content.animate-out {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
.section-main .aside__socials {
    opacity: 0;
    transition: opacity 1s;
}
.section-main.loaded .headline__subtitle,
.section-main.loaded .headline__title,
.section-main.loaded .headline__description,
.section-main.loaded .headline__btnholder {
    opacity: 1;
    transform: translateY(0);
}
.section-main.loaded .headline__subtitle {
    transition: transform 0.6s 0s, opacity 0.6s 0s;
}
.section-main.loaded .headline__title {
    transition: transform 0.6s 0s, opacity 0.6s 0s;
}
.section-main.loaded .headline__description {
    transition: transform 0.6s 0s, opacity 0.6s 0s;
}
.section-main.loaded .headline__btnholder {
    transition: transform 0.6s 0s, opacity 0.6s 0s, background-color 0.3s, color 0.3s;
}
.section-main.loaded .intro__header .logo,
.section-main.loaded .intro__header .menu-trigger {
    opacity: 1;
}
.section-main.loaded .intro__countdown {
    opacity: 1;
}
.section-main.loaded .intro__copyright {
    opacity: 1;
}
.section-main.loaded .aside__content {
    opacity: 1;
}
.section-main.loaded .aside__content.animate-out {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
.section-main.loaded .aside__socials {
    opacity: 1;
}
@media only screen and (min-width: 1200px) {
    .section-main .menu {
        opacity: 0;
        transition: opacity 1s;
    }
    .section-main.loaded .menu {
        opacity: 1;
    }
}
/* ------------------------------------------------*/
/* Loading Animation End */
/* ------------------------------------------------*/

/* ------------------------------------------------*/
/* Animated Headline Start */
/* ------------------------------------------------*/
.words-wrapper {
    display: inline-block;
    position: relative;
    text-align: left;
}
.words-wrapper b {
    display: inline-block;
    position: absolute;
    white-space: nowrap;
    left: 0;
    top: 0;
}
.words-wrapper b.is-visible {
    position: relative;
}
.no-js .words-wrapper b {
    opacity: 0;
}
.no-js .words-wrapper b.is-visible {
    opacity: 1;
}
.clip span {
    display: inline-block;
}
.clip .words-wrapper {
    overflow: hidden;
    vertical-align: top;
    padding-right: 10px;
}
.clip .words-wrapper::after {
    content: "";
    position: absolute;
    top: 10%;
    right: 0;
    width: 6px;
    height: 80%;
    border-radius: 1px;
    background-color: #5a5e5f;
}
.clip b {
    opacity: 0;
}
.clip b.is-visible {
    opacity: 1;
}
@media only screen and (min-width: 1400px) {
    .clip .words-wrapper {
        padding-right: 14px;
    }
    .clip .words-wrapper::after {
        width: 8px;
    }
}
/* ------------------------------------------------*/
/* Animated Headline End */
/* ------------------------------------------------*/

/* ------------------------------------------------*/
/* Typography Start */
/* ------------------------------------------------*/
h1 {
    font: normal 700 4rem/1.2 "Montserrat", sans-serif;
    letter-spacing: -0.1rem;
    color: #fff;
}
@media only screen and (min-width: 768px) {
    h1 {
        font-size: 9rem;
    }
}
@media only screen and (min-width: 1400px) {
    h1 {
        font-size: 13rem;
    }
}
.headline__subtitle {
    font: normal 400 1.6rem/1.2 "Montserrat", sans-serif;
    color: #fff;
    padding-left: 0.2rem;
}
@media only screen and (min-width: 768px) {
    .headline__subtitle {
        font-size: 2.4rem;
        margin-bottom: -0.6rem;
    }
}
@media only screen and (min-width: 1200px) {
    .headline__subtitle {
        margin-top: 2rem;
    }
}
@media only screen and (min-width: 1400px) {
    .headline__subtitle {
        font-size: 3rem;
    }
}
.headline__description {
    font: normal 400 1.4rem/1.7 "Montserrat", sans-serif;
    color: #fff;
    padding-left: 0.2rem;
    max-width: 500px;
    margin-top: 2.4rem;
}
@media only screen and (min-width: 768px) {
    .headline__description {
        font-size: 1.6rem;
        margin-top: 1.6rem;
    }
}
@media only screen and (min-width: 1400px) {
    .headline__description {
        max-width: 610px;
        font-size: 2rem;
    }
}
.headline__btnholder {
    margin-top: 3.6rem;
}
@media only screen and (min-width: 768px) {
    .headline__btnholder {
        margin-top: 3.8rem;
    }
}
@media only screen and (min-width: 1400px) {
    .headline__btnholder {
        margin-top: 4.6rem;
    }
}
h2 {
    position: relative;
    display: inline-block;
    font: normal 700 5rem/1 "Montserrat", sans-serif;
    letter-spacing: -0.14rem;
    color: #adafaf;
    padding-bottom: 0.4rem;
}
h2::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: -3rem;
    width: calc(100% + 3rem);
    height: 6px;
    background-color: #6f7273;
    border-radius: 1px;
}
@media only screen and (min-width: 768px) {
    h2 {
        font-size: 8.6rem;
    }
    h2::after {
        left: -5rem;
        width: calc(100% + 5rem);
    }
}
@media only screen and (min-width: 1400px) {
    h2 {
        font-size: 12rem;
    }
    h2::after {
        left: -6rem;
        width: calc(100% + 6rem);
    }
}
h3 {
    font: normal 700 1.6rem/1.4 "Montserrat", sans-serif;
    text-transform: uppercase;
    color: #1d2021;
    margin-bottom: 1.8rem;
}
h3.light {
    color: #fff;
}
@media only screen and (min-width: 1400px) {
    h3 {
        font-size: 2rem;
    }
}
h4 {
    font: normal 700 1.5rem/1.2 "Montserrat", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #313637;
}
h4.light {
    color: #fff;
}
h4 small {
    display: block;
    margin-top: 0.2rem;
    font: italic 400 1.3rem/1.2 "Montserrat", sans-serif;
    text-transform: none;
}
@media only screen and (min-width: 1400px) {
    h4 {
        font-size: 1.9rem;
    }
    h4 small {
        font-size: 1.4rem;
    }
}
p {
    font: normal 400 1.6rem/1.7 "Montserrat", sans-serif;
    color: #313637;
}
p.light {
    color: #fff;
}
p.copyright {
    font: normal 500 1.1rem/1 "Montserrat", sans-serif;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.03em;
}
p.copyright a {
    color: #fff;
    transition: color 0.3s ease-in-out;
}
.no-touch p.copyright a:hover {
    color: rgba(255, 255, 255, 0.6);
}
.inner__text {
    font: normal 500 1.6rem/1.7 "Montserrat", sans-serif;
    margin-top: 3rem;
    padding-left: 2px;
}
.inner__text span {
    font-weight: 700;
    white-space: nowrap;
}
@media only screen and (min-width: 1400px) {
    .inner__text {
        font-size: 2rem;
    }
}
.aside__title {
    font: normal 700 2rem/1.4 "Montserrat", sans-serif;
    color: #fff;
    max-width: 500px;
    margin-bottom: 2.4rem;
}
@media only screen and (min-width: 1400px) {
    .aside__title {
        font-size: 2.6rem;
    }
}
.aside__text {
    font: normal 400 1.4rem/1.7 "Montserrat", sans-serif;
    color: #fff;
    max-width: 500px;
    margin-bottom: 3.2rem;
}
@media only screen and (min-width: 1400px) {
    .aside__text {
        font-size: 1.6rem;
        margin-bottom: 3.4rem;
    }
}
blockquote {
    position: relative;
    text-align: center;
}
blockquote i {
    display: block;
    font-size: 3rem;
    line-height: 1.2;
    color: #313637;
    margin: 0 auto 3.6rem;
}
blockquote i.light {
    color: #fff;
}
blockquote p {
    font: italic 500 2rem/1.4 "Montserrat", sans-serif;
    color: #1d2021;
    margin-bottom: 3rem;
}
blockquote p.light {
    color: #fff;
}
blockquote cite {
    font: normal 400 1.4rem/1.2 "Montserrat", sans-serif;
    color: rgba(49, 54, 55, 0.8);
}
blockquote cite.light {
    color: rgba(255, 255, 255, 0.8);
}
blockquote cite span {
    display: block;
}
@media only screen and (min-width: 768px) {
    blockquote p {
        max-width: 560px;
        margin: 0 auto 3rem;
    }
}
@media only screen and (min-width: 1400px) {
    blockquote p {
        max-width: 760px;
        font-size: 3rem;
    }
}
.popup__title {
    font: normal 700 2.6rem/1.4 "Montserrat", sans-serif;
    color: #313637;
    margin-bottom: 2rem;
}
.popup__title.light {
    color: #fff;
}
@media only screen and (min-width: 1200px) {
    .popup__title {
        font-size: 2rem;
    }
}
@media only screen and (min-width: 1400px) {
    .popup__title {
        font-size: 2.6rem;
    }
}
.popup__subtitle {
    font: normal 400 1.6rem/1.7 "Montserrat", sans-serif;
    color: #313637;
}
.popup__subtitle.light {
    color: #fff;
}
@media only screen and (min-width: 1400px) {
    .popup__subtitle {
        font-size: 1.6rem;
    }
}
/* ------------------------------------------------*/
/* Typography End */
/* ------------------------------------------------*/

/* ------------------------------------------------*/
/* Buttons & Triggers Start */
/* ------------------------------------------------*/
.menu-trigger {
    display: block;
    position: absolute;
    top: 0;
    right: 3rem;
    width: 46px;
    height: 46px;
    border: 1px solid #fff;
    border-radius: 4px;
}
.menu-trigger i {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    bottom: auto;
    right: auto;
    transform: translateX(-50%) translateY(-50%);
    color: #fff;
    font-size: 2rem;
}
@media only screen and (min-width: 768px) {
    .menu-trigger {
        right: 5rem;
    }
}
@media only screen and (min-width: 1200px) {
    .menu-trigger {
        display: none;
    }
}
.menu-close {
    display: inline-block;
    position: relative;
    width: 46px;
    height: 46px;
    border: 2px solid gray;
    border-radius: 4px;
}
.menu-close i {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    bottom: auto;
    right: auto;
    transform: translateX(-50%) translateY(-50%);
    color: #b3b3b3;
    font-size: 1.8rem;
}
.section-close {
    transform: scale(0);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    user-select: none;
}
.section-close.is-scaled-up {
    transform: scale(1);
}
.button {
    position: relative;
    display: inline-block;
    border: none;
    outline: none;
    background-color: transparent;
    padding: 1.2rem 3.2rem;
    font: normal 700 1.4rem/1.7 "Montserrat", sans-serif;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease-in-out;
}
@media only screen and (min-width: 768px) {
    .button {
        padding: 1.4rem 3.2rem;
    }
}
@media only screen and (min-width: 1400px) {
    .button {
        padding: 1.6rem 3.8rem;
        font-size: 1.4rem;
    }
}
.button-square {
    position: relative;
    display: block;
    border: none;
    outline: none;
    width: 46px;
    height: 46px;
    background-color: transparent;
    border-radius: 4px;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease-in-out;
}
.button-square.is-scaled-up {
    transform: scale(1);
}
.button-square i {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    bottom: auto;
    right: auto;
    transform: translateX(-50%) translateY(-50%);
    font-size: 1.8rem;
}
.button-solid-light {
    background-color: #adafaf;
    border: 2px solid #adafaf;
    color: #191b1c;
}
.no-touch .button-solid-light:hover {
  background-color: #6f7273;
  border: 2px solid #6f7273;
}
.button-solid-dark {
    background-color: #313637;
    border: 2px solid #313637;
    color: #fff;
}
.no-touch .button-solid-dark:hover {
    background-color: transparent;
    border: 2px solid #adafaf;
    color: #313637;
}
.button-outline-light {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}
.no-touch .button-outline-light:hover {
    background-color: #b3b3b3;
    border: 2px solid #b3b3b3;
    color: #313637;
}
.button-outline-dark {
    background-color: transparent;
    color: #313637;
    border: 2px solid #313637;
}
.no-touch .button-outline-dark:hover {
    background-color: #313637;
    border: 2px solid #313637;
    color: #fff;
}
.button-outline-dark.transparent {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.3);
}
.no-touch .button-outline-dark.transparent:hover {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}
/* ------------------------------------------------*/
/* Buttons & Triggers End */
/* ------------------------------------------------*/

/* ------------------------------------------------*/
/* Forms and Forms Reply Groups Start */
/* ------------------------------------------------*/
.form-container {
    position: relative;
}
@media only screen and (min-width: 1200px) {
    .notify .form-container {
        max-width: 610px;
    }
}
.form {
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}
.form.is-hidden {
    opacity: 0;
}
form {
    position: relative;
    width: 100%;
}
form input, form textarea {
    position: relative;
    display: block;
    width: 100%;
    border: none;
    outline: none;
    margin: 0;
    padding: 0;
    background-color: transparent;
    padding: 1.4rem 0.3rem;
    font: normal 500 1.6rem/1.7 "Montserrat", sans-serif;
    transition: border-bottom 0.3s;
}
form input {
    height: 4.4rem;
    margin: 0 0 2.4rem 0;
}
form input.margin-s {
    margin: 0 0 0.8rem 0;
}
@media only screen and (min-width: 1400px) {
    form input {
        height: 5rem;
    }
}
form textarea {
    height: 14rem;
    resize: none;
    margin: 0 0 0.8rem 0;
}
form .inputs-description {
    display: block;
    width: 100%;
    margin-bottom: 1.2rem;
    text-align: right;
    font: normal 400 1.2rem/1 "Montserrat", sans-serif;
}
.form-dark input:focus:required:invalid,
.form-dark textarea:focus:required:invalid {
    color: #313637;
}
.form-dark input:required:valid,
.form-dark textarea:required:valid {
    color: #313637;
}
.form-dark input, .form-dark textarea {
    border-bottom: 1px solid #313637;
    color: #313637;
}
.form-dark input:focus, .form-dark textarea:focus {
    border-bottom: 1px solid #5a5e5f;
}
.form-dark .inputs-description {
    color: #5a5e5f;
}
.form-light input:focus:required:invalid,
.form-light textarea:focus:required:invalid {
    color: #fff;
}
.form-light input:required:valid,
.form-light textarea:required:valid {
    color: #fff;
}
.form-light input, .form-light textarea {
    border-bottom: 1px solid #b3b3b3;
    color: #fff;
}
.form-light input:focus, .form-light textarea:focus {
    border-bottom: 1px solid #fff;
}
.form-light .inputs-description {
    color: #b3b3b3;
}
.reply-group {
    position: absolute;
    left: 50%;
    top: 50%;
    bottom: auto;
    right: auto;
    transform: translateX(-50%) translateY(-50%);
    width: 100%;
    max-width: 300px;
    padding: 0 15px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
.reply-group.is-visible {
    opacity: 1;
}
.notify .reply-group {
    left: 0;
    top: 0;
    bottom: auto;
    right: auto;
    transform: translateX(0) translateY(0);
    text-align: left;
    max-width: none;
}
.reply-group__icon {
    display: block;
    margin: 0 auto 13px;
    font-size: 4rem;
    color: #838687;
}
.reply-group__title {
    font: normal 700 2rem/1.7 "Montserrat", sans-serif;
    color: #313637;
    margin-bottom: 7px;
}
.reply-group__title.light {
    color: #fff;
}
.reply-group__text {
    display: block;
    font: normal 400 1.4rem/1.7 "Montserrat", sans-serif;
    color: #313637;
}
.reply-group__text.light {
    color: #fff;
}
@media only screen and (min-width: 1400px) {
    .reply-group__text {
        font-size: 1.6rem;
    }
}
/* ------------------------------------------------*/
/* Forms and Forms Reply Groups End */
/* ------------------------------------------------*/

/* ------------------------------------------------*/
/* Main Section Styles Start */
/* ------------------------------------------------*/
.section-main {
    position: relative;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    background-color: #6f7273;
}
@media only screen and (min-width: 1200px) {
    .section-main {
        overflow: hidden;
    }
}
.section-main__intro {
    position: relative;
    width: 100%;
    background-color: #313637;
    z-index: 3;
    transform: translateZ(0);
    transform: scale(1);
    transition: transform 0.3s ease-in-out;
}
@media only screen and (min-width: 768px) {
    .section-main__intro {
        padding-bottom: 78px;
    }
}
@media only screen and (min-width: 1200px) {
    .section-main__intro {
        width: 75%;
        height: 100%;
        min-height: 568px;
        padding-bottom: 0;
    }
}
.section-main__intro.is-scaled-down {
    transform: scale(1);
}
@media only screen and (min-width: 1200px) {
    .section-main__intro.is-scaled-down {
        transform: scale(0.92);
    }
}
.section-main__aside {
    position: relative;
    width: 100%;
    background-color: #fff;
    padding: 3rem 0;
}
@media only screen and (min-width: 1200px) {
    .section-main__aside {
        position: fixed;
        top: 0;
        right: 0;
        width: 25%;
        height: 100%;
        min-height: 568px;
        z-index: 10;
    }
}
@media only screen and (min-width: 1400px) {
    .section-main__aside {
        padding: 4rem 0;
    }
}
.intro__media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.media__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.intro__header {
    position: relative;
    margin-top: 3rem;
    padding: 0 3rem;
}
.intro__header .logo img {
    width: auto;
}
@media only screen and (min-width: 768px) {
    .intro__header {
        padding: 0 5rem;
    }
}
@media only screen and (min-width: 1400px) {
    .intro__header {
        margin-top: 4rem;
        padding: 0 6rem;
    }
}
.intro__headline {
    position: relative;
    padding: 12rem 3rem;
}
@media only screen and (min-width: 768px) {
    .intro__headline {
        padding: 12rem 5rem;
    }
}
@media only screen and (min-width: 1200px) {
    .intro__headline {
        position: absolute;
        left: 0;
        top: 50%;
        bottom: auto;
        transform: translateY(-50%);
        width: 100%;
        padding: 0 5rem;
    }
}
@media only screen and (min-width: 1400px) {
    .intro__headline {
        padding: 0 6rem;
    }
}
.intro__countdown {
    position: relative;
    width: 100%;
    padding: 0 3rem 3rem 3rem;
}
@media only screen and (min-width: 768px) {
    .intro__countdown {
        position: absolute;
        bottom: 3rem;
        left: 0;
        width: auto;
        padding: 0 5rem;
    }
}
@media only screen and (min-width: 1200px) {
    .intro__countdown {
        padding: 0 5rem;
    }
}
@media only screen and (min-width: 1400px) {
    .intro__countdown {
        bottom: 4rem;
        padding: 0 6rem;
    }
}
.intro__copyright {
    display: none;
    position: relative;
    width: 100%;
    padding: 0 3rem;
}
@media only screen and (min-width: 768px) {
    .intro__copyright {
        display: block;
        position: absolute;
        right: 0;
        bottom: 3rem;
        width: auto;
        padding: 0 5rem;
    }
}
@media only screen and (min-width: 1200px) {
    .intro__copyright {
        padding: 0 5rem;
    }
}
@media only screen and (min-width: 1400px) {
    .intro__copyright {
        bottom: 4rem;
        padding: 0 6rem;
    }
}
.aside__content {
    position: relative;
    width: 100%;
    padding: 3rem;
    transition: opacity 0.5s ease-in-out;
}
.aside__content.animate-out {
    opacity: 1;
}
@media only screen and (min-width: 768px) {
    .aside__content {
        padding: 3rem 5rem;
    }
}
@media only screen and (min-width: 1200px) {
    .aside__content {
        position: absolute;
        left: 0;
        top: 50%;
        bottom: auto;
        transform: translateY(-50%);
        padding: 0 5rem;
    }
    .aside__content.animate-out {
        opacity: 0;
        transition: opacity 0.5s ease-in-out;
    }
}
@media only screen and (min-width: 1400px) {
    .aside__content {
        padding: 0 6rem;
    }
}
.aside__socials {
    position: relative;
    width: 100%;
    padding: 3rem;
}
@media only screen and (min-width: 768px) {
    .aside__socials {
        padding: 3rem 5rem;
    }
}
@media only screen and (min-width: 1200px) {
    .aside__socials {
        position: absolute;
        right: 0;
        bottom: 3rem;
        width: auto;
        padding: 0 5rem;
    }
}
@media only screen and (min-width: 1400px) {
    .aside__socials {
        bottom: 4rem;
        padding: 0 6rem;
    }
}
/* ------------------------------------------------*/
/* Main Section Styles End */
/* ------------------------------------------------*/

/* ------------------------------------------------*/
/* Menu Styles Start */
/* ------------------------------------------------*/
.menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-width: 320px;
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 11;
    background-color: #313637;
    transform: translateX(100%);
    transition: transform 0.3s;
}
.menu .transition-el {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.3s, transform 0.3s;
}
@media only screen and (min-width: 1200px) {
    .menu {
        position: absolute;
        top: 0;
        right: 0;
        left: auto;
        width: auto;
        min-width: auto;
        height: auto;
        overflow-y: hidden;
        transform: translateX(0);
        background-color: transparent;
        z-index: 4;
    }
    .menu .transition-el {
        opacity: 1;
        transform: translateY(0);
    }
}
.menu.is-visible {
    transform: translateX(0);
}
.menu.is-visible .transition-el {
    opacity: 1;
    transform: translateY(0);
}
.menu.is-visible .transition-el-1 {
    transition: transform 0.3s 0.6s, opacity 0.3s 0.6s, color 0.3s;
}
.menu.is-visible .transition-el-2 {
    transition: transform 0.3s 0.7s, opacity 0.3s 0.7s, color 0.3s;
}
.menu.is-visible .transition-el-3 {
    transition: transform 0.3s 0.8s, opacity 0.3s 0.8s, color 0.3s;
}
.menu.is-visible .transition-el-4 {
    transition: transform 0.3s 0.9s, opacity 0.3s 0.9s, color 0.3s;
}
.menu__controls {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 3rem 3rem 0 3rem;
    z-index: 2;
    text-align: right;
}
@media only screen and (min-width: 1200px) {
    .menu__controls {
        display: none;
    }
}
.menu__container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 480px;
    z-index: 1;
}
@media only screen and (min-width: 1200px) {
    .menu__container {
        height: auto;
        min-height: auto;
        margin-top: 3rem;
    }
}
@media only screen and (min-width: 1400px) {
    .menu__container {
        margin-top: 4rem;
    }
}
.navigation {
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    width: 100%;
    padding: 0 3rem;
}
.navigation li {
    display: block;
    position: relative;
}
.navigation li a {
    display: block;
    padding: 1rem 0;
    font: normal 700 3.4rem/1 "Montserrat", sans-serif;
    color: #b3b3b3;
    transition: color 0.3s ease-in-out;
}
.no-touch .navigation li:hover a {
    color: #fff;
}
@media only screen and (min-width: 768px) {
    .navigation {
        padding: 0 5rem;
    }
    .navigation li a {
        font-size: 6rem;
    }
}
@media only screen and (min-width: 1200px) {
    .navigation {
        position: relative;
        left: auto;
        top: auto;
        bottom: auto;
        transform: translateY(0);
        padding: 0 5rem;
    }
    .navigation li {
        display: inline-block;
    }
    .navigation li a {
        padding: 0;
        font: normal 700 1.6rem/1.2 "Montserrat", sans-serif;
        text-transform: none;
        margin-right: 3.6rem;
    }
    .navigation li:first-of-type {
        display: none;
    }
    .navigation li:last-of-type a {
        margin-right: 0;
    }
}
@media only screen and (min-width: 1400px) {
    .navigation {
        padding: 0 6rem;
    }
    .navigation li a {
        font-size: 1.8rem;
    }
}
/* ------------------------------------------------*/
/* Menu Styles End */
/* ------------------------------------------------*/

/* ------------------------------------------------*/
/* Socials Start */
/* ------------------------------------------------*/
.socials {
    display: block;
    position: relative;
    line-height: 1;
}
.socials li {
    display: inline-block;
}
.socials li a {
    display: block;
    font-size: 1.6rem;
    line-height: 1;
    color: #fff;
    margin-right: 2.7rem;
    transition: color 0.3s ease-in-out;
}
.no-touch .socials li a:hover {
    color: #b3b3b3;
}
.socials li:last-of-type a {
    margin-right: 0;
}
/* ------------------------------------------------*/
/* Socials End */
/* ------------------------------------------------*/

/* ------------------------------------------------*/
/* Popup Dialogs Start */
/* ------------------------------------------------*/
.notify {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    z-index: 4;
    background-color: #1d2021;
    transform: translateX(101%);
    transition: transform 0.3s;
}
.notify .transition-el {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.3s, transform 0.3s;
}
@media only screen and (min-width: 1200px) {
    .notify {
        position: absolute;
        top: 0;
        right: auto;
        left: 0;
        width: 75%;
        min-height: 568px;
    }
}
.notify.is-visible {
    transform: translateX(0);
}
.notify.is-visible .transition-el {
    opacity: 1;
    transform: translateY(0);
}
.notify.is-visible .transition-el-1 {
    transition: transform 0.3s 0.6s, opacity 0.3s 0.6s;
}
.notify.is-visible .transition-el-2 {
    transition: transform 0.3s 0.7s, opacity 0.3s 0.7s;
}
.notify.is-visible .transition-el-3 {
    transition: transform 0.3s 0.8s, opacity 0.3s 0.8s, border 0.5s;
}
.notify.is-visible .transition-el-4 {
    transition: transform 0.3s 0.9s, opacity 0.3s 0.9s, background-color 0.3s, border 0.3s, color 0.3s;
}
.notify__controls {
    position: relative;
    margin-top: 3rem;
    padding: 0 3rem;
}
@media only screen and (min-width: 768px) {
    .notify__controls {
        padding: 0 5rem;
    }
}
@media only screen and (min-width: 1400px) {
    .notify__controls {
        margin-top: 4rem;
        padding: 0 6rem;
    }
}
.notify__content {
    position: relative;
    padding: 6rem 0;
    max-width: 700px;
}
.notify__content .content-block {
    position: relative;
    padding: 0 3rem;
    margin-bottom: 6rem;
}
.notify__content .content-block:last-of-type {
    margin-bottom: 0;
}
.notify__content .content-block.margin-bottom-s {
    margin-bottom: 3.8rem;
}
.notify__content .content-block.grid-block {
    padding: 0 calc(3rem - 15px);
}
@media only screen and (min-width: 768px) {
    .notify__content .content-block {
        padding: 0 5rem;
    }
    .notify__content .content-block.grid-block {
        padding: 0 calc(5rem - 15px);
    }
}
@media only screen and (min-width: 1200px) {
    .notify__content {
        position: absolute;
        left: 0;
        top: 50%;
        bottom: auto;
        transform: translateY(-50%);
    }
}
@media only screen and (min-width: 1400px) {
    .notify__content {
        padding: 6rem 0;
    }
    .notify__content.no-padding-bottom {
        padding: 6rem 0 0 0;
    }
    .notify__content .content-block {
        padding: 0 6rem;
        margin-bottom: 7rem;
    }
    .notify__content .content-block.margin-bottom-s {
        margin-bottom: 4.8rem;
    }
    .notify__content .content-block.grid-block {
        padding: 0 calc(6rem - 15px);
    }
}
.stayintouch {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    z-index: 11;
    background-color: #313637;
    opacity: 1;
    transform: translateZ(0);
    transform: translateX(100%) translateY(0);
    transition: opacity 0.3s, transform 0.3s;
}
.stayintouch .transition-el {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.3s, transform 0.3s;
}
.stayintouch .opacity-el {
    opacity: 0;
    transition: opacity 0.3s;
}
.stayintouch.animate-in {
    transform: translateX(0) translateY(0);
}
.stayintouch.animate-in .transition-el {
    opacity: 1;
    transform: translateY(0);
}
.stayintouch.animate-in .opacity-el {
    opacity: 1;
}
.stayintouch.animate-in .transition-el-1 {
    transition: transform 0.3s 0.6s, opacity 0.3s 0.6s;
}
.stayintouch.animate-in .transition-el-2 {
    transition: transform 0.3s 0.7s, opacity 0.3s 0.7s, border 0.3s;
}
.stayintouch.animate-in .transition-el-3 {
    transition: transform 0.3s 0.8s, opacity 0.3s 0.8s, border 0.3s;
}
.stayintouch.animate-in .transition-el-4 {
    transition: transform 0.3s 0.9s, opacity 0.3s 0.9s, border 0.3s;
}
.stayintouch.animate-in .transition-el-5 {
    transition: transform 0.3s 1s, opacity 0.3s 1s, background-color 0.3s;
}
.stayintouch.animate-in .opacity-el-1 {
    transition: opacity 0.3s 1.2s;
}
.stayintouch.animate-out {
    opacity: 1;
}
@media only screen and (min-width: 1200px) {
    .stayintouch {
        position: absolute;
        top: 0;
        right: 0;
        background-color: transparent;
        transform: translateX(0) translateY(100%);
    }
    .stayintouch.animate-in {
        transform: translateX(0) translateY(0);
    }
    .stayintouch.animate-out {
        opacity: 0;
    }
}
.stayintouch__controls {
    position: relative;
    margin-top: 3rem;
    padding: 0 3rem;
}
@media only screen and (min-width: 768px) {
    .stayintouch__controls {
        padding: 0 5rem;
    }
}
@media only screen and (min-width: 1400px) {
    .stayintouch__controls {
        margin-top: 4rem;
        padding: 0 6rem;
    }
}
.stayintouch__content {
    position: relative;
    padding: 6rem 0;
    max-width: 700px;
}
.stayintouch__content .content-block {
    position: relative;
    padding: 0 3rem;
    margin-bottom: 6rem;
}
.stayintouch__content .content-block:last-of-type {
    margin-bottom: 0;
}
.stayintouch__content .content-block.margin-bottom-s {
    margin-bottom: 3.8rem;
}
.stayintouch__content .content-block.grid-block {
    padding: 0 calc(3rem - 15px);
}
@media only screen and (min-width: 768px) {
    .stayintouch__content .content-block {
        padding: 0 5rem;
    }
    .stayintouch__content .content-block.grid-block {
        padding: 0 calc(5rem - 15px);
    }
}
@media only screen and (min-width: 1200px) {
    .stayintouch__content {
        max-width: none;
    }
}
@media only screen and (min-width: 1400px) {
    .stayintouch__content {
        padding: 7rem 0;
    }
    .stayintouch__content.no-padding-bottom {
        padding: 7rem 0 0 0;
    }
    .stayintouch__content .content-block {
        padding: 0 6rem;
        margin-bottom: 7rem;
    }
    .stayintouch__content .content-block.margin-bottom-s {
        margin-bottom: 4.8rem;
    }
    .stayintouch__content .content-block.grid-block {
        padding: 0 calc(6rem - 15px);
    }
}
/* ------------------------------------------------*/
/* Popup Dialogs End */
/* ------------------------------------------------*/

/* ------------------------------------------------*/
/* Content Section Styles Start */
/* ------------------------------------------------*/
.section-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background-color: #fff;
    opacity: 1;
    transform: translateX(101%);
    transition: opacity 0.3s, transform 0.3s;
    z-index: 8;
}
.section-inner::after {
    display: none;
    content: "";
}
.section-inner.is-visible {
    transform: translateX(0);
}
@media only screen and (min-width: 1200px) {
    .section-inner {
        width: 75%;
    }
    .section-inner::after {
        content: "custom-scrollbar";
    }
}
.section-inner__controls {
    position: relative;
    margin-top: 3rem;
    padding: 0 3rem;
}
@media only screen and (min-width: 768px) {
    .section-inner__controls {
        padding: 0 5rem;
    }
}
@media only screen and (min-width: 1400px) {
    .section-inner__controls {
        margin-top: 4rem;
        padding: 0 6rem;
    }
}
.section-inner__blocks {
    position: relative;
    padding: 6rem 0;
}
.section-inner__blocks.no-padding-bottom {
    padding: 6rem 0 0 0;
}
.section-inner__blocks .content-block {
    position: relative;
    padding: 0 3rem;
    margin-bottom: 6rem;
}
.section-inner__blocks .content-block:last-of-type {
    margin-bottom: 0;
}
.section-inner__blocks .content-block.grid-block {
    padding: 0 calc(3rem - 15px);
}
.section-inner__blocks .content-block.margin-bottom-s {
    margin-bottom: 3.6rem;
}
.section-inner__blocks .content-block.features, .section-inner__blocks .content-block.blockquote, .section-inner__blocks .content-block.map {
    padding: 0;
    margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
    .section-inner__blocks .content-block {
        padding: 0 5rem;
    }
    .section-inner__blocks .content-block.grid-block {
        padding: 0 calc(5rem - 15px);
    }
}
@media only screen and (min-width: 1400px) {
    .section-inner__blocks {
        padding: 7rem 0;
    }
    .section-inner__blocks.no-padding-bottom {
        padding: 7rem 0 0 0;
    }
    .section-inner__blocks .content-block {
        padding: 0 6rem;
        margin-bottom: 7rem;
    }
    .section-inner__blocks .content-block.grid-block {
        padding: 0 calc(6rem - 15px);
    }
    .section-inner__blocks .content-block.margin-bottom-s {
        margin-bottom: 4.4rem;
    }
}
.blockquote__container {
    position: relative;
    padding: 6rem 3rem;
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: cover;
}
@media only screen and (min-width: 768px) {
    .blockquote__container {
        padding: 8rem 5rem;
    }
}
@media only screen and (min-width: 1400px) {
    .blockquote__container {
        padding: 12rem 6rem;
    }
}
/* ------------------------------------------------*/
/* Content Section Styles End */
/* ------------------------------------------------*/

/* ------------------------------------------------*/
/* Features Start */
/* ------------------------------------------------*/
.feature__image {
    position: relative;
    width: 100%;
    height: 320px;
    background-color: #313637;
    background-repeat: no-repeat;
    background-size: cover;
}
@media only screen and (min-width: 768px) {
    .feature__image {
        height: 100%;
    }
}
.feature__descr {
    position: relative;
    padding: 6rem 3rem;
    text-align: center;
}
.feature__descr img {
    width: auto;
    margin: 0 auto 2.8rem;
}
@media only screen and (min-width: 768px) {
    .feature__descr {
        padding: 8rem 5rem;
    }
}
@media only screen and (min-width: 1400px) {
    .feature__descr {
        padding: 12rem 6rem;
    }
    .feature__descr p {
        max-width: 400px;
        margin: 0 auto;
    }
}
/* ------------------------------------------------*/
/* Features End */
/* ------------------------------------------------*/

/* ------------------------------------------------*/
/* Google Map Start */
/* ------------------------------------------------*/
#google-container {
    position: relative;
    width: 100%;
    height: 100vh;
}
#google-map {
    position: relative;
    height: 100%;
}
@media only screen and (min-width: 1200px) {
    #google-map {
        width: 100%;
    }
}
#zoom-in, #zoom-out {
    position: relative;
    height: 40px;
    width: 40px;
    cursor: pointer;
    margin-right: 1rem;
    background-color: #313637;
    color: #fff;
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
}
.no-touch #zoom-in:hover, .no-touch #zoom-out:hover {
    background-color: #6f7273;
}
#zoom-in i, #zoom-out i {
    font-size: 1.4rem;
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    bottom: auto;
    right: auto;
    transform: translateX(-50%) translateY(-50%);
}
#zoom-out {
    margin-top: 0.6rem;
    margin-bottom: 1rem;
}
/* ------------------------------------------------*/
/* Google Map End */
/* ------------------------------------------------*/