* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: white;
    font-size: 1.5vw; 
    background-color: #1A1A1A;
}

header {
    background: #1A1A1A;
    color: white;
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0.25vh;  
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1;
}

.logo {
    width: auto; 
    height: auto;
    padding-right: 6.5vw;
}

ul {
    padding-left: 3.25vw;
}

nav ul {
    list-style: none;
}

nav ul li {
    display: inline;
    margin: 0 2vw; 
}

nav a {
    text-decoration: none;
    color: white;
}

a {
    color: white;
}

.home {
    background: url('background.jpg') center/cover no-repeat;
    position: relative;
    height: 97vh; 
    width: 100%;
    align-items: center;
    padding-left: 0;
    padding-right: 0;
    margin: 0 auto;
    padding-top: 55vh; 
}

.arrows-body {
    position: relative;
    display: block;
    align-items: center;
    justify-content: center;
}

.arrow {
    position: relative;
    width: 5vh;
    height: 5vh;
    border-top: 1vh solid #fff;
    border-left: 1vh solid #fff;
    transform: rotate(225deg);
    animation: arrow-load 2s infinite;
}

.arrow:nth-child(1){
    animation-delay: -0.2s;
    bottom: 2vh;
}

.arrow:nth-child(2){
    animation-delay: 0s;
}

.arrow:nth-child(3){
    animation-delay: 0.2s;
    top: 2vh;
}

@keyframes arrow-load{
    0%{
        opacity: 0;
        transform: rotate(225deg) translate(5vh, 5vh);
    }

    50%{
        opacity: 1;
    }

    100%{
        opacity: 0;
        transform: rotate(225deg) translate(-5vh, -5vh);
    }
}

.button {
    width: 15vw; 
    height: 7vh; 
    font-size: 1.5vw; 
    background-color: transparent;
    color: white;
    border-color: white;
    border-width: 0.15vw; 
    border-radius: 2vw;
}

.LA-FW {
    background: #1A1A1A;
    font-family: Arial, sans-serif;
    color: white;
    font-size: 1.5vw;
    justify-content: left;
    padding-top: 15vh;
    padding-left: 11vh;
    padding-right: 5vh;
    padding-bottom: 1.65vh;
}

.alignment-fix {
    display: flex;
    justify-content: center;
    padding-top: 15vh; 
    padding-right: 5vw; 
}

.content {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    padding: 1vh;
}

.left-column, .right-column {
    width: 100%;
    height: 100%;
    padding-top: 5vh; 
    padding-left: 5vw; 
    padding-right: 5vw; 
    padding-bottom: 10vh; 
}

h1 {
    font-size: 2.5vw; 
}

.socials {
    display: flex;
    padding-left: 5vw;
}

.inline-block {
    float: left;
    padding-bottom: 4vh;
}

.about, .stay-updated {
    background: #1A1A1A;
    padding: 1px;
}

footer {
    background: #1A1A1A;
    text-align: center;
    padding: 2vw; 
}

.sub-container {
    padding-left: 75px;
    padding-right: 75px;
    position: relative;
    overflow: hidden;
}

.parent-container {
    padding-top: 2vh;
    padding-bottom: 2vh;
    padding-left: 1vw;
    padding-right: 1vw;
    text-align: left;
    margin-bottom: 20px;
    background-color: #ffffff;
    border-radius: 4vh;
    position: relative;
    margin-top: 1vh;
    margin-left: 1vw;
    margin-right: 1vw;
}

.first {
    text-align: center;
    margin-top: 10vh;
}

.title {
    text-align: center;
    margin-top: 2.5vh;
}

.h2 {
    font-size: 2vw;
    font-weight: normal;
}

.scrollbar {
    width: 100%;
    white-space: nowrap;
    overflow-x: scroll;
    overflow-y: hidden;
}

.product-content {
    display: inline-block;
    background-color: white;
}

.product-image {
    height: 300px;
    width: auto;
    object-fit: cover;
    margin-right: 10px;
}

.arrow-left{
    border-color: white;
    border-top: transparent;
    border-left: transparent;
    top: 45%;
    position: absolute;
    width: 5vh;
    height: 5vh;
    background-color: transparent;
    transform: translate(1vw) rotate(135deg);
    cursor: pointer;
}

.arrow-right{
    border-color: white;
    border-top: transparent;
    border-left: transparent;
    top: 45%;
    position: absolute;
    width: 5vh;
    height: 5vh;
    background-color: transparent;
    transform: translate(-1vw) rotate(315deg);
    cursor: pointer;
}

.prev {
    left: 0;
}

.next {
    right: 0;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background-color: #3a3a3a;
}

::-webkit-scrollbar-thumb {
    background-color: #e0e0e0;
}

#popup-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: grid;
    place-items: center;
    z-index: 2;
}

#popup-image {
    display: grid;
    place-items: center;
    position: fixed;
    top: 20vh;
    justify-content: center;
    max-width: 75%;
    max-height: 75%;
}