

html, body {
    overflow-x: hidden;
    width: 100%;
}

/* #region FRONT PAGE */
.section1 {
    position: fixed;
    background: url('Fibre\ Optics/Front-Background.avif') no-repeat center center/cover;
    background-size: cover;
    color: black;
    flex-direction: column;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
    text-align: center;
}

.section1 h1 {
    font-family: 'Arial', sans-serif;
    font-size: clamp(44px, 12vw, 120px);
    backdrop-filter: blur(4px);
    border-radius: 20px;
    background-color: rgb(255, 255, 255,0.4);
}

.section1 h2 {
    font-family: 'Arial', sans-serif;
    font-size: clamp(12.5px, 3.75vw, 37.5px);
    border-radius: 20px;
    animation: text-grow-shrink 3s ease-in-out infinite;
    text-shadow: 0px 5px 20px black;
}

@keyframes text-grow-shrink {
    0% {
        font-size: clamp(12.5px, 3.75vw, 37.5px);
    }
    50% {
        font-size: clamp(13.75px, 4.125vw, 41.25px);
    }
    100% {
        font-size: clamp(12.5px, 3.75vw, 37.5px); 
    }
}


.scroll-down {
    position: absolute;
    bottom: 25%;
    color: black;
    font-size: 16px;
    cursor: pointer;
}

.section2 {
    z-index: 2;
    background-color: white;
    position: absolute; 
    top: 100vh; 
    left: 0;
    width: 100%; 
    height: fit-content;
    padding: 20px; 
}
/* #endregion */

/* #region H+S */
.HS-part {
    margin-top: 100px;
    display: flex;
    align-items: center; 
    gap: 20px; 
}

.HS-part img {
    max-width: 50%; 
    height: auto;
    box-shadow: 0px 10px 20px black;
}

.HS-part p {
    font-family: 'Arial', sans-serif;
    font-size: clamp(5px,2.5vw,25px);
    color: black; 
    width: 45%;
}

.paragraph-1 {
    font-family: 'Arial', sans-serif;
    margin-top: 100px;
    padding: 0 10%;
    font-size: clamp(5px, 2.5vw, 25px);
    text-align: center; 
}
/* #endregion */

/* #region Data Centers */
.data-centers-background {
    margin-top: 80px;
    font-size: clamp(5px, 2.5vw, 25px);
    background: url(Fibre\ Optics/Background.avif) no-repeat center center;
    background-size: cover;
    position: relative;
    padding: 50px 10%;
    color: white; 
}

.data-centers{
    font-family: 'Arial', sans-serif;
    display: flex;
    align-items: center; 
    justify-content: center; 
    margin-top: -20px;
    padding: 0 10%; 
    font-size: clamp(30px,5vw,50px);
    text-align: center; 
}

.data-centers-background::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65); 
    z-index: 0;
}

.data-centers-background h2,
.data-centers-background p,
.data-centers-background ul {
    font-family: 'Arial', sans-serif;
    position: relative;
    z-index: 1; 
    text-align: center;
}

.data-centers-background h2 {
    font-weight: 400;
}

.data-centers-background ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    list-style-type: disc; 
    list-style-position: outside;
}
/* #endregion */

/* #region Production and Assemnly */
.assembly{
    font-family: 'Arial', sans-serif;
    display: flex;
    flex-direction: row;
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    gap: 50px;
}

.assembly h2{
    font-weight: 400;
    font-size: clamp(48px,8vw,80px);
    margin-left: 5%;

}

.assembly p {
    font-size: clamp(5px, 2.5vw, 25px);
    margin-right: 5%;
}


.range {
    font-family: 'Arial', sans-serif;
    display: flex;
    flex-direction: row; 
    align-items: center; 
    justify-content: center; 
    text-align: left; 
    gap: 5%;
    max-width: 90%;
    margin: 0 auto; 
}
/* #endregion */

/* #region Range */
.range-inner {
    max-width: 50%; 
    margin-left: 50%;
}

.range-inner h2 {
    font-weight: 400;
    font-size: clamp(30px, 5vw, 50px);
    margin-bottom: 15px;
}

.range-inner ul {
    list-style-type: disc; 
    padding-left: 20px; 
    font-size: clamp(5px, 2.5vw, 25px);
}


.orange-text {
    color: rgb(237, 85, 35);
}

.image-container {
    position: absolute;
    margin-left: -65%; 
}

.image-container img{
    width: clamp(200px,40vw,500px);
    height: auto;
}

.range {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
}
/* #endregion */