
/* default values */
html,
body {
    height: 100%;
    width: 100%;
    padding: 0px;
    margin: 0px;
    background-color: #fff;
    overflow-x: hidden;
    color: var(--black-txt);
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border: 0;
}
a,
a:hover {
    text-decoration: none !important;
}
*:focus {
    outline: none !important;
    box-shadow: none !important;
}
:root {
    --black-txt: #000;
}
h1,
h2,
h3,
h5 {
    font-family: 'Montserrat', sans-serif;
    color: var(--black-txt);
}
h1 {
    color: #fff;
}
p {
    font-size: .95rem;
    color: var(--black-txt);
    font-weight: 400;
}
/* overlay menu */
.button_container {
    position: absolute;
    top: 30px;
    right: 4%;
    height: 27px;
    width: 30px;
    cursor: pointer;
    z-index: 100;
    -webkit-transition: opacity .25s ease;
    transition: opacity .25s ease;
    z-index: 1001;
}
.button_container:hover {
    opacity: .8;
}
.button_container.active .top {
    -webkit-transform: translateY(11px) translateX(0) rotate(45deg);
    transform: translateY(11px) translateX(0) rotate(45deg);
    background: #FFF;
}
.button_container.active .middle {
    opacity: 0;
    background: #FFF;
}
.button_container.active .bottom {
    -webkit-transform: translateY(-11px) translateX(0) rotate(-45deg);
    transform: translateY(-11px) translateX(0) rotate(-45deg);
    background: #FFF;
}
.button_container span {
    background: #fff;
    border: none;
    height: 5px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: all .35s ease;
    transition: all .35s ease;
    cursor: pointer;
}
.button_container span:nth-of-type(2) {
    top: 11px;
}
.button_container span:nth-of-type(3) {
    top: 22px;
}
.overlay {
    position: fixed;
    background: var(--black-txt);
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .35s, visibility .35s, height .35s;
    transition: opacity .35s, visibility .35s, height .35s;
    overflow: hidden;
    z-index: 1000;
}
.overlay.open {
    opacity: .92;
    visibility: visible;
    height: 100%;
}
.overlay.open li {
    -webkit-animation: fadeInRight .5s ease forwards;
    animation: fadeInRight .5s ease forwards;
    -webkit-animation-delay: .35s;
    animation-delay: .35s;
}
.overlay.open li:nth-of-type(n) {
    -webkit-animation-delay: .4s;
    animation-delay: .4s;
}
.overlay nav {
    position: relative;
    height: 50%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    text-align: center;
}
.overlay ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: inline-block;
    position: relative;
    height: 100%;
}
.overlay ul li {
    display: block;
    height: 15%;
    position: relative;
    opacity: 0;
}
.overlay ul li a {
    display: block;
    position: relative;
    color: #FFF;
    text-decoration: none;
    overflow: hidden;
    padding-bottom: 8px;
}
.overlay ul li a:hover:after, .overlay ul li a:focus:after, .overlay ul li a:active:after {
    width: 100%;
    font-weight: 600 !important;
}
.overlay ul li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 3px;
    background: #FFF;
    -webkit-transition: .35s;
    transition: .35s;
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        left: 20%;
    }
    100% {
        opacity: 1;
        left: 0;
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        left: 20%;
    }
    100% {
        opacity: 1;
        left: 0;
    }
}
@media (min-width: 1199px) {
    .button_container {
        display: none !important;
    }
}
/* end overlay menu */
/* header - index */
.header-hero {
    position: relative;
    z-index: 2;
    overflow: hidden;
    background-color: var(--black-txt);
}
.hero-wrapper {
    padding: 20px 0 5% 0;
}
.header-hero .hero-bg {
    position: absolute;
    top: 0px;
    width: 100%;
    height: 100%;
    background-image: url('../img/img-banner.webp') !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    perspective: 1000;
    z-index: -1;
    opacity: .8;
}
/* end header - index */
/* nav default */
#menu-menu .menu-item {
    padding: 0 10px;
    color: #fff;
}
#menu-menu .menu-item a {
    color: #fff;
    font-weight: 200;
    font-size: 14px;
}
#menu-menu .current_page_item a {
    font-weight: 600;
}
#menu-menu .menu-item a:hover {
    font-weight: 600;
}
/* end nav default */
.header-hero p {
    color: #fff;
}
.header-hero h2 {
    color: #fff;
    font-size: 3rem;
}
.header-hero .content {
    padding-bottom: 15%;
}

.navbar-brand-content {
    display: flex;
    gap: 16px;
    align-items: center;
}
.navbar-brand-content .vertical-divider {
    width: 1px;
    height: 56px;
    background-color: #fff;
    opacity: .5;
}
.navbar-brand-content span {
    color: #fff;
    font-size: 22px;
}
/* buttons */
.btn-custom {
    color: var(--black-txt);
    background: #fff;
    border-radius: 32px;
    -webkit-border-radius: 32px;
    -moz-border-radius: 32px;
    -ms-border-radius: 32px;
    -o-border-radius: 32px;
    font-weight: 400 !important;
    letter-spacing: 1px;
    padding: 12px 20px 15px 20px;
    font-size: 14px;
    display: inline-block;
}
.btn-custom.btn-line {
    color: white;
    background: transparent;
    border: 2px solid #fff;
}
.btn-custom.btn-line:hover {
    color: var(--black-txt);
    background: #fff;
    border: 2px solid #fff;
}
.btn-custom.btn-line-2 {
    color: #fff;
    background: #4AC1B5;
    border: 2px solid #4AC1B5;
}
.btn-custom.btn-line-2:hover {
    color: #fff;
    background: #4AC1B5;
    border: 2px solid #4AC1B5;
}
.btn-custom.btn-line-3 {
    color: #000;
    background: transparent;
    border: 2px solid #000;
}
.btn-custom.btn-line-3:hover {
    color: var(--black-txt);
    background: transparent;
    border: 2px solid #000;
}
.btn-custom.btn-white:hover {
    color: var(--black-txt);
}




/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
    .header-hero .hero-bg {
        opacity: .5;
    }
}
