*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 18px;
    font-family: "Montserrat", sans-serif;
    color: rgba(0, 0, 0, 0.87);
}

html{
    scroll-behavior: smooth;
}

.nav{
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    z-index: 99;
    background-color: transparent;
}

.nav a{
    color: black;
    text-decoration: none;
}

.nav .icon a{
    font-weight: 500;
    font-size: 25px;
    transition: 0.25s;
}

.nav .icon a:hover{
    color:darkgray;
}

.nav .links a{
    margin-left: 40px;
    color: darkgray;
    transition: 0.25s;
}

.nav .links a:hover{
    color:black;
}

.menu-btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all .5s ease-in-out;
    display: none;
}

.menu-btn .burger {
    width: 20px;
    height: 3px;
    background: #000;
    border-radius: 5px;
    transition: all .5s ease-in-out;
}

.menu-btn .burger::before,
.menu-btn .burger::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 3px;
    background: #000;
    border-radius: 5px;
    transition: all .5s ease-in-out;
}

.menu-btn .burger::before {
    transform: translateY(-8px);
}

.menu-btn .burger::after {
    transform: translateY(8px);
}

.menu-btn.open .burger {
    background: transparent;
}

.menu-btn.open .burger::before {
    transform: rotate(45deg);
}

.menu-btn.open .burger::after {
    transform: rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: -98;
    opacity: 0;
    transition: .25s ease-in-out;
}

.mobile-menu a {
    margin-bottom: 50px;
    font-size: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    text-decoration: none;
}

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

#section1 .title-container{
    width: 1350px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-top: 190px;
    margin-bottom: 35px;
}

#section1 .title-container .left p{
    font-size: 60px;
    font-weight: 450;
    letter-spacing: -5px;
}

#section1 .title-container .right p{
    font-size: 30px;
    color: rgba(0, 0, 0, 0.6);
    letter-spacing: -2px;
}

#section1 .img1{
    width: 100%;
    height: 900px;
}

#img1{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#section1 .container{
    width: 950px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
    margin-top: 200px;
}

#section1 .container .container-top{
    width: 100%;
    margin-bottom: 16px;
}

#section1 .container .container-top .title{
    font-size: 18px;
    color: rgb(0, 113, 227);
    font-weight: 500;
    letter-spacing: -1px;
    margin-bottom: 20px;
    line-height: normal;
}

#section1 .container .container-top p{
    font-size: 26px;
    line-height: 42px;
    margin-bottom: 42px;
    letter-spacing: -1px;
    font-weight: 350;
}

#section1 .container .container-btm{
    width: 100%;
    position: relative;
    display: flex;
    align-items: start;
    justify-content: space-between;
}

#section1 .container .container-btm .left .title{
    font-size: 18px;
    color: rgb(0, 113, 227);
    font-weight: 500;
    letter-spacing: -1px;
    margin-bottom: 15px;
    line-height: normal;
}

#section1 .container .container-btm .left{
    width: 60%;
    height: 300px;
    display: flex;
    align-items: start;
    justify-content: space-between;
    flex-direction: column;
}

#section1 .container .container-btm .left p{
    font-size: 16px;
    line-height: 24px;
}

#section1 .container .container-btm .right{
    width: 35%;
    height: 300px;
    display: flex;
    align-items: start;
    justify-content: space-between;
    flex-direction: column;
}

#section1 .container .container-btm .right .title{
    font-size: 18px;
    color: rgb(0, 113, 227);
    font-weight: 500;
    letter-spacing: -1px;
    margin-bottom: 15px;
    line-height: normal;
}

#section1 .container .container-btm .right p{
    font-size: 16px;
    line-height: 24px;
}

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

#section2 .container{
    width: 1200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
    margin-top: 200px;
}

#section2 .container .title{
    font-size: 18px;
    color: rgb(0, 113, 227);
    font-weight: 500;
    letter-spacing: -1px;
    line-height: normal;
    text-transform: uppercase;
}

#section2 .container .container2{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 50px;
    background-color: #fafafa;
    padding: 100px 0;
    margin-bottom: 200px;
}

#section2 .container .container2 .container3{
    width: 950px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#section2 .container .container2 .container3 .ui-container{
    width: 47%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#section2 .container .container2 .container3 .ui-container img{
    width: 100%;
    object-fit: contain;
    margin-bottom: 15px;
    transition: 0.25s;
}

#section2 .container .container2 .container3 .ui-container img:hover{
    scale: 1.01;
    cursor: pointer;
}

#section2 .container .container2 .container3 .ui-container p{
    color: rgba(0, 0, 0, 0.6);
    font-size: 16px;
}

#section2 .container .container2 .lv-container{
    width: 950px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 125px;
}

#section2 .container .container2 .lv-container img{
    width: 100%;
    object-fit: contain;
    margin-bottom: 30px;
    transition: 0.25s;
}

#section2 .container .container2 .lv-container img:hover{
    scale: 1.01;
    cursor: pointer;
}

#section2 .container .container2 .lv-container p{
    color: rgba(0, 0, 0, 0.6);
    font-size: 16px;
}

#full-view{
    position: fixed;
    left:0;
    top:0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
}

#close{
    position: absolute;
    width: 25px;
    height: auto;
    right: 40px;
    top: 40px;
    cursor: pointer;
}

#close:hover{
    filter: brightness(0.8);
}

#left-arrow2{
    position: absolute;
    width: 25px;
    height: auto;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

#left-arrow2:hover{
    filter: brightness(0.8);
}

#right-arrow2{
    position: absolute;
    width: 25px;
    height: auto;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

#right-arrow2:hover{
    filter: brightness(0.8);
}

#image1, #image2, #image3, #image4{
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 85%;
    max-height: 85%;
    padding: 24px;
}

#full-view2{
    position: fixed;
    left:0;
    top:0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
}

#close2{
    position: absolute;
    width: 25px;
    height: auto;
    right: 40px;
    top: 40px;
    cursor: pointer;
}

#close2:hover{
    filter: brightness(0.8);
}

#left-arrow3{
    position: absolute;
    width: 25px;
    height: auto;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

#left-arrow3:hover{
    filter: brightness(0.8);
}

#right-arrow3{
    position: absolute;
    width: 25px;
    height: auto;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

#right-arrow3:hover{
    filter: brightness(0.8);
}

#image5, #image6, #image7{
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 85%;
    max-height: 85%;
    padding: 24px;
}

#section3{
    width: 100vw;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
    background-color: black;
    padding-bottom: 200px;
    margin-bottom: 200px;
}

#section3 .container{
    width: 1200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
    margin-top: 200px;
}

#section3 .container .title{
    font-size: 18px;
    color: rgb(0, 113, 227);
    font-weight: 500;
    letter-spacing: -1px;
    margin-bottom: 20px;
    line-height: normal;
    text-transform: uppercase;
}

#section3 .container .sub-title{
    font-size: 26px;
    line-height: 42px;
    margin-bottom: 84px;
    letter-spacing: -1px;
    font-weight: 350;
    color: rgba(255, 255, 255, 0.87);
    text-align: center;
}

#section3 .container .content-title{
    font-size: 30px;
    letter-spacing: -1px;
    font-weight: 350;
    font-style: italic;
    margin-bottom: 50px;
    line-height: normal;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.87);
}

#section3 .lv-container{
    width: 1500px;
    position: relative;
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap:40px;
    margin-top: 50px;
}

#section3 .lv-container .box{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 20px;
}

.download-btn{
    width: 250px;
    height:60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(0, 113, 227);
    border-radius: 50px;
    text-decoration: none;
    color: black;
}

.download-btn:hover{
    filter: brightness(1.1);
}

#next-section{
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 200px;
}

.next-container{
    width: 950px;
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.next-container .title{
    font-size: 42px;
    letter-spacing: -2px;
}

.next-container .box{
    position: relative;
    width: 575px;
    display: block;
    text-decoration: none;
}

.next-container .box .img-container{
    position: relative;
    width:100%;
    height:400px;
    overflow: hidden;
    border-radius: 20px;
}

.next-container .box .img-container:hover > #img2{
    opacity: 0.5;
}

.next-container .box .img-container:hover > #view{
    scale: 1;
    opacity: 1;
}

#img2{
    width:100%;
    height:100%;
    scale: 1.5;
    object-fit: contain;
    object-position: center;
}

#view{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: rgb(0, 113, 227);
    display: flex;
    align-items: center;
    justify-content: center;
    scale: 0;
    opacity: 0;
    transition: .25s;
}

#view p{
    font-size: 24px;
    color: black;
}

#box-head{
    font-size: 25px;
    font-weight: 500;
    margin-top: 15px;
    margin-bottom: 5px;
}

#box-subhead{
    color: darkgray;
    font-size: 18px;
}

.footer{
    background: #f0f0f0;
    height: 500px;
    width: 100vw;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer .footer-container{
    position: relative;
    width:1536px;
    height: 100%;
}

.footer-icon{
    position: relative;
    width:100%;
    height: 15px;
    margin-top: 100px;
}

.footer-icon a{
    position: absolute;
    bottom: -20px;
    text-decoration: none;
    color: black;
    font-size: 30px;
    font-weight: 500;
    margin-left: 150px;
    transition: 0.25s;
}

.footer-icon a:hover{
    opacity: 0.5;
    scale: 1.1;
}

.footer-cta{
    width: 100%;
    line-height: 45px;
}

#p1{
    font-size: 45px;
    color: black;
    letter-spacing: -3px;
    margin-left: 780px;
}

.footer-cta a{
    text-decoration: none;
    color: black;
    width:335px;
    display: block;
    letter-spacing: -3px;
    margin-left: 780px;
}

.footer-cta a:hover{
    opacity: 0.5;
}

#p2{
    color: black;
    font-size: 45px;
    width:335px;
    display: inline-block;
}

#p2 img{
    width: 30px;
    height: auto;
    margin-left: 5px;
}

.footer-links{
    width:1500px;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 50px;
}

.footer-links .footer-left{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    margin-left: 780px;
}

.footer-links .footer-right{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    margin-right: 220px;
}

.footer-links a{
    text-decoration: none;
    color: rgb(35, 35, 35);
    margin-bottom: 8px;
}

.footer-links a:hover{
    opacity: 0.5;
}

.footer-credit{
    position: absolute;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    bottom: 0;
    padding: 25px 0;
    border-top:1px solid darkgray;
}

.footer-credit .footer-left2 p{
    font-size: 14px;
    color: darkgray;
}

.footer-credit .footer-right2 p{
    font-size: 14px;
    color: darkgray;
}

@media (max-width: 1536px) {
    .footer .footer-container {
        width: 768px;
    }

    .footer-icon a {
        margin-left: 0;
    }

    #p1 {
        margin-left: 435px;
    }

    .footer-cta a {
        margin-left: 435px;
    }

    .footer-links {
        width: 100%;
    }

    .footer-links .footer-left {
        margin-left: 435px;
    }

    .footer-links .footer-right {
        margin-right: 0px;
    }

    #section1 .title-container {
        width: 1150px;
        margin-bottom: 25px;
    }

    #section1 .title-container .left p {
        font-size: 52px;
    }

    #section1 .title-container .right p {
        font-size: 26px;
    }

    #section1 .img1 {
        height: auto;
    }
    #section3 .lv-container {
        width: 90%;
    }
}

@media (max-width: 1280px) {
    #section1 .title-container {
        width: 950px;
        margin-bottom: 15px;
    }

    #section1 .title-container .left p {
        font-size: 46px;
    }

    #section1 .title-container .right p {
        font-size: 22px;
    }
    #section3 .container {
        width: 950px;
    }
    #section2 .container{
        width: 950px;
    }
    #section2 .container .container2 .container3{
        width: 700px;
    }
    #section2 .container .container2 .lv-container{
        width: 700px;
    }
}

@media (max-width: 1024px) {
    #section1 .title-container {
        width: 768px;
        margin-bottom: 15px;
        margin-top: 200px;
    }

    #section1 .title-container .left p {
        font-size: 42px;
    }

    #section1 .title-container .right p {
        font-size: 20px;
    }

    #section1 .container {
        width: 768px;
        margin-top: 150px;
    }

    #section1 .container .container-top p {
        font-size: 22px;
        line-height: 35px;
        margin-bottom: 35px;
    }

    #section1 .container .container-btm .left {
        height: 350px;
    }

    #section1 .container .container-btm .right {
        height: 350px;
    }

    #next-section {
        margin-bottom: 150px;
    }

    .next-container {
        width: 768px;
    }

    .next-container .title {
        font-size: 38px;
    }

    .next-container .box {
        width: 400px;
    }

    .next-container .box .img-container {
        height: 280px;
    }

    #box-head {
        font-size: 20px;
        margin-top: 10px;
        margin-bottom: 2px;
    }

    #box-subhead {
        font-size: 14px;
    }
    #section3 .container {
        width: 768px;
    }
    #section2 .container{
        width: 768px;
        margin-top: 150px;
    }
    #section2 .container .container2{
        margin-bottom: 150px;
    }
    #section2 .container .container2 .container3{
        width: 600px;
    }
    #section2 .container .container2 .lv-container{
        width: 600px;
    }
    #section3 {
        padding-bottom: 150px;
        margin-bottom: 150px;
    }

    #section3 .container {
        width: 768px;
        margin-top: 150px;
    }

    #section3 .container .sub-title {
        font-size: 22px;
        line-height: 35px;
    }

    #section3 .container .content-title {
        font-size: 26px;
    }
    #left-arrow2, #left-arrow3{
        left: 3%;
    }
    #right-arrow2, #right-arrow3{
        right: 3%;
    }
}

@media (max-width: 768px) {
    .menu-btn {
        display: flex;
    }

    .nav .links {
        display: none;
    }

    .footer .footer-container {
        width: 640px;
    }

    .footer-icon a {
        margin-left: 0;
    }

    #p1 {
        margin-left: 310px;
    }

    .footer-cta a {
        margin-left: 310px;
    }

    .footer-links {
        width: 100%;
    }

    .footer-links .footer-left {
        margin-left: 310px;
    }

    .footer-links .footer-right {
        margin-right: 0px;
    }

    #section1 .title-container {
        width: 475px;
        flex-direction: column;
        justify-content: center;
        align-items: start;
        margin-top: 150px;
    }

    #section1 .title-container .left p {
        font-size: 38px;
        letter-spacing: -4px;
    }
    #section1 .title-container .right p{
        letter-spacing: -1px;
    }

    #section1 .container {
        width: 475px;
        margin-top: 100px;
    }

    #section1 .container .container-top .title {
        font-size: 16px;
        margin-bottom: 10px;
    }

    #section1 .container .container-top p {
        font-size: 18px;
        line-height: 29px;
        margin-bottom: 29px;
    }

    #section1 .container .container-btm {
        flex-direction: column;
        align-items: start;
        justify-content: start;
    }

    #section1 .container .container-btm .left {
        height: auto;
        width: 90%;
    }

    #section1 .container .container-btm .left .title {
        font-size: 16px;
        margin-bottom: 10px;
    }

    #section1 .container .container-btm .left p {
        font-size: 14px;
        line-height: 21px;
        margin-bottom: 35px;
    }

    #section1 .container .container-btm .right {
        height: auto;
        width: 90%;
    }

    #section1 .container .container-btm .right .title {
        font-size: 16px;
        margin-bottom: 10px;
    }

    #section1 .container .container-btm .right p {
        font-size: 14px;
        line-height: 21px;
        margin-bottom: 35px;
    }
    #section2 .container{
        width: 475px;
    }
    #section2 .container .title{
        font-size: 16px;
    }
    #section2 .container .container2{
        margin-top: 40px;
        padding: 80px 0;
    }
    #section2 .container .container2 .container3{
        width: 375px;
        flex-direction: column;
        gap: 50px;
    }
    #section2 .container .container2 .container3 .ui-container{
        width: 100%;
    }
    #section2 .container .container2 .container3 .ui-container p{
        font-size: 14px;
    }
    #section2 .container .container2 .lv-container{
        width: 375px;
        margin-bottom: 100px;
    }
    #section2 .container .container2 .lv-container p{
        font-size: 14px;
    }

    .next-container {
        width: 475px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
    }

    .next-container .title {
        font-size: 32px;
    }

    .next-container .box {
        width: 320px;
    }

    .next-container .box .img-container {
        height: 220px;
    }
    #section3 .container {
        width: 475px;
    }
    #section3 .container .title{
        font-size: 16px;
        margin-bottom: 10px;
    }

    #section3 .container .sub-title {
        font-size: 18px;
        line-height: 29px;
        margin-bottom: 60px;
    }

    #section3 .container .content-title {
        font-size: 22px;
        margin-bottom: 20px;
    }
    #section3 .lv-container{
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 100px;
        margin-top: 100px;
        width: 475px;
    }

    #section3 .lv-container .box{
        width: 80%;
    }
}

@media (max-width: 640px) {
    .menu-btn {
        display: flex;
    }

    .nav .links {
        display: none;
    }

    .footer .footer-container {
        width: 475px;
    }

    .footer-icon a {
        margin-left: 0;
    }

    #p1 {
        margin-left: 142px;
    }

    .footer-cta a {
        margin-left: 142px;
    }

    .footer-links {
        width: 100%;
    }

    .footer-links .footer-left {
        margin-left: 142px;
    }

    .footer-links .footer-right {
        margin-right: 0px;
    }
}

@media (max-width: 475px) {
    .menu-btn {
        display: flex;
    }

    .nav .links {
        display: none;
    }

    .footer .footer-container {
        width: 320px;
    }

    .footer-icon a {
        margin-left: 0;
        font-size: 25px;
    }

    #p1 {
        margin-left: 130px;
        font-size: 28px;
    }

    #p2 {
        font-size: 28px;
        width: auto;
    }

    #p2 img {
        width: 20px;
        margin-left: 0px;
    }

    .footer-cta {
        line-height: 30px;
        margin-top: 30px;
    }

    .footer-cta a {
        margin-left: 130px;
        width: auto;
    }

    .footer-links {
        width: 100%;
        flex-direction: column;
    }

    .footer-right {
        padding-left: 130px;
    }

    .footer-links a {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .footer-links .footer-left {
        margin-left: 130px;
    }

    .footer-links .footer-right {
        margin-right: 0px;
    }

    .footer-credit {
        padding: 15px 0;
    }

    .footer-credit .footer-left2 p {
        font-size: 10px;
    }

    .footer-credit .footer-right2 p {
        font-size: 10px;
    }
    #section1 .title-container{
        width: 375px;
    }
    #section1 .title-container .left p {
        font-size: 32px;
        letter-spacing: -3px;
    }
    #section1 .title-container .right p{
        font-size: 18px;
    }

    #section1 .container {
        width: 375px;
    }
    #section2 .container{
        width: 375px;
    }
    #section2 .container .container2 .container3{
        width: 300px;
    }
    #section2 .container .container2 .lv-container{
        width: 300px;
    }

    .next-container {
        width: 320px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
    }

    .next-container .title {
        font-size: 32px;
    }

    .next-container .box {
        width: 320px;
    }

    .next-container .box .img-container {
        height: 220px;
    }
    #section3 .container {
        width: 375px;
    }

    #section3 .lv-container{
        width: 375px;
    }

    #section3 .lv-container .box{
        width: 80%;
    }
}