@import "_vars.css";

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-color);
}

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

#smooth-wrapper, #smooth-content {
  will-change: transform;
}

a {
    text-decoration: none;
    color: inherit;
    display: inline-block;
    cursor: pointer;
}

a:hover {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
    margin: 0 auto;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: var(--font);
    margin-bottom: 0;
    line-height: 1.25;
    /* color: #363636; */
    color: var(--primary-color);
}

h1,
.h1 {
    font-size: 4em;
    font-weight: 200;
}

h2,
.h2 {
    font-size: 3.4em;
}

h3,
.h3 {
    font-size: 2.7em;
    text-transform: capitalize;
}

h4,
.h4 {
    font-size: 2.2em;
}

h5,
.h5 {
    font-size: 1.6em;
    font-weight: 400;
    color: #444;
    text-transform: capitalize;
}

h6,
.h6 {
    font-size: 1em;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 2px;
}

.redirect_link button {
    font-size: 12px;
    letter-spacing: 1px;
}

.btn {
    /* padding: 10px 18px; */
    text-transform: uppercase;
    color: #fff;
    border: 0;
    border-radius: 0;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 1px;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

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

.btn.btn-primary:hover {
    background-color: var(--secondary-color);
}

.btn:active,
.btn:focus {
    border: 0;
    outline: 0;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
  appearance: textfield;
}

section,
.section {
    position: relative;
    width: 100%;
    display: block;
}
.padding_top_bottom {
    padding: 6.25em 0;
}
.padding_top {
    padding-top: 6.25em;
}
.padding_bottom {
    padding-bottom: 6.25em;
}
.padding_bottom_small {
    padding-bottom: 1.8em;
}

.padding-bottom-smaller {
    padding-bottom: 50px;
}
.padding-top-bottom-smaller {
    padding-top: 50px;
    padding-bottom: 50px;
}
.padding-top-bottom-big {
    padding-top: 130px;
    padding-bottom: 130px;
}

.subtitle {
    position: relative;
    text-transform: uppercase;
    color: var(--gray-color);
    display: block;
    letter-spacing: 3px;
    font-size: 14px;
}

.animateIn {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* .with-line:after {
    background-color: var(--primary-color);
	position: absolute;
	content: '';
	width: 50px;
	height: 1px;
	z-index: 3;
	bottom: -15px;
	left: 50%;
	-webkit-transform: translateX(0);
	transform: translateX(0);
} */

.with-line::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  right: 0;
  margin: auto;
  width: 100px;
  height: 1px;
  background-color: var(--primary-color);
  z-index: 3;
  /* transform: translateX(-150%); */
}

.color-grey {
    color: #e1e1e1;
}

.rounded {
    border-radius: 0.25rem !important;
}

.img_responsive {
    max-width: 100%;
    height: auto;
    display: block;
}

.img-wrap {
    position: relative;
    width: 100%;
    display: block;
}

.dark-over-pages {
    position: absolute;
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
    top: 0;
    left: 0;
}

.background_dark {
    background-color: var(--dark-color);
}

.parallax {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    width: 100%;
}

/* Preloader */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 9999999999;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

#loaderFigure {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -18px;
    margin-top: -18px;
    height: 36px;
    width: 36px;
    box-sizing: border-box;
    border-radius: 50%;
    opacity: 0.4;
    animation: loaderAnim 0.7s linear infinite alternate forwards;
    background-color: var(--secondary-color);
    transition: opacity 0.4s ease-in-out;
}
@keyframes loaderAnim {
    to {
        opacity: 1;
        transform: scale3d(0.5, 0.5, 1);
    }
}

/* Header */
#navbarWrapper {
    position: fixed;
    width: 100%;
    z-index: 1040;
}

.custom-close-btn {
    opacity: 1;
    transition: all ease-in-out 0.5s;
}

.custom-close-btn:hover {
    transform: scale(1.3);
}

.navbar_item {
    font-family: var(--font);
    letter-spacing: 1px;
}

.navbar_link button,
.redirect_link button,
.submit_button button {
    /* background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 0.2em 1.5em;
    border-radius: 15px;
    border-width: 0;
    letter-spacing: inherit; */
    text-transform: capitalize;
    background-color: var(--primary-color);
    /* color: var(--secondary-color); */
    font-weight: 600;
    color: #ffffff;
    padding: .5em 2em;
    border-radius: 25px;
    box-shadow: none;
    border: 2px solid var(--primary-color);
    /* border: 0; */
    /* letter-spacing: inherit; */
}

.navbar_link button:hover,
.redirect_link button:hover,
.submit_button button:hover {
    background-color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    color: #000000;
}

.navbar_link button.invert,
.redirect_link button.invert,
.submit_button button.invert {
    border: 2px solid var(--secondary-color);
    background-color: var(--secondary-color);
    color: #000000;
}

.navbar_link button.invert:hover,
.redirect_link button.invert:hover,
.submit_button button.invert:hover {
    background-color: var(--primary-color);
    border: 2px solid var(--secondary-color);
    color: #ffffff;
}

/* .navbar_link.cta:hover {
    background-color: var(--secondary-color);
    margin-inline: 1em !important;
    color: var(--primary-color);
} */

#topbarWrapper,
#navbarMenuWrapper,
.navbar_logo,
.navbar_logo > img,
.navbar_list,
.navbar_item,
.navbar_link,
.navbar_link button,
.redirect_link button,
.submit_button button {
    transition: all 0.3s ease-out;
}

#topbarWrapper {
    align-content: center;
    height: var(--topbar-height);
    background-color: var(--dark-color);
    display: none;
}

.topbar_row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.topbar_row .contact, .topbar_row .address {
    display: none;
}

.topbar_text {
    font-size: 12px;
    font-weight: 500;
    line-height: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    transition: all 250ms linear;
}

.social_top {
    padding-inline: 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

#navbarMenuWrapper {
    background-color: rgba(var(--dark-color-rgb), 1);
}

.navbar_data {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar_logo {
    height: var(--navbar-small-height);
    margin: 0.5em 0;
}

.navbar_logo img {
    height: 100%;
    width: auto;
}

.navbar_toggler {
    position: relative;
    width: 32px;
    height: 32px;
    cursor: pointer;
}

.bi-list,
.bi-x-lg {
    position: absolute;
    inset: 0;
    margin: auto;
    font-size: 1.25em;
    pointer-events: none;
    fill: #fff !important;
    color: #fff !important;
    transition: opacity 0.1s, transform 0.4s;
}

.bi-x-lg {
    opacity: 0;
}

.section_heading {
    opacity: 0;
    width: 100%;
    transition: all 0.7s ease;
    transform: translateY(50px);
}

.section_heading.secondary_color h3 {
    color: var(--secondary-color);
}

.section_heading.secondary_color .subtitle {
    color: #fff;
}

/* Navigation for mobile devices only */
@media screen and (max-width: 1023px) {
    .navbar_menu {
        position: absolute;
        left: 0;
        right: 0;
        width: 100%;
        background-color: rgba(var(--dark-color-rgb), 1);
        height: calc(100vh - var(--navbar-small-height));
        overflow: auto;
        pointer-events: none;
        opacity: 0;
        padding: 2em 0;
        transition: top 0.4s, opacity 0.3s;
    }
}

.show_menu {
    opacity: 1;
    /* top: var(--navbar-small-height); */
    pointer-events: initial;
}

.show_icon .navbar_toggler_open {
    opacity: 0;
    transform: rotate(90deg);
}

.show_icon .navbar_toggler_close {
    opacity: 1;
    transform: rotate(90deg);
}

.navbar_list {
    text-transform: capitalize;
}

.navbar_link {
    padding: 1.5em 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar_link:hover,
.navbar_link.active {
    color: var(--secondary-color);
}

.dropdown {
    cursor: pointer;
}

.dropdown_arrow {
    height: 1.25em;
    transition: transform 0.4s;
}

.navbar_dropdown {
    background-color: var(--dark-color);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.navbar_dropdown .navbar_item .navbar_link {
    padding-left: 1.25em;
}

.dropdown:hover .dropdown_arrow {
    transform: rotate(180deg);
}

.dropdown:hover .navbar_dropdown {
    max-height: fit-content;
    transition: max-height 0.4s ease-in;
}

header.header_shrink #topbarWrapper {
    /* transform: translateY(calc(var(--topbar-height) * -1)); */
    transform: translateY(calc(calc(var(--topbar-height) + 1px) * -1));
}

header.header_shrink #navbarMenuWrapper {
    /* transform: translateY(calc(var(--topbar-height) * -1)); */
    transform: translateY(calc(calc(var(--topbar-height) + 1px) * -1));
}

header.header_shrink .navbar_logo {
    height: var(--navbar-small-height);
}

header.header_shrink .navbar_link button {
    padding: 0.2em 1em;
}

/* Footer */
footer {
    color: rgb(255, 255, 255);
    letter-spacing: 1px;
}

.main_footer {
    padding: 4.5em 0;
    /* background-color: var(--primary-color); */
    background-color: var(--dark-color);
}

.footer_address, .footer_nav, .logos_footer {
    display: flex;
    flex-direction: column;
}

.main_footer .navbar_link.cta {
    justify-content: center;
}

.footer_logo img {
    width: 30%;
    display: inline-block;
}

.footer_nav {
    margin: 2em 0;
}

.footer_nav a {
    display: block;
    text-transform: capitalize;
    transition: all 200ms linear;
}

.footer_nav a:hover {
    color: var(--secondary-color);
}

.logos_footer img {
    height: 18px;
    width: auto;
    display: inline-block;
    margin-right: 25px;
}

.end_footer {
    padding: 1.5em 0;
    background-color: var(--dark-color);
}

.end_footer p {
    font-size: 13px;
    line-height: 20px;
    letter-spacing: 1px;
    margin: 0;
    border-top: 1px solid white;
    padding-top: 2em;
}

/* .end_footer a {
    padding: 0 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 250ms linear;
}

.end_footer a:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0);
} */
.social_link_group {
    display: flex;
    justify-content: center;
}

.social_link_group a {
    width: 20px;
    height: 20px;
    font-size: 0.7em;
    color: black;
    background-color: #fff;
    text-align: center;
    align-content: center;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    border: 3px solid #fff;
    z-index: 1;
    transition: all 0.5s linear;
}

.social_link_group a i {
    position: relative;
    transition: .5s;
    z-index: 3;
}

.social_link_group a:hover i {
    color: #fff;
    transform: rotateY(360deg);
}

.social_link_group a:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f00;
    transition: .5s;
    z-index: 2;
}

.social_link_group a.teatro_email:before{
  background: var(--primary-color) !important;
}

.social_link_group a.facebook:before{
  background: #3b5999 !important;
}

.social_link_group a.instagram:before{
  background: #F56040 !important;
}

.social_link_group a:hover:before {
  top: 0;
}

.ajax-form input,
.ajax-form select {
    position: relative;
    width: 100%;
    /* padding-left: 20px;
    padding-right: 20px; */
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 13px;
    line-height: 24px;
    /* padding-bottom: 15px; */
    background: transparent;
    border: none;
    color: var(--gray-color);
    /* text-align: center; */
    -webkit-transition: border-bottom 0.3s, color 0.3s;
    transition: border-bottom 0.3s, color 0.3s;
}
.ajax-form textarea {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 13px;
    line-height: 24px;
    text-align: center;
    background: transparent;
    height: 100px;
    border: none;
    color: var(--gray-color);
    -webkit-transition: border-bottom 0.3s, color 0.3s;
    transition: border-bottom 0.3s, color 0.3s;
}
.ajax-form textarea,
.ajax-form input,
.ajax-form select {
    border-bottom: 1px solid rgba(var(--gray-color-rgb), 0.7);
}
.ajax-form textarea:active,
.ajax-form input:active,
.ajax-form select:active {
    color: #101010;
}
.ajax-form textarea:hover,
.ajax-form input:hover,
.ajax-form select:hover {
    color: #101010;
}
.ajax-form textarea:focus,
.ajax-form input:focus,
.ajax-form select:focus  {
    outline: none !important;
}
.ajax-form input:-ms-input-placeholder {
    font-size: 12px;
    letter-spacing: 1px;
    color: #999999;
}
.ajax-form input::-moz-placeholder {
    font-size: 12px;
    letter-spacing: 1px;
    color: #999999;
}
.ajax-form input:-moz-placeholder {
    font-size: 12px;
    letter-spacing: 1px;
    color: #999999;
}
.ajax-form input::-webkit-input-placeholder {
    font-size: 12px;
    letter-spacing: 1px;
    color: #999999;
}
.ajax-form textarea:-ms-input-placeholder {
    font-size: 12px;
    letter-spacing: 1px;
    color: #999999;
}
.ajax-form textarea::-moz-placeholder {
    font-size: 12px;
    letter-spacing: 1px;
    color: #999999;
}
.ajax-form textarea:-moz-placeholder {
    font-size: 12px;
    letter-spacing: 1px;
    color: #999999;
}
.ajax-form textarea::-webkit-input-placeholder {
    font-size: 12px;
    letter-spacing: 1px;
    color: #999999;
}
.ajax-form select:-ms-input-placeholder {
    font-size: 12px;
    letter-spacing: 1px;
    color: #999999;
}
.ajax-form select::-moz-placeholder {
    font-size: 12px;
    letter-spacing: 1px;
    color: #999999;
}
.ajax-form select:-moz-placeholder {
    font-size: 12px;
    letter-spacing: 1px;
    color: #999999;
}
.ajax-form select::-webkit-input-placeholder {
    font-size: 12px;
    letter-spacing: 1px;
    color: #999999;
}
.ajax-form button {
    color: #fff;
    cursor: pointer;
    font-size: 12px;
    padding: 10px 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    /* background-color: #212121; */
    background-color: var(--primary-color);
    border: none;
    outline: none;
    margin: 0 auto;
    text-align: center;
    -webkit-transition: all 250ms linear;
    -moz-transition: all 250ms linear;
    -o-transition: all 250ms linear;
    -ms-transition: all 250ms linear;
    transition: all 250ms linear;
}
.ajax-form button:focus,
.ajax-form button:active {
    border: none;
    outline: none;
}
.ajax-form button span {
    position: relative;
    display: block;
    -webkit-transition: all 250ms linear;
    -moz-transition: all 250ms linear;
    -o-transition: all 250ms linear;
    -ms-transition: all 250ms linear;
    transition: all 250ms linear;
}
.ajax-form button:hover {
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
}

.ajax-checkbox .list {
    margin: 0 auto;
    padding: 0;
    text-align: center;
}
.ajax-checkbox .list__item {
    margin: 0 0 0.5rem 0;
    padding: 0;
    list-style: none;
}
.ajax-checkbox .list__item:last-child {
    margin: 0;
}
.ajax-checkbox .label--checkbox {
    position: relative;
    line-height: 135%;
    cursor: pointer;
    background: transparent;
    color: rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
    font-size: 13px;
    font-weight: 400;
    padding-bottom: 0 !important;
}
.ajax-checkbox .checkbox {
    position: relative;
    top: -0.8rem;
    margin: 0 2rem 0 0;
    cursor: pointer;
    background: transparent;
    width: 0 !important;
    height: 0 !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-bottom: 0 !important;
}
.ajax-checkbox .checkbox:active,
.ajax-checkbox .checkbox:focus {
    border: none;
    outline: none;
}
.ajax-checkbox .checkbox:before {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    content: '';
    position: absolute;
    left: 0;
    z-index: 1;
    width: 1rem;
    height: 1rem;
    border: 2px solid rgba(0, 0, 0, 0.2);
    background: transparent;
}
.ajax-checkbox .checkbox:checked:before {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    height: 0.5rem;
    border-top-style: none;
    border-right-style: none;
    background: transparent;
    border-color: green;
}
.ajax-checkbox .checkbox:after {
    content: '';
    position: absolute;
    top: -0.125rem;
    left: 0;
    width: 1.1rem;
    height: 1.1rem;
    background: transparent;
    cursor: pointer;
}

/* Medium devices (landscape tablets, 768px and up) */
@media screen and (min-width: 768px) {
    .footer_nav {
        margin: 0;
    }
}

/* Large devices (laptops/desktops, 1024px and up) */
@media screen and (min-width: 1024px) {
    #topbarWrapper {
        display: block;
    }

    .topbar_row {
        justify-content: space-between;
    }

    .topbar_row .contact, .topbar_row .address {
        display: block;
    }

    #navbarMenuWrapper {
        background-color: transparent;
    }

    #navbarMenuWrapper .container {
        margin-inline: auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .navbar_logo {
        height: var(--navbar-big-height);
    }

    .navbar_toggler {
        display: none;
    }

    .navbar_list {
        column-gap: 3em;
    }

    .navbar_link {
        font-weight: 600;
        padding: 2em 0;
    }

    .navbar_dropdown {
        position: absolute;
        padding-inline: 10px 20px;
        width: max-content;
    }

    .navbar_dropdown .navbar_item .navbar_link {
        padding: 1em 3em 0.5em 1em;
    }
    
    .navbar_dropdown .navbar_item:last-child .navbar_link {
        padding: 1em 3em 1em 1em;
    }

    header.header_shrink #navbarMenuWrapper {
        background-color: rgba(var(--dark-color-rgb), 0.8);
    }

    header.header_shrink .navbar_list {
        column-gap: 2em;
    }

    header.header_shrink .navbar_link {
        padding: 1.5em 0;
    }

    .main_footer .navbar_link.cta {
        justify-content: start;
    }

    .main_footer .social_link_group {
        justify-content: start;
    }
}

/* Extra large devices (large laptops and desktops, 1440px and up) */
@media screen and (min-width: 1440px) {
}
