.outfit-light {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}
.outfit-regular {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}
.outfit-semibold {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}
.outfit-regular {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}
  

body {
    color: #000000;
    font-size: 1.125rem;
    line-height: 1.24;
}
.wrapper {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin-top: auto;
    position: relative;
    isolation: isolate;
}
.wrapper:before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('images/background.jpg');
    background-position: center;
    background-size: cover;
    opacity: 0.075;
    z-index: -2;
}
.wrapper:after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #1f2e42;
    mix-blend-mode: multiply;
    z-index: -1;
    opacity: 0;
}

h1 {
    font-size: 90px;
    margin-top: 3rem;
    margin-bottom: 2rem;
    letter-spacing: 6px;
    color: #1f2e42;
}
h2 {
    font-size: 32px;
    margin-bottom: 2rem;
    color: #3a6177;
}


.container {
    margin: 0 auto;
    max-width: 1080px;
    padding-right: 2rem;
    padding-left: 2rem;
}
header {
    padding-top: 3rem;
    padding-bottom: 3rem;
}
header .container {
    display: flex;
    justify-content: space-between;
}

header .contact {
    display: flex;
    align-items: center;
    justify-content: center;
}
header .contact a {
    color: #191919;
    text-decoration: none;
    font-size: 17px;
}
header .contact a:hover {
    color: #3a6177;
    text-decoration: underline;
}

p.poppins-regular {
    line-height: 1.66;
    max-width: 768px;
}
ul.poppins-medium {
    line-height: 1.66;
    max-width: 768px;
    margin-top: 1.5rem;
    font-size: 1.25rem;
    padding-left: 2rem;
}
ul li span {
    color: #84af3a;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    translate: 0px -1px;
}
p.outfit-semibold.mt {
    margin-top: 3rem;
    font-size: 2rem;
    padding-bottom: 3rem;
    color: #1f2e42;
}


.loader {
    color: #3a6177;
    position: relative;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    margin-right: -0.5rem;
}
.loader span {
    font-size: 48px;
    letter-spacing: 5px;
    text-transform: uppercase;
    line-height: 100%;
    position: relative;
    mix-blend-mode: multiply;
}
.loader::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 64px;
    height: 100%;
    background-color: #84af3a;
    animation: move 4s linear infinite;
    z-index: -1;
}
@keyframes move {
    0% , 100% {
        left: 0;
    }
    50% {
        left: calc(100% - 64px);
    }
}


footer {
    display: flex;
    justify-content: space-between;
    padding-top: 3rem;
    padding-bottom: 3rem;
    margin-top: auto;
}
footer .container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}
footer .copyright {
    display: flex;
    justify-content: space-between;
    color: #000000;
    font-size: 18px;
}
footer .contact {
    display: none;
}
footer .contact a {
    color: #000000;
    text-decoration: none;
    font-size: 18px;
}
footer .contact a:hover {
    color: #3a6177;
    text-decoration: underline;
}
@media only screen and (max-width: 767px) {

    header .logo img {
        max-width: 200px;
    }

    header .contact {
        display: none;
    }
    footer {
        display: block;
    }
    h1 {
        font-size: 64px;
        line-height: 1;
        margin-top: 1rem;
    }
    h2 {
        font-size: 28px;
    }

    p.poppins-regular {
        font-size: 16px;
    }

    ul.poppins-medium {
        padding-left: 0;
        font-size: 1.125rem;
    }

    p.outfit-semibold.mt {
        margin-top: 2rem;
        font-size: 20px;
        padding-bottom: 0;
    }

    footer {
        padding-top: 2rem;
    }
    footer .container {
        flex-direction: column;
        box-sizing: border-box;
        align-items: flex-start;
    }
    footer .contact {
        display: block;
        order: 2;
        text-align: left;
        margin-top: 2rem;
        margin-bottom: 0.5rem;
    }

    footer .copyright {
        order: 3;
        margin-top: 0;
        font-size: 14px;
        opacity: 0.5;
    }

    .t2b {
        order: 1;
        margin: 0 auto 1.5rem 0;
    }
}