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

html,
body {
    height: 100%;
    width: 100%;
}


body {
    color: #fff;
}

#main {
    max-width: 100vw;
    overflow-x: hidden;
}

/* nav start */
nav {
    position: fixed;
    width: 100%;
    height: 11vh;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 2vw 12vw;
    z-index: 10;
    background-color: rgba(17, 17, 17, 0.9);
}

nav h1 {
    font-size: 1.6vw;
}

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

.nav-part2 h4 {
    font-size: 0.8vw;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    margin-bottom: 2vw;
    transition: all .3s ease-in-out;
}

.nav-part2 h4:hover{
    color: #a3a2a2;
}

.nav-part2 h5 {
    margin-bottom: 1vw;
    display: none;
    cursor: pointer;
    overflow: hidden;
}

.nav-part2 h5:hover{
    color: #a3a2a2;
}

.nav-part2 h5 span {
    font-size: 0.8vw;
    font-weight: 400;
    transform: translateY(-25px);
    display: inline-block;
}

nav button {
    background-color: #0BA34E;
    display: flex;
    align-items: center;
    position: relative;
    width: 140px;
    padding: 0.5rem 0 0.5rem 1rem;
    border-radius: 50px;
    color: #fff;
    border: none;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all .6s ease;
    text-transform: uppercase;
}

nav button svg {
    position: absolute;
    right: 0;
    border-radius: 50px;
    width: 1.5vw;
    height: 1.5vw;
    background-color: #0BA34E;
}

nav button:hover {
    background-color: transparent;
}

#nav-bottom {
    width: 76%;
    height: 0vh;
    background-color: rgba(17, 17, 17, 0.9);
    z-index: -1;
    position: absolute;
    top: 100%;
    border-bottom: 1px solid #fff;
}

/* nav end */


/* page1 start */
#page1 {
    width: 100%;
    height: 100vh;
    background-color: rgb(17, 17, 17);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

#page1 h1 {
    font-size: 8vw;
    text-transform: uppercase;
    font-weight: 900;
    line-height: 8vw;
}

#page1 h1 svg {
    width: 5.2vw;
    height: 5.2vw;
    background-color: #0BA34E;
    border-radius: 50%;
}

#page1 p {
    text-align: center;
    font-weight: 400;
    margin-top: 3vh;
    font-size: 1.3vw;
}

.page1-something {
    display: flex;   
    justify-content: center;
    align-items: center; 
    column-gap: .5rem;
    margin-top: 1rem;
}

.page1-something h4 {
    font-weight: 400;
    font-size: 1.5vw;
    border: 1px solid #7a7979;
    border-radius: 100vw;
    padding: 5px 10px;
}

.page1-something h4:nth-child(3) {
    border: none;
    padding: 0;
}

#moving-div {
    margin-top: 10vh;
    position: absolute;
    bottom: 5vh;
    width: 40%;
    white-space: nowrap;
    padding: 1.2vw;
    overflow: hidden;
}

#moving-div .move {
    display: inline-block;
    animation: move 10s linear infinite;
}

#moving-div .move img {
    height: 1.5vw;
    margin: 0 1.2vw;
}

@keyframes move {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }    
}

#blur-left {
    height: 100%;
    width: 25%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background: linear-gradient(to right, #111, transparent);
}

#blur-right {
    height: 100%;
    width: 25%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    background: linear-gradient(to right, transparent, #111);
}

/* page1 end */



/* page2 start */

#page2 {
    width: calc(100% - 24vw);
    height: 100vh;
    background-color: #111;
    position: relative;
    padding: 2vw 0 10vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #333;
    margin: auto;
}

#page2-left {
    height: 100%;
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding: 3vw 0;
}

#page2-left p {
    font-size: 0.8vw;
}

#page2-left h5 {
    font-size: 0.9vw;
    font-weight: 400;
    width: 60%;
    letter-spacing: 1px;
}


#page2-right {
    height: 100%;
    width: 50%;
}

.right-elem {
    position: relative;
    padding-top: 1.5vw;
    padding-bottom: 5vw;
    border-bottom: 1px solid #333;
    transition: all .4s ease;
}

.right-elem:hover {
    border-bottom: 1px solid #fff;
}

.right-elem h2 {
    font-size: 1.4vw;
    font-weight: 400;
}

.right-elem-text {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.right-elem-text span {
    color: #666666;
    margin-right: -50px;
}

.right-elem img {
    height: 7vw;
    width: 7vw;
    border-radius: 50%;
    object-fit: cover;
    position: absolute;
    opacity: 0;
}

.elem-arrow {
    position: relative;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    overflow: hidden;
}

.elem-arrow .svg-1 {
    position: absolute;
    top: 0;
    left: 0;
    transition: all .4s ease-out;
    width: 20px;
    height: 20px;
}

.elem-arrow .svg-2 {
    position: absolute;
    transform: translate(-50px, 50px);
    transition: all .4s ease;
    width: 20px;
    height: 20px;
    opacity: 0;
}

.right-elem:hover .elem-arrow .svg-1 {
    top: -30px;
    transform: translateX(30px);
}

.right-elem:hover .elem-arrow .svg-2 {
    transform: translate(0, 0);
    opacity: 1;
}

/* page2 end */


/* page3 start */
#page3 {
    height: 100vh;
    width: 100%;
    background-color: #111;
    position: relative;
    background-image: url(https://lazarev.kiev.ua/la24/reel-cover.webp);
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page3-center {
    display: flex;
    align-items: center;
    padding: 1vw;
    flex-direction: column;
}

.page3-center .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3.3vw;
    border-radius: 50%;
    background-color: #fff;
}

.page3-center .icon i {
    color: #000;
    font-size: 2.8vw;

}

.page3-center h5 {
    font-size: 0.8vw;
    background-color: #fff;
    color: #000;
    border-radius: 50px;
    padding: 12px 26px 10px 26px;
    margin-top: 0.5vw;
    font-weight: 700;
    opacity: 0;
    transition: all ease 0.5s;
    transform: translateY(16%);
    text-transform: uppercase;
}

.page3-center:hover h5 {
    opacity: 1;
    transform: translateY(0%);
}

#page3 video {
    height: 100%;
    width: 100%;
    position: absolute;
    object-fit: cover;
    transform: scaleX(0.7) scaleY(0);
    opacity: 0;
    border-radius: 30px;
    z-index: 99999;

}

/* page3 end */



/* page4 start */
#page4 {
    min-height: 100vh;
    width: 100%;
    background-color: #fff;
    position: relative;
    padding-bottom: 13vh;
}

.section {
    width: 100%;
    height: 72vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13vh 10vw;
    padding-bottom: 0;
}

.sec-left {
    height: 100%;
    width: 25%;
    padding-top: 3vh;
    border-top: 2px solid #000;

}

.sec-left h2 {
    font-size: 2.1vw;
    font-weight: 500;
    color: #000;
}

.sec-left p {
    color: #000;
    margin-top: 10vh;
    font-size: 1.2vw;
    /* width: 80%; */
}

.btn-wrapper {
    height: 60px;
    width: 250px;
    position: relative;
    margin-top: 10rem;
    display: inline-block;
}

.sec-left button {
    padding: 15px 45px;
    font-size: 20px;
    text-transform: uppercase;
    border: 1px solid #0b66a3;
    background-color: #0b66a3;
    color: #fff;
    cursor: pointer;
    border-radius: 50px;
    height: 100%;
    width: 100%;
    overflow: hidden;
    transition: all .6s ease;
}

.sec-left button .str-1 span,
.sec-left button .str-2 span {
    display: inline-flex;
    transition: transform 1s ease;
}

.sec-left button .str-2 span {
    transform: translateY(30px);
}

.sec-left button span:nth-child(1) {
    transition-delay: 0.1s;
}
.sec-left button span:nth-child(2) {
    transition-delay: 0.2s;
}
.sec-left button span:nth-child(3) {
    transition-delay: 0.3s;
}
.sec-left button span:nth-child(4){
    transition-delay: 0.4s;
}
.sec-left button span:nth-child(5){
    transition-delay: 0.5s;
}
.sec-left button span:nth-child(6) {
    transition-delay: 0.6s;
}
.sec-left button span:nth-child(7) {
    transition-delay: .7s;
}
.sec-left button span:nth-child(8) {
    transition-delay: .8s;
}
.sec-left button span:nth-child(9) {
    transition-delay: .9s;
}

.sec-left button:hover .str-1 span:nth-child(1),
.sec-left button:hover .str-1 span:nth-child(2),
.sec-left button:hover .str-1 span:nth-child(3),
.sec-left button:hover .str-1 span:nth-child(4),
.sec-left button:hover .str-1 span:nth-child(5),
.sec-left button:hover .str-1 span:nth-child(6),
.sec-left button:hover .str-1 span:nth-child(7),
.sec-left button:hover .str-1 span:nth-child(8),
.sec-left button:hover .str-1 span:nth-child(9),
.sec-left button:hover .str-1 span:nth-child(10) {
    transform: translateY(-60px);
}

.sec-left button:hover .str-2 span:nth-child(1),
.sec-left button:hover .str-2 span:nth-child(2),
.sec-left button:hover .str-2 span:nth-child(3),
.sec-left button:hover .str-2 span:nth-child(4),
.sec-left button:hover .str-2 span:nth-child(5),
.sec-left button:hover .str-2 span:nth-child(6),
.sec-left button:hover .str-2 span:nth-child(7),
.sec-left button:hover .str-2 span:nth-child(8),
.sec-left button:hover .str-2 span:nth-child(9),
.sec-left button:hover .str-2 span:nth-child(10) {
    transform: translateY(-20px);
}

.sec-right {
    height: 100%;
    width: 70%;
    background-color: blanchedalmond;
    position: relative;
}

.sec-right img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.sec-right video {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    opacity: 0;
    transition: opacity ease 0.1s;
}

/* page4 end */



/* page5 start */

#page5 {
    min-height: 100vh;
    background-color: #111;
    width: 100%;
    position: relative;
    padding: 5vh 10.5vw;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

#page5 button {
    background-color: #0BA34E;
    color: #fff;
    padding: 0.9vw 2.5vw;
    font-weight: 600;
    font-size: 1vw;
    border-radius: 50px;
    border: none;
    position: sticky;
    top: 15%;
}

#page5-right {
    width: 70%;
}

#page5-right > p {
    font-size: 2.1vw;
}

#page5-right > p span {
    width: 15vw;
    display: inline-block;
    position: relative;
}

#page5-right > p span:first-child:before {
    position: absolute;
    content: 'services';
    top: 0;
    left: 0;
    color: #666666;
    font-size: 1vw;
    text-transform: uppercase;
}

#page5-content {
    width: 100%;
    margin-top: 5vh;
    padding: 5vh 0;
}

#page5-content h1 {
    font-size: 3vw;
    font-weight: 500;
}

#page5-content #flex {
    display: flex;
    margin-top: 4vh;
    margin-bottom: 4vh;
}

#page5-content #flex h4 {
    border-radius: 50px;
    border: 1px solid #fff;
    padding: 10px 20px;
    font-weight: 400;
    font-size: 0.8vw;
    margin-right: 5px;
}

.page5-elem {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    transition: all cubic-bezier(0.19, 1, 0.22, 1) 1s;
    padding-top: 3vh;
    padding-bottom: 9vh;
    overflow: hidden;
    border-top: 1px solid #333;
    position: relative;
}

.page5-elem p {
    width: 55%;
    font-size: 0.8vw;
    position: relative;
    z-index: 8;
}

.page5-elem h3 {
    font-size: 1.6vw;
    font-weight: 400;
    position: relative;
    transition: all cubic-bezier(0.19, 1, 0.22, 1) 1s;
    z-index: 8;
}

.page5-elem i {
    font-size: 1vw;
    position: relative;
    transition: all cubic-bezier(0.19, 1, 0.22, 1) 1s;
    z-index: 8;
}

.over {
    height: 100%;
    width: 100%;
    background-color: #222;
    position: absolute;
    top: 0;
    transform: translateY(-100%);
    opacity: 0;
    transition: all cubic-bezier(0.19, 1, 0.22, 1) 1s;
}

.page5-elem:hover h3 {
    padding-left: 1vw;
}

.page5-elem:hover i {
    padding-right: 1vw;
}

.page5-elem:hover .over {
    transform: translateY(0);
    opacity: 1;
}

.page5-elem:hover {
    border-top: 2px solid #fff;
}

summary::marker {
    content: "";
}

.uiux {
    border-top: 1px solid #333;
    padding: 3vh 0;
}

.product {
    padding: 3vh 0;
    border-top: 1px solid #333;
}

/* page5 end */




/* page6 start */

#page6 {
    min-height: 100vh;
    width: 100%;
    background-color: #fff;
    padding: 10vh 10vw;
}

#page6 > h1 {
    font-size: 5.5vw;
    color: #000;
    padding-left: 23vw;
    padding-right: 5vw;
    line-height: 5.8vw;
    padding-bottom: 10vh;
    border-bottom: 1px solid #dadada;
}

#page6-content {
    color: #000;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 8vh 0;
}

#page6-content #right-6 {
    width: 70%;
}

#page6-content #right-6 p {
    font-size: 1.5vw;
    color: #000;
    margin-bottom: 5vh;
    width: 80%;
}

#blue-btn {
    background-color: #4f5bff;
    width: 15vw;
    height: 3.5vw;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#blue-btn h4 {
    position: absolute;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.85vw;
    line-height: 20px;
    overflow: hidden;
    transition: all .5s ease-in-out;
    color: #fff;
}

#blue-btn h4 i {
    font-size: 1.1vw;
    font-weight: 100;
    margin-left: 0.5vw;
}

#blue-btn h4:nth-last-of-type(2) {
    opacity: 0;
    transform: translateY(50px) scale(0.1);
}

#blue-btn:hover h4:nth-last-of-type(1) {
    transform: translateY(-50px) scale(0.1);
    opacity: 0;
}

#blue-btn:hover h4:nth-last-of-type(2) {
    opacity: 1;
    transform: translateY(0) scale(1);
}

#page6-bottom {
    height: 44vh;
    width: 100%;
    border-top: 1px solid #dadada;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

#btm6-part1 {
    border-right: 1px solid #dadada;
    width: 30%;
    height: 100%;
}

#btm6-part2 {
    border-right: 1px solid #dadada;
    width: 28%;
    height: 100%;
}

#btm6-part3 {
    border-right: 1px solid #dadada;
    width: 15%;
    height: 100%;
}

#btm6-part4 {
    border-right: 1px solid #dadada;
    width: 15%;
    height: 100%;
}

#btm6-part5 {
    width: 15%;
    height: 100%;
}

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

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

.btm6-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;

}

.btm6-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;
}
#btm6-part2 h4:nth-child(2){
    transform: translateX(0);
}
#btm6-part2 h4:nth-child(3){
    transform: translateX(5%);
}
#btm6-part2 h4:nth-child(4){
    transform: translateX(10%);
}
#btm6-part2 h4:nth-child(5){
    transform: translateX(15%);
}
#btm6-part2 h4:nth-child(6){
    transform: translateX(20%);
}
#btm6-part2 h4:nth-child(7){
    transform: translateX(25%);
}

/* page6 end */

#page7 {
    height: 100vh;
    background-color: #111;
}
