header {
    position: sticky;
    top: -1;
    z-index: 1000;
    width: 100%;
    height: fit-content;
}

nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    height: 6vh;
    background-color: rgb(34 34 97);
    position: relative;
}

nav .left {
    font-size: 1.5rem;
    width: 40%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

nav .right {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 100%;
}

nav .right ul {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

nav .right ul li {
    list-style: none;
    margin: 0 3%;
}

nav .right ul li a {
    text-decoration: none;
    color: white;
}

nav .right ul li a:hover {
    color: rgb(153, 153, 226);
    font-size: 1.01rem;
}

main {
    width: 100%;
}
.side-navigation{
    width: 99vw;
    height: 80vh;
    position: absolute;
    border-right: 2px solid lavender;
    background: #20204fe0;
    border-bottom: 2px solid lavender;
    left: 0vw;
    transition: all 0.5s;
}
.side-navigation ul{
    width: 100%;
    height: 100%;
    list-style: none;
}
.side-navigation ul li{
    list-style: none;
    font-size: 1.5rem;
    margin: 8vh auto;
    width: 70%;
    border-bottom: 2px solid #e228eb;
}

.side-navigation ul li a{
    text-decoration: none;
    color: aqua;
}


main .firstsection {
    margin: 0 auto;
    height: 85vh;
    width: 80%;
}

.content{
    width: 100%;
    height: 80%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.s1buttons{
    height: 20%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.s1buttons a{
    width: 100%;
    height: 100%;
    display: flex;
    text-decoration: none;
    color: #e228eb;
    justify-content: center;
    align-items: center;
    transition: all 0.5s;
}

.s1buttons a:hover{
    color: aqua;
}

.s1buttons button{
    height: 40%;
    width: 20%;
    margin: 10vw;
    cursor: pointer;
    background: #69446d24;
    border: 2px solid #69446d;
    border-radius: 2vw;
    color: #e228eb;
    transition: all 0.5s;
}

.s1buttons button:hover{
    background-color: #e228eb;
    color: aqua;
}

.section-demo {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.section-demo>div {
    width: 40%;
}

.leftsection, .rightsection {
    width: 40%;
}

.leftsection {
    font-size: 2rem;
}

.rightsection img {
    width: 80%;
}

.secondsection {
    width: 80%;
    margin: 0 auto;
    height: 95vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
}

.secondsection span {
    position: absolute;
    top: 4vh;
}

.secondsection h1 {
    position: absolute;
    top: 6vh;
    font-size: 1.9rem;
}

.secondsection .box {
    background-color: white;
    width:  66.5vw;
    height: 2px;
    display: flex;
    position: absolute;
    top: 20vh;

}

.secondsection .box .vertical {
    height: 93px;
    width: 1px;
    background-color: #fff;
    margin: 0 100px;
    position: relative;
    left: -80px;
}
.secondsection .box .vertical ion-icon{
    top: 12vh;
    font-size: 3rem;
    position: absolute;
    left: -2.15vw;
}

.ia{
    color: #eb6f24;
}
.ib{
    color: #6666bd;
}
.ic{
    color: #d0982b;;
}

#S3{
    width: 90VW;
    min-height: 100vh;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.text{
    position: absolute;
    top: 8vh;
    left: 6vw;
}

.conteinar{
    position: relative;
    width: 95%;
    height: 62vh;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1vw;
    flex-wrap: wrap;
}
.conteinar .serviceBox{
    position: relative;
    height: 30vh;
    width: 25%;
    background: #51446e;
    border-radius: 1vw;
    overflow: hidden;
}

.conteinar .serviceBox .icon{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    transition: all 0.5s;
    background-color: var(--i);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    transition-delay: 0.25s;
}

.conteinar .serviceBox:hover .icon{
    width: 4vw;
    height: 6vh;
    border-radius: 50%;
    top: 3vh;
    left: calc(50% - 2vw);
    transition-delay: 0s;
}

.conteinar .serviceBox .icon ion-icon{
    font-size: 5em;
    color: #fff;
    transition: 0.5s;
    transition-delay: 0.25s;

}

.conteinar .serviceBox:hover .icon ion-icon{
    font-size: 2em;
    transition-delay: 0s;
}

.conteinar .serviceBox .contant{
    color: #fff;
    position: relative;
    padding: 2vw;
    text-align: center;
    margin-top: 6vh;
    z-index: 1;
    transform: scale(0);
    transition: 0.5s;
    transition-delay: 0s;
}

.conteinar .serviceBox:hover .contant{
    transform: scale(1);
    transition-delay: 0.25s;
}

.conteinar .serviceBox .contant h2{
    margin-top: 1vh;
    margin-bottom: 0.5vh;
}

.conteinar .serviceBox .contant p{
    font-weight: 300;
    line-height: 1em;
    color: #bbb;
}

#S4 {
    width: 80%;
    height: 80vh;
    margin: 20vh auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

#S4 span {
    width: 100%;
    color: grey;
    position: absolute;
    top: 4%;
}

#S4 h1 {
    font-size: 1.9rem;
    width: 100%;
    position: absolute;
    top: 8%;
}

.projectcontener {
    width: 98%;
    height: 98%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
}

.projectset1,
.projectset2 {
    height: 30%;
    width: 98%;
    /* border: 2px solid red; */
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 2vh 0;
}

.project a{
        height: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        text-decoration: none;
        color: #dfdfe3;
}

.project {
    height: 100%;
    width: 30%;
    border-radius: 10%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.project h4 {
    width: 100%;
    height: 10%;
}

.projectimage {
    height: 100%;
    width: 100%;
}

.projectset2 .project #fourthi, #fifti, #sixthi{
    top: 50vh !important;
}

.fifthsection {
    width: 80%;
    margin: 0 auto;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
}

.formcontaner {
    height: 70%;
    width: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 4px solid black;
}

.form {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.form form {
    height: 100%;
    width: 60%;
    justify-content: center;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

form>p {
    width: 100%;
    font-size: 14px;
    font-weight: 600;
    color: #bbb;
}

form>input {
    width: 100%;
    height: 6%;
    text-align: center;
    color: #fff;
    background: #ffffff21;
    border: 2px solid #626060;
    border-radius: 2vw;
    margin: 1vh;
}

form>textarea {
    width: 100%;
    height: 30%;
    text-align: center;
    color: #fff;
    background: #ffffff21;
    border: 2px solid #626060;
    border-radius: 2vw;
    margin: 1vh;
}

form>button {
    width: 30%;
    height: 8%;
    text-align: center;
    color: #fff;
    background: #ffffff21;
    border: 2px solid #db7a24;
    border-radius: 2vw;
    margin: 1vh;
    font-weight: 600;
    cursor: pointer;
}

form>button:hover {
    background-color: #db7a24;
    transition: all 0.3s;
}

footer {
    background-color: #0e0e0a;
    height: 35vh;
}

footer button{
    height: 15%;
    width: 100%;
    cursor: pointer;
    border-radius: 2vw;
    background-color: #20204fe0;
    color: #e228eb;
    font-size: 1.5em;
    font-weight: 300;
    margin-top: 1vh;
}
#footerbox1{
    height: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.futter-icons{
    height: 50%;
    width: 2.5%;
    border-radius: 50%;
    margin: 0 2vw;
    overflow: hidden;
}

.futter-icons a{
    text-decoration: none;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #5050d2;
}
.futter-icons a ion-icon{
    font-size: 1rem;
    color: white;
}
#tweetre{
    background: #1b9be7;
}
#instagram{
    background-color: #db3be3;;
}
#youtube{
    background: red;
}
#wifi-outline{
    background: gray;
}

#footerbox2{
    height: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
#footerbox2 ul{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 50%;
}
#footerbox2 ul li{
    list-style: none;
    margin: auto;
}
#footerbox2 ul li a{
    color: grey;
    text-decoration: none;
}

#footerbox3 {
    height: 20%;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    color: grey;
}
#footerbox4{
    height: 12%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: end;
}
#footerbox4 a{
    text-decoration: none;
    color: #1b9be7;
}