/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 22 may 2023, 9:33:54
    Author     : ANTNAV
*/
/* Custom properties */
:root {
    --black: #151515;
    --black-90: rgba(21, 21, 21, .9);
    --black-75: rgba(21, 21, 21, .75);
    --black-50: rgba(21, 21, 21, .5);
    --bg-1: #E3CFCF;
    --bg-2: #E9E9E9;
    --accent: #E36262;
    --primary-ff: 'Futura Lt BT';
    --secondary-ff: 'Futura Lt BT';
}
/* Typography */
body {
    font-family: var(--primary-ff);
    color: var(--black-90);
}

/* Swiper */
.swiper-slide {
    video {
        width: 100%;
        height: 100%;
    };
    display: inline-block;
}

.slide-text {
  text-align: center;
  width: 100%;
  height: 5%;
  /*max-width: 120px;*/
  /*padding: 30px;*/
  position: fixed;
  /*padding-top: 800px;*/
  right: 0%;
  left: 0;
  bottom: 0;
  /*color: #fff;*/
  /*z-index: 2;*/
  opacity: 0.7;
  
}
.swiper-wrapper {
    width: 100%;
    height: 100%;
    /*z-index: -12*/
    object-position: center;
}

.swiper-item {
  width: 100%;
  height: 100%;
  background-size: cover;
  /*background-size: contain;*/
  background-repeat: no-repeat;
  background-position: left;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  transition: all 0.3 ease;
}

.swiper-slide figure {
    position: relative;
    overflow: hidden;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.swiper-slide figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translateY(20%);
    display: flex;
    align-items: baseline;
    justify-content: center;
    padding: 20px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    transition: all 0.4s;
}

.swiper-slide-active figcaption {
    opacity: 1;
    visibility: visible;
    transform: none;
}

#swiper1 .swiper-pagination {
    bottom: 2rem;
}
#swiper1 .swiper-pagination-bullet {
    margin: 0 .5rem;
    opacity: 1;
    background-color: var(--black-75);
    width: .75rem;
    height: .75rem;
}
#swiper1 .swiper-pagination-bullet-active {
    background-color: var(--accent);
}

.swiper-custom-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    z-index: 10;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.swiper-custom-nav svg {
    cursor: pointer;
    opacity: .6;
    transition: all .3s ease-in-out;
}
.swiper-custom-nav svg:hover {
    opacity: 1;
}
.swiper-custom-pagination {
    display: flex;
    width: 100%;
    padding-top: 2rem;
    justify-content: center;
    gap: 1rem;
    font-family: var(--secondary-ff);
    font-size: 17px;
    line-height: 29px;
    font-weight: 500;
    color: var(--black);
}
.swiper-custom-pagination .swiper-pagination-bullet {
    width: auto;
    height: auto;
    border-radius: 0;
    background-color: transparent;
    opacity: 1;
    text-align: center;
}
.swiper-custom-pagination .number {
    opacity: 0;
    transition: all .3s ease-in-out;
}
.swiper-custom-pagination .line {
    opacity: .3;
    height: .25rem;
    width: .75rem;
    background-color: var(--black);
    display: block;
    border-radius: 4px;
    transition: all .3s ease-in-out;
}

.swiper-custom-pagination .swiper-pagination-bullet-active .number,
.swiper-custom-pagination .swiper-pagination-bullet-active .line {
    opacity: 1;
}
.swiper-custom-pagination .swiper-pagination-bullet-active .line {
    width: 2rem;
}

/* Responsive */
@media screen and (max-width: 800px) {
    .padded,
    #main-header {
        padding: 4rem;
    }
    .swiper {
        height: 200px;
    }
    .swiper-custom-nav svg {
        /*display: none;
        visibility: hidden;*/
        width: 24px;
        height: 24px;
    }
    .slide-text {
       /* display: none;*/
  text-align: left;
  width: 100%;
  height: 10%;
  /*max-width: 350px;*/
  padding: 3px;
  position: flex;
  bottom: 0;
  color: #fff;
  /*z-index: 2;*/
  opacity: 0.7;
    }
    .slide-text h1,h2,h3,h4 {
      font-size: 14px;
    }
    .slide-text p,li {
      font-size: 12px;
    }
    .swiper-wrapper {
        height: auto;
        background-size: cover;
    }
    .swiper-item {
        background-size: contain;
    }
}

