/* --- */
/* Global styles */
/* --- */


:root {
    --primary: #0084F4;
    --secondary: #1f2531;
    --terciary: #576877;
    --alert: #F3F4F6;
}

body {
    margin: 0;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    width: 100%;
}

a {
    text-decoration: none;
    color: var(--primary);
}


/* --- */
/* Page animations */
/* --- */


.transition-fade {
    opacity: 1;
    transition: 500ms;
}

html.is-animating .transition-fade {
    opacity: 0;
}


/* --- */
/* Typography styles */
/* --- */


h1 {
    font-family: new-kansas, serif;
    font-weight: 600;
    font-size: 40px;
    line-height: 50px;
    letter-spacing: -0.3px;
    color: var(--primary);
    margin: 0;
}

h2 {
    font-family: new-kansas, serif;
    font-weight: 600;
    font-size: 22px;
    line-height: 32px;
    letter-spacing: -0.3px;
    color: var(--primary);
    margin: 0;
}

h3 {
    font-family: new-kansas, serif;
    font-weight: 500;
    font-size: 22px;
    line-height: 32px;
    letter-spacing: -0.2px;
    color: var(--secondary);
    margin: 0;
}

p {
    font-family: mr-eaves-xl-modern, sans-serif;
    font-weight: 400;
    color: var(--secondary);
    font-size: 20px;
    line-height: 28px;
    margin: 0;
}

.subtext {
    font-family: mr-eaves-xl-modern, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: var(--terciary);
    margin: 0;
}

.subtext-black {
    font-family: mr-eaves-xl-modern, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #000000;
    margin: 0;
}

.subtext-interaction-tag {
    font-family: mr-eaves-xl-modern, sans-serif;
    font-weight: 400;
    font-size: 18px;
    text-align: center;
    line-height: 22px;
    color: #000000;
    margin: 0;
}

.bold {
    font-weight: 600;
    color: var(--primary);
}

.p-bold {
    font-weight: 600;
}

.colored {
    color: var(--primary);
}

.colored-link {
    color: var(--primary);
}

.colored-link:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}


/* --- */
/* Buttons */
/* --- */


.button-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.button-big {
    display: flex;
    flex-direction: row;
    gap: 8px;
    width: fit-content;
    align-items: center;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-right: 32px;
    padding-left: 32px;
    border-width: 2px;
    border-radius: 16px;
    border-style: solid;
    border-color: var(--primary);
    transition: background-color 250ms;
}

.button-big:hover {
    background-color: var(--primary);
    transition: background-color 250ms;
}

.button-text {
    font-family: new-kansas, serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 18px;
    letter-spacing: -0.3px;
    color: var(--primary);
    margin: 0;
    transition: color 250ms;
}

#button-body:hover #text-button-hover {
    color: #ffffff;
    transition: color 250ms;
}

#button-body:hover #icon-button-hover {
    fill: #ffffff;
    transition: fill 250ms;
}

#button-body:hover #text-button-bcp-hover {
    color: #ffffff;
    transition: color 250ms;
}

#button-body:hover #icon-button-bcp-hover {
    fill: #ffffff;
    transition: fill 250ms;
}


/* --- */
/* Global components */
/* --- */


.icon {
    fill: var(--primary);
    transition: fill 250ms;
}

.line {
    height: 2px;
    background-color: var(--primary);
    margin-top: 24px;
    margin-bottom: 24px;
}

.menu-text {
    font-family: mr-eaves-xl-modern, sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 17px;
    color: var(--secondary);
    margin: 0;
}

.menu {
    display: inline-grid;
    grid-template-columns: repeat(3, 1fr);
    width: 80%;
    max-width: 1440px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.menu-link-left {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-self: start;
}

.menu-link-right {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-self: end;
}

.menu-title {
    display: flex;
    justify-self: center;
}

.menu-title:hover {
    text-decoration: underline;
}

.menu-title-small {
    display: flex;
    justify-self: center;
    visibility: hidden;
    position: absolute;
    margin-top: 2px;
}

.menu-link:hover {
    transition: 2s ease-out 100ms2s ease-out 100ms;
}

.menu-circle {
    width: 7px;
    height: 7px;
    border-radius: 7px;
    background-color: var(--primary);
    opacity: 0%;
    transition: opacity 250ms;
}

#hover:hover #on-hover {
    opacity: 100%;
    transition: opacity 250ms;
}

.active-circle {
    opacity: 100%;
}

.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding-top: 128px;
    padding-bottom: 128px;
}


/* --- */
/* Home components */
/* --- */


.hero-container {
    display: inline-grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: space-between;
    width: 80%;
    max-width: 1440px;
    margin-bottom: -200px;

}

.hero-text-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 60%;
    margin-top: 32px;
}

.hero-image-column {
    display: grid;
    width: 100%;
}

.hero-1 {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    animation-name: floating-1;
    animation-duration: 6s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

@keyframes floating-1 {
    0% {
        transform: translate(0, 0px);
    }

    50% {
        transform: translate(0, -8px);
    }

    100% {
        transform: translate(0, -0px);
    }
}

.hero-2 {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    animation-name: floating-2;
    animation-duration: 12s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

@keyframes floating-2 {
    0% {
        transform: translate(0, 0px);
    }

    50% {
        transform: translate(0, 16px);
    }

    100% {
        transform: translate(0, -0px);
    }
}

.hero-3 {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    animation-name: floating-3;
    animation-duration: 16s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

@keyframes floating-3 {
    0% {
        transform: translate(0, 0px);
    }

    50% {
        transform: translate(0, -24px);
    }

    100% {
        transform: translate(0, -0px);
    }
}

.hero-4 {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    animation-name: floating-4;
    animation-duration: 8s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

@keyframes floating-4 {
    0% {
        transform: translate(0, 0px);
    }

    50% {
        transform: translate(0, -24px);
    }

    100% {
        transform: translate(0, -0px);
    }
}

.portfolio-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 36px;
    align-items: start;
    width: 80%;
    max-width: 1440px;
    margin-top: -32px;
}

.portfolio-column-items {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.portfolio-study {
    width: 100%;
    height: fit-content;
    border-radius: 24px;
    background-color: #f5f5f5;
}

.portfolio-study-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 48px;
}

.portfolio-study-thumbnail {
    width: 100%;
    margin: 0;
    overflow: hidden;
    border-radius: 0 0 32px 32px;
    transform: translate(0, 4px);
}

.bcp {
    background-color: #f5f7fb;
}

.bcp-button {
    border-color: #002DA0;
}

.bcp-button:hover {
    background-color: #002DA0;
}

.bcp-text {
    color: #002DA0;
}

.bcp-text-button {
    color: #002DA0;
}

.bcp-icon {
    fill: #002DA0;
}

.pda {
    background-color: #FFEFEF;
    margin-top: 200px;
}

.pda-button {
    border-color: #F34142;
}

.pda-button:hover {
    background-color: #F34142;
}

.pda-text {
    color: #F34142;
}

.pda-icon {
    fill: #F34142;
}

.mc {
    background-color: #FFF3C4;
}

.mc-button {
    border-color: #353427;
}

.mc-button:hover {
    background-color: #353427;
}

.mc-text {
    color: #353427;
}

.mc-icon {
    fill: #353427;
}

.la {
    background-color: #F9F9F4;
}

.la-button {
    border-color: #2E3F85;
}

.la-button:hover {
    background-color: #2E3F85;
}

.la-text {
    color: #2E3F85;
}

.la-icon {
    fill: #2E3F85;
}

.co {
    background-color: #f4f4f3;
}

.co-button {
    border-color: #000000;
}

.co-button:hover {
    background-color: #000000;
}

.co-text {
    color: #000000;
}

.co-icon {
    fill: #000000;
}

.tags-container {
    display: flex;
    flex-direction: row;
    gap: 8px;
}

.tag-white {
    width: fit-content;
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.15);
}

.tag-black {
    width: fit-content;
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.05);
}

.tag-text-white {
    font-family: mr-eaves-xl-modern, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 12px;
    color: #FFFFFF;
    margin: 0;
    opacity: 90%;
}

.tag-text-black {
    font-family: mr-eaves-xl-modern, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 12px;
    color: #000000;
    margin: 0;
    opacity: 60%;
}

.interaction-tag {
    display: flex;
    flex-direction: row;
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 12px;
    padding-bottom: 12px;
    border-radius: 8px;
    margin-bottom: 88px;
    background-color: var(--alert);
    gap: 8px;
}

.interaction-tag-mobile {
    display: none;
    flex-direction: column;
    align-items: center;
    padding-left: 80px;
    padding-right: 80px;
    padding-top: 80px;
    padding-bottom: 80px;
    border-radius: 8px;
    margin-top: 48px;
    margin-bottom: 48px;
    max-width: 80%;
    background-color: var(--alert);
    gap: 24px;
}

.icon-disclaimer-mobile {
    width: 36px;
}


/* --- */
/* About components */
/* --- */


.about-container {
    display: inline-grid;
    grid-template-columns: repeat(2, 1fr);
    width: 80%;
    max-width: 1440px;
    justify-content: space-between;
    gap: 40px;
}

.about-photo {
    width: 100%;
    border-radius: 8px;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    margin-top: 24px;
}


/* --- */
/* Study components */
/* --- */


.h2-study {
    color: var(--secondary);
    width: 540px;
}

.p-study {
    width: 540px;
}

.study-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 540px;
    margin-top: 64px;
    margin-bottom: 64px;
}

.study-title-text {
    text-align: center;
}

.study-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.study-second-title {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 540px;
}

.h2-study {
    width: 100%;
}

.study-image {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 80%;
    margin-top: 32px;
    margin-bottom: 32px;
}

.study-image-file {
    width: 100%;
    border-radius: 8px;
}

.study-image-small {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 680px;
    margin-top: 32px;
    margin-bottom: 32px;
}


.study-subtext {
    width: 70%;
}

.subtext-small {
    width: 100%;
}

.list {
    width: 540px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.bullet-item {
    display: grid;
    grid-template-columns: 1fr 19fr;
    width: 100%;
}

.bullet-circle {
    flex-grow: 1;
    width: 8px;
    height: 8px;
    border-radius: 8px;
    background-color: var(--primary);
    margin-top: 10px;
}

.p-list {
    width: auto;
}

.video-loop {
    width: 100%;
}

.disclaimer {
    display: flex;
    flex-direction: column;
    align-items: left;
    gap: 16px;
    margin-top: 32px;
    margin-bottom: 32px;
    padding-left: 32px;
    padding-right: 32px;
    padding-top: 24px;
    padding-bottom: 36px;
    border-radius: 16px;
    background-color: var(--alert);
}

.title-opacity {
    color: var(--primary);
}


/* --- */
/* Media querys */
/* --- */


@media screen and (max-width: 375px) {

    h1 {
        font-size: 26px;
        line-height: 34px;
        letter-spacing: -0.5px;
    }

    h3 {
        font-size: 18px;
        line-height: 28px;
    }

    p {
        font-size: 18px;
        line-height: 26px;
    }

    .button-big {
        padding-top: 12px;
        padding-bottom: 12px;
        padding-right: 18px;
        padding-left: 18px;
    }

    .button-text {
        font-size: 17px;
        line-height: 17px;
    }

    .menu {
        width: 90%;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .menu-title {
        visibility: hidden;
        position: absolute;
    }

    .menu-title-small {
        visibility: unset;
        position: relative;
    }

    .footer {
        width: 90%;
    }

    .hero-container {
        grid-template-columns: repeat(1, 1fr);
        width: 90%;
        row-gap: 96px;
        margin-bottom: 0px;
    }

    .hero-text-column {
        width: 100%;
        margin-top: 32px;
    }

    .hero-image-column {
        scale: 130%;
    }

    .hero-1 {
        margin-left: 32px;
        overflow: hidden;
    }

    .study-image-file {
        border-radius: 0px;
    }

    .portfolio-items {
        grid-template-columns: 1fr;
        width: 90%;
        margin-top: 64px;
    }

    .portfolio-study {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0px;
        border-radius: 32px;
    }

    .portfolio-study-text {
        padding-top: 28px;
        padding-bottom: 28px;
        padding-left: 28px;
        padding-right: 28px;
    }

    .portfolio-study-thumbnail {
        transform: translate(0, 0px);
    }

    .about-container {
        grid-template-columns: repeat(1, 1fr);
        width: 90%;
        align-items: center;
        justify-items: center;
    }

    .about-text {
        margin-top: 0px;
    }

    .study-title {
        align-items: start;
        width: 90%;
    }

    .study-title-text {
        text-align: left;
    }

    .study-content {
        align-items: center;
        width: 100%;
    }

    .study-second-title {
        width: 90%;
    }

    .h2-study {
        width: 100%;
    }

    .p-study {
        width: 90%;
    }

    .list {
        width: 90%;
    }

    .study-image {
        align-items: center;
        width: 100%;
    }

    .study-subtext {
        width: 90%;
    }

    .subtext-small {
        width: 90%;
    }

    .study-image-small {
        width: 100%;
        align-items: center;
    }

    .tags-container {
        display: flex;
        flex-direction: row;
        gap: 8px;
    }

    .tag-black {
        padding-left: 8px;
        padding-right: 8px;
        padding-top: 6px;
        padding-bottom: 6px;
    }

    .tag-text-black {
        font-size: 12px;
    }

    .tag-white {
        padding-left: 8px;
        padding-right: 8px;
        padding-top: 6px;
        padding-bottom: 6px;
    }

    .tag-text-white {
        font-size: 12px;
    }

    .disclaimer {
        border-radius: 0px;
    }

    .interaction-tag-mobile {
        border-radius: 0px;
    }

}

@media screen and (min-width: 376px) and (max-width: 570px) {

    h1 {
        font-size: 26px;
        line-height: 34px;
        letter-spacing: -0.5px;
    }

    h3 {
        font-size: 18px;
        line-height: 28px;
    }

    p {
        font-size: 18px;
        line-height: 26px;
    }

    .button-big {
        padding-top: 12px;
        padding-bottom: 12px;
        padding-right: 18px;
        padding-left: 18px;
    }

    .button-text {
        font-size: 17px;
        line-height: 17px;
    }

    .menu {
        width: 90%;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .menu-title {
        visibility: hidden;
        position: absolute;
    }

    .menu-title-small {
        visibility: unset;
        position: relative;
    }

    .footer {
        width: 90%;
    }

    .hero-container {
        grid-template-columns: repeat(1, 1fr);
        width: 90%;
        row-gap: 96px;
        margin-bottom: 0px;
    }

    .hero-text-column {
        width: 100%;
        margin-top: 32px;
    }

    .hero-image-column {
        scale: 130%;
    }

    .hero-1 {
        margin-left: 32px;
        overflow: hidden;
    }

    .study-image-file {
        border-radius: 0px;
    }

    .portfolio-items {
        grid-template-columns: 1fr;
        width: 90%;
        margin-top: 64px;
    }

    .portfolio-study {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0px;
        border-radius: 32px;
    }

    .portfolio-study-text {
        padding-top: 28px;
        padding-bottom: 28px;
        padding-left: 28px;
        padding-right: 28px;
    }

    .portfolio-study-thumbnail {
        transform: translate(0, 0px);
    }

    .pda {
        margin-top: 36px;
    }

    .about-container {
        grid-template-columns: repeat(1, 1fr);
        width: 90%;
        align-items: center;
        justify-items: center;
    }

    .about-text {
        margin-top: 0px;
    }

    .study-title {
        align-items: start;
        width: 90%;
    }

    .study-title-text {
        text-align: left;
    }

    .study-content {
        align-items: center;
        width: 100%;
    }

    .study-second-title {
        width: 90%;
    }

    .h2-study {
        width: 100%;
    }

    .p-study {
        width: 90%;
    }

    .list {
        width: 90%;
    }

    .study-image {
        align-items: center;
        width: 100%;
    }

    .study-subtext {
        width: 90%;
    }

    .subtext-small {
        width: 90%;
    }

    .study-image-small {
        width: 100%;
        align-items: center;
    }

    .tags-container {
        display: flex;
        flex-direction: row;
        gap: 8px;
    }

    .tag-black {
        padding-left: 8px;
        padding-right: 8px;
        padding-top: 6px;
        padding-bottom: 6px;
    }

    .tag-text-black {
        font-size: 12px;
    }

    .tag-white {
        padding-left: 8px;
        padding-right: 8px;
        padding-top: 6px;
        padding-bottom: 6px;
    }

    .tag-text-white {
        font-size: 12px;
    }

    .disclaimer {
        border-radius: 0px;
    }

    .interaction-tag-mobile {
        border-radius: 0px;
    }

}

@media screen and (min-width: 571px) and (max-width: 640px) {

    h1 {
        font-size: 26px;
        line-height: 34px;
        letter-spacing: -0.5px;
    }

    h3 {
        font-size: 18px;
        line-height: 28px;
    }

    p {
        font-size: 18px;
        line-height: 26px;
    }

    .button-big {
        padding-top: 12px;
        padding-bottom: 12px;
        padding-right: 18px;
        padding-left: 18px;
    }

    .button-text {
        font-size: 17px;
        line-height: 17px;
    }

    .menu {
        width: 90%;
    }

    .menu-title {
        visibility: hidden;
        position: absolute;
    }

    .menu-title-small {
        visibility: unset;
        position: relative;
    }

    .footer {
        width: 90%;
    }

    .hero-container {
        width: 90%;
        margin-bottom: 0px;
    }

    .hero-text-column {
        width: 90%;
        margin-top: 0px;
    }

    .study-image-file {
        border-radius: 0px;
    }

    .portfolio-items {
        grid-template-columns: 1fr;
        width: 90%;
        margin-top: 64px;
    }

    .portfolio-study {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0px;
        border-radius: 32px;
    }

    .portfolio-study-text {
        padding-top: 28px;
        padding-bottom: 28px;
        padding-left: 28px;
        padding-right: 28px;
    }

    .portfolio-study-thumbnail {
        visibility: hidden;
        position: absolute;
        transform: translate(0, 0px);
    }

    .pda {
        margin-top: 36px;
    }

    .about-container {
        grid-template-columns: repeat(1, 1fr);
        width: 90%;
        align-items: center;
        justify-items: center;
    }

    .about-text {
        margin-top: 0px;
    }

    .study-title {
        align-items: start;
        width: 90%;
    }

    .study-title-text {
        text-align: left;
    }

    .study-content {
        align-items: center;
        width: 100%;
    }

    .study-second-title {
        width: 90%;
    }

    .h2-study {
        width: 100%;
    }

    .p-study {
        width: 90%;
    }

    .list {
        width: 90%;
    }

    .study-image {
        align-items: center;
        width: 100%;
    }

    .study-image-small {
        width: 100%;
        align-items: center;
    }

    .study-image-file {
        width: 100%;
    }

    .study-subtext {
        width: 90%;
    }

    .subtext-small {
        width: 90%;
    }

    .tags-container {
        display: flex;
        flex-direction: row;
        gap: 8px;
    }

    .tag-black {
        padding-left: 8px;
        padding-right: 8px;
        padding-top: 6px;
        padding-bottom: 6px;
    }

    .tag-text-black {
        font-size: 12px;
    }

    .tag-white {
        padding-left: 8px;
        padding-right: 8px;
        padding-top: 6px;
        padding-bottom: 6px;
    }

    .tag-text-white {
        font-size: 12px;
    }

    .disclaimer {
        border-radius: 0px;
    }

    .interaction-tag-mobile {
        border-radius: 0px;
    }

}

@media screen and (min-width: 641px) and (max-width: 834px) {

    h1 {
        font-size: 24px;
        line-height: 32px;
    }

    h3 {
        font-size: 20px;
        line-height: 30px;
    }

    p {
        font-size: 18px;
        line-height: 26px;
    }

    .button-big {
        padding-top: 12px;
        padding-bottom: 12px;
        padding-right: 18px;
        padding-left: 18px;
    }

    .button-text {
        font-size: 17px;
        line-height: 17px;
    }

    .menu {
        width: 90%;
    }

    .footer {
        width: 90%;
    }

    .hero-container {
        width: 90%;
        margin-bottom: 0px;
    }

    .hero-text-column {
        width: 90%;
        margin-top: 8px;
    }

    .portfolio-study {
        border-radius: 32px;
    }

    .portfolio-study-text {
        padding-top: 32px;
        padding-bottom: 32px;
        padding-left: 36px;
        padding-right: 36px;
    }

    .portfolio-items {
        column-gap: 28px;
        width: 90%;
        margin-top: 64px;
    }

    .portfolio-column-items {
        gap: 28px;
    }

    .pda {
        margin-top: 36px;
    }

    .about-container {
        grid-template-columns: repeat(1, 1fr);
        width: 60%;
    }

    .about-text {
        margin-top: 0px;
    }

    .study-image {
        width: 90%;
    }

    .study-image-small {
        width: 90%;
    }

    .tags-container {
        display: flex;
        flex-direction: row;
        gap: 8px;
    }

    .tag-black {
        padding-left: 8px;
        padding-right: 8px;
        padding-top: 6px;
        padding-bottom: 6px;
    }

    .tag-text-black {
        font-size: 12px;
    }

    .tag-white {
        padding-left: 8px;
        padding-right: 8px;
        padding-top: 6px;
        padding-bottom: 6px;
    }

    .tag-text-white {
        font-size: 12px;
    }

}

@media screen and (min-width: 835px) and (max-width: 1024px) {

    h1 {
        font-size: 28px;
        line-height: 36px;
    }

    h3 {
        font-size: 20px;
        line-height: 30px;
    }

    .menu {
        width: 90%;
    }

    .footer {
        width: 90%;
    }

    .hero-container {
        width: 90%;
        margin-bottom: 0px;
    }

    .hero-text-column {
        width: 90%;
    }

    .portfolio-items {
        width: 90%;
    }

    .pda {
        margin-top: 36px;
    }

    .about-container {
        width: 90%;
    }

    .study-image {
        width: 90%;
    }

    .tag-black {
        padding-left: 8px;
        padding-right: 8px;
        padding-top: 6px;
        padding-bottom: 6px;
    }

    .tag-text-black {
        font-size: 12px;
    }

    .tag-white {
        padding-left: 8px;
        padding-right: 8px;
        padding-top: 6px;
        padding-bottom: 6px;
    }

    .tag-text-white {
        font-size: 12px;
    }

}

@media screen and (min-width: 1025px) and (max-width: 1280px) {

    h1 {
        font-size: 28px;
        line-height: 36px;
    }

    .menu {
        width: 90%;
    }

    .footer {
        width: 90%;
    }

    .hero-container {
        width: 90%;
    }

    .hero-text-column {
        width: 70%;
    }

    .portfolio-items {
        width: 90%;
    }

    .about-container {
        width: 90%;
    }

    .study-image {
        width: 90%;
    }

}

@media screen and (min-width: 1440px) {

    h3 {
        font-size: 24px;
        line-height: 38px;
    }

    .hero-text-column {
        width: 70%;
    }

}

@media screen and (min-width: 1680px) {
    
    h3 {
        font-size: 26px;
        line-height: 40px;
    }

    p {
        font-size: 22px;
        line-height: 30px;
    }

    .menu {
        width: 70%;
    }

    .footer {
        width: 70%;
    }

    .hero-container {
        width: 70%;
    }

    .hero-text-column {
        width: 70%;
    }

    .portfolio-items {
        width: 70%;
    }

    .portfolio-study-text {
        padding: 48px;
    }

    .about-container {
        width: 70%;
    }

    .study-image {
        width: 70%;
    }

    .study-image-small {
        width: 840px;
    }

    .p-study {
        width: 640px;
    }

    .list {
        width: 640px;
    }

    .study-title {
        width: 640px;
    }

    .study-second-title {
        width: 640px;
    }


}