
#page1 video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
}
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
    background-color: #111;
}
nav {
    position: fixed;
    display: flex;
    align-items: center;
    height: 4vh;
    width: 100%;
    padding: 1.5vw 10vw;
    justify-content: center;
    background-color: transparent; /* Decent background color */
    z-index: 1000; /* Ensure navbar is on top */
}
nav h1 {
    color: #f6d5d5;
    font-size: 1vh;
    font-weight: 700;
    text-transform: uppercase;
    font: 2em sans-serif;
    margin-right: auto;
    justify-content: left;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 2vw;
    padding: 0;
    margin: 0;
    align-items: center; /* Align li items to the center */
}

nav ul li {
    display: inline;
    margin-top: 1.5vh;
}

nav ul li a {
    text-decoration: none;
    color: gold;
    font-size: 1vw;
    font-weight: 700;
    text-transform: uppercase;
    padding: 1vh 2vw;
    transition: color 0.3s ease;
}



nav h1 {
    font-size: 3vw;;
}

.nav-part2 {
    display: flex;
    gap: 2vw;
    align-items: flex-start;
    padding: 2vh ;
    position: relative;
    z-index: 10;
}

nav ul li a:hover {
    color: #552a2a; /* Change to white on hover */
    border-radius: 25%;
}
nav button {
    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:hover {
    background-color: #FF0000 ;
    transition: 0.5s;
    border-radius: 50px;
    box-shadow: 0 6px 12px rgba(169, 169, 169, 0.3); 

    transform: scale(1.25);
}

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;
}




#page1 {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    
    
}
#page1 h1 span3 {
    font-size: 6vw;
    text-transform: uppercase;
    font-weight: 900;
    line-height: 6vw;
    color: azure;
}
#page1 h1{
    font-size: 6vw;
    text-transform: uppercase;
    font-weight: 900;
    margin-top: 4vh;
    line-height: 6vw;
    color: azure;
}
#page1 h1 span1 {
    color: #FF0000;
}
#page1 h1 span2 {
    color: #0BA34E;
}

#page1 h1 svg {
    height: 4vw;
    border-radius: 50%;
    width: 4vw;

    background-color: #0BA34E;
}

#page1 p {
    font-size: 1.1vw;
    text-align: center;
    font-weight: 400;
    margin-top: 4vh;
    font-size: 1.4vw;
    color: azure;
}

#page1-something {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2vw;
    color: azure;
}

#page1-something h4 {
    font-weight: 400;
    font-size: 1.1vw;
    text-transform: uppercase;
    padding: 15px 20px;
    border: 1px solid #a5a5a5;
    border-radius: 50px;
    margin-right: 6px;
    transition: all 0.3s ease; /* Smooth transition for hover effects */
    cursor: pointer; /* Changes cursor to a hand pointer */
}

/* Hover effect for h4 elements */
#page1-something h4:hover {
    background-color: #0BA34E; /* Green background on hover */
    color: #fff; /* White text on hover */
    transform: scale(1.05); /* Slightly increase the size */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add subtle shadow */
}

/* Special styling for the second-to-last h4 element */
#page1-something h4:nth-last-child(2) {
    /* Remove border and padding */
    border: none;
    padding: 5px;
}

/* Hover effect for the second-to-last h4 element */
#page1-something h4:nth-last-child(2):hover {
    background-color: #FF4500; /* Orange background on hover */
    color: #fff; /* White text on hover */
    transform: scale(1.05); /* Slightly increase the size */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add subtle shadow */
}


#moving-div {
    /* background-color: red; */
    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;
}

@keyframes mobe {
    0% {
        transform: translateX(0);
    }

    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;
}





#page2 {
    height: 100vh;
    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;
}

#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;
}


#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 {
    /* 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;

}

#page4 {
    min-height: 100vh;
    width: 100%;
    background-color: #111;
    position: relative;
    padding-bottom: 13vh;
    z-index: 10;
      }
    #card1, #card2, #card3, #card4, #card5, #card6 {
        font-weight: 500;
    }
#card1{ 
    font-size: 1.7vw;
    background : url("pexels-koolshooters-8534441.jpg");
    color: #fff;
    margin-top: 1vw;
    font-weight: 400;
    width: 25%;
    display: flex;
    justify-content: center;        
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    background-size: contain;
    background-repeat: repeat;
}
#card2 {
    font-size: 1.7vw;
    background: url("https://images.unsplash.com/photo-1520412099551-62b6bafeb5bb?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Nnx8cGxhbnR8ZW58MHx8MHx8fDA%3D");
    color: #fff;
    margin-top: 1vw;
    font-weight: 400;
    width: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    background-size: contain;
    background-repeat: repeat;
}
#card1 img, #card2 img, #card3 img, #card4 img, #card5 img, #card6 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5%;
}
#card3 {
    font-size: 1.7vw;
    background: url("https://images.unsplash.com/photo-1497250681960-ef046c08a56e?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8OHx8cGxhbnR8ZW58MHx8MHx8fDA%3D");
    color: #fff;
    margin-top: 1vw;
    font-weight: 400;
    width: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 5%;
    margin-right: 5%;
    background-size: contain;
    background-repeat: repeat;
}

#card4 {
    font-size: 1.7vw;
    background: url("https://plus.unsplash.com/premium_photo-1675864663002-c330710c6ba0?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MXx8cGxhbnR8ZW58MHx8MHx8fDA%3D");
    color: #fff;
    margin-top: 1vw;
    font-weight: 400;
    width: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    background-size: contain;
    background-repeat: repeat;
}

#card5 {
    font-size: 1.7vw;
    background: url("https://images.unsplash.com/photo-1500458089283-8c282e703dac?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8NHx8bmF0dXJlJTIwcG9ydHJhaXR8ZW58MHx8MHx8fDA%3D");
    color: #fff;
    margin-top: 1vw;
    font-weight: 400;
    width: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    background-size: contain;
    background-repeat: repeat;
}

#card6 {
    font-size: 1.7vw;
    background: url("https://images.unsplash.com/photo-1500458089283-8c282e703dac?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8NHx8bmF0dXJlJTIwcG9ydHJhaXR8ZW58MHx8MHx8fDA%3D");
    color: #fff;
    margin-top: 1vw;
    font-weight: 400;
    width: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    background-size: contain;
    background-repeat: repeat;
}

#card1, #card2, #card3, #card4, #card5, #card6 {
    margin: 0.3vw;
}
.scrolling-wrapper {
    margin: 90px 0;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;;
    }
    .card {
      flex: 0 0 auto;
      width: 33%;
      height: 80vh;
      background-color: rgb(64, 139, 89);
      border: 1px solid #fff;
      border-radius: 5%;
      margin: 0.5vw;
      
    
  }
  .card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5%;
  }


.section {
    width: 100%;
    height: 72vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0vh 0vw;
    padding-bottom: 0;
    overflow-y: auto;
}

.sec-left {
    height: 100%;
    width: 25%;
    padding-top: 3vh;
    /* background-color: aqua; */
    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%; */
}

.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;
}

#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;
    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 {
    /* background-color: red; */
    width: 15vw;
    display: inline-block;
}

#page5-content {
    width: 100%;
    /* background-color: red; */
    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;

}

.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: 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;
    /* 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: 0;
}

.page5-elem:hover .over {
    transform: translateY(0);
    /* display: initial; */
    opacity: 1;
}

.page5-elem:hover {
    border-top: 2px solid #fff;
}

.left-column{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#pie-chart{
    width: 35%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
/* #image-map{
    width: 50%;
    /* height: 100%; */
    /* object-fit: cover; */
    /* border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity ease 0.1s;
} */ 
summary::marker {
    content: "";
}

.uiux {
    border-top: 1px solid #333;
    padding: 3vh 0;
}

.product {
    padding: 3vh 0;

    border-top: 1px solid #333;
}

#page6 {
    min-height: 100vh;
    width: 100%;
    /* background-color: #111; */
    background-color: #fff;
    padding: 10vh 10vw;
}

#page6 > h1 {
    font-size: 5.5vw;
    color: #000;
    /* background-color: red; */
    padding-left: 23vw;
    padding-right: 5vw;
    line-height: 5.8vw;
    padding-bottom: 10vh;
    border-bottom: 1px solid #dadada;
}

#page6-content {
    /* background-color: red; */
    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;
}

#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%);
}


#page7 {
    height: 100vh;
    background-color: #111;
}
