
.navb {
    background-color: #fff;
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    border: 1px solid #3333;
}

.navb .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.navb .logo .logoimg {
    width: 40px;
}

.navb .logo .logolabel {
    color: var(--black2);
}

.navb ul li a:hover{
    color: var(--black1);
}
.navb .this{
    color: var(--black1) !important;
}


.navb .menubtns{
    width:50px;
    height: 50px;
    background: #3331;
    border-radius: 50px;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}
.navb .menubtns i{
    font-size:1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}


.multlang i{
    display: flex;
    align-items: center;
    justify-content: center;
}

.multlang {
    position: relative;
    font-size: 1.5rem;
    padding: 16px;
    color: #333;
}
.multlang:hover ol{
    display: flex;
}
.multlang ol{
    position: absolute;
    flex-direction: column;
    width:100px;
    height: fit-content;
    top: 100%;
    list-style: none;
    display: none;
    left: 50%;
    background-color: #fff;
    border: 1px solid #3333;
    transform:translate(-50%,0);
    border-radius: 10px;
    padding:8px;
    font-size: 1rem;
}




















@media screen and (max-width: 992px) {
    .navb{
        height:70px;
        justify-content: space-between;
        padding: 0 20px;
    }
    .navb .menubtns{
        display: flex;
    }
    #close{
        display: none;
    }

    .navb ul {
        display: flex;
        position: fixed;
        width:100%;
        background-color: #fff;
        height:calc(100vh - 70px);
        top: 68px;
        left: -1000px;
        flex-direction: column;
        text-align: center;
        padding-top:30px;
        border: 1px solid #3333;
        padding:30px 15px;
        transition: .3s;
    }
    .navb ul li{
        text-align: end;
        padding-right:15px;
        border-bottom:1px solid #3333;
    }
}
















/* ---------video section-------------- */

.videosec {
    margin-top: 120px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    justify-content: center;
}

.videosec video {
    width: 100%;
    max-width: 800px;
}


.startnowbtns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.startnowbtns .letsstart {
    padding: 1rem 2rem;
    font-size: 1.3rem;
    background: var(--primary);
    border: none;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    transition: .3s;
    text-decoration: none;
}

.startnowbtns .letsstart:hover {
    background: var(--secondary);
}


.startnowbtns .contactus {
    padding: 1rem 2rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    color: var(--primary);
    cursor: pointer;
    text-decoration: none;
    background-color: white;
}

.startnowbtns .contactus i {
    display: flex;
    transition: .3s;
}

.startnowbtns .contactus:hover i {
    transform: translate(-15px);
}






@media screen and (max-width: 992px) {
    .videosec {
        width: 100%;
        height: 60vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }
    .videosec .video{
        width: 100%;
    }
    .videosec .startnowbtns{
        flex-direction: column-reverse;
    }
}





/* ---------cards 1 section-------------- */





.cards1 {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin: 0 auto;
    margin-top: var(--section-bag);
    max-width: 1200px;
}

.cards1 .card {
    width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    gap: 10px;
    margin: 0 auto;
    position: relative;
    background-color: #fff;
    border-radius: 3px;
}

.cards1 .card img {
    height: 150px;
}

.cards1 .card h1 {
    color: var(--black2);
    text-align: center;
}

.cards1 .card p {
    font-size: .8rem;
    text-align: center;
    width: 230px;
    color: var(--black3);
}

.before {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("http://kit.detheme.com/elysian/wp-content/uploads/sites/53/2020/12/rio-custompattern-1.png");
    background-position: top left;
    background-repeat: no-repeat;
    background-size: 300px auto;
    top: -10%;
    left: -10%;
    z-index: -2;
}

.after {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("http://kit.detheme.com/elysian/wp-content/uploads/sites/53/2020/12/rio-custompattern-1.png");
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: 300px auto;
    top: 10%;
    left: 10%;
    z-index: -2;
}



@media screen and (max-width: 992px) {
    
    .cards1 {
        grid-template-columns: 1fr 1fr ;

    }
}

@media screen and (max-width: 600px) {
    .cards1 {
        grid-template-columns: 1fr ;
        gap:60px;
    }
}




/* ---------cards 2 section-------------- */



.cards2 {
    margin-top: var(--section-bag);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
    gap: 50px;
}

.cards2 .card {
    width: 100%;
    max-width: 1600px;
    display: flex;
    align-items: center;
    gap: 100px;
    justify-content: center;
}

.cards2 .card img {
    width: 100%;
    max-width: 700px;
}

.cards2 .card .info {
    display: flex;
    flex-direction: column;
    text-align: end;
}

.cards2 .card .info h5 {
    color: var(--accent);
}

.cards2 .card .info p {
    padding-right: 20px;
    max-width: 500px;
    color: var(--black3);

}

.cards2 .card .info h1 {
    font-size: 2rem;
    padding-bottom: 1rem;
    color: var(--blackblue);

}





@media screen and (max-width: 992px) {
    .cards2 .card {
        width: 100%;
        max-width: 1600px;
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 50px;
        justify-content: center;
    }
    .cards2 .card:nth-child(1) {
        flex-direction: column-reverse;
    }  
    .cards2 .card img {
        max-width:400px;
    }  
}

/* ---------how we work-------------- */



.howwework {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: var(--section-bag);
}

.howwework>h5 {
    color: var(--accent);
    font-size: .9rem;
}

.howwework>h1 {
    color: var(--blackblue);
    font-size: 2rem;
    text-align: center;
}

.howwework .hwwcards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    padding: 10px 20px;
    max-width: 1300px;
    margin: 50px auto;
    gap: 10px;
    justify-content: center;
}

.howwework .hwwcards .hwwcard {
    display: flex;
    flex-direction: column;
    padding: 40px;
    background-color: #fff;
    width: 100%;
    padding: 10px 20px;
    position: relative;
    align-items: center;
    border-radius: 5px;
    border: 1.8px solid #3333;
    height: fit-content;
    text-align: center;
    max-width: 250px;
    margin: 0 auto;
}

.howwework .hwwcards .hwwcard .number {
    font-size: 1.3rem;
    text-align: center;
    color: var(--black3);
    width: 50px;
    height: 50px;
    border-radius: 60px;
    border: 1px solid var(--black4);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 10px;
    left: 10px;
}

.howwework .hwwcards .hwwcard i {
    font-size: 3.5rem;
    color: var(--accent);
    margin-top: 30px;
}

.howwework .hwwcards .hwwcard h3 {
    margin-bottom: 10px;
    color: var(--blackblue);
}

.howwework .hwwcards .hwwcard p {
    font-size: .9rem;
    text-align: center;
    color: var(--black3);
    width: 90%;
}



@media screen and (max-width: 992px) {
    
    .howwework .hwwcards {
        grid-template-columns: repeat(2, 1fr);

    }
    .howwework .hwwcards .hwwcard {
        width: 100%;
        max-width:none;
    }


}

@media screen and (max-width: 600px) {
    .howwework .hwwcards {
        grid-template-columns:  1fr;

    }
}

/* -------------cards3--------------- */

.cards3 {
    width: 100%;
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cards3 .cards {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.cards3 .cards .card {
    width: 300px;
    height: 300px;
    background-color: #fff;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
}

.cards3 .cards .card img {
    height: 150px;
    margin: 10px;
}

.cards3 .cards .card h1 {
    color: var(--blackblue);
}

.cards3 .cards .card p {
    text-align: center;
    color: var(--black3);
    font-size: .9rem;
    width: 80%;
}





@media screen and (max-width: 992px) {
    
    .cards3 .cards{
        display: grid;
        grid-template-columns: 1fr 1fr;

    }
    


}
@media screen and (max-width: 600px) {
    .cards3 .cards{
        display: grid;
        grid-template-columns: 1fr ;

    }
}

/* ----------------clints----------------- */



.clints {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: var(--section-bag);
}

.clints>h1 {
    font-size: 2rem;
    color: var(--blackblue);
    text-align: center;
}

.clints>h5 {
    font-size: .9rem;
    color: var(--black3);
}

.clints .clintsdiv {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    max-width: 1000px;
}

.clints .clintsdiv img {
    width: 100%;
    filter: grayscale();
    opacity: .7;
}



@media screen and (max-width: 992px) {
    .clints .clintsdiv {
        grid-template-columns: repeat(4, 1fr);
        padding:0 60px;
    }

}
@media screen and (max-width: 600px) {
    .clints .clintsdiv {
        grid-template-columns: repeat(2, 1fr);
        padding:0 60px;
    }
}


/* -------------------about your project --------- */

.aboutyourpro {
    margin-top: 40px;
    position: relative;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px;
    text-align: center;
}

.aboutyourpro #particles-js {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -5;
}

.aboutyourpro h1 {
    text-align:center;
    font-size: 2.5rem;
    color: #fff;
}

.aboutyourpro h3 {
    color: #fff;
}

.aboutyourpro a {
    padding: 1rem 2rem;
    font-size: 1rem;
	text-decoration:none;
    border-radius: 15px;
    border: none;
    background-color: #fff;
    margin: 50px 0;
    transition: .2s;
}

.aboutyourpro a:hover {
    background-color: rgb(255, 222, 32);
    transform: scale(1.05);
}


@media screen and (max-width: 600px) {
    .aboutyourpro h1 {
        font-size: 1.5rem;
        color: #fff;
        text-align: center;
    }
    .aboutyourpro h3 {
        font-size: 1rem;
        text-align: center;
        color: #fff;
    }
}

/* ----------------footer----------------------- */




footer {
    display: flex;
    flex-direction: column;
    align-items: center;
}


footer>ul {
    list-style: none;
    display: flex;
    width: 50%;
    max-width: 500px;
    justify-content: space-around;
}

footer>ul li i {
    font-size: 2rem;
    color: var(--blackblue);
}

footer>ul li a {
    text-decoration: none;
}

footer .info {
    display: flex;
    justify-content: space-around;
    width: 100%;
    padding: 15px;
}

footer .info .left {
    width: 500px;
    display: flex;
    align-items: end;
    padding: 50px;
}

footer .info .left img {
    width: 100px;
}

footer .info .left p {
    width: 300px;
    font-size: .9rem;
    color: var(--black3);
}

footer .info .right {
    width: 700px;
    display: flex;
    align-items: flex-start;
    padding: 50px;

}

footer .info .right ul {
    height: fit-content;
    list-style: none;
}

footer .info .right ul a {
    color: var(--black2);
    text-decoration: none;
    display: flex;
    gap: 10px;
}

footer .info .right hr {
    height: 100%;
    opacity: .5;
    margin: 0 30px 0 80px;
}

footer h4 {
    padding: 20px;
    color: var(--black3);
}





@media screen and (max-width: 992px) {
    .clints>h5 {
        font-size: .9rem;
        text-align: center;
        color: var(--black3);
    }
    footer .info  {
        flex-direction: column;
        align-items: center;
    }
    footer .info .left {
    width: 100%;
    display: flex;
    align-items: end;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;

    }
    footer .info .right{
        flex-direction: column;
        width: 100%;
        gap:20px;
        align-items: center;
    }
    

}

