/*
*   SETUP BOOTSTRAP OPTIONS
*/
.row {
  --bs-gutter-x: 3rem;
}

.p-40 {
    padding: 40px;
}

.rotate-180 {
    transform: rotate(180deg);
}

/* 
*   SETUP BASIC FONTS AND STYLES
*/

body, p, li, span, a {
    font-family: 'Leda', sans-serif;
    font-size: 18px;
    color: #2D2A2A
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Leda', sans-serif;
    font-weight: bold;
    color: #365B6D;
}

body {
    background-color: #F3F3F3 !important;
    color: #2D2A2A;
}

.content {
    padding: 50px 0;
}

.container {
    max-width: 989px;
}

.dark-bg {
    background-color: #365B6D;
    color: white;
}


.dark-bg h1, .dark-bg h2, .dark-bg h3, .dark-bg h4, .dark-bg h5, .dark-bg h6 {
    color: #fff;
}

.dark-bg p, .dark-bg a, .dark-bg span {
    color: #d9d9d9;
}

.cream-bg {
    background-color: #F1EDE7;
    color: #00013E;
}

.cream-bg h1, .cream-bg h2, .cream-bg h3, .cream-bg h4, .cream-bg h5, .cream-bg h6 {
    color: #418585;
}

.cream-bg p, .cream-bg a, .cream-bg span {
    color: #00013E;
}

/*
*   SETUP HERO IMAGE
*/

.header {
    padding: 20px 0;
    background: #fff;
}

.footer {
    padding: 20px 0;
    background: #000;
}

.hero-image {
    background-image: url('/img/leda/Hero.jpg');
    background-size: cover;
    background-position: center;
    height: 550px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: white;
    font-size: 24px;
}

.hero-image h1 {
    text-transform: uppercase;
    font-weight: 800;
    color: #fff;
    line-height: 0.9;
}

.hero-image p {
    font-size: 24px;
    color: #fff;
}

/*
*    GALLERY SLIDERS
*/

.swiper .swiper-slide {
    padding-bottom: 50px;
}

.swiper .swiper-pagination-bullet {
    background: transparent;
    border: white 1px solid;
    opacity: 1;
}

.swiper .swiper-pagination-bullet-active {
    background: white;
}

.divider-image {
    object-fit: cover;
    width: 100%;
}

.text-small, .text-small a {
    font-size: 12px;
}

a.btn.btn-primary {
    background: #365B6D;
    color: white;
    border: none;
}

a.btn.btn-primary:hover {
    background: #418585;
    color: white;
}

ul.dropdown li a {
    font-size: 14px;
}