/*===========================================================
 Custom Variable
============================================================*/
:root {
    /* Hamber menu icon style */
    --hamWidth: 40px;
    --hamHeight: 4px;
    --hamMargin: 6px;
    /* summation of --hamMargin adn --hamHeight */
    --hamTranslate: 10px;
    /* summation of --hamMargin adn --hamHeight */
    --hamTranslate3: -10px;
    --header-height: 0;

    /*   Colors */
    --primary: #120773;
    --black: #000;
    --preloaderBg: green;
    --gray: #b3b3b3;
    --green: green;
    --white: #fff;
    --red: #a82e2e;
    /* Font sizes    */
    --xxxl: 55px;
    --xxl: 42px;
    --lg: 24px;
    --md: 20px;
    --sm2: 18px;
    --sm: 16px;
}

/*===========================================================
 Common CSS
============================================================*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Roboto", sans-serif;;
    font-size: var(--md);
    line-height: 1.7;
    font-weight: 400;
    color: var(--black);
    letter-spacing: normal;
}

ul {
    padding: 0;
    margin: 0;
}

li,
li:hover,
a:hover,
.btn,
.btn:hover {
    transition: all 0.3s ease;
}

a:hover {
    text-decoration: none !important;
}
a {
    color: currentColor; /*this makes sure that the link always has context color.*/
    text-decoration: none;
}

.maincontent a {
    border-bottom: 1px solid currentColor;
    /*  this allows us to set the link border bottom in content, to show that it is clickable. But in buttons it should not apply, so we may need to overwrite this in buttons if needed*/
}

a:hover {
    text-decoration: none !important;
    outline: 2px dotted currentColor !important; /* this makes link hover be better visible*/
}

img {
    max-width: 100%;
    height: auto;
}

img.lazy {
    background-image: url("../img/loading.gif");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 50px auto;
    height: auto;
}

strong {
    font-weight: 700;
    color: var(--red);
}

u {
    border-bottom: 1px solid var(--white);
    line-height: 1;
    text-decoration: unset;
}

.cboth {
    overflow: hidden;
    clear: both;
}

.left {
    float: left;
}

.right {
    float: right;
}

button {
    background-color: transparent;
    border: 0;
}

button:active,
button:focus {
    outline: 0;
    outline: 0;
}

#npreOverlay {
    background: var(--preloaderBg);
}

/* #main {
    padding-top: 26px;
} */

.row {
    --gutter-x: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: calc(var(--gutter-x) * -0.5);
    margin-left: calc(var(--gutter-x) * -0.5);
}

.row > * {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--gutter-x) * 0.5);
    padding-left: calc(var(--gutter-x) * 0.5);
    margin-top: var(--bs-gutter-y);
}

.col {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
}

.container {
    width: 100%;
    padding-right: calc(var(--gutter-x) * 0.5);
    padding-left: calc(var(--gutter-x) * 0.5);
    margin-right: auto;
    margin-left: auto;
    max-width: 1420px;
    padding: 0 15px;
}
/*===========================================================
 Scroll To Top
============================================================*/

.progress-wrap {
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    border-radius: 50px;
    -webkit-box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.2);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(15px);
    -ms-transform: translateY(15px);
    transform: translateY(15px);
    -webkit-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.progress-wrap svg.progress-circle path {
    fill: none;
    stroke: var(--gray);
    stroke-width: 4;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    transition: all 200ms linear;
}

.angle-top {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.progress-wrap:hover .angle-top path {
    fill: var(--white);
}
/*===========================================================
Loader
===========================================================*/

.preloader {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: var(--white);
    z-index: 99999999;
}

.spinner {
    width: 80px;
    height: 80px;
    border: 2px solid #f3f3f3;
    border-top: 3px solid #58b8cb;
    border-radius: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-animation: 1s infinite spin;
    animation: 1s infinite spin;
}

@-webkit-keyframes spin {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

#loading-msg {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 25px;
    text-align: center;
    color: #333;
    font-size: 0.8em;
}
/*===========================================================
 Navigation Menu Desktop
============================================================*/
.header-area {
    padding: 25px 0;
}

.header {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.menu-left span {
    font-size: var(--lg);
    font-weight: 600;
    line-height: 1;
    color: #ffce00;
}
.menu-left a {
    text-decoration: none;
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.menu {
    display: flex;
    align-items: center;
}
.menu ul {
    margin: 0;
}
.menu ul li {
    list-style: none;
    display: inline-block;
    margin: 0 !important;
}

.menu ul li a {
    font-size: var(--sm);
    font-weight: 600;
    line-height: 1.5;
    color: var(--white);
    text-decoration: none;
    padding-left: 28px;
    padding-right: 28px;
}

.menu ul li a:hover {
    color: #5680bc;
}

.dropdown-menu {
    margin: 0 !important;
    position: absolute;
    z-index: 1000;
    display: none;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0;
    font-size: var(--sm);
    color: var(--gray);
    text-align: left;
    list-style: none;
    background-color: var(--black);
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}

/*===========================================================
 Navigation Menu slideout
============================================================*/
main .mobileMenuOpener {
    display: none;
}

.panel-header {
    display: none;
}

.slideout-menu {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 256px;
    min-height: 100vh;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    z-index: 0;
    display: none;

    padding: 50px 0;
}

.slideout-menu-left {
    left: 0;
}

.slideout-menu-right {
    right: 0;
}

.slideout-panel {
    position: relative;
    z-index: 1;
    background-color: var(--white);
    min-height: 100vh;
}

.slideout-open,
.slideout-open body,
.slideout-open .slideout-panel {
    overflow: hidden;
}

.slideout-open .slideout-menu {
    display: block;
}

.slideout-open .slideout-menu {
    background: var(--primary);
}

.btn-hamburger {
    cursor: pointer;
}

.menu-section-list {
    padding: 25px 10px;
}

.menu-section-list li a:hover {
    color: var(--gray);
}

.menu-section-list li a {
    line-height: 2;
    color: var(--white);
}

.menu-section-list li {
    display: block;
}

.btn-hamburger img {
    width: 27px;
}

/*Hamburger Menu Icon*/
/* .hamburger .line {
    width: 40px;
    height: 5px;
    background-color: #34495e;
    display: block;
    margin: 8px auto;
    transition: all 0.3s ease-in-out;
} */

.hamburger:hover {
    cursor: pointer;
}

.hamburger:hover .line {
    opacity: 0.8;
}

.slideout-open .line:nth-child(2) {
    opacity: 0;
}

.slideout-open .line:nth-child(1) {
    -webkit-transform: translateY(13px) rotate(45deg);
    -ms-transform: translateY(13px) rotate(45deg);
    transform: translateY(13px) rotate(45deg);
}

.slideout-open .line:nth-child(3) {
    -webkit-transform: translateY(-13px) rotate(-45deg);
    -ms-transform: translateY(-13px) rotate(-45deg);
    transform: translateY(-13px) rotate(-45deg);
}

/*===========================================================
 Hamberger
===========================================================*/

.hamburger .line {
    width: var(--hamWidth);
    height: var(--hamHeight);
    background-color: var(--primary);
    display: block;
    margin: var(--hamMargin) auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.hamburger:hover {
    cursor: pointer;
}

/* ONE */

.slideout-open .line:nth-child(2) {
    opacity: 0;
}

.slideout-open .line:nth-child(1) {
    -webkit-transform: translateY(var(--hamTranslate)) rotate(45deg);
    -ms-transform: translateY(var(--hamTranslate)) rotate(45deg);
    transform: translateY(var(--hamTranslate)) rotate(45deg);
}

.slideout-open .line:nth-child(3) {
    -webkit-transform: translateY(var(--hamTranslate3)) rotate(-45deg);
    -ms-transform: translateY(var(--hamTranslate3)) rotate(-45deg);
    transform: translateY(var(--hamTranslate3)) rotate(-45deg);
}

.menu ul li .dropdown-menu li {
    display: block;
    position: relative;
}

.menu ul li .dropdown-menu li a {
    padding: 5px 15px;
    line-height: 1.2;
    display: block;
    padding-right: 10px;
    border-bottom: 0;
    text-decoration: none;
}
.menu ul li .dropdown-menu .dropdown > a {
    background-image: url(../img/angle-right.svg);
    background-repeat: no-repeat;
    margin-right: 15px;
}

.dropdown-menu {
    margin: 0;
    border: 0;
    border-radius: 0;
}
.menu-item-has-children a {
    position: relative;
    padding-right: 12px;
}
.menu-toggle {
    background-image: url(../img/angle-down.svg);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 12px;
    position: absolute;
    right: -5px;
    top: 5px;
    display: block;
    width: 12px;
    height: 12px;
}
.dropdown-menu .menu-toggle {
    top: 10px;
}
.menu-item-has-children > a:hover::after {
    color: var(--primary);
}

/*===========================================================
 Custom scrollbar
===========================================================*/
/* width */
.sidebar::-webkit-scrollbar {
    width: 3px;
}

/* Track */
.sidebar::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
.sidebar::-webkit-scrollbar-thumb {
    background: #888;
}

/* Handle on hover */
.sidebar::-webkit-scrollbar-thumb:hover {
    background: #555;
}
/*===========================================================
 Responsive Menu
===========================================================*/

@media (min-width: 992px) {
    .menu-item-has-children:hover > a + .dropdown-menu {
        display: block;
    }

    .dropdown-menu .dropdown-menu {
        position: absolute;
        left: 100%;
        top: 0;
    }

    .menu-item-has-children .dropdown > a::after {
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
        margin-top: -4px;
    }
}

@media (max-width: 991px) {
    #main {
        padding-top: 0;
    }

    .header-area {
        display: none;
    }

    .mobile-logo {
        width: 200px;
    }

    .dropdown-menu {
        padding-top: 0;
    }

    .menu ul li .dropdown-menu li {
        padding-left: 10px;
    }

    .menu ul li .dropdown-menu li a {
        padding-left: 0;
        padding-right: 0;
    }

    .dropdown-menu {
        width: 100%;
        background-color: transparent;
        background-clip: padding-box;
        border: none;
        position: unset;
        top: unset;
    }

    main .mobileMenuOpener {
        display: block;
        position: absolute;
        width: 20px;
        height: 100%;
        z-index: 10;
    }

    .menu ul li {
        display: block;
    }

    .menu ul li a {
        color: var(--white);
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        line-height: 2;
    }

    .menu ul li .dropdown-menu li a {
        line-height: 2;
    }

    .menu-item-has-children > a::after {
        right: 10px;
        position: absolute;
        top: 50%;
        margin-top: -1px;
    }

    /*Menu Activation*/
    .panel-header {
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        background: var(--white);
        -webkit-box-shadow: 0px 1px 3px #eee;
        box-shadow: 0px 1px 3px #eee;
        padding: 10px 15px;
    }
}

/*===========================================================

============================================================*/
h2,
h1 {
    color: var(--primary);
    font-size: var(--xxl);
    line-height: 1.5;
    margin-bottom: 10px !important;
}

h1 {
    font-size: var(--xxxl);
}

p {
    color: rgb(42, 42, 42);
    font-size: var(--md);
    line-height: 27px;
}
/*===========================================================

============================================================*/
.wrapper {
    padding-left: 50px;
    padding-right: 50px;
    display: flex;
    align-items: center;
    gap: 50px;
    width: 100%;
    max-width: 100%;
}
.sidebar {
    width: 300px;
    height: 100vh;
    overflow-y: auto;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 199;
    padding: 50px 20px;
}
.sidebar ul {
    margin: 0;
    padding: 0 !important;
}

.sidebar li {
    list-style: none;
    margin-bottom: 10px !important;
}
.sidebar a {
    display: inline;
    color: var(--black);
    padding: 6px 0;
    cursor: pointer;
    font-size: var(--md);
    line-height: 1.1;
    text-decoration: none;
    font-weight: 600;
    border: 0;

    border-bottom: 2px solid transparent;
}
.content {
    width: 100%;
    padding-left: 300px;
    min-height: 100vh;
}
.content-container {
    max-width: 1200px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.content-img-text {
    display: flex;
    justify-content: space-around;
    align-items: center;
    min-height: 100vh;
    gap: 30px;
}
.text-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.text-container p {
    max-width: 350px;
}
.text-container a {
    text-decoration: none;
    border: 0;
}

/*===========================================================

============================================================*/
.content-fotos-videos {
    padding-top: 30px;
    padding-bottom: 30px;
}
.content-fotos-videos h2 {
    font-weight: 400;
    color: var(--black);
}
.content-fotos-videos li,
.content-fotos-videos li a {
    margin: 0 !important;
    text-decoration: none;
    border: 0;
}
.content-fotos-videos h3 {
    color: #8d2424;
    margin-bottom: 0;
    margin-top: 15px;
}
.content-fotos-videos a {
    color: var(--primary);
}
.list-2 a {
    font-weight: 600;
}
.list-2 li:not(:first-child) {
    list-style: none;
}
.fotos,
.videos {
    padding-top: 30px;
}
.fotos-inner,
.videos-inner {
    padding-left: 60px;
}
/*===========================================================
Responsive
============================================================*/
@media (max-width: 991px) {
    .sidebar {
        display: none;
    }
    .content {
        width: 100%;
        padding-left: 0;
    }
    .wrapper {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 767px) {
    .content-img-text {
        flex-direction: column;
        padding: 50px 0;
    }
}

@media (max-width: 575px) {
}

@media (max-width: 379px) {
}
/* focus */
:focus {
    outline: 2px dashed #4d90fe !important;
    outline-offset: 2px;
}

/*===========================================================
 WB Image Slider - FancyApps Carousel v6
============================================================*/

.wb-image-slider-container {
    --f-thumbs-padding-y: 0px;

    display: grid;
    grid-template-columns: 1fr 112px;
    max-width: 100%;
    margin: 0 auto;
    padding: 20px 0;
}

.wb-image-slider-container .f-carousel {
    --f-carousel-gap: 10px;
    --f-carousel-slide-width: 100%;
    --f-carousel-slide-padding: 0;
    --f-carousel-slide-bg: #f5f5f5;

    height: 500px;
    max-height: calc(100vh - 40px);
}

.wb-image-slider-container .f-carousel__slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.wb-image-slider-container .f-carousel__slide img {
    max-width: 100%;
    max-height: calc(100% - 60px); /* Reserve space for caption */
    object-fit: scale-down;
    display: block;
}

/* Hide broken image icon before lazy load */
.wb-image-slider-container .f-carousel__slide img:not([src]) {
    opacity: 0;
    min-height: 400px;
    background: #f0f0f0;
}

/* Loading state for images being lazy loaded */
.wb-image-slider-container .f-carousel__slide img.f-lazyload:not(.is-lazyloaded) {
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Show image when loaded */
.wb-image-slider-container .f-carousel__slide img.f-lazyload.is-lazyloaded {
    opacity: 1;
}

/* Caption Styles - FancyApps native captions */
.wb-image-slider-container .f-caption {
    position: relative;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    padding: 15px 20px;
    font-size: var(--sm);
    line-height: 1.4;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 767px) {
    .wb-image-slider-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        padding: 15px 0;
    }

    .wb-image-slider-container .f-carousel {
        height: 400px;
    }

    .wb-image-slider-container .f-carousel__slide img {
        max-height: calc(100% - 50px); /* Less space for caption on mobile */
    }

    .wb-image-slider-container .f-caption {
        padding: 10px 15px;
        font-size: 14px;
    }
}
