:root {
    --cta-color: #FC4E63;
    --light-grey: #EAEAEA;
    --dark-grey: #8C8C8C;
    --text-grey: #333333; 

  }

body {
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: var(--text-grey);
}

h1 {
    font-weight: 700;
    font-size: 48px;
    margin: 0;
    width: 100%;
    line-height: 120%;
}

h2 {
    font-weight: 700;
    font-size: 32px;
    margin: 0;
    width: 100%;

}

h3 {
    font-weight: 700;
    font-size: 24px;
    margin: 0;
    width: 100%;
}

p{
    margin: 8px 0;
    max-width: 100%;
    line-height: 150%;
}

li {
    margin-bottom: 8px;
}

.intro {
    font-size: 24px;
    line-height: 150%;
    width: 100%;
}

@media only screen and (max-width: 512px) {
    h1 {
        font-size: 32px;
    }
    
    h2 {
        font-size: 24px;
    }
    
    h3 {
        font-size: 16px;
    }

    .intro {
        font-size: 16px;
    }
}

.underlined-h2 {
    border-bottom: solid 1px var(--light-grey);
    margin-top: 32px !important;
    padding-bottom: 16px;
}

img {
    width: 100%;
}

.png {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
}

.nav-bar {
    position: fixed;
    width: 100%;
    min-height: 32px;
    border-bottom: solid 1px var(--light-grey);
    background-color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 0;
    z-index: 3;
}

.nav-bar-container {
    width: 1024px;
    max-width: calc(100% - 64px);
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

@media only screen and (max-width: 512px) {
    .logo {
        max-height: 16px;
        width: 71px;
    }
}

.logo-wrapper {
    margin: 0;
    padding: 0;
    line-height: 0;
}



.download-link-container{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;  
}

.download-link {
font-weight: 600;
color: var(--cta-color);
text-decoration: none;
min-height: 24px;
display: flex;
align-items: center;
}

.download-link::after {
    margin-left: 8px;
    padding-top: 4px;
    content: url(imgs/svgs/icon-download.svg);
}

.navigation-link {
    font-weight: 600;
    color: var(--cta-color);
    text-decoration: none;
    min-height: 24px;
    display: flex;
    align-items: center;
    }

.navigation-link::after {
    margin-left: 8px;
    padding-top: 4px;
    content: url(imgs/svgs/icon-right-arrow.svg);
}



.coming-soon {
    font-weight: 600;
    margin: 0 !important;
}

.coming-soon::after {
    content: 'Coming soon';
}

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



.content-container {
    width: 1024px;
    max-width: calc(100% - 64px);
    padding: 32px 32px 0 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;

}

@media only screen and (max-width: 512px) {
    .content-container {
        padding: 32px
    }
}

.text-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;

}


.text-container-narrow {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;

}

@media only screen and (max-width: 699px) {
    .text-container {
        width: 100%;
    }

    .text-container-narrow {
        width: 100%;
    }
}


.full-width-container {
    position: relative;
    display: flex ;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
}

.three-points-wrapper {
    max-width: calc(100% - 64px);
    margin: 32px;
    width: 1024px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 32px;
    z-index: 2;
}


.three-points-item {
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    height: 100%;
    padding: 16px 16px 32px 16px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.three-point-number {
    font-size: 48px;
    font-weight: 700;
}

.three-point-header {
    font-size: 16px !important;
    font-weight: 600 !important;
    line-height: 150% !important;
    margin: 0 0 8px 0 !important;;
    text-align: center !important;
    color: #ffffff;

}

.three-point-body {
    font-size: 16px !important;
    font-weight: 400 !important;;
    margin: 0 !important;;
    text-align: center !important;
    color: #ffffff;
}


@media only screen and (max-width: 699px) {
    .three-points-wrapper {
        max-width: calc(100% - 64px);
        margin: 32px;
        display: grid;
        grid-template-columns: auto;
        row-gap: 16px;
        z-index: 2;
    }

    .three-points-item {
        height: auto;
    }

    .three-point-number {
        font-size: 32px;
    }

}



.work-summary-wrapper {
    width: 1024px;
    max-width: 100%;
    margin: 32px 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 128px;
    row-gap: 64px;
}

@media only screen and (max-width: 512px) {
    .work-summary-wrapper {
        max-width: 100%;
        margin: 32px 0;
        display: grid;
        grid-template-columns: auto;
        row-gap: 64px;
    }
}

.work-summary-item {
    max-width: 416px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.work-summary-image {
    max-width: 100%;
    margin-bottom: 16px;
}




.split-sixty-forty-container {
    width: 1024px;
    max-width: calc(100% - 64px);
    padding: 32px;
    display: grid;
    grid-template-columns: 60% 40%;
    align-items: center;
}


@media only screen and (max-width: 960px) {
    .split-sixty-forty-container {
        width: 100%;
        margin: 32px 0 32px 32px;
        display: grid;
        grid-template-columns: 80% 40%;
        align-items: center;
        overflow: hidden;
    }

}


@media only screen and (max-width: 699px) {
    .split-sixty-forty-container {
        width: 100%;
        margin: 32px 0 0 0;
        display:grid;
        grid-template-columns: auto;
        align-items: center;
    }

    .split-sixty-forty-container img {
        order: 1;
        margin-bottom: 32px;
    }
    
    .split-sixty-forty-container div {
    order: 2;
    }
}


.screenshot-container{
    width: 1110px;
    max-width: calc(100% - 32px);
    margin-bottom: -32px;
}


.footer {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 64px;
    border-top: solid 1px var(--light-grey);
    align-self: flex-start;
    padding-bottom: 32px;
    margin-top: 64px;

 }


.footer-container {
    width: 1024px;
    max-width: calc(100% - 64px);
    padding: 0 32px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}


.copyright{
    font-weight: 400;
    color: var(--dark-grey);
}



.extra-margin-right {
    margin-right: 64px;
}

.extra-margin-bottom {
    margin-bottom: 64px;
}

.opaque-40{
    opacity: 0.4;
}


.center-text-alignment {
    text-align: center;
}



/*



.slideshow-container {
    position: relative;
    width: 100%;
    min-height: 448px;
    margin-bottom: 64px;
    overflow:hidden
}

.slideshow-context-container {
    position: absolute;
    display: flex;
    align-items: center;
    bottom: 0;
    left: 0;
    width: 100%;
    min-height: 48px;
    background-color: rgba(51, 51, 51, 0.6); 
    padding: 8px 0;
}

.image-context{
    display: flex;
    align-items: center;
    color: #ffffff;
    width: 100%;
}


.slide-count{
    display: flex;
    align-items: center;
    color: #ffffff;
    margin-right: 4px;
    margin-left: 16px;
    font-weight: 700;
}


.slide-show-button-wrapper{
    display: grid;
    grid-template-columns: auto auto;
    column-gap: 16px;
    margin-right: 16px;
}

.slide-show-button {
    height: 32px;
    width: 32px;
    border-radius: 100%;
    border: none;
}

@media only screen and (max-width: 512px) {
    .slideshow-context-container {
        position: absolute;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 0
    }

    .slide-count{
        margin: 0 16px ;
        justify-content: flex-start;

    }

    .image-context{
        justify-content: flex-start;
        padding: 0 16px;
        width: fit-content;
    }

    .slide-show-button-wrapper{
        width: -webkit-fill-available;
        width: -moz-fill-available;
        padding: 0 16px;
        margin: 0;
    }

    .slide-show-button {
        height: 32px;
        width: -webkit-fill-available;
        border-radius: 2px;
        border: none;

    }

}

.move-forward::after {
    content: url(imgs/svgs/icon-right-arrow.svg);
}

.move-back::after {
    content: url(imgs/svgs/icon-left-arrow.svg);
}


*/