@import url(main.css);

/*=== FONTS ===*/

@font-face {
    font-family: "Fraunces";
    src: url(/src/static/assets/fonts/Fraunces/Fraunces-Italic.ttf) format("truetype");
}

@font-face {
    font-family: "MinionPro";
    src: url(/src/static/assets/fonts/MinionPro/MinionPro-Regular.otf) format("opentype"),
         url(/src/static/assets/fonts/MinionPro/MinionPro-Regular.ttf) format("truetype");
    font-weight: 400;
}

@font-face {
    font-family: "MinionPro";
    src: url(/src/static/assets/fonts/MinionPro/MinionPro-Medium.otf) format("opentype"),
         url(/src/static/assets/fonts/MinionPro/MinionPro-Medium.ttf) format("truetype");
    font-weight: 500;
}

@font-face {
    font-family: "MinionPro";
    src: url(/src/static/assets/fonts/MinionPro/MinionPro-Semibold.otf) format("opentype"),
         url(/src/static/assets/fonts/MinionPro/MinionPro-Semibold.ttf) format("truetype");
    font-weight: 600;
}

@font-face {
    font-family: "MinionPro";
    src: url(/src/static/assets/fonts/MinionPro/MinionPro-Bold.otf) format("opentype"),
         url(/src/static/assets/fonts/MinionPro/MinionPro-Bold.ttf) format("truetype");
    font-weight: bold;
}

/*=== MAIN ===*/

.container {
    align-items: center;
    display: flex;
    height: 100vh;
    justify-content: center;
    width: 100%;
}

.swiper {
    height: 100%;
    width: 100%;
}

.swiper .banner {
    align-items: center;
    background-color: var(--transparent-primary);
    bottom: 0;
    color: var(--white);
    display: flex;
    flex-direction: column;
    min-height: 30vh;
    justify-content: space-evenly;
    padding: 50px;
    position: absolute;
    width: 100%;
}

.swiper .banner h2 {
    font-family: 'Fraunces';
    font-size: min(10vw, 60px);
    font-weight: 500;
    margin: 0 0 30px 0;
    text-align: center;
}

.swiper .banner h2 span {
    text-transform: uppercase;
}

.swiper .banner p {
    font-family: 'MinionPro';
    font-size: min(4.9vw, 25px);
    margin-bottom: 30px;
    max-width: 1200px;
    text-align: center;
    width: 100%;
}

.swiper .banner p.panel {
    background-color: var(--white);
    color: var(--primary);
    font-family: 'Fraunces';
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 30px;
    max-width: 1200px;
    padding: 5px 10px;
    text-align: center;
    text-decoration: none;
    width: 100%;
}

.swiper .banner a:hover {
    text-decoration: underline;
}

.swiper-slide .img {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    width: 100%;
}

.swiper-slide .img-1 {
    background-image: url(/src/static/assets/images/exterieur-1.jpg);
    background-position: center center;
}

.swiper-slide .img-2 {
    background-image: url(/src/static/assets/images/exterieur-2.jpg);
    background-position: center center;
}

.swiper-slide .img-3 {
    background-image: url(/src/static/assets/images/exterieur-3.jpg);
    background-position: center center;
}

.swiper-slide .img-4 {
    background-image: url(/src/static/assets/images/exterieur-4.jpg);
    background-position: center center;
}

.swiper-slide .img-5 {
    background-image: url(/src/static/assets/images/exterieur-5.jpg);
    background-position: center center;
}

.swiper-slide .img-6 {
    background-image: url(/src/static/assets/images/exterieur-6.jpg);
    background-position: center center;
}

.swiper-slide .img-7 {
    background-image: url(/src/static/assets/images/exterieur-7.jpg);
    background-position: center center;
}

.swiper-slide .img-8 {
    background-image: url(/src/static/assets/images/exterieur-8.jpg);
    background-position: center center;
}

.swiper-slide .img-9 {
    background-image: url(/src/static/assets/images/exterieur-9.jpg);
    background-position: center center;
}

.swiper-slide .img-10 {
    background-image: url(/src/static/assets/images/exterieur-10.jpg);
    background-position: center center;
}

.swiper-slide .img-11 {
    background-image: url(/src/static/assets/images/exterieur-11.jpg);
    background-position: center center;
}

.swiper .swiper-button-prev, .swiper .swiper-button-next {
    color: var(--white);
    transition: all .3s ease-in-out;
}

.swiper .swiper-button-prev:hover, .swiper .swiper-button-next:hover {
    color: var(--primary);
}

.swiper .swiper-pagination-bullets {
    align-items: center;
    display: flex;
    height: 30px;
    justify-content: center;
    margin-bottom: 15px;
}

.swiper .swiper-pagination-bullet {
    background-color: var(--white);
}

.swiper .swiper-pagination-bullet-active {
    height: 15px;
    transition: all .3s ease-in-out;
    width: 15px;
}