@import url('https://fonts.cdnfonts.com/css/sf-pro-display');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    font-family: 'SF Pro Display', sans-serif;
}

#main {
    position: relative;
    overflow: hidden;
}

#section-1 {
    position: relative;
    width: 100vw;
    height: 100vh;
}

#navigation {
    position: relative;
    height: 7vh;
    background-color: #fbfbfd;
    z-index: 1;
}

#navigation > nav {
    height: 7vh;
    width: 50vw;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#navigation > nav > #nav-elements{
    display: flex;
    align-items: center;
    justify-content: start;
}

#section-1 > nav > h3 {
    font-size: 21px;
    font-weight: 600;
    line-height: 24px;
}

#nav-elements > h5 {
    font-size: 13px;
    font-weight: 300;
    padding-right: 20px;
}

#nav-elements > button {
    padding: 7px 20px;
    border-radius: 50px;
}

#nav-elements > button > a {
    text-decoration: none;
    color: inherit;
}

#nav-elements > #btn-1 {
    border: 1px solid #000000;
    background-color: transparent;
    margin-right: 20px;
}

#nav-elements > #btn-1:hover {
    background-color: #000000;
    color: #ffffff;
}

#nav-elements > #btn-2 {
    color: #ffffff;
    border: 1px solid #0071e8;
    background-color: #0071e8;
    margin-right: 20px;
}

#nav-elements > #btn-2:hover {
    background-color: transparent;
    color: #0071e8;
}

#section-1 video {
    position: absolute;
    width: 50vw;
    height: 110vh;
    object-fit: cover;
    left: 50%;
    transform: translate(-50%);
}

#section-1-element {
    position: absolute;
    height: 20%;
    width: 25%;
    bottom: 5%;
    left: 50%;
    transform: translate(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

#section-1-element > img {
    padding-bottom: 20px;
}

#section-1-element > h3 {
    font-weight: 500;
    font-size: 24px;
    color: #ff5a00;
    cursor: pointer;
}

#section-1-element > h3:hover {
    text-decoration: underline;
}

#section-2, #section-4, #section-6, #section-8, #section-10, #section-12, #section-14 {
    position: relative;
    width: 100vw;
    height: 100vh;
    background-color: #ffffff;
}

#section-2 video, #section-4 video, #section-6 video, #section-8 video, #section-10 video, #section-12 video, #section-14 video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
}

.sect-2-elements, .sect-4-elements, .sect-6-elements, .sect-8-elements, .sect-10-elements, .sect-12-elements, .sect-14-elements {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 6;
}

.sect-2-elements p {
    font-size: 2.5vw;
    color: #ffffff;
    font-weight: 600;
    padding-bottom: 40px;
}

.sect-2-elements > button {
    margin-top: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 20px 40px;
    border-radius: 50px;
    background-color: transparent;
    border: 3px solid #e4660f;
    color: #e4660f;
}

.sect-2-elements > button:hover {
    background-color: #e4660f;
    color: #ffffff;
    cursor: pointer;
    transition: ease-in-out 0.5s;
}

#section-3 {
    position: relative;
    width: 100vw;
    height: 100vh;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#section-3 img {
    width: 17vw;
    margin-bottom: 12vh;
}

#section-3 canvas {
    width: 50vw;
}

#section-3 > button {
    margin-top: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 20px 40px;
    border-radius: 50px;
    background-color: transparent;
    border: 3px solid #000000;
    color: #000000;
}

#section-3 > button:hover {
    background-color: #000000;
    color: #ffffff;
    cursor: pointer;
    transition: ease-in-out 0.5s;
}

.sect-4-elements h4, .sect-6-elements h4, .sect-8-elements h4, .sect-10-elements h4, .sect-12-elements h4, .sect-14-elements h4 {
    font-size: 1vw;
    color: #ffffff;
}

.sect-4-elements p, .sect-6-elements p, .sect-8-elements p, .sect-10-elements p, .sect-12-elements p, .sect-14-elements p {
    font-size: 4vw;
    color: #ffffff;
    font-weight: 600;
    padding-bottom: 40px;
}

#section-5, #section-7, #section-9, #section-11, #section-13, #section-15 {
    position: relative;
    background-color: #ffffff;
    height: 60vh;
    width: 100vw;
    padding: 7vh 15vw;
    display: flex;
    align-items: center;
}

.sec-5-left, .sec-5-right, .sec-7-left, .sec-7-right, .sec-9-left, .sec-9-right, .sec-11-left, .sec-11-right, .sec-13-left, .sec-13-right, .sec-15-left, .sec-15-right {
    width: 50%;
    height: 100%;
}

.sec-5-left, .sec-7-left, .sec-9-left, .sec-11-left, .sec-13-left, .sec-15-left {
    display: flex;
    align-items: flex-start;
}

.sec-5-left h3, .sec-7-left h3, .sec-9-left h3, .sec-11-left h3, .sec-13-left h3, .sec-15-left h3 {
    font-size: 2.5rem;
    padding-left: 5vw;
}

.sec-5-right p, .sec-7-right p, .sec-9-right p, .sec-11-right p, .sec-13-right p, .sec-15-right p {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 29px;
    color: #86868b;
    padding-right: 5vw;
}

.sec-5-right > button, .sec-7-right > button, .sec-9-right > button, .sec-11-right > button, .sec-13-right > button, .sec-15-right > button, #section-27 > button, #section-39 > button {
    margin-top: 60px;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 15px 40px;
    border-radius: 50px;
    background-color: #ff5a00;
    border: 3px solid #ff5a00;
    color: #ffffff;
}

.sec-5-right > button:hover, .sec-7-right > button:hover, .sec-9-right > button:hover, .sec-11-right > button:hover, .sec-13-right > button:hover, .sec-15-right > button:hover, #section-27 > button:hover, #section-39 > button:hover {
    background-color: #ff7d20;
    color: #ffffff;
    cursor: pointer;
    transition: ease-in-out 0.5s;
    border: 3px solid #ff7d20;
}

.sec-link {
    margin-top: 20px;
    color: #0071e8 !important;
    font-weight: 300;
    cursor: pointer;
}

.sec-link:hover {
    text-decoration: underline;
}

#section-16, #section-39 {
    position: relative;
    height: 70vh;
    width: 100vw;
    background-color: #f5f5f7;
    padding: 7vh 15vw;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#section-16 h3, #section-28 h3, #section-39 h3 {
    font-size: 2rem;
}

#section-16 h2, #section-39 h2 {
    font-size: 4rem;
}

#section-16 p, #section-28 p, #section-30 p, #section-34 p, #section-36 p, #section-38 p, #section-39 p {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 29px;
    text-align: center;
    color: #86868b;
    padding: 3vw 13vw;
}

#section-17 {
    position: relative; 
    height: 100vh;
    width: 100vw;
    background-color: #F5F5F7;
}

#section-17>canvas {
    position: relative; 
    height: 100vh;
    width: 100vw;
    z-index: 99;
}

#section-18, #section-19, #section-20, #section-21, #section-22, #section-23 {
    position: relative;
    height: 100vh;
    width: 100vw;
    background-color: #F5F5F7;
}

#section-18 h4, #section-20 h4, #section-21 h4, #section-23 h4 {
    width: 15%;
    font-size: 1vw;
    font-weight: 500;
    color: #89888d;
    z-index: 100;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 15%;
}

#section-18 h4 span, #section-19 h4 span, #section-20 h4 span, #section-21 h4 span, #section-22 h4 span, #section-23 h4 span {
    color: #000000;
}

#section-19 h4, #section-22 h4 {
    width: 15%;
    font-size: 1vw;
    font-weight: 500;
    color: #89888d;
    z-index: 100;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15%;
}

#section-24 {
    position: relative;
    width: 100vw;
    background-color: #ffffff;
    padding: 7vh 10vw 2vh 10vw;
    display: flex;
    align-items: center;
}

#section-24-left {
    margin-right: 20px;
}

#section-24-right {
    margin-left: 20px;
}

#section-25 {
    position: relative;
    width: 100vw;
    background-color: #ffffff;
    padding: 1vh 10vw 7vh 10vw;
}

#section-26 {
    position: relative;
    width: 100vw;
    height: 40vh;
    padding: 5vh 10vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

#section-26 p {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 29px;
    color: #89888d;
    width: 45%;
    text-align: center;
}

#section-26 span {
    color: #000000;
}

#section-27 {
    position: relative;
    height: 100vh;
    width: 100vw;display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#section-27>img {
    width: 55%;
    position: absolute;
    bottom: 0%;
}

#section-27 > button {
    position: absolute;
    bottom: 15%;
}

#section-28 {
    position: relative;
    height: 70vh;
    width: 100vw;
    background-color: #000000;
    padding: 7vh 15vw;
    padding-bottom: 0px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: column;
    margin-bottom: -45vh;
    z-index: 9;
}

#section-28 h3, #section-30 h3, #section-34 h3, #section-36 h3, #section-38 h3 {
    color: #ffffff;
}

#section-28 h2 {
    color: #ffffff;
    font-size: 5rem;
    line-height: 5rem;
}

#section-28 span, #section-30 span, #section-34 span, #section-36 span, #section-38 span {
    color: #ffffff;
}

#section-29 {
    position: relative;
    width: 100vw;
    height: 100vh;
    background-color: #000000;
    top: 0%;
    margin-top: -5vh;
}

#section-29 canvas {
    position: relative;
    width: 100vw;
    height: 100vh;
}

#section-30, #section-34, #section-36 {
    position: relative;
    height: 30vh;
    width: 100vw;
    background-color: #000000;
    padding: 3vh 10vw;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    margin-top: -15vh;
}

#section-30 h3, #section-34 h3, #section-36 h3, #section-38 h3 {
    font-size: 2rem;
}

#section-30 p,#section-34 p, #section-36 p, #section-38 p {
    padding: 1vw 20vw;
}

#section-31 {
    position: relative;
    height: 100vh;
    width: 100vw;
}

#section-31 video {
    height: 100vh;
    width: 100vw;
    object-fit: cover;
}

#section-32 {
    width: 100vw;
    height: 40vh;
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: end;
    z-index: 5;
    margin-top: -5px;
}

#sec-32-ele{
    position: relative;
    right: 10%;
    bottom: 30%;
    width: 30%;
}

#sec-32-ele h3 {
    font-size: 1.5vw;
    color: #ffffff;
    margin-bottom: 10px;
}

#sec-32-ele p {
    width: 65%;
    font-size: 1.125vw;
    color: #86868b;
    font-weight: 500;
    text-shadow: 2px 2px 5px #000000;
}

#sec-32-ele p span {
    color: #ffffff;
}

#section-33, #section-35 {
    position: relative;
    width: 100vw;
    height: 100vh;
    background-color: #000000;
    margin-top: -10px;
}

#section-33 #tracking-off, #section-35 #sensors-off {
    position: absolute;
    width: 50vw;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

#section-33 #tracking-on, #section-35 #sensors-on {
    position: absolute;
    width: 50vw;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#section-36>.sec-link {
    font-size: 1.125rem;
    font-weight: 400;
    margin-top: -15vh;
}

#section-36>.sec-link:hover {
    text-decoration: none;
}

#section-37 {
    position: relative;
    width: 100vw;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000000;
    margin-top: -5px;
}

#section-37 img {
    height: auto;
    width: 60%;
    object-fit: cover;
    opacity: 0;
}

#section-38 {
    position: relative;
    height: 60vh;
    width: 100vw;
    background-color: #000000;
    padding: 3vh 10vw;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    margin-top: -15vh;
}

#section-38 h3, #section-39 h2 {
    text-align: center;
}

#section-38 > button {
    margin-top: 60px;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 15px 40px;
    border-radius: 50px;
    background-color: #ffffff;
    border: 3px solid #ffffff;
    color: #000000;
}

#section-38 > button:hover {
    background-color: #ffffffe6;
    border: 3px solid #ffffffe6;
    transition: all ease-in;
}

#section-39 {
    background-color: #ffffff;
}

#section-39 P {
    width: 90%;
}

#section-39 span {
    color: #000000;
}

#section-39 > button {
    margin-top: 0PX;
}

#section-40 {
    position: relative;
    background-color: #ffffff;
    margin: 10vh 10vw;
    display: flex;
    width: 80vw;
    height: 80vh;
    margin-bottom: 5vh;
}

#sec-40-left, #sec-41-left {
    background-color: #f5f5f7;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    padding-left: 10vw;
    padding-right: 5vw;
}

#sec-40-left h2,#sec-41-left h2 {
    font-size: 3.5rem;
    font-weight: 500;
    line-height: 3.5rem;
    margin-top: 30px;
}

#sec-40-left p {
    font-size: 1.5rem;
    color: #86868b;
    width: 60%;
}

#sec-40-right {
    background-color: #f5f5f7;
    width: 100%;
    display: flex;
    justify-content: end;
    align-items: start;
    flex-direction: column;
    padding-left: 5vw;
    padding-right: 5vw;
}

#sec-40-right img {
    width: 90%;
}

#section-41 {
    position: relative;
    background-color: #ffffff;
    margin: 0vh 10vw;
    display: flex;
    width: 80vw;
    height: 80vh;
    margin-bottom: 5vh;
}

.txt-link {
    font-size: 1.5rem;
    color: #06c;
    margin-top: 2vh;
}

.txt-link:hover > span {
    text-decoration: underline;
    cursor: pointer;
}

#sec-41-right {
    background-color: #f5f5f7;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-left: 5vw;
    padding-right: 5vw;
}

#section-42 {
    position: relative;
    background-color: #ffffff;
    margin: 0vh 10vw;
    display: flex;
    width: 80vw;
    height: 80vh;
    margin-bottom: 5vh;
}

#sec-42-ele {
    background-color: #f5f5f7;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-left: 10vw;
    padding-right: 5vw;
}

#sec-42-ele h2 {
    font-size: 3.5rem;
    text-align: center;
    margin-top: 5vh;
}

#sec-42-ele p {
    margin-top: 2.5vh;
    font-size: 1.5rem;
    text-align: center;
    color: #1d1d1f;
    width: 80%;
}

#sec-42-ele .txt-link {
    font-size: 1.5rem;
    color: #06c;
    margin-top: 2vh;
}

#sec-42-ele > .txt-link:hover > span {
    text-decoration: underline;
    cursor: pointer;
}

#footer {
    padding: 1vw 10vw;
    background-color: #000000;
    color: #ffffff;
    font-size: 0.8vw;
    text-align: center;
}