a {
    text-decoration: none;
}


/* -------------------------------------------- landing -------------------------------------------- */
section#landing {
    width: 100vw;
    height: 100vh;

    position: relative;
}

#overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);

    position: absolute;
    z-index: 1;
}

.landing__wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    /* filter: opacity(0.1); */
    /* background-color: rgba(0, 0, 0, 0.5); */
    z-index: 0;
    
    position: relative;
}

.landing__wrapper > video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    /* background-color: rgba(0, 0, 0, 0.7); */
    /* filter: opacity(80%); */
    
}

.landing__text-container {
    position: absolute;
    opacity: 0;
    
    top: 65%;
    left: 8%;

    z-index: 99;
}

.landing__text-container > h1 {
    /*font-size: calc(3rem + 1vw);*/
    font-size:66px;
    letter-spacing: 0.2rem;
    color: white;
    text-transform: uppercase;
    font-weight: bolder;
    /* text-shadow: 0px 0px 5px black; */
}

.landing__text-container > p {
    margin-top: 0.6rem;
    color: white;
    font-weight: bold;
    /* text-shadow: 0px 0px 5px black; */
}


/* -------------------------------------------- design -------------------------------------------- */
.section,
section#design {
    width: 100vw;
    min-height: 100vh;
    padding: 0rem 10rem;
    padding-top: 7rem;
    background: radial-gradient(63.51% 63.51% at 47.84% 42.15%,
                             rgba(29, 111, 183, 0.5) 0%, 
                             #6CC9CF 0%, 
                             rgba(244, 244, 244, 0) 65%);

    overflow: hidden;
}

section#design {
    margin-top: 2rem;
}

.design__wrapper {
    width: 100%;
    height: 100%;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.design__wrapper > h2 {
    color: #1C1E50;
    text-transform: uppercase;
    text-align: left;
    margin-left: 7rem;
    margin-right: auto;
    /*font-size: calc(2rem + 1vw);*/
    font-size:60px;
    font-weight: bolder;
}

.development-text{
    margin-left: auto !important;
    margin-right: 7rem !important;
}

.design__video-container {
    width: 90%;
    height: 70vh;
}

.design__video-container > video {
    width: 100%;
    height: 100%;
    object-fit: cover;

    z-index: -1;
}

.design__text-container{
    width: 100%;
    height: auto;

    display: flex;
}

.design__text-container--1 {
    flex: 1;
    padding: 0rem 2rem;
    
    display: flex;
    justify-content: flex-end;
}

.design__text-container--1 > ul {
    width: 20rem;
    height: 21rem;
    padding: 2.5rem;
    background-color: white;
    box-shadow: 4px 4px 25px rgba(0, 0, 0, 0.25);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;

    position: relative;
    top: 4rem;
}

.design__text-container--1>ul> li {
    list-style: none;
    /* list-style-type: circle;
    list-style-position: inside; */
    font-size: calc(0.6rem + 0.5vw);
    font-weight: bolder !important;
    margin: 0.5rem 0.2rem;
    padding: 0.6rem 1rem;

    position:relative;
}

.design__text-container--1>ul>li::before {
    content: '';
    
    position: absolute;
    left: -1rem;
    top: 0.75rem;
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 50%;
    border: 3px solid #1D6FB7;
}

/* .design__text-container--1>ul>li::after {
    content: '';

    position: absolute;
    left: -0.55rem;
    top: calc(0.85rem + 0.7rem);
    height: 0;
    width: 1.5px;
    background-color: #1D6FB7;
} */

.design-list-line-1,
.design-list-line-2,
.design-list-line-3,
.design-list-line-4,
.development-list-line-1,
.development-list-line-2,
.development-list-line-3,
.development-list-line-4,
.marketing-list-line-1,
.marketing-list-line-2,
.marketing-list-line-3,
.marketing-list-line-4{
    position: absolute;
    left: -0.55rem;
    top: calc(0.85rem + 0.75rem);
    height: 0;
    width: 2px;
    background-color: #1D6FB7;
}

li::marker {
    font-size: 1.5rem;
    color: #6CC9CF;
}

.design__text-container--2 {
    flex: 1;
    padding: 2rem;
}

.design__text-container--2 > p {
    width: 80%;
    /*font-size: calc(0.6rem + 0.5vw);*/
    font-size:18px;
    line-height: 1.6rem;
    /* font-weight: bold; */
    text-align: justify;
    letter-spacing: 0.05rem;
}

.cta__btn {
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.3s ease;

    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.cta__btn:hover > img {
    transform: rotate(-45deg);
}

.cta__btn > img {
    width: 2rem;
    height: 2rem;
    transition: all 0.3s ease;
}

.cta__btn > p {
    /*font-size: calc(0.6rem + 0.5vw);*/
    font-size: 20px;
    color: black;
    font-weight: 600;
    margin-left: 0.6rem;
    letter-spacing: 0.05rem;
}

@media only screen and (max-width:1400px) {
    .section,
    section#design {
        padding: 5rem 5rem;
    }

    .design__video-container {
        width: 95%;
    }

    .design__text-container--1 {
        padding: 0rem 1.5rem;
    }

    .design__text-container--1>ul {
        width: 19rem;
        height: 20rem;
        padding: 2.3rem;
    }
    
}

@media only screen and (max-width:1000px) {
    .section,
    section#design {
        padding: 4rem 4rem;
    }

    .design__wrapper>h2 {
        margin-left: 5rem;
    }

    .design__video-container {
        width: 95%;
    }

    .design__text-container--1 {
        padding: 0rem 1.5rem;
    }

    .design__text-container--1>ul {
        width: 18rem;
        height: 19rem;
        padding: 2.2rem;
    }

    .design__text-container--2 {
        padding: 1.5rem;
    }

    .design__text-container--2>p {
        width: 90%;
    }
    
}

@media only screen and (max-width:800px) {

    .section,
    section#design {
        padding: 3rem 3rem;
    }

    .design__wrapper>h2 {
        margin-left: 3rem;
    }

    .design__video-container {
        width: 100%;
    }

    .design__text-container--1 {
        padding: 0rem 1rem;
    }

    .design__text-container--1>ul {
        width: 16rem;
        height: 18rem;
        padding: 2rem;
    }

    .design__text-container--2 {
        padding: 1rem;
    }

    .design__text-container--2>p {
        width: 95%;
    }
}

@media only screen and (max-width:650px) {

    .section,
    section#design {
        padding: 2rem 2rem;
    }

    .design__wrapper>h2 {
        margin-left: 1.5rem;
        /* top: 3rem; */
    }

    .design__video-container {
        width: 100%;
        height: 30vh;
    }

    .design__video-container>video {
        width: 100%;
        height: 100%;
        object-fit: cover;

        z-index: -1;
    }

    .design__text-container {
        display: flex;
        flex-direction: column;
    }
    
    .design__text-container--1 {
        padding: 0rem 1rem;
    }

    .design__text-container--1>ul {
        width: 100%;
        height: 18rem;
        padding: 3rem;
    }
    
    .design__text-container--2 {
        padding: 1rem;
    }

    .design__text-container--2>p {
        width: 100%;
    }
}

@media only screen and (max-width:450px) {

    .section,
    section#design {
        padding: 2rem 1rem;
    }

    .design__wrapper>h2 {
        margin-left: 0.2rem;
    }

    .design__text-container--1 {
        padding: 0rem 0.6rem;
    }

    .design__text-container--1>ul {
        height: 15rem;
        padding: 2rem;
    }

    .design__text-container--2 {
        padding: 0.5rem;
    }

}

/* -------------------------------------------- development -------------------------------------------- */
.development__text-container {
    flex-direction: row-reverse;
}

.development__text-container--1 {
    justify-content: flex-start;
}

.development__text-container--2 {
    justify-content: flex-start;
}

.development__text-container--2 > p {
    margin-left: auto;
}

.cta__btn--dev {
    margin-left: 20%;
}

@media only screen and (max-width:1000px) {

    .cta__btn--dev {
        margin-left: 10%;
    }

}


@media only screen and (max-width:800px) {
    .cta__btn--dev {
        margin-left: 5%;
    }
}

@media only screen and (max-width:650px) {

    .development__video-container {
        width: 100%;
        height: 30vh;
    }

    .development__video-container>video {
        width: 100%;
        height: 100%;
        object-fit: cover;

        z-index: -1;
    }

    .development__text-container {
        display: flex;
        flex-direction: column;
    }

    .cta__btn--dev {
        margin-left: 0%;
    }
}


/* -------------------------------------------- our work -------------------------------------------- */
section#work {
    width: 100vw;
    min-height: 100vh;
    padding: 4rem 10rem;
}

.work__wrapper {
    width: 100%;
    height: 100%;
}

.work__wrapper > p {
    text-transform: uppercase;
    color: #1C1E50;
    font-weight: bold;
    font-size:22px;
}

.work__wrapper > h2 {
    text-transform: uppercase;
    color: #1C1E50;
    font-weight: bolder !important;
}

.work__container {
    margin-top: 4rem;
    
    display: flex;
    flex-direction: column;
    justify-content: center ;
}

.work__container--1 {
    width: 100%;
    /* border: 2px solid red; */
    height: 35rem;
    
    display: flex;
    flex-direction: row-reverse;
}


/* left */
.work__container--1__img {
    width: 100%;
    height: 100%;
    flex: 1;
    
    position: relative;
}

.image__wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;

    position: relative;
}

.work__container--1__img> .image__wrapper > img {
    width: 100%;
    object-fit: cover;
    /* object-position: 0 -100px; */
}

#layer,
#layer2,
#layer3,
#layer4,
#layer5,
#layer6 {
    width: 100%;
    height: 100%;

    position: absolute;
    top: 0;
    left: 0;
}

/* #layer,
#layer3,
#layer5 {
    background-color: #2C2929;
    z-index: 99;
} */

#layer2,
#layer4,
#layer6 {
    background-color: rgb(237, 237, 237);
    z-index: 9;
}

.percentage {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background-color: #1D6FB7;
    color: white;
    font-size: calc(0.8rem + 0.5vw);
    font-weight: bold;

    display: flex;
    justify-content: center;
    align-items: center;

    position: absolute;
    left: -2.5rem;
    bottom: 2rem;

    z-index: 999;
}

/* right */
.work__container--1__logo {
    flex: 1;

    display: flex;
    flex-direction: column;
}

/* right top */
.work__container--1__logo-1 {
    flex: 1;
    height: 50%;

    display: flex;
}

.work__logo--1 {
    flex: 1;
    box-shadow: 5px 5px 6px 2px rgba(0, 0, 0, 0.25);
    overflow: hidden;

    position: relative;
}

.layer {
    width: 100%;
    height: 100%;

    position: absolute;
    left: 0;
    top: 0;
    background-color: rgb(237, 237, 237);

    z-index: 999;
}


.left-logo {
    box-shadow: 0px 5px 10px 5px rgba(0, 0, 0, 0.25);
}

.work__logo--1 > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.work__empty {
    /* flex: 1; */
    width: 50%;
}

/* right bottom */
.work__container--1__logo-2 { 
    height: 50%;
    flex: 1;
    
    display: flex;
}

.work__logo--2 {
    flex: 1;
    background-color: #1C1E50;
    color: white;
    padding: 1.5rem;
    overflow: hidden;

    display: flex;
    justify-content: center;
    align-items: center;

    position: relative;
}

.work__logo--2 > p {
   font-weight: bold;
}

/* second */
.work__container--2 {
    flex-direction: row;
}

@media only screen and (max-width:1400px) {
    section#work {
        padding: 3rem 5rem;
    }

    .work__container--1 {
        height: 30rem;
    }
}

@media only screen and (max-width:1000px) {
    section#work {
        padding: 3rem 3rem;
    }

    .work__container--1 {
        height: 28rem;
    }
}

@media only screen and (max-width:900px) {
    section#work {
        padding: 2rem 3rem;
    }

    .work__container--1 {
        height: 25rem;
    }
}

@media only screen and (max-width:850px) {
    section#work {
        padding: 2rem 3rem;
    }

    .work__container--1 {
        height: 22rem;
    }
}

@media only screen and (max-width:750px) {
    section#work {
        padding: 2rem 3rem;
    }

    .work__container--1 {
        height: 70rem;
        flex-direction: column;
    }

    /* left */
    .work__container--1__img {
        width: 100%;
        height: 50%;
    }
}

@media only screen and (max-width:650px) {

    .work__container--1 {
        height: 60rem;
        flex-direction: column;
    }

    /* left */
    .work__container--1__img {
        width: 100%;
        height: 50%;
    }
}

@media only screen and (max-width:500px) {
    section#work {
        padding: 0rem 0rem;
    }

    .work__wrapper>p {
        margin-left: 1rem;
    }

    .work__wrapper>h2 {
        margin-left: 1rem;
    }

    .work__container--1 {
        height: 60rem;
    }

    /* left */
    .work__container--1__img {
        width: 100%;
        height: 50%;
    }

    .percentage {
        width: 4rem;
        height: 4rem;

        left: 2rem;
        bottom: 2rem;
    }
}

@media only screen and (max-width:420px) {
    .work__container--1 {
        height: 46rem;
    }

    .work__logo--2 {
        padding: 1rem;
    }
}

@media only screen and (max-width:300px) {
    .work__container--1 {
        height: 38rem;
    }
}


