@import url("https://fonts.googleapis.com/css2?family=Mulish:wght@300;400;500;600;700;800&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Mulish', sans-serif;
}

*, *::after, *::before {
    box-sizing: border-box;
}

h1 {
    font-size: 4em;
}

p {
    font-size: 1em;
    letter-spacing: 1px;
    font-weight: 400;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 100px;
    z-index: 10;
}

header .logo {
    position: relative;
}

header .navigation {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 10px 0;
}

header .navigation li {
    list-style: none;
    margin: 0 10px;
    padding: 20px;
}

header .navigation li a {
    color: #000000FF;
    text-decoration: none;
    letter-spacing: 1px;
    opacity: 0.7;
    border-bottom: 2px solid transparent;
    transition:
        opacity 0.3s ease,
        border-bottom 0.3s ease;
}

header .navigation li a:hover {
    /*background-color: #70319F;*/
    /*color: #ffffff;*/
    /*padding: 15px;*/
    border-radius: 8px;
    opacity: 0.9;
    border-bottom: 2px solid #70319F;
}

header .navigation li .active a {
    border-bottom: 2px solid #70319F;
    opacity: 1;
 }

/*.toggle-button {*/
/*    position: absolute;*/
/*    top: 65px;*/
/*    right: 100px;*/
/*    display: none;*/
/*    flex-direction: column;*/
/*    justify-content: space-between;*/
/*    width: 30px;*/
/*    height: 21px;*/
/*}*/

/*.toggle-button .bar {*/
/*    height: 3px;*/
/*    width: 100%;*/
/*    background-color: #70319F;*/
/*    border-radius: 10px;*/
/*}*/

/*.nav-toggle {*/
/*    display: none;*/
/*    background-color: transparent;*/
/*    color: #ffffff;*/
/*    border: none;*/
/*    cursor: pointer;*/
/*    font-size: 1.2rem;*/
/*}*/

.container {
    width: 100%;
    height: 100vh;
    top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    color: #ffffff;
}

.swiper {
    width: 100%;
    height: fit-content;
}

.swiper .swiper-button-prev, .swiper .swiper-button-next {
    color: #ffffff;
}

.swiper .swiper-pagination-bullet-active {
    background: #ffffff;
}

.swiper-slide img {
    width: 100%;
}

.image-text {
    z-index: 10;
    position: absolute;
    top: 50%;
    left: 20%;
    text-align: left;
}

.image-heading {
    padding: 5px;
}

.image-detail {
    padding: 5px;
    line-height: 30px;
    margin-top: 10px;
}

.image-button {
    border: 0;
    background-color: #70319F;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    font-size: 20px;
    font-weight: bold;
}

.image-button a {
    text-decoration: none;
    color: #ffffff;
}

.image-button:hover {
    background-color: #ffffff;
    color: #70319F;
}

.image-button a:hover {
    background-color: #ffffff;
    color: #70319F;
}

footer {
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    bottom: 0;
}

footer p {
    margin-top: 20px;
    width: 100%;
    font-size: 12px;
    letter-spacing: 0;
    text-align: center;
}

/*@media (max-width: 1385px) {*/

/*    !*.toggle-button {*!*/
/*    !*    display: flex;*!*/
/*    !*}*!*/

/*    !*.navbar-links {*!*/
/*    !*    display: none;*!*/
/*    !*    width: 100%;*!*/
/*    !*    height: 100%;*!*/
/*    !*}*!*/

/*    !*header {*!*/
/*    !*    flex-direction: column;*!*/
/*    !*    align-items: flex-start;*!*/
/*    !*    background-color: #ffffff;*!*/
/*    !*}*!*/

/*    !*header .navigation {*!*/
/*    !*    width: 100%;*!*/
/*    !*    flex-direction: column;*!*/
/*    !*    background-color: #ffffff;*!*/
/*    !*}*!*/

/*    !*header .navigation li {*!*/
/*    !*    text-align: center;*!*/
/*    !*}*!*/

/*    !*header .navigation li a {*!*/
/*    !*    padding: .5rem 1rem;*!*/
/*    !*    color: #70319F;*!*/
/*    !*}*!*/

/*    .navigation {*/
/*        display: none;*/
/*        flex-direction: column;*/
/*        text-align: center;*/
/*        width: 100%;*/
/*        position: absolute;*/
/*        top: 4rem;*/
/*        left: 0;*/
/*        background-color: #333;*/
/*        z-index: 1;*/
/*    }*/

/*    .navigation li {*/
/*        margin: 1rem 0;*/
/*    }*/

/*    .nav-toggle {*/
/*        display: block;*/
/*    }*/

/*    .active {*/
/*        display: flex;*/
/*    }*/

/*}*/