:root {
    --black: #000;
    --white: #fff;
    --font: "Mada", sans-serif;
}

body {
    font-family: var(--font);
    margin: 0;
    background-color: var(--white);
    color: var(--black);
    font-size: 1rem;
    line-height: 1.5;
}

/* nav bar */
nav {
    background-color: var(--white);
    width: 100%;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid var(--black);
    font-size: 16px;
    line-height: 20px;
    position: sticky;
    transition: 0.3s ease;
    z-index: 3;
}

.navigation {
    display: flex;
    flex-direction: row;
    width: 73%;
    justify-content: space-between;
}

nav p {
    margin: 0;
}

nav a p {
    width: 100%;
}

.burger-button {
    border: none;
    background: none;
    outline: none;
    padding: 0;
    cursor: pointer;
}



.hide {
    transform: translateY(-100%);
    opacity: 0;
}

nav a {
    padding: 12px;
    text-decoration: none;
    color: var(--black);
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    justify-self: center;
}

.left {
    display: flex;
    justify-items: baseline;
}

.right {
    display: flex;
    justify-items: baseline;
}


/* content */

section {
    max-width: 73%;
    border-right: 1px solid var(--black);
    border-left: 1px solid var(--black);
    margin-left: auto;
    margin-right: auto;
}

/* section new */

.container {
    max-height: 100%;
    height: 100vh;
    border-bottom: 1px solid var(--black);
    background-image: url(assets/ea4d579ce9ef86639a849c18a36f835deb1bedec-4269x2400.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.container a {
    display: flex;
    text-decoration: none;
    font-family: 'Quicksand-Medium', sans-serif;
}

.new {
    max-width: 400px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-self: center;

}

.container h3 {
    display: flex;
    justify-content: center;
    color: var(--white);
    transition: 0.7s;
    font-size: 100px;
    margin: 0;

}

.container h3:hover {
    color: rgb(255, 255, 255);
    opacity: 0.8;
}


/* section with 2 images */

.no_bg {
    background-image: none;
    display: flex;
    flex-direction: row;
    overflow: hidden;
}

/* section text - image women */

.women {
    max-width: 100%;
}

.text h3 {
    text-align: center;
}

.text {
    width: 50%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.women h3 {
    color: var(--black);
    margin-left: auto;
    margin-right: auto;
    text-transform: uppercase;
    height: auto;
}

.women h3:hover {
    color: rgb(0, 0, 0);
    opacity: 0.5;
}

.women img {
    height: 100%;
    object-fit: cover;
}

/* section 3 images -   */

.forJeans {
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-self: center;
    border: none;
    z-index: 2;
    position: absolute;
}

.forJeans .images {
    max-width: 100%;
    justify-self: center;
    justify-content: center;
}

.jeansText {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    border-top: none !important;
}

.jeansText a h3 {
    text-transform: uppercase;
}

.images {
    display: flex;
    flex-direction: row;
    /* z-index: 0; */
}

.images img {
    width: 33%;
}

.textJ {
    width: auto;
    max-width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    text-transform: uppercase;
    /* margin-top: -76%; */
    margin-left: auto;
    margin-right: auto;
    z-index: 3;

}

/* carousel */
.mySlides {
    display: none;
}

.slideshow-container {
    position: relative;
    z-index: 1;
}

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

.next {
    right: 0%;
}

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

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

/* discription */
.discription {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-weight: 700;
    font-size: 56px;
    line-height: 56px;
    max-width: 100%;
    padding: 0 32px 60px 32px;
}

.slider-container {
    position: relative;
    width: 100%;
    max-width: 100%;
}

.forJeans {
    /* width: 100%; */
    overflow: hidden;
}

/* carousel*/
.slider {
    display: flex;
    transition: transform 0.4s ease;
}

.slider img {
    width: 33%;
    height: 100%;
    object-fit: contain;
    background: #fff;
}

.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    cursor: pointer;
    user-select: none;
    padding: 10px;
    z-index: 10;
}

.prev {
    left: 0;
}

.next {
    right: 0;
}

.P26,
.P27 {
    border-bottom: 1px solid black;
}

.P28 {
    border-right: 1px solid black;
}

.leftSide{
    border-left: 0;
}