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;
}

* {
    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;
}

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

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

nav ul {
    list-style: none;
    display: flex;
    width: 100%;
    top: 0;
}

nav ul li {
    width: 50%;
    margin-left: 0px;
    text-align: center;
    padding: 5px;
}

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

.hero {
    background-image: url("Images/Hero.jpg");
    background-size: cover;
    width: 100%;
    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);
}

nav {
    width: 100%;
}

#navbar ul li a {
    color: white;
}

#socialMedia {
    padding: 40px 0;
}

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

#socialMedia a {
    text-align: center;
}

.liveEvents {
    background-color: #2c3f8b;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.liveEvents .widget {
    background-color: white;
    width: 400px;
    text-align: center;
    margin: 25px;
    border-radius: 5px;
    box-shadow: 0px 0px 5px .5px #707070;
    padding: 5px;
    height: 220px;
    display: grid;
}


.liveEvents .widget h1 {
    font-size: 28px;
}

.liveEvents .widget h2 {
    font-size: 24px;
    font-weight: 300;
}

.liveEvents .widget h3 {
    font-size: 50px;
}

#events {
    padding: 40px 0;
}

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

#event-details {
    padding: 40px 0;
}

#event-details h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}
#event-details h2 {
    
    overflow: hidden;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0px;
    text-align: center;
}

#event-details p {
    margin-top: 10px;
    font-weight: 700;
    margin-bottom: 0px;
    text-align: center;
}

#map {
    padding: 40px 0;
}

#map h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}

#map h2 {
    
    overflow: hidden;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0px;
    text-align: center;
}

#map p {
    margin-top: 10px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
}

#map img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

#events .container .flex-container .event {
    display: flex;
    margin: 10px;
    border-radius: 5px;
    box-shadow: 0px 0px 5px .5px #707070;
}

.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: 150px;
    object-fit: cover;
    overflow-y: hidden;
    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;
}

@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;
}

.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 {
    width: 100%;
    position: relative;
}

.mySlides {
    display: none;
}

.mySlides img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    margin: auto;
}

.autoSlides {
    display: none;
}

.autoSlides img {
    overflow-y: hidden;
    overflow-x: hidden;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

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

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
    background-color: rgba(255, 255, 255, 0.25);
}

.text {
    color: #ffffff;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    font-weight: 700;
    text-align: center;
}

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

.numbertext {
    color: #000000;
    font-size: 12px;
    padding: 8px 12px;
    position: relative;
    top: 0;
    text-align: center;
}

.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;
}

.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;
}

.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;
    box-shadow: 0px 0px 5px .5px #707070;
    border-radius: 5px;
}

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

.info .details {
    padding: 20px;
    width: 100%;
    height: 40%;
    background-color: #fff;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    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%;
}

.topnav {
    width: 100%;
    overflow: hidden;
    background-color: #2c3f8b;
    position: relative;
}

#links {
    display: none;
    position: absolute;
    width: 100%;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

#links li {
    list-style: none;
    background-color: #2c3f8b73;
}

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

#links li a:hover {
    background-color: #2c3f8bc5;
    border-bottom: white inset 0.5px;
    border-top: white inset 0.5px;
    font-weight: bold;
}

.topnav a.icon {
    background: none;
    display: block;
    position: absolute;
    right: 0;
    color: white;
    top: 0;
}
