button {
    background: none;
    border: 0;
    color: inherit;
    /* cursor: default; */
    font: inherit;
    line-height: normal;
    overflow: visible;
    padding: 0;
}

select,
input {
    all: unset;
    background-color: rgba(0, 0, 0, 0);
    border-bottom: 3px solid rgba(0, 0, 0, 0);
    transition-duration: 0.5s;
}

select:focus,
input:focus {
    all: unset;
    border-bottom: 3px solid rgb(76, 42, 134);
}

input::-moz-focus-inner,
button::-moz-focus-inner {
    border: 0;
    padding: 0;
}

/* Global styles */

* {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    background-color: #f2f2f2;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.event-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background-color: #2c3f8b;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
}

nav ul {
    list-style: none;
    display: flex;
    position: sticky;
    top: 0;
}

nav li {
    margin-left: 20px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

nav a:hover {
    color: #f2f2f2;
}

.hero {
    background-image: url("https://pbs.twimg.com/media/D20LtHGW0AIKR-0?format=jpg&name=4096x4096");
    background-size: cover;
    background-position: 100% 26%;
    height: 400px;
    display: flex;
    align-items: center;
}

.hero h1 {
    font-size: 60px;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}

.hero p {
    font-size: 24px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.socialMedia {
    padding: 40px 0;
}

.socialMedia h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
}

.events {
    padding: 40px 0;
}

.events h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
}

.events .container .flex-container .event {
    display: flex;
    margin: 1%;
}

.flex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.event {
    margin-bottom: 50px;
    height: 100%;
    width: 400px;
    flex-direction: column;
}

.event img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

.event .details {
    padding: 20px;
    width: 100%;
    height: 40%;
    background-color: #fff;
    border-radius: 5px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.event h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.event p {
    margin-bottom: 20px;
}

.button {
    display: inline-block;
    background-color: #2c3f8b;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.button:hover {
    background-color: #27377a;
}

footer {
    background-color: #2c3f8b;
    padding: 20px;
    text-align: center;
}

footer p {
    color: #fff;
    font-size: 14px;
}

/* Animations */

@keyframes slideIn {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.slideIn {
    animation: slideIn 1s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fadeIn {
    animation: fadeIn 1s forwards;
}

/* Property Info */

.event-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    margin: 50px auto;
    max-width: 1200px;
}

.event-images {
    position: relative;
    margin: 1%;
}

.event-images .image-container {
    width: 50%;
    background-size: cover;
}

.event-images .image-container.active {
    display: block;
}

.event-images img {
    width: 100%;
}

.event-info {
    padding: 20px;
    width: 400px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: auto;
    margin: 2.5%;
}

.event-info h2 {
    font-size: 36px;
    margin-top: 0;
}

.event-info ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.event-info ul li {
    font-size: 24px;
    margin-bottom: 10px;
    list-style-type: disc;
    list-style-position: inside;
}

.event-info .event-description {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 30px;
}

#map {
    height: 400px;
    width: 100%;
    margin-bottom: 30px;
    border-radius: 5px;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

/* Slideshow container */
.slideshow-container {
    max-width: 400px;
    position: relative;
    margin: 1%;
}

/* Hide the images by default */
.mySlides {
    display: none;
}

.mySlides img {
    border-radius: 5px;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.autoSlides {
    display: none;
}

.autoSlides img {
    border-radius: 5px;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Caption text */
.text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}

.autoText {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 50%;
    text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
    color: #000000;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.5s ease;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.active,
.dot:hover {
    background-color: #717171;
}

/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
}

.sticky+.content {
    padding-top: 60px;
}

/* Bar Information */


.information {
    padding: 40px 0;
}

.information img {
    justify-content: center;
}

.information h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
}

.information .container .flex-container .info {
    display: flex;
    margin: 2.5%;
}

.flex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.info {
    margin-bottom: 50px;
    height: 100%;
    width: 400px;
    flex-direction: column;
}

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

.info .details {
    padding: 20px;
    width: 100%;
    height: 40%;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.info h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.info p {
    margin-bottom: 20px;
}

#paymentMethods {
    height: 100%;
}

/* Style the navigation menu */
.topnav {
    overflow: hidden;
    background-color: #2c3f8b;
    position: relative;
}

/* Hide the links inside the navigation menu (except for logo/home) */
#links {
    display: none;
}

/* Style navigation menu links */

#links li {
    list-style: none;
}

#links li a {
    color: white;
    background-color: #2c3f8b;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    display: block;
    transition-duration: 0.5s;
}

#links li a:hover {
    background-color: #27377a;
    font-weight: bold;
}

/* Style the hamburger menu */
.topnav a.icon {
    background: black;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
}

/* Add a grey background color on mouse-over */
.topnav a:hover {
    background-color: #2c3f8b;
    color: black;
}