body {
    margin: 0;
    font-family: "Hind", sans-serif;
}

.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 5;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(245, 245, 245, 0);
}
#navbarLinks {
    margin-right: 5vw;
}
#navbarLinks a {
    font-family: "Hind", sans-serif;
    text-decoration: none;
    font-size: 23px;
    color: black;
    margin-left: 20px;
}
#navbarLinks a:hover {
    color: grey;
}

@media screen and (max-width:660px) {
    #navbarLinks a{
        font-size: 15px;
        margin: 0 10px;
    }
    #logo {
        height: 18px;
    }
}
@media screen and (max-width:430px) {
    #navbarLinks a{
        font-size: 13px;
        margin: 0 8px;
    }
    #logo {
        height: 16px;
    }
}

/* services */

#services {
    margin-bottom: 50px;
}

#backgroundSlides {
    max-width: 2000px;
    position: relative;
}

.slides {
    display: none;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: rgb(0, 0, 0);
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}

#servicesText {
    position: absolute;
    background-color: rgba(128, 128, 128, 0.3);
    padding: 5px;
    border-radius: 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#nextProject {
    position: relative;
}
#nextButton {
    position: absolute;
    bottom: 0px;
    background-color: white;
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

@media only screen and (max-width: 767px) {
    #servicesText {
        display: none;
    }
}

/* summary */

#mobileServicesText {
    display: none;
}
@media only screen and (max-width: 767px) {
    #mobileServicesText {
        display: block;
        width: 90vw;
        margin-left: auto;
        margin-right: auto;
    }
}

.text {
    width: 90vw;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10vh;
}
#threeStep {
    width: 90vw;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: row;
    margin-top: 20vh;
    margin-bottom: 15vh;
    gap: 16px;
}
#mobileThreeStep {
    display: none;
}
@media only screen and (max-width: 767px) {
    .text {
        margin-top: 10vh;
    }
    #threeStep {
        display: none;
    }
    #mobileThreeStep {
        margin-top: 40px;
        margin-bottom: 20px;
        width: 80vw;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        flex-direction: column;
        row-gap: 40px;
    }
}

/* expertiseSection */

#expertise {
    width: 90vw;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
}

video {
    width: 60%;
    border-top-left-radius: 20px;
}

@media only screen and (max-width: 1224px) {
    #column {
      flex-direction: column;
    }
    #columnReverse {
        flex-direction: column-reverse;
    }
    video {
        width: 90vw;
    }
    #videoText {
        width: 90wv;
        padding-bottom: 0;
        text-align: left;
    }
}

/* portfolio section*/

#portfolioFlex {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 50px;
    padding-top: 5vh;
}
.portfolioContainer {
    padding: 8px;
}
.portfolioContainer:hover{
    background-color: rgba(128, 128, 128, 0.3);;
}
.portfolioContainer a{
    text-decoration: none;
    display: flex;
    align-items: center;
    width: 70vw;
    gap: 20px;
}
.portfolioImage {
    width: 40vw;
}
.smallDescription {
    display: none;
}
#mobilePortfolio {
    display: none;
}
@media only screen and (max-width: 1090px) {
    .portfolioImage {
        width: 55vw;
    }
    .portfolioDescription{
        display: none;
    }
    .smallDescription {
        display: block;
    }
}
@media only screen and (max-width: 820px) {
    .portfolioContainer{
        display: none;
    }
    #mobilePortfolio {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        margin-top: 30px;
    }
}

/* get in touch */

.contact {
    height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
@media only screen and (max-width: 1224px) {
    .contact {
        width: 90vw;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
}
