*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #fff;
    font-family: sans-serif;
}
html,body{
    width: 100%;
}
nav {
    position: fixed;
    /* background-color: rgb(0, 255, 68); */
    display: flex;
    align-items: flex-start;
    height: 12vh;
    width: 100%;
    padding: 2vw 10.4vw;
    justify-content: space-between;
    background-color: #111;
    z-index: 10;
}

nav h1 {
    font-size: 1.6vw;
}

.nav-part2 {
    display: flex;
    gap: 2vw;
    align-items: flex-start;
    padding: 1vh 0;
    position: relative;
    z-index: 10;
}

.nav-part2 h4 {
    font-size: 0.73vw;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 2.6vw;
    &:hover{
        color: #55a154;
        cursor: pointer;
    }
}

.nav-part2 h5 {
    margin-bottom: 1vw;
    /* background-color: red; */
    display: none;
    overflow: hidden;
}

.nav-part2 h5 span {
    font-size: 0.77vw;
    font-weight: 400;
    transform: translateY(30px);
    display: inline-block;
    cursor: pointer;
}
.nav-part2 h5 span:hover{
    color: #51A54F;
}

nav button {
    background-color: #0BA34E;
    display: flex;
    align-items: center;
    padding: 14px 20px;
    font-size: 0.85vw;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 50px;
    border: none;
}

nav button svg {
    height: 0.8vw;
    margin-left: 1.6vw;
}

#nav-bottom {
    width: 79%;
    height: 0vh;
    position: absolute;
    /* background-color: red; */
    top: 100%;
    background-color: #111;
    z-index: 9;
    border-bottom: 1px solid #fff;
    cursor: pointer;
}


.page1{
    width: 100%;
    height: 100vh;
    background-color: #111111;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #222;
    position: relative;
}
.page1 h1{
    font-size: 7vw;
    text-transform: uppercase;
    line-height: 7vw;
    letter-spacing: 0.2vw;
}
.page1 svg{
    width: 5vw;
    height: 5vw;
    border-radius: 50%;
    background-color: #51A54F;
}
.page1 p{
    margin-top: 1.5vw;
    font-size: medium;
}
.page1-end{
    display: flex;
    margin-top: 1vw;
    margin-right: 10px;
}
.page1-end h4{
    border: 1px solid #8282827f;
    padding: 10px 15px;
    border-radius: 19px;
    margin-right: 5px;
    font-weight: 500
    ;
}
.page1-end h4:nth-last-child(2){
    border: none;
}
.moving-div{
    height: 2vw;
    /* background-color: red; */
    width: 44%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2vw 1vw;
    position: absolute;
    overflow: hidden;
    bottom: 5%;
    white-space: nowrap;
}
.moving-imgs{
    display: inline-block;
    animation-name: imgs;
    animation-duration: 15s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
.moving-imgs img{
    margin-right: 30px;
}
@keyframes imgs {
    0%{
        transform: translateX(0);
    }
    100%{
        transform: translateX(-100%);
    }
}
.blur-left{
    width: 20%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(to right, #111, transparent);
    z-index: 2;
}
.blur-right{
    width: 20%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
    background: linear-gradient(to right, transparent, #111);
}

.page2{
    width: 100%;
    height: 100vh;
    background-color: #111111;
    padding: 4vw 10vw;
    display: flex;
    align-self: center;
    justify-content: space-between;
}
.page2-left{
    width: 40%;
    height: 100%;
    padding: 3vw 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}
.page2-left h3{
    font-weight: 500;
    font-size: 1vw;
}
.page2-left p{
    font-size: 1.2vw;
    font-weight: 300;
}
.page2-right{
    width: 55%;
    height: 100%;
   
}
.page2-right-elem{
    padding-top: 3vw;
    padding-bottom: 5vw;
    border-bottom:  1px solid #555;  
     position: relative;
}
.page2-right-elem img{
    width: 7vw;
    height: 7vw;
    border-radius: 50%;
    object-fit: cover;
    position: absolute;
    top: 5%;
    opacity: 0;
    scale: 0;
}
.page3{
    width: 100%;
    height: 100vh;
    background-color: #e6abab;
    background-image: url(https://lazarev.kiev.ua/la24/reel-cover.webp);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.page3 video{
    width: 100%;
    height: 100%;
    top: 10%;
    position: absolute;
    object-fit: cover;
    transform: scaleX(0.7) scaleY(0.2);
    border-radius: 30px;
    opacity: 0;
    z-index: 9999;
}
.page3-center{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.page3-center .icon {
    background-color: #fff;
    border-radius: 50%;
    width: 8vw;
    height: 8vw;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1vw;
    cursor: pointer;
}
.icon i{
    color: #111;
    font-size: 3.5vw;
}
.page3-center h5{
    font-size: 1vw;
    background-color: #ffffffd7;
    color: #111;
    padding: 0.8vw 1.3vw;
    border-radius: 40px;
    transform: translateY(16px);
    transition: all ease 0.5s;
    opacity: 0;
}
.page3-center:hover h5{
    opacity: 1;
    transform: translateY(0px);
}

/* page4  */

.page4{
    width: 100%;
    height: 100vh;
    background-color: #f0f0f0;
    padding: 0 10vw;
    padding-top: 6vw;
    padding-bottom: 1vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.page4-left {
    width: 40%;
    height: 100%;
    padding-top: 5vw;
}
.page4-left h1{
    font-size: 2.9vw;
    font-weight: 500;
    color: #111;
}
.page4-right{
    width: 50%;
    height: 100%;
    padding-top: 4.5vw;
}
.page4-right-content h3 {
    color: #1111117f;
    padding-bottom: 2vw;
    font-weight: 500;
    text-transform: uppercase;
    font-size: medium;
}
.page4-right-content h4{
    font-size: 1.3vw;
    color: #111;
    font-weight: 300;
}
.page4-right-content {
    margin-bottom: 3.5vw;
}

/* page 5 */

.page5{
    width: 100%;
    height: 130vh;
    background-color: #f0f0f0;
    padding: 0vw 10vw;
}
.page5-top{
    height: 50%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 5vw;
}
.page5-top .page5-left{
    width: 30%;
    height: 100%;
    border-top: 3px solid  #111;
    
}
.page5-top .page5-left h1{
    padding-top: 3vw;
    padding-bottom: 5vw;
    font-weight: 500;
    color: #111;
}
.page5-top .page5-left p{
    color: #111;
    font-size: 1.2vw;
    font-weight: 200;
}
.page5-top .page5-right{
    width: 65%;
    height: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 15px;
}
.page5-top .page5-right img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.page5-top .page5-right video{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    object-fit: cover;
    transition: opacity ease 0.2s;
}


.page5-bottom{
    height: 50%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 4vw;
    padding-bottom: 2vw;
}
.page5-bottom .page5-left{
    width: 30%;
    height: 100%;
    border-top: 3px solid  #111;
    
}
.page5-bottom .page5-left h1{
    padding-top: 3vw;
    padding-bottom: 5vw;
    font-weight: 500;
    color: #111;
}
.page5-bottom .page5-left p{
    color: #111;
    font-size: 1.2vw;
    font-weight: 200;
}
.page5-bottom .page5-right{
    width: 65%;
    height: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 15px;
}
.page5-bottom .page5-right img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    
}
.page5-bottom .page5-right video{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    object-fit: cover;
    transition: opacity ease 0.2s;
}

/* page 6 */

.page6{
    width: 100%;
    min-height: 100vh;
    background-color: #111;
    padding: 3vw 10vw;
    display: flex;
    align-items: center;
    justify-content: space-between;

}
.page6-left {
    width: 25%;
    height: 100vh;
}
.page6-left button{
    padding: 1.2vw 2vw;
    border: none;
    border-radius: 40px;
    color: #fff;
    background-color: #51A54F;
    font-size: 1.2vw;
    font-weight: 300;
    cursor: pointer;
}
.page6-right {
    width: 70%;
    min-height: 100vh;
}
.page6-right p{
    font-size: 1.9vw;
    font-weight: 300;
    margin-top: 3vw;
    padding-bottom: 3vw;
    border-bottom: 1px solid #ffffff1e;
}
.page6-right>p span{
    width: 15vw;
    display: inline-block;
}
#span{
    font-size: medium;
    font-weight: 100;
    text-transform: uppercase;
    letter-spacing: 5px;
}

details{
    padding-top: 2vw;
    padding-bottom: 2vw;
    border-bottom: 1px solid #ffffff1e;
}
summary .flex-div{
    display: flex;
    padding-top: 2vw;
    gap: 2px;
}
summary {
    list-style: none;
    cursor: pointer;
}
.flex-div h5{
    padding: 0.7vw 0.9vw;
    border: 1px solid #ffffff5f;
    border-radius: 25px;
    margin-bottom: 1vw;
}
.flex-item{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #ffffff1e;
    position: relative;
    overflow: hidden;
    transition: all cubic-bezier(0.19, 1, 0.22, 1) 1s;
}
.flex-item p{
    font-size: 0.8vw;
    width: 60%;
    border: none;
    position: relative;
    z-index: 8;
}
.flex-item h3 {
    font-size: 1.4vw;
    font-weight: 500;
    position: relative;
    z-index: 8;
    transition: all cubic-bezier(0.19, 1, 0.22, 1) 1s;
}
.flex-item i{
    font-size: 1.3vw;
    padding-bottom: 2vw;
    position: relative;
    z-index: 8;
    transition: all cubic-bezier(0.19, 1, 0.22, 1) 1s;
}

.overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #6c6c6c88;
    top: 0;
    transform: translateY(-100%);
    transition: all cubic-bezier(0.19, 1, 0.22, 1) 1s;
    opacity: 0;
}
.flex-item:hover .overlay{
    opacity: 1;
    transform: translateY(0);
}
.flex-item:hover{
    border-top: 2px solid #fff;
    transition: all cubic-bezier(0.19, 1, 0.22, 1) 1s;
}
.flex-item:hover i{
    padding-right: 1.3vw;
    transition: all cubic-bezier(0.19, 1, 0.22, 1) 1s;
}
.flex-item:hover h3{
    padding-left: 1.3vw;
    transition: all cubic-bezier(0.19, 1, 0.22, 1) 1s;
}

/* page 7 */

.page7{
    width: 100%;
    min-height: 100vh;
    background-color: #f0f0f0;
    padding: 3vw 10vw;
}
.page7>h1{
    color: #111;
    font-size: 6vw;
    line-height: 5.8vw;
    font-weight: 900;
    padding-left: 21vw;
    padding-bottom: 6vw;
    padding-top: 2vw;
    border-bottom: 1px solid #30303050;
}
.page7 .page7-content{
    display: flex;
    padding-top: 3vw;
}
.page7-left-content{
    width: 50%;
}
.page7-left-content .button{
    background-color: blue;
    padding: 0.8vw 0.8vw;
    height: 3vw;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;

}
.button h4{
    position: absolute;
    font-size: 1vw;
    text-transform: uppercase;
}
.button i{
    color: #ffffff;
    position: absolute;
    right: 4%;
    font-size: 1.2vw;
}
.page7-right-content{
    width: 50%;
    height: 100%;
}
.page7-content p{
    color: #111;
    display: flex;
    font-size: 1.3vw;
    width: 80%;
    padding-left: 10vw;
    padding-bottom: 3vw;
}
#page7-bottom {
    height: 44vh;
    width: 100%;
    /* background-color: red; */
    border-top: 1px solid #dadada;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    /* background-color: rgb(48, 48, 48); */
    /* color: #000; */
}

#btm7-part1 {
    border-right: 1px solid #dadada;
    width: 20%;
    /* background-color: red; */
    height: 100%;
}

#btm7-part2 {
    border-right: 1px solid #dadada;
    width: 28%;
    /* background-color: red; */
    height: 100%;
}
#btm7-part2 h4{
    width: 280px;
}

#btm7-part3 {
    border-right: 1px solid #dadada;
    width: 15%;
    /* background-color: red; */
    height: 100%;
}

#btm7-part4 {
    border-right: 1px solid #dadada;
    width: 15%;
    /* background-color: red; */
    height: 100%;
}

#btm7-part5 {
    width: 15%;
    /* background-color: red; */
    height: 100%;
}

.btm7-parts {
    padding: 3vh 0.6vw;
}

.btm7-parts h5 {
    color: #000;
    font-weight: 500;
    font-size: 0.9vw;
    margin-bottom: 4vh;
}

.btm7-parts h4 {
    background-color: #111;
    width: 75%;
    padding: 5px 10px;
    margin-bottom: 0.3vh;
    border-radius: 50px;
    font-size: 0.85vw;
    display: flex;
    align-items: center;
    font-weight: 500;

}

.btm7-parts h4 span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5vw;
    height: 1.5vw;
    background-color: #333;
    padding: 0.5vw;
    border-radius: 50%;
    margin-right: 1vw;
}
#btm7-part2 h4:nth-child(2){
    transform: translateX(0);
}
#btm7-part2 h4:nth-child(3){
    transform: translateX(10%);
}
#btm7-part2 h4:nth-child(4){
    transform: translateX(20%);
}
#btm7-part2 h4:nth-child(5){
    transform: translateX(30%);
}
#btm7-part2 h4:nth-child(6){
    transform: translateX(40%);
}
#btm7-part2 h4:nth-child(7){
    transform: translateX(50%);
}

/* page 8 */
.page8{
    width: 100%;
    height: 50vh;
    background-color: #111;
}