* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: gilroy;
    color: #fff;
}

html,
body {
    height: auto;
    min-height: 100%;
    width: 100%;
    overflow-x: hidden;
}


#loader{
    height: 100%;
    width: 100%;
    background-color: #000;
    position: fixed;
    z-index: 999;
    top: 0;
    transition: all ease 1.0s;
    display: flex;
    align-items: center;
    justify-content: center;
}

#loader h1{
    font-size: 4vw;
    color: transparent;
    background: linear-gradient(to right,rgb(0, 255, 170),rgb(30, 255, 0));
    -webkit-background-clip: text;
    background-clip: text;
    position: absolute;
    opacity: 0;
    animation-name: load;
    animation-duration: 1s;
    animation-delay: 1s;
    animation-timing-function: linear;
}
#loader h1:nth-child(2){
    animation-delay: 2s;
}
#loader h1:nth-child(3){
    animation-delay: 3s;
}

@keyframes load {
    0%{
        opacity: 0;
    }
    10%{
        opacity: 1;
    }
    90%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}



nav {
    position: fixed;
    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;
}

.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(25px);
    display: inline-block;
}

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;
}


nav ul li{
    display: inline-block;
    list-style: none;
    margin: 10px 20px;
}

nav ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    position: relative;
}
nav ul li a::after{
    content: '';
    width: 0;
    height: 3px;
    background: #0BA34E;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.5s;
}
nav ul li a:hover::after{
    width: 100%;
}






/* ------------------     Page 1     ---------------- */


#page1 {
    min-height: 100vh;
    width: 100%;
    background-color: #111;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

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

#page1 h1 svg {
    height: 6vw;
    border-radius: 50%;
    width: 6vw;

    background-color: #0BA34E;
}

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

#page1-something {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

#page1-something h4 {
    font-weight: 400;
    font-size: 1vw;
    text-transform: uppercase;
    margin-top: 0.5vw;
    padding: 9px 18px;
    border: 1px solid hsl(0, 0%, 65%);
    border-radius: 50px;
}

/* #page1-something h4:nth-last-child(2) {
    background-color: red;
    border: none;
    padding: 2px;
} */

/* #moving-div {
    margin-top: 10vh;
    position: absolute;
    bottom: 3%;
    white-space: nowrap;
    padding: 1.2vw;
    overflow: hidden;
    width: 44%;

}

#moving-div .move {
    display: inline-block;
    animation-name: mobe;
    animation-duration: 9s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

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

#moving-div .move h5 {
    height: 1vw;
    margin: 0 1.2vw;
}

@keyframes mobe {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }

} */

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

}

.move {
    display: flex;
    /* gap: 50px; */
    animation: scroll-left 20s linear infinite;
    white-space: nowrap;
}

.move h5 {
    font-size: 20px;
    color: whitesmoke;
    height: 1vw;
    margin: 0 1.2vw;
    /* padding: 0 20px; */
    flex-shrink: 0;
}

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


#blur-left {
    height: 100%;
    width: 20%;
    background: linear-gradient(to right, #111, transparent);

    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

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






/* ------------------     Page 2     ---------------- */


#page2 {
    height: auto;
    width: 100%;
    background-color: #111;
    position: relative;
    padding: 0vw 10.5vw;
    padding-bottom: 8vw;
    display: flex;
    align-items: center;
    border-top: 1px solid #333;
    justify-content: space-between;
}

#page2-left {
    height: 100%;
    width: 40%;
    /* background-color: #333; */
    display: flex;
    align-items: flex-start;
    /* justify-content: space-between; */
    flex-direction: column;
    padding: 3vw 0;
    gap: 1rem;
}

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

#page2-left h5 {
    width: 75%;
    font-weight: 400;
    font-size: 1.1vw;
}


#page2-right {
    height: 100%;
    width: 50%;
    /* background-color: #333; */
}

.right-elem {
    position: relative;
    /* background-color: red; */
    padding-top: 2vw;
    padding-bottom: 5vw;
    border-bottom: 1px solid #333;
}

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

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





/* ------------------     Page 3     ---------------- */


#page3 {
    min-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 {
    /* background-color: red; */
    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;

}






/* ------------------     Page 4     ---------------- */


#page4 {
    min-height: 10vh;
    width: 100%;
    background-color: #111;
    padding-top: 5vh;
    position: relative;
    padding-bottom: 15vh;
}

#page4 h1{
    color: white;
    text-align: center;
    font-size: 3.0vw;
    width: 80%;
    margin: 0 auto;
    border-bottom: 1px solid white;
    padding-bottom: 5vh;
}




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

#sec-left1 {
    height: 100%;
    width: 25%;
    /* padding-top: 1vh; */
    /* border-top: 2px solid white; */

}

#sec-left1 h2 {
    font-size: 2.1vw;
    font-weight: 250;
    color: white;
}

/* #sec-left1 p {
    font-size: 1.2vw;
} */

#sec-left1 p {
    color: white;
    /* margin-top: 10vh; */
    font-size: 1.2vw;
}

#svg1 img {
    width: 100%;
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.5));
}

#svg1 img {
    animation: fadeInRight 1s ease-in-out;
}

@keyframes fadeInRight {
    0% {
        transform: translateX(50px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

#sec-right1 {
    height: 100%;
    width: 60%;
    margin-left: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

#sec-left2 {
    height: 100%;
    width: 60%;
}

#svg2 img {
    width: 100%;
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.5));
}

#svg2 img {
    animation: fadeInLeft 1s ease-in-out;
}

@keyframes fadeInLeft {
    0% {
        transform: translateX(-50px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

#sec-right2 {
    height: 100%;
    width: 25%;
    margin-left: auto;
}

#sec-right2 h2 {
    font-size: 2.1vw;
    font-weight: 250;
    color: white;
}

#sec-right2 p {
    font-size: 1.2vw;
}

#sec-left3 {
    height: 100%;
    width: 25%;
    /* padding-top: 1vh; */
    /* border-top: 2px solid white; */
}

#sec-left3 h2 {
    font-size: 2.1vw;
    font-weight: 250;
    color: white;
}

#sec-left3 p {
    font-size: 1.2vw;
}

#sec-left3 ul li {
    font-size: 1.2vw;
    margin-bottom: 10px;
}

#svg3 img {
    width: 100%;
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.5));
}

#svg3 img {
    animation: fadeInRight 1s ease-in-out;
}

#sec-right3 {
    height: 100%;
    width: 60%;
    margin-left: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}










/* #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;
}

#page4 h1{
    color: #111;
    text-align: center;
    padding-top: 10vh;
    font-size: 3.0vw;
    width: 80%;
    margin: 0 auto;
    border-bottom: 1px solid black;
    padding-bottom: 4vh;
}
.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 ul li {
    color: #000;
    margin-top: 10vh;
    font-size: 1.2vw;
}

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

.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;
} */






/* ------------------     Page 5     ---------------- */



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

#page5-left {
    width: 25%;
}

#page5 button {
    background-color: #0BA34E;
    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: 1.5vw;
}

#page5-right > p span {
    /* background-color: red; */
    width: 15vw;
    display: inline-block;
}


#page5-content {
    width: 100%;
    /* background-color: red; */
    margin-top: 5vh;
    padding: 5vh 0;
}

#page5-content summary {
    padding-bottom: 25px;
}
#page5-content h1 {
    font-size: 3vw;
    font-weight: 500;
    text-align: center;
}

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

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

}

.page5-elem {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    /* background-color: red; */
    /* padding: 2vh 0; */
    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: 1.0vw;
    position: relative;
    text-align: start;

    z-index: 8;
}

.page5-elem h3 {
    font-size: 1.6vw;
    font-weight: 400;
    position: relative;
    width: 20%;
    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;
    /* display: none; */
    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);
    /* display: initial; */
    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;
}




/* ------------------     Page 6     ---------------- */


#page6 {
    min-height: auto;
    width: 100%;
    /* background-color: #111; */
    background-color: #111;
    padding: 10vh 10vw;
}

#page6 > h1 {
    font-size: 5.5vw;
    color: white;
    /* background-color: red; */
    text-align: center;
    /* padding-left: 23vw;
    padding-right: 5vw; */
    /* line-height: 5.8vw;*/
    padding-bottom: 5vh; 
    color: white;
    font-size: 3.0vw;
    border-bottom: 1px solid white;
}

#page6-content {
    /* background-color: red; */
    color: white;
    display: flex;
    /* align-items: flex-start; */
    /* justify-content: space-between; */
    padding: 8vh 0;
}

#page6-content #right-6 {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%
}

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

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

#blue-btn h4 {
    position: absolute;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.85vw;
    /* letter-spacing: 1px; */
}

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

#page6-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; */
}

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

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

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

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

#btm6-part5 {

    width: 15%;
    /* background-color: red; */
    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(10%);
}
#btm6-part2 h4:nth-child(4){
    transform: translateX(20%);
}
#btm6-part2 h4:nth-child(5){
    transform: translateX(30%);
}
#btm6-part2 h4:nth-child(6){
    transform: translateX(40%);
}
#btm6-part2 h4:nth-child(7){
    transform: translateX(50%);
}




/* ------------------     Page 7     ---------------- */

#page7 {
    min-height: 10vh;
    height: auto;
    background-color: #111;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 10vh 10vw;
    text-align: center;
    
}

#page7 h1 {
    font-size: 3.0vw;
}





/* ------------------     Contact     ---------------- */

.contact-left{
    flex-basis: 25%;
}
.contact-right{
    flex-basis: 50%;
}
.contact-left p{
    margin-top: 30px;
}
.contact-left p i{
    color: #ff004f;
    margin-right: 15px;
    font-size: 25px;
}
.social-icons{
    /* margin-top: 30px; */
    
    border-bottom: 1px solid white;
    padding-bottom: 4vh;
}
.social-icons a{
    text-decoration: none;
    font-size: 30px;
    margin-right: 15px;
    color: #ababab;
    display: inline-block;
    transition: transform 0.5s;
}
.social-icons a:hover{
    color: #0BA34E;
    transform: translateY(-5px);
}
.btn.btn2{
    display: inline-block;
    background: #0BA34E;
}
.contact-right form{
    padding-top: 2vh;
    width: 100%;
}
form input, form textarea{
    width: 100%;
    border: 0;
    outline: none;
    background: #262626;
    padding: 15px;
    margin: 15px 0;
    color: #fff;
    font-size: 18px;
    border-radius: 6px;
}
form .btn2{
    padding: 14px 60px;
    font-size: 18px;
    margin-top: 20px;
    cursor: pointer;
}
.copyright{
    width: 100%;
    text-align: center;
    padding: 25px 0;
    background: #262626;
    font-weight: 300;
    margin-top: 20px;
}
.copyright i{
    color: #ff004f;
}
.copyright a{
    color: #ff004f;
    text-decoration: none;
}






/* ------------------    Footer     ---------------- */
.site-footer {
  background-color: #1e1e1e;
  width: 100%;
  color: #f5f5f5;
  padding: 40px;
  font-family: gilroy;
  text-align: start;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.footer-container > div {
  flex: 1 1 250px;
}

.footer-container h3,
.footer-container h4 {
  color: #ffffff;
  margin-bottom: 10px;
}

.footer-container p,
.footer-container a {
  color: #ccc;
  font-size: 15px;
  line-height: 1.6;
  text-decoration: none;
}

.footer-container ul {
  list-style: none;
  padding: 0;
}

.footer-container ul li {
  margin-bottom: 8px;
}

.footer-container ul li a:hover {
  color: #0BA34E;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #444;
  padding-top: 15px;
  margin-top: 30px;
  font-size: 15px;
  color: #aaa;
}

.footer-contact a {
    font-size: 1vw;
    
}


