/*--------------------------------------------------- STYLING FOR THE WHOLE PAGE ----------------------------------------------*/

html,
body {
    height: 100%;
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    position: relative;
    font-family: 'Poppins', sans-serif;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgb(238, 191, 108); /* Same as navbar */
    background-image: url('IMAGES/Gallery/header5.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 1.0;
    z-index: -1;
}

/* Use box-sizing: border-box; globally to prevent unintended width overflow caused by padding or borders */
* {
    box-sizing: border-box;
}

.container {
    /*margin-top: 100px !important;*/
}

/*-----------------------------------------------------------------------------------------------------------------------------*/


/*--------------------------------------------------- STYLING FOR NAVIGATION BAR ----------------------------------------------*/
.navbar {
    background: linear-gradient(to right, rgba(255, 204, 0, 0.2), rgba(255, 180, 0, 0.6));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.navbar-dark {
    background-color: rgb(238, 191, 108, 0.5);
}

.navbar a:hover {
    color: rgb(205, 84, 9);
}

.imgTitle {
    height: 60px;
}

.my-title {
    height: 10px;
}

.navbar-brand {
    color: black;
    display: flex;
    align-items: center;
    font-weight: 700;
    letter-spacing: 0.5px !important;
    font-size: 1.5rem !important;
}

/* This is more specific and will always override the Bootstrap default */
.navbar .nav-link.menuText {
    font-size: 1.2rem;
    font-weight: 500;
    color: black;
    transition: color 0.2s ease-in-out;
}

/* This rule targets the menu links specifically when you hover over them. */
.navbar .nav-link.menuText:hover {
    color: rgb(140, 61, 5);
}

/* Fix for the "Apartments Nautic" brand text */
.navbar-dark .navbar-brand,
.navbar-dark .navbar-brand:hover {
    color: black;
}

.language-bar {
    background: linear-gradient(to right, rgba(255, 174, 0, 0.74), rgba(255, 128, 0, 0.7));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
    color: black;
    text-align: center;
    padding: 5px 0;
    font-size: 18px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1051;
}

.language-bar a {
    color: black;
    text-decoration: none;
    margin: 0 10px;
}

.language-bar a:hover {
    text-decoration: underline;
}

.navbar.fixed-top {
    top: 37px;
}

.welcome-text {
    font-size: 1.5rem !important;
}
/*-----------------------------------------------------------------------------------------------------------------------------*/


/*--------------------------------------------------- STYLING FOR MODAL VIEW --------------------------------------------------*/
.modal-body,
.modal-content {
    height: 100% !important;
    width: 100% !important;
}

.modal-footer {
    padding: 3px !important;
}

.modal-header {
    height: 50px !important;
}

.btn-myclose {
    background-color: rgba(49, 115, 239, 0.912) !important;
    border: none !important;
}
/*-----------------------------------------------------------------------------------------------------------------------------*/


/*--------------------------------------------------- STYLING FOR BACKGROUND VIDEO ---------------------------------------------*/
.video-bg {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.video-bg video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translate(-50%, -50%);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
}

.overlay h1 {
    color: white;
    font-size: 3rem;
    text-shadow: 2px 2px 5px black;
}
/*-----------------------------------------------------------------------------------------------------------------------------*/


/*--------------------------------------------------- LOGIN & MAIN CONTENT ---------------------------------------------*/
.MyLoginDesign {
    width: 300px;
    padding-top: 50px;
    min-height: calc(100vh - 150px);
}

iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.MainContent {
    height: 100%;
    display: flex;
    font-family: 'Times New Roman', Times, serif;
    padding-top: 75px;
}
/*-----------------------------------------------------------------------------------------------------------------------------*/


/*--------------------------------------------------- STYLING FOR FOOTER-------------------------------------------------------*/
.footerFrame {
    width: 100%;
    height: 150px !important;
    border: none;
    margin-top: auto;
}

.footerContent {
    height: 150px;
    overflow: hidden;
}

.footer-text {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 40px;
    text-align: center;
}
/*-----------------------------------------------------------------------------------------------------------------------------*/


/*--------------------------------------------------- HEADER FRAME FOR ABOUT US -----------------------------------------------*/
.headerFrame {
    width: 100%;
    height: 200px;
    border: none;
    margin-top: 0px;
    letter-spacing: 0.5px;
}

.logo-img {
    height: 40px;
    object-fit: contain;
}

.textItalic {
    font-style: italic;
    font-size: small;
    padding-left: 120px;
    padding-right: 120px;
}

.googleMaps {
    width: 100%;
    height: 400px;
}

.headerContent {
    height: 100%;
}
/*-----------------------------------------------------------------------------------------------------------------------------*/


/*--------------------------------------------------- STYLING FOR NEWS --------------------------------------------------------*/
.customtitle {
    text-align: center;
    margin-bottom: 20px;
    margin-top: 20px;
    padding-top: 10px;
}

.customtitle .yellow-line {
    width: 800px;
    height: 2px;
    margin: 0 auto;
}

.customtitle h1,
.customtitle h2 {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.page-section {
    text-align: center;
    margin-bottom: 20px;
}

.page-section h2 {
    font-size: 1.1rem;
    color: #800000;
    font-weight: bold;
}

.page-section h2 i {
    margin-right: 10px;
    color: #800000;
    font-size: 1.5rem;
}

.page-section h3 {
    font-size: 1.0rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: rgba(16, 86, 237, 0.937);
    text-align: left;
}

.page-section h4 {
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.col-md-4,
.col-md-6 {
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 20px;
}

.empty-box {
    background-color: rgba(0, 0, 0, 0);
    padding: 20px;
    border: none;
    box-shadow: none;
}

.st-4 {
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
}
/*-----------------------------------------------------------------------------------------------------------------------------*/


/*-------------------------------------------------- MAIN PAGE ------------------------------------------------------------------*/
.title {
    padding-top: 40px;
    color: orange;
    font-size: 40px;
    text-align: center;
}

.welcome-banner {
    width: 100%;
    height: 50px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    margin-top: -90px;
}

.welcome-banner h2 {
    color: white;
    font-size: 25px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin: 10px;
}
/*------------------------------------------------------------------------------------------------------------------------------*/


/*--------------------------------------------------- CIRCLES FOR THE NEWS  ----------------------------------------------------*/
.circle-container {
    display: flex;
    gap: 40px;
    margin: 30px 0;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    max-width: 100%;
    padding: 0 20px;
}

.circle {
    position: relative;
    width: 300px;
    height: 300px;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 10px;
    border-radius: 16px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.15);
}

.circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.circle span {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    text-align: center;
}

.circle-text {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 80%;
}

.circle-text h3 {
    color: rgb(180, 202, 236);
    font-size: 30px;
    font-weight: bold;
    margin: 5px 0;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.9);
}

.circle-text p {
    color: white;
    font-size: 30px;
    margin: 0;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.9);
}
/*-----------------------------------------------------------------------------------------------------------------------------*/


/*----------------------------------------- HEADER IMAGE FOR NEWS ----------------------------------------------*/
.headerDropFrame {
    height: 150px;
}

.image-container {
    position: static;
    width: 100%;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-container img,
.image-text {
    object-fit: cover;
    object-position: center bottom;
    position: absolute;
    width: 100%;
    height: 100%;
    transform: translateY(-100%);
    animation: dropDown 1.5s ease-out forwards;
}

@keyframes dropDown {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0);
    }
}

.image-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    width: 80%;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.9);
}

.image-text h2 {
    color: yellow;
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 5px;
}

.image-text p {
    color: white;
    font-size: 36px;
    margin: 0;
}
/*-----------------------------------------------------------------------------------------------------------------------------*/


/*-------------------------------------------------------- IMAGE GALLERY STYLING ----------------------------------------------*/
.gallery-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    background-color: black;
}

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

.carousel-inner img {
    border-radius: 10px !important;
    max-height: 600px;
    min-height: 500px;
    object-fit: cover;
}

.carousel-item img {
    width: 100%;
    height: 400px;
    margin: auto;
    object-fit: cover;
}

.btn-x {
    background-color: rgba(0, 0, 0, 0.1) !important;
    border: none !important;
    color: white !important;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.gallery img {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    border: 2px solid transparent;
}

.gallery img:hover {
    transform: scale(1.05);
    border-color: rgb(238, 191, 108);
}

/* Carousel styling */
.carousel-item img {
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    height: auto;
    object-fit: contain;
    width: 100%;
}

.carousel-indicators {
    margin-bottom: -1rem;
}

.carousel-control-prev,
.carousel-control-next {
    background-color: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.7);
}

/*----------------------------------------- */
/* GLIGHTBOX */
#galleryGrid a.glightbox {
    text-decoration: none;
}

#galleryGrid img,
#apartmentAGallery img,
#apartmentBGallery img,
#apartmentCGallery img,
#apartmentDGallery img {
    transition: transform .15s ease, box-shadow .15s ease;
}

#galleryGrid img:hover,
#apartmentAGallery img:hover,
#apartmentBGallery img:hover,
#apartmentCGallery img:hover,
#apartmentDGallery img:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, .2);
}

.glightbox-button {
    background: rgba(0, 0, 0, 0.4) !important;
    border-radius: 50%;
    padding: 8px !important;
    transition: background 0.2s;
}

.glightbox-button:hover {
    background: rgba(0, 0, 0, 0.6) !important;
}

.glightbox-prev,
.glightbox-next {
    width: 50px !important;
    height: 50px !important;
}
/*----------------------------------------- */


/* Apartment page specific styles */
.apartment-details {
    background-color: rgba(255, 255, 255, 0.4);
    padding: 8px;
    border-radius: 16px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.15);
}

.apartment-details:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.gold {
    background-color: rgb(238, 191, 108, 0.5);
    font-size: 1.5rem;
    font-weight: bold;
}

.apartment-details h3 {
    color: rgb(54, 43, 9);
    margin-bottom: 15px;
}

.apartment-details ul {
    list-style-type: none;
    padding-left: 0;
}

.apartment-details ul li {
    padding: 5px 0;
    font-size: 1.5rem;
}

#bookingModal .modal-content {
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
}

#bookingModal .form-control {
    background-color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

#bookingModal .form-control:focus {
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 0 0.25rem rgba(238, 191, 108, 0.25);
    border-color: rgba(238, 191, 108, 0.5);
}

.booking-details {
    background-color: rgba(255, 255, 255, 0.4);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.50);
    box-shadow: 0 20px 50px 0 rgba(0, 0, 11, 0.9);
}

.booking-details ul li:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 2000;
    margin-right: 10px;
    color: rgb(238, 191, 108);
}

.price-info {
    color: rgb(5, 0, 0);
    font-size: 1.5rem;
    font-weight: bold;
}
/*-----------------------------------------------------------------------------------------------------------------------------*/

h2.text-warning {
    color: black !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.table {
    --bs-table-border-color: rgba(255, 255, 255, 0);
}

.btnBlack {
    color: black;
}

.dropGold {
    background-color: rgb(238, 191, 108, 0.5);
    font-size: 1.1rem;
    font-weight: bold;
}

.calendarContainer {
    background-color: rgb(238, 191, 108, 0.5);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

/* Glass effect for all cards with gold accent */
.card,
.card.border-warning,
.card.border-danger,
.card.border-info,
.card.border-success {
    background-color: rgba(228, 218, 177, 0.4) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    box-shadow: 0 8px 32px 0 rgba(255, 193, 7, 0.3);
}

.card-header {
    background-color: rgba(255, 215, 0, 0.2) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.5) !important;
    font-size: 1.5rem;
}

.card-body {
    background-color: rgba(234, 228, 178, 0.4) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-size: 1.5rem;
}

.card-footer {
    background-color: rgba(255, 215, 0, 0.2) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 215, 0, 0.4) !important;
    font-size: 1.5rem;
}

.fontMain {
    font-size: 1.5rem !important;
}


/*---------------------------------------------------
  GLOBAL SITE VARIABLES & LAYOUT CONTAINERS
----------------------------------------------------*/
:root {
    --container-max-width-wide: 60%;
    --container-max-width-narrow: 900px;
    --container-side-padding: 20px;
}

.container-wide {
    width: 100%;
    max-width: var(--container-max-width-wide);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--container-side-padding);
    padding-right: var(--container-side-padding);
}

.container-narrow {
    width: 100%;
    max-width: var(--container-max-width-narrow);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--container-side-padding);
    padding-right: var(--container-side-padding);
}

.active-lang {
    font-weight: bold;
    text-decoration: underline;
    color: rgb(17, 50, 221) !important;
}
/*---------------------------------------------------*/


/*--------------------------------------------------- MOBILE SCREEN -----------------------------------------------------------*/
.mobileFont {
    font-size: 1.3rem;
}

@media (max-width: 845px) {
    :root {
        --container-max-width-wide: 90%;
        --container-max-width-narrow: 90%;
        --container-side-padding: 10px;
    }

    .navbar-expand-md .navbar-nav {
        flex-direction: column;
    }
    .navbar-expand-md .navbar-collapse {
        display: none !important;
    }
    .navbar-expand-md .navbar-collapse.show {
        display: block !important;
    }
    .navbar-expand-md .navbar-toggler {
        display: block !important;
    }

    .fontMain,
    .text-warning,
    .welcome-text,
    .list-unstyled {
        font-size: 1.4rem !important;
    }
    .mobileFont {
        font-size: 1.2rem;
        font-weight: bold;
    }
    .list-unstyled {
        font-weight: bold;
    }
    .container {
        margin-top: 120px !important;
    }
    .partment-details {
        padding: 10px;
    }
    .apartment-details ul li {
        font-size: 1.4rem;
    }
    .welcome-banner {
        width: 100%;
        height: 60px;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        margin-top: -10px;
    }
    .welcome-banner h2 {
        color: white;
        font-size: 18px;
        font-weight: bold;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
        margin: 10px;
    }
    .MainContent {
        padding-top: 20px;
    }
    .modal.modal-xl {
        max-width: none;
    }
    .modal-dialog {
        max-width: 95%;
    }
    .footer-text {
        font-size: 25px;
        transform: translate(-60%, -30%);
    }
    .textItalic {
        padding-left: 10px;
        padding-right: 10px;
    }
    .googleMaps {
        width: 100%;
        height: 300px;
        padding-left: 10px;
        padding-right: 10px;
    }
    .circle-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .customtitle .yellow-line {
        width: 90%;
        max-width: 300px;
    }
    .apartments-wrapper {
        flex-direction: column;
        align-items: center;
    }
    .gdesc-inner,
    .gslide-title {
        font-size: 1rem;
    }
}

@media (min-width: 846px) {
    .navbar-expand-md .navbar-toggler {
        display: none !important;
    }
    .navbar-expand-md .navbar-collapse {
        display: flex !important;
    }
    .navbar-expand-md .navbar-nav {
        flex-direction: row;
    }
}

.apartments-wrapper {
    text-align: center;
    margin: 40px auto;
    padding: 20px;
}

.apartment {
    display: inline-block;
    vertical-align: top;
    width: 300px;
    margin: 20px;
    box-sizing: border-box;
}

/*-----------------------------------------------------------------------------------------------------------------------------*/


/*---------------------------------------------------
  GDPR CONSENT BANNER
----------------------------------------------------*/
.consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: white;
    padding: 15px 20px;
    display: none;
    justify-content: space-between;
    align-items: center;
    z-index: 2000;
    font-size: 14px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
}

.consent-banner p {
    margin: 0;
    padding-right: 20px;
}

.consent-banner .btn {
    margin-left: 10px;
}
/*---------------------------------------------------*/


/*---------------------------------------------------
  ATTRACTIONS CAROUSEL CAPTION
----------------------------------------------------*/
#mainGalleryCarousel .carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
    padding: 3rem 1rem 1rem 1rem;
    text-align: center;
    color: #fff;
    display: block !important;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

#mainGalleryCarousel .carousel-caption h5 {
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

#mainGalleryCarousel .carousel-caption p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* On smaller screens, reduce the padding and font size */
@media (max-width: 768px) {
    .carousel-item img {
        height: 300px;
    }
    #mainGalleryCarousel .carousel-caption {
        padding: 2rem 1rem 0.5rem 1rem;
    }
    #mainGalleryCarousel .carousel-caption h5 {
        font-size: 1.1rem;
    }
    #mainGalleryCarousel .carousel-caption p {
        font-size: 0.8rem;
    }
}

#mainGalleryCarousel .carousel-caption a.caption-link {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.7);
    transition: color 0.2s, border-bottom-color 0.2s;
}

#mainGalleryCarousel .carousel-caption a.caption-link:hover {
    color: #ffc107;
    border-bottom-color: #ffc107;
}
/*---------------------------------------------------*/


/*---------------------------------------------------
  GETTING HERE CARD LINKS
----------------------------------------------------*/
.card-text a.card-link-style {
    color: #0056b3;
    text-decoration: none;
    border-bottom: 1px dotted #0056b3;
    transition: color 0.2s, border-bottom-color 0.2s;
}

.card-text a.card-link-style:hover {
    color: #003d80;
    border-bottom-color: #003d80;
}
/*---------------------------------------------------*/



/*******************************/
/* SPECIAL OFFER  */
/*******************************/

#specialOfferTitle {
    color: orangered;
}