﻿/*! 
 * * Theme Name: LARAPRESS
 * * Theme URI: none
 * * Description: Larapress is a custom wordpress theme.
 * * Author: Fast Eddy
 * * Author URI:
 * * Version: 1.0
 * * License: GNU General Public License v2
 * * License URI: http://www.gnu.org/licenses/gpl-2.0.html 
 * */
.text-primary {
    color: var(--primary) !important
}
.main-hero-block h1 {
    text-shadow: 3px 2px 3px rgba(0, 0, 0, 0.8);
}
.main-hero-block p {
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.6);
}
.page-id-16 .section--page-header h1 {
	text-shadow: 3px 2px 3px rgba(0, 0, 0, 0.7);
}
.text-secondary {
    color: var(--secondary) !important
}
.page-id-2 .main-hero-block:nth-child(2) {
	height: 65vh !important;
	padding-top: 70px;
}
@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 5px;
    padding-left: 5px;
  }
}
.text-gray {
    color: gray !important
}

.text-l-gray {
    color: #a8a8a8 !important
}

.bg-primary {
    background-color: var(--primary) !important
}

.bg-secondary {
    background-color: var(--secondary) !important
}

.bg-gray {
    background-color: #f8f8f8 !important
}

.bg-dark-gray {
    background-color: var(--gray) !important
}

.uppercase {
    text-transform: uppercase
}

.fs-1 {
    font-size: 58px !important;
    line-height: 1.3 !important
}

@media(max-width: 575px) {
    .fs-1 {
        font-size: 34px !important
    }
}

.fs-2 {
    font-size: 50px !important;
    line-height: 1.1 !important
}

@media(max-width: 575px) {
    .fs-2 {
        font-size: 28px !important
    }
}

.fs-3 {
    font-size: 30px !important;
    line-height: 1.5 !important
}

@media(max-width: 575px) {
    .fs-3 {
        font-size: 18px !important
    }
}

.fs-4 {
    font-size: 24px !important;
    line-height: 1.5 !important
}

@media(max-width: 575px) {
    .fs-4 {
        font-size: 18px !important
    }
}

.fs-5 {
    font-size: 20px !important;
    line-height: 1.5 !important
}

@media(max-width: 575px) {
    .fs-5 {
        font-size: 16px !important
    }
}

.fs-6 {
    font-size: 18px !important;
    line-height: 1.8 !important
}

@media(max-width: 575px) {
    .fs-6 {
        font-size: 14px !important
    }
}

.decoration-none {
    text-decoration: none !important
}

.fw-semibold {
    font-weight: 600 !important
}

.text-justify {
    text-align: justify
}

.gap-y-4 {
    gap: 30px 0
}

.ff-default .ff-btn-submit {
    margin-top: 30px
}

.ff-default .ff-btn-submit::after {
    content: "";
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    margin-left: 15px
}

.ff-default .ff-el-form-control {
    border-radius: 0 !important;
    text-transform: uppercase;
    background: #f5f5f5;
    border: solid 1px #f5f5f5;
    color: #a7a7a7 !important;
    height: 45px;
    resize: none
}

.ff-default .ff-el-form-control::placeholder {
    color: #a7a7a7 !important
}

.ff-default .ff-el-form-control:hover,
.ff-default .ff-el-form-control:focus {
    border-color: var(--primary) !important
}

.btn {
    border: none;
    font-size: 18px;
    line-height: 1;
    font-weight: 600;
    border-radius: 0;
    padding: 18px 40px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: fit-content;
    outline: 0 !important;
    box-shadow: none !important;
    transition: .3s ease-in-out
}

.btn.btn-rounded {
    border-radius: 8px
}

.btn small {
    font-size: 12px
}

.btn::before {
    content: "";
    display: block;
    position: absolute;
    opacity: 0;
    width: 120%;
    height: 120%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    transform: scale(0.1);
    transition: .3s ease-in-out;
    z-index: -1
}

.btn:hover {
    background: rgba(0, 0, 0, 0)
}

.btn:hover::before {
    opacity: 1;
    transform: none
}

.btn.btn-transparent {
    color: #fff;
    background: rgba(227, 227, 227, .2);
    border: solid 2px #f8f8f8
}

.btn.btn-white-blur {
    background: rgba(227, 227, 227, .2);
    backdrop-filter: blur(10px);
    letter-spacing: 2px;
    color: #fff;
    border: solid 2px #f8f8f8
}

.btn.btn-white-blur::before {
    background: #fff
}

.btn.btn-white-blur:hover {
    color: var(--primary) !important
}

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

.btn.btn-primary::before {
    background: var(--primaryAlt)
}

.btn.btn-secondary {
    background: var(--secondary);
    color: #fff
}

.btn.btn-secondary::before {
    background: var(--secondaryAlt)
}

.btn.btn-third {
    background: #1a1a1a;
    color: #fff;
    border: solid 1px #262626;
    border-radius: 30px
}

.btn.btn-third::before {
    background: var(--secondaryAlt)
}

.btn.btn-gray {
    background: var(--gray);
    color: #fff
}

.btn.btn-gray::before {
    background: var(--secondaryAlt)
}

.btn.btn-white-secondary {
    background: #fff;
    color: var(--primary)
}

.btn.btn-white-secondary--black {
    color: #000
}

.btn.btn-white-secondary--black:hover {
    color: #fff
}

.btn.btn-white-secondary::before {
    background: var(--secondary)
}

.btn.btn-white-secondary:hover {
    color: #fff
}

.btn.btn-white-s-p {
    background: #fff;
    color: var(--secondary)
}

.btn.btn-white-s-p::before {
    background: var(--primary)
}

.btn.btn-white-s-p:hover {
    color: #fff
}

.underline-anchor {
    text-decoration: underline
}

.splide__arrow {
    background: rgba(0, 0, 0, 0) !important
}

.splide__arrow::before {
    font-family: "Font Awesome 6 Pro";
    font-weight: 300;
    color: #fff;
    font-size: 40px
}

.splide__arrow svg {
    display: none
}

.splide__arrow--prev {
    left: 80px
}

.splide__arrow--prev::before {
    content: ""
}

.splide__arrow--next {
    right: 80px
}

.splide__arrow--next::before {
    content: ""
}

.modal .btn-close {
    filter: brightness(0) invert(1)
}

.modal .modal-dialog.modal-dialog-full {
    max-width: 100%;
    margin: 0
}

.modal .modal-dialog.modal-dialog-full .modal-content {
    height: fit-content;
    min-height: 100vh;
    width: 100vw;
    background: #c6d3d2;
    color: #fff;
    padding: 0 50px
}

.modal .modal-dialog.modal-dialog-full .modal-content .modal-header {
    border: none !important
}

.modal .modal-dialog.modal-dialog-full .modal-content .modal-body {
    padding: 0 !important
}

.modal .modal-dialog.modal-dialog-full .modal-content .modal-body figure {
    position: relative;
    height: 65vh
}

.modal .modal-dialog.modal-dialog-full .modal-content .modal-body figure img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.main-header {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 99
}

@media(max-width: 991px) {
    .main-header .container-fluid {
        position: static
    }
}

.main-header .custom-logo-link {
    border-right: solid 1px #e9e9e9;
    padding-right: 24px
}

.main-header .custom-logo-link img {
    max-width: 130px;
    height: auto
}

.main-header .btn {
    flex-wrap: nowrap;
    font-size: 16px;
    font-weight: 700
}
/*Reyer - 04-11-2025*/
.main-header .navbar-nav {
    gap: 15px
}

.main-header .navbar-nav .active .nav-link {
    font-weight: 700
}

.main-header .navbar-nav .active .nav-link::before {
    transform: scaleX(1);
    transform-origin: left
}

.main-header .navbar-nav .nav-link {
    font-size: 18px;
    font-weight: 500;
    color: #011f41;
    position: relative;
    transition: .3s ease-out
}

.main-header .dropdown-menu{
    background: var(--primary);
    border-radius: 0;
    transform: translateY(8px);
}
.main-header .dropdown-menu .dropdown-item{
    background: transparent;
    color:#FFFFFF;
}
.main-header .dropdown-menu .nav-item+.nav-item{
    border-top: solid 1px rgba(255,255,255, .6)
}
.main-header .dropdown-menu .dropdown-item:hover{
    background: var(--secondary);
    color:#FFFFFF;
}
@media(min-width: 992px){
    .main-header:before{
        content: '';
        display: block;
        background: #FFFFFF;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 60px;
        border-bottom: solid 3px var(--primary);
    }
    .main-header .navbar-nav .nav-link{
        color: var(--primary)
    }
}
@media(min-width: 992px) and (max-width: 1199px){
    .main-header .custom-logo-link img{
        max-width: 200px !important;
    }
    .main-header .navbar-nav{
        gap: 8px;
    }
    .main-header .navbar-nav .nav-link{
        font-size: 15px;
    }
}
@media(max-width: 991px){
    .main-header .custom-logo-link{
        margin-left: 48px;
        height: 62px;
        overflow: hidden;
    }
    .main-header .navbar-collapse {
        background: #fff;
        position: absolute;
        left: 0;
        top: 0;
        z-index: 10;
        width: 665px;
        max-width: 100%;
        height: 100vh;
        min-height: fit-content;
        transform: translateX(-100%);
        flex-direction: column;
        padding: 80px 65px;
        justify-content: flex-start;
        align-items: flex-start;
        transition: .2s ease-out
    }
}

.main-header .navbar-collapse.show {
    transform: none
}

.main-header .navbar-collapse .btn-white-secondary {
    border: solid 1px #3788b3
}

.main-header .navbar-toggler {
    width: 60px;
    height: 60px;
    border-radius: 0;
    background: #fff;
    position: relative;
    outline: none !important;
    box-shadow: none !important;
    z-index: 4;
    position: absolute;
    left: 0;
    border: solid 1px #e8e8e8;
    top: 0;
    z-index: 11
}

.main-header .navbar-toggler:hover span:nth-child(2) {
    transform: translateX(10%)
}

.main-header .navbar-toggler:hover span:nth-child(3) {
    transform: translateY(8px) translateX(20%)
}

.main-header .navbar-toggler span {
    position: absolute;
    background: var(--primary);
    width: 30px;
    height: 3px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    transform-origin: center center;
    transition: .5s ease-out
}

.main-header .navbar-toggler span:nth-child(1) {
    transform: translateY(-8px)
}

.main-header .navbar-toggler span:nth-child(3) {
    transform: translateY(8px)
}

.main-header .navbar-toggler:not(.collapsed) span:nth-child(1) {
    transform: rotate(-45deg)
}

.main-header .navbar-toggler:not(.collapsed) span:nth-child(2) {
    opacity: 0
}

.main-header .navbar-toggler:not(.collapsed) span:nth-child(3) {
    transform: rotate(45deg)
}

.main-footer {
    background: #1e2021;
    color: #fff
}

.main-footer__widget-area {
    padding: 64px 0 34px
}

@media(max-width: 991px) {
    .main-footer__widget-area {
        padding-bottom: 0
    }
}

@media(max-width: 575px) {
    .main-footer__widget-area {
        font-size: 15px
    }
}

.main-footer__widget-area .navbar-brand {
    display: block;
    width: 136px
}

.main-footer__widget-area .navbar-brand img {
    max-width: 100%;
    height: auto
}

.main-footer__widget-area .social-links a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--primary);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    font-size: 20px;
    text-decoration: none
}

.main-footer__widget-area .widget {
    margin: 0 0 20px
}

.main-footer__widget-area .widget h4 {
    color: #fff;
    font-size: 18px;
    margin: 0 0 30px;
    font-weight: 700
}

.main-footer__widget-area .widget a:not(.btn) {
    color: #fff;
    text-decoration: none;
    transition: .2s ease-out
}

.main-footer__widget-area .widget a:not(.btn):hover {
    color: var(--primary)
}

.main-footer__bottom {
    border-top: solid 1px rgba(231, 231, 231, .5);
    color: #fff
}

:root {
    --primary: #3788B3;
    --primaryAlt: #31799f;
    --secondary: #035357;
    --secondaryAlt: #023b3e;
    --gray: #C8D3D2
}

::selection {
    color: #fff;
    background: var(--primary)
}

body {
    max-width: 100vw;
    overflow-x: hidden;
    font-family: "Sora", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
    line-height: 1.38
}

.mainWrapper {
    max-width: 100vw;
    overflow: hidden
}

img {
    max-width: 100%
}

img.abs-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover
}

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

.circle-icon {
    position: relative;
    width: 115px;
    height: 115px;
    border-radius: 50%;
    border: solid 2px var(--primary);
    overflow: hidden;
    background: #fff
}

.circle-icon img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-fit: contain;
    padding: 18px
}

.section {
    padding: 100px 0;
    position: relative;
    z-index: 2
}

@media(max-width: 575px) {
    .section {
        padding: 40px 0
    }
}

.section__title {
    font-weight: 600
}

.section--full-screen {
    min-height: 100vh
}

.section.section--primary {
    color: #fff
}

.section--white+.section--white {
    padding-top: 0
}

.map-wrapper {
    position: relative;
    min-height: 350px
}

.map-wrapper iframe {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0
}

.bg-column {
    background-image: url(./public/img/column.png);
    background-position: center center;
    background-repeat: no-repeat
}

.border-wrapper {
    border: solid 1px #e1e1e1
}

.border-wrapper hr {
    background: #e0e0e0;
    opacity: 1
}

.modal .modal-content {
    background: #0f0f0f;
    border: solid 1px #1f1f1f;
    border-radius: 20px
}

.modal .modal-content .modal-header {
    border: none
}

.modal#activitiesModal figure {
    position: relative;
    padding-bottom: 55%;
    border-radius: 20px;
    border: solid 1px #1f1f1f;
    overflow: hidden
}

.modal#activitiesModal figure img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center
}

.modal#activitiesModal .long-description {
    border: solid 1px #1f1f1f;
    border-radius: 20px
}

.modal#activitiesModal .tag {
    display: block;
    border-radius: 30px;
    color: #fff;
    font-weight: bold;
    background: linear-gradient(to bottom, rgba(41, 41, 41, 0.8), rgba(41, 41, 41, 0));
    border: solid 1px #1f1f1f;
    padding: 10px 20px
}

/*# sourceMappingURL=style.css.map */

.video-responsive {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    width: 100%;
}

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