@media screen {

    html {
        scroll-behavior: smooth;
    }

    body {
        overflow-x: hidden;
        color: #444;
        font-family: 'Noto Sans', sans-serif;
    }

    .cityscape {
        width: 100%;
        height: auto;
        display: block;
    }

    p {
        font-size: 1.25rem;
        line-height: 1.5;

    }

    p.lead {
        font-size: 1.5rem;
        line-height: 1.5;
        font-weight: bold;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    h4 {
        font-size: 1.25rem;
    }

    h5 {
        font-size: 1rem;
    }

    h6 {
        font-size: 0.75rem;
    }

    .font__bold {
        font-weight: 700;
    }

    .text-primary {
        color: #f70000;
    }

    .text-secondary {
        color: #013076;
    }

    .text-tertiary {
        color: #747576;
    }

    .text-fff {
        color: #fff !important;
    }

    .text-black {
        color: #000 !important;
    }

    .box__bg {
        background-color: #0872C2;
    }

    .box__content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 1rem;


    }

    .box__pic {
        height: 50vh;
        background: no-repeat center center / cover;
    }

    .box__pic--1 {
        background-image: url(img/pic-001.jpg);
    }

    .box__pic--2 {
        background-image: url(img/pic-002.jpg);
    }

    .box__pic--3 {
        background-image: url(img/pic-003.jpg);
    }

    .bg-primary {
        background: linear-gradient(to bottom, #c30000, #6e0000);
    }

    .bg-secondary {
        background: linear-gradient(to bottom, #013076, #05193b);

    }

    .bg-tertiary {
        background: #757575
    }

    .bg-lighter-grey {
        background: #c8d0d6;
    }

    .bg-fff {
        background: #fff
    }



    section {
        padding: 2rem 0;
    }

    .hero__welcome {
        background: url(img/bg-cuk.jpg) no-repeat center center;
        background-size: cover;
    }

    .hero__team {
        background: url(img/bg-team.jpg) no-repeat center center;
        background-size: cover;
    }

    .height__full {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }


    .avatar {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 150px;
        height: 150px;
        border-radius: 50%;
        overflow: hidden;
        border: 3px solid #fff;
        margin: 1rem auto 1rem auto;
    }

    .avatar img {
        width: 100%;
        height: auto;
        display: block;
    }

    .team__role, .team__bio {
        font-size: 90%;
    }

    .button {
        display: inline-block;
        padding: 0 2.5rem;
        height: 3.5rem;
        line-height: 3.5rem;
        font-size: 1rem;
        font-weight: bold;
        text-align: center;
        text-transform: uppercase;
        border-radius: 3.25rem;
        border: none;
        box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.2);
        transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
    }

    .white-btn {
        color: #000;
        background-color: #fff;
    }

    .button:hover {
        transform: translateY(-0.1rem);
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.3);
    }

    .result.success {
        background-color: #d4edda;
        color: #155724;
        border: 1px solid #c3e6cb;
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .result.error {
        background-color: #f8d7da;
        color: #721c24;
        border: 1px solid #f5c6cb;
        padding: 1rem;
        margin-bottom: 1rem;
    }
}



/* Small only */
@media screen and (max-width: 39.9375em) {
    body {
        text-align: center;
    }

    h1 {
        font-size: 2rem;
    }

    .box__pic {
        height: 25vh;
    }

    .box__content {
        width: 100%;
    }

    .box__content ul {
        list-style-type: none;
        margin-left: 0;
    }

    .box__pic--1 {
        background-position: center bottom;
    }

    .avatar img {
        margin-bottom: 1rem;
    }

    p {
        font-size: 1rem;
    }

    .button {
        display: block;
        width: 100%;
    }
}

/* Medium and up */
@media screen and (min-width: 40em) {

    section {
        padding: 4rem 0;
    }

    .section__pt--0 {
        padding-top: 0;
    }


    h1 {
        font-size: 3rem;
    }


    h2 {
        font-size: 2.5rem;
    }

    .heading__mb--4 {
        margin-bottom: 4rem;
    }

    .heading__mt--4 {
        margin-top: 4rem;
    }

    h3 {
        font-size: 2rem;
    }

    h4 {
        font-size: 1.5rem;
    }


    h5 {
        font-size: 1.25rem;
    }

    h6 {
        font-size: 1rem;
    }


    footer {
        background: linear-gradient(to right, #f0f0f0, #ddd, #f0f0f0);
        padding: 2rem;
        ;
    }
}

/* Medium only */
@media screen and (min-width: 40em) and (max-width: 63.9375em) {}


/* Large and up */
@media screen and (min-width: 64em) {
    section {
        padding: 6rem 0;
    }

}

/* Large only */
@media screen and (min-width: 64em) and (max-width: 74.9375em) {}

/* Large and up */
@media screen and (min-width: 80em) {}