@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

:root {
    --primary-color: #00b5ad;
    --secondary-color: #DC143C;
    --tertiary-color: #E1B654;
    --light-color: rgb(250, 251, 252);
    --lighter-color: rgb(254, 254, 254);
    --body-font-size: 105%;
}

body {
    font-family: 'Poppins', sans-serif;
}

#main-nav {
    box-shadow: 0 8px 6px -9px darkgrey;
    opacity: .98;
    padding-right: 2rem;
    padding-left: 2rem;
}

#main-nav .nav-link {
    font-weight: 500;
    font-size: 95%;
    padding: 1.2rem 1.5rem;
    transition: 0.5s ease;
    color: #212529;
}

#main-nav .nav-link.smaller {
    padding: 0.6rem 1.5rem;
}

.brand-logo {
    width: 200px;
    margin-top: -5px;
    transition: 0.5s ease;
}

.brand-logo.smaller {
    width: 150px;
}

.navbar .nav-item .dropdown-menu {
    margin-top: 0;
    border: none;
    opacity: .98;
}

.dropdown-item {
    font-size: 95%;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.dropdown-item.subitem {
    font-size: 94%;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 1.25rem;
}

.dropdown-item.active {
    color: var(--primary-color);
    background: inherit;
}

.dropdown-item:focus, .dropdown-item:hover {
    background: inherit;
}

.nav-item a:hover {
    color: var(--secondary-color) !important;
}

.hover-underline-animation {
    display: inline-block;
    position: relative;
}

.hover-underline-animation::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--secondary-color);
    transform-origin: bottom left;
    transition: transform 0.25s ease-out;
}

.hover-underline-animation:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.carousel-control-next, .carousel-control-prev {
    width: 5%;
}

#main-carousel .carousel-caption {
    height: 100%;
    padding-top: 14%;
}

.carousel-caption > h1 {
    font-size: 6rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.carousel-caption > h3 {
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

.carousel-caption > h4 {
    font-weight: 400;
}

.carousel-item.active > img {
    transition: 10s ease;
    transform: scale(1.2);
}

.main-carousel {
    height: 100vh;
    max-height: 700px;
    width: 100%;
    object-fit: cover;
}

div.content {
    padding: 6rem 3rem;
    text-align: center;
}

div.content > h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.card-text {
    padding: 3em 1em;
}

.card-text h5 {
    margin-top: 1em;
    margin-bottom: 0.5em;
}

.card-text i {
    font-size: 3em;
    color: var(--tertiary-color);
    transition: 0.5s ease;
}

.card-text i:hover {
    transform: translateY(-5px);
}

a {
    color: inherit;
    text-decoration: none;
    transition: 0.25s ease;
}

a:hover {
    color: var(--primary-color) !important;
}

.iframe {
    width: 100%;
    max-width: 1000px;
    height: 600px;
}

.iframe.video {
    height: 563px;
}

.card-slider .card {
    height: 100%;
}

.card-img-wrapper {
    overflow: hidden;
}

.card-img-top {
    height: 230px;
    object-fit: cover;
    transition: 0.5s ease;
    filter: grayscale(10%);
}

.card-img-top:hover {
    transform: scale(1.05);
}

#reviews {
    background-image: url("../images/reviews.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    color: var(--light-color);
}

.rounded-image-link {
    height: 250px;
    width: 250px;
    border-radius: 50%;
    margin: 3rem 3rem 1rem 3rem;
}

.tns-nav > button {
    background: rgba(63,208,212,.5);
    border-radius: 50%;
    border: 0;
    padding: 0;
    margin: 12px 5px 0 5px;
    width: 10px;
    height: 10px;
}

.tns-nav > .tns-nav-active {
    background: var(--primary-color);
}

.tns-controls > button {
    background: none;
    border: none;
    font-size: 2rem;
    color: rgba(63,208,212,.5);
    padding: 0 0.5rem;
}

.tns-controls > button:hover {
    color: var(--primary-color);
}

div.footer {
    position: relative;
    padding-top: 3rem;
    text-align: center;
    color: #D7BC81;
    background-color: #212529;
    font-size: 95%;
}

div.footer > div.row {
    margin: auto;
    width: 80%;
    text-align: left;
}

div.footer > hr {
    width: 80%;
    height: 1px;
    margin: 2rem auto;
    color: var(--tertiary-color);
    background: var(--tertiary-color);
}

div.footer img.footer-map {
    margin-top: 0.25rem;
    max-width: 200px;
}

div.footer img.footer-logo {
    width: 250px;
    margin-left: -1rem;
}

div.footer div.col-content {
    margin: auto;
    width: fit-content;
}

div.footer div.col-content > h5 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.card-slider {
    text-align: start;
}

.list-group-item-place {
    background-color: var(--light-color);
    font-size: 90%;
}

.list-group-item-date {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.list-group-date {
    border: none !important;
}

.action-wrapper {
    width: 100%;
    background-color: whitesmoke;
}

.action-content, .actuality-content {
    width: 95%;
    max-width: 1200px;
    box-shadow: 0 3px 20px 5px rgba(0,0,0,.03);
    padding: 8.5rem 6rem 5rem 6rem;
    background-color: var(--lighter-color);
}

.action-content > h2 {
    margin-bottom: 1rem;
}

.action-content > h4 {
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.actuality-content img.actuality-thumbnail {
    max-width: 500px;
    max-height: 500px;
    margin-bottom: 2.5rem;
}

.action-content img.action-thumbnail {
    width: 100%;
    max-width: 450px;
    margin-bottom: 2rem;
}

.action-description {
    margin-bottom: 1.5rem;
    overflow: auto;
}

.action-description .action-thumbnail-wrapper {
    float: right;
    width: fit-content;
    padding-left: 1.5rem;
}

.action-description.editor-content {
    text-align: left;
}

.action-description > .editor-content {
    text-align: left;
}

.action-details {
    text-align: left;
    border-radius: 0.25rem;
    background-color: #D7BC81;
    color: var(--light-color);
    padding: 2rem;
}

.action-details > h5 {
    margin-bottom: 1rem;
}

.action-details a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.action-details a:hover {
    color: var(--secondary-color) !important;
}

.action-details td {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.action-details td.left {
    padding-right: 3rem;
}

.action-details td.right {
    padding-left: 3rem;
}

#program-modal .modal-dialog {
    max-width: fit-content;
}

#program-modal .modal-header {
    border-bottom: 0;
    padding-bottom: 0;
}

.timeline-item {
    margin: auto;
    max-width: 700px;
}

.card.even {
    margin-right: 10%;
}

.card.odd {
    margin-left: 10%;
}

.timeline-item:after {
    content: "";
    width: 3px;
    height: 2rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-left: 2px dashed #8596a3
}

.timeline-item.last:after {
    visibility: hidden;
}

.btn-primary {
    background-color: inherit;
    color: var(--tertiary-color);
    border-color: var(--tertiary-color);
    border-width: 2px;
    padding-right: 1.125rem;
    padding-left: 1.125rem;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    color: var(--light-color);
    background-color: var(--tertiary-color);
    border-color: var(--tertiary-color);
}

.action-overview h5 {
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
}

.action-overview img {
    height: 193px;
    object-fit: cover;
    filter: grayscale(10%);
    width: 100%;
}

.action-overview .details {
    display: flex;
    flex-direction: column;
}

.action-overview .details > div {
    display: grid;
    flex-grow: 1;
}

.action-overview .details > div > div {
    margin: auto 0;
    display: flex;
}

.action-overview .details > div > div > i {
    margin: auto;
}

.action-overview .details > div > div > span {
    flex-grow: 1;
}

.action-overview i {
    color: var(--tertiary-color);
}

.actions-content {
    width: 95%;
    max-width: 1200px;
    box-shadow: 0 3px 20px 5px rgba(0,0,0,.03);
    padding: 0.5rem 6rem 5rem 6rem;
    background-color: var(--light-color);
    position: relative; top: -15vh;
    margin-bottom: -15vh;
    border-radius: 0.1rem;
}

.actions-content > .search-form {
    position: relative;
    top: -2rem;
    max-width: 900px;
    margin: auto;
}

.actions-content > h2.title {
    color: white;
    position: relative; top: -20vh;
    font-size: 3rem;
    text-align: center;
}

.actions-content h4 {
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.actions-content.static-page {
    padding-bottom: 6rem;
    text-align: left;
}

.index-action-venue {
    display: flex;
}

.index-action-venue > i {
    margin: auto;
}

.index-action-venue > span {
    flex-grow: 1;
}

a.underline {
    text-decoration: underline;
    text-underline-offset: 2px;
}

p.a-colorful > a {
    color: var(--tertiary-color);
}

p.a-colorful > a:hover {
    color: #D7BC81 !important;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.actions-content.static-page li {
    margin-bottom: 0.25rem;
}

.actions-content.static-page h2 {
    margin-bottom: 1.5rem;
}

.actions-content.static-page .card {
    margin-bottom: 1rem;
    max-width: 760px;
}

.actions-content.static-page .card h5 {
    margin-top: 0.25rem;
}

.actions-content.static-page td {
    padding: 0.5rem 0;
}

.actions-content.static-page table.table-bordered td {
    padding: 0.5rem 0.75rem;
}

.actions-content.static-page table.table-bordered th {
    padding: 0.5rem 0.75rem;
    background-color: #D7BC81;
    color: var(--light-color);
}

.actions-content.static-page td.left {
    width: 7rem;
}

.actions-content.static-page table.table-bordered td.left {
    width: 14rem;
}

.static-page .img-text {
    width: 400px;
    margin: 0 auto 1rem auto;
}

.static-page .img-text-inline {
    width: 300px;
    float: right;
    padding: 0 0.5rem 0.5rem 0.5rem;
}

.static-page .img-text > img, .static-page .img-text-inline > img {
    width: 100%;
    border-radius: 0.25rem;
}

.static-page .img-text > div, .static-page .img-text-inline > div {
    font-size: 90%;
    color: grey;
    margin-top: 0.15rem;
}

.static-page hr {
    height: 2px;
    color: var(--tertiary-color);
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
}

.actions-content.static-page table i {
    color: var(--tertiary-color);
}

.contact-card-title {
    margin: 0.5rem 0 1rem 0.25rem;
}

.background-image {
    height: 60vh;
    background-position: bottom;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    filter: grayscale(10%);
}

img.gallery-thumbnail {
    max-width: 100%;
    max-height: 10rem;
    padding: 0.1rem;
}

#galleries img.gallery-thumbnail {
    width: 100%;
    height: 12rem;
    max-height: 12rem;
    max-width: 18rem;
    object-fit: cover;
    padding: 0;
}

img.gallery-thumbnail:hover {
    cursor: pointer;
    opacity: 0.8;
}

.gallery-thumbnail-card {
    height: 100%;
    margin-top: 1rem;
}

.gallery-thumbnail-card h5 {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.dropdown-item.gallery-dropdown {
    font-size: 100%;
    font-weight: 500;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.dropdown-toggle.gallery-dropdown:after {
    display: none;
}

.actuality-card {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.actuality-card .card {
    height: 100%;
    max-width: 500px;
    margin: auto;
}

.actuality-card img {
    height: 320px;
    width: 100%;
    object-fit: cover;
    filter: grayscale(10%);
    padding: 0.15rem;
}

.actuality-card .published-date {
    font-size: 95%;
    color: var(--primary-color);
}

.actuality-card .reg-num {
    font-size: 95%;
    color: #004494;
}

.actuality-content .published-date {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.actuality-content .reg-num {
    color: #004494;
    margin-bottom: 1.5rem;
}

.actuality-content hr {
    height: 2px; color: var(--tertiary-color);
}

.actuality-content .actuality-details {
    text-align: left;
    font-size: 90%;
}

.actuality-content .actuality-details > i {
    color: var(--tertiary-color);
}

.actions-content.static-page .actuality-card {
    margin-top: 1rem;
}

#author {
    padding: 1rem 3rem 0 3rem;
    height: 40vh;
}

.not-found {
    margin-top: 3rem;
    font-size: 110%;
    font-weight: 400;
}

.not-found > i.fas {
    font-size: 125%;
    position: relative;
    top: 2px;
    color: var(--secondary-color);
}

.row.tour {
    margin-top: 3rem;
}

.row.tour h4 {
    margin-top: 0;
    margin-bottom: 1rem;
}

.row.tour .tour-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    min-height: 400px;
}

span.tour-anchor {
    position: relative;
    top: -80px;
}

.footer > .scroll-up {
    right: 10%;
    top: -25px;
    position: absolute;
    background: #212529;
    border-radius: 0.25rem;
    padding: 0.15rem 2rem;
}

.footer > .scroll-up > i {
    font-size: 150%;
}

.related-actions > hr {
    margin-bottom: 1.5rem;
    height: 2px;
}

.related-actions > h4 {
    margin-bottom: 1.5rem;
}

.related-actions .row > div {
    text-align: start;
    max-width: 304px;
    margin: 0 auto;
}

.related-actions img {
    height: 200px;
    width: 100%;
    border-radius: 0.25rem;
    object-fit: cover;
    filter: grayscale(10%)
}

.related-actions .action-title {
    padding: 0.5rem 0.25rem;
}

.related-actions .action-title p {
    font-weight: 500;
}

.related-actions .action-title .action-date {
    margin-bottom: 0.25rem;
    color: var(--primary-color);
}

.tns-item .card-body {
    padding: 0.75rem;
}

.tns-item .list-group-item{
    padding: 0.5rem 0.75rem;
}

.partner-logos {
    padding-top: 1rem;
    background-color: #D7BC81;
}

.partner-logos > img {
    max-width: 10em;
    max-height: 5em;
    margin: 1em;
    border-radius: 0.2rem;
}

.search-form.job-form {
    max-width: 95%;
}

.card.job-card {
    width: 95%;
    margin: 2rem auto auto;
    border-radius: 1rem;
    box-shadow: 0 .05rem .1rem rgba(0,0,0,.075);
    cursor: pointer;
    display: block;
}

.card.job-card:hover {
    box-shadow: 0 .25rem 0.5rem rgba(0,0,0,.15);
}

.card.job-card p {
    color: initial;
}

.card.job-card i {
    color: var(--tertiary-color);
}

.card.job-card h5 {
    margin-top: 0.1rem;
}

.card.job-card img {
    height: 4.3rem;
    width: 4.3rem;
    object-fit: cover;
}

.shadow-on-hover:hover {
    box-shadow: 0 .125rem 0.25rem rgba(0,0,0,.1);
}

a.eu:hover {
    color: #ffd617 !important;
}

span.help-tooltip {
    border-bottom: 1px dotted #000;
    cursor: help;
}

span.help-tooltip.inverted {
    border-color: var(--light-color);
}

div.tour-pricings {
    overflow-x: auto;
}

div.tour-pricings > table td {
    vertical-align: middle;
}

#back-to-list > i {
    position: relative;
    top: 1px;
    margin-right: 0.375rem;
}

@media all and (min-width: 1200px) {

    .navbar .nav-item .dropdown-menu {
        display: none;
        box-shadow: 0 2px 2px lightgrey;
    }

    .navbar .nav-item:hover .dropdown-menu {
        display: block;
    }

    .navbar .nav-item .dropdown-menu {
        margin-left: 1rem;
    }

    .dropdown-toggle:after {
        display: none;
    }

}

@media only screen and (max-width: 1440px) {

    #main-nav .nav-link {
        padding: 1.2rem 1rem;
    }

    #main-nav .nav-link.smaller {
        padding: 0.6rem 1rem;
    }

    .disposable {
        display: none;
    }

    .navbar .nav-item .dropdown-menu {
        margin-left: 0.5rem;
    }

}

@media only screen and (max-width: 1295px) {

    #main-nav {
        padding-right: 1rem;
        padding-left: 1rem;
    }

    #main-nav .nav-link {
        padding: 1.2rem 0.75rem;
    }

    #main-nav .nav-link.smaller {
        padding: 0.6rem 0.75rem;
    }

    .navbar .nav-item .dropdown-menu {
        margin-left: 0.25rem;
    }

}

@media only screen and (max-width: 1199px) {

    .navbar .nav-item .dropdown-menu {
        padding-top: 0;
    }

    .dropdown-item {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .dropdown-item.subitem {
        padding-top: 0.25rem;
        padding-bottom: 0.25rem;
    }

}

@media only screen and (min-width: 992px) and (max-width: 1162px) {

    .disposable-contact {
        display: none;
    }

}

@media only screen and (max-width: 1100px) {

    div.footer > div.row {
        width: 95%;
    }

    div.footer > hr {
        width: 90%;
    }

    .action-description .action-thumbnail-wrapper {
        width: 100%;
        padding-left: 0;
    }

}

@media only screen and (max-width: 900px) {

    .action-details td.left {
        padding-right: 0.5rem;
    }

    .action-details td.right {
        padding-left: 0.5rem;
    }

    div.footer .col-disposable {
        display: none;
    }

    div.footer img.footer-map {
        display: none;
    }

}

@media only screen and (max-width: 800px) {

    .disposable-text {
        display: none;
    }

    .action-details td.right {
        word-break: break-all;
    }

    .actuality-content img.actuality-thumbnail {
        max-width: 90%;
    }

}

@media only screen and (max-width: 765px) {

    .rounded-image-link {
        margin-left: 0;
        margin-right: 0;
    }

    .action-content, .actuality-content {
        padding-top: 6rem;
    }

    #author {
        padding: 1rem 1rem 0 1rem;
    }

    .search-form.job-form {
        max-width: 100%;
    }

    .card.job-card {
        width: 100%;
    }

}

@media only screen and (max-width: 681px) {

    .disposable-contact {
        display: none;
    }

    .static-page .img-text-inline {
        display: none;
    }

}

@media only screen and (max-width: 600px) {

    .action-content, .actions-content, .actuality-content {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        width: 98%;
    }

}

@media only screen and (max-width: 575px) {

    div.footer div.col-content {
        text-align: center;
    }

    div.content {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    #main-carousel .carousel-caption {
        padding-top: 25%;
    }

    .carousel-caption > h1 {
        font-size: 5rem;
    }

    .carousel-caption > h3 {
        font-size: 2.5rem;
    }

    .actions-content.static-page table.table-bordered td, .actions-content.static-page table.table-bordered th {
        padding: 0.25rem;
        font-size: 90%;
    }

    .actions-content.static-page table.table-bordered td.left {
        width: 11rem;
    }

    .actions-content > h2.title {
        font-size: 2.25rem;
    }

}