.header
{
    position: relative;
    width: 100%;
    height: 130%;
    padding-top: 15px;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
    color: white;
    box-shadow: inset 0 50px 40px -40px black;
    background-color: black;
    font-family: "PT Sans", sans-serif;
    z-index: 10;
}

.header > .background
{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.5);
    transition: opacity 2s;
    z-index: -1;
}

.header > .background[opened="false"]
{
    opacity: 0 !important;
}

.header > .background[opened="true"]
{
    opacity: 1 !important;
}

.header > *:not(.background)
{
    opacity: 0;
    animation: animation_show 2s 0.5s forwards;
}

@keyframes animation_show
{
    from
    {
        opacity: 0;
    }
    to
    {
        opacity: 1;
    }
}

.header > span
{
    position: absolute;
    left: 50px;
    font-size: 18px;
    margin-top: 5px;
}

.header > span > span
{
    font-size: 25px;
}

.text_container
{
    position: absolute;
    left: 50px;
    top: 45%;
    white-space: nowrap;
}

.text_container p
{
    font-family: "Alumni Sans Pinstripe", sans-serif;
    font-size: 50px;
    color: white;
    text-align: left;
}

.text_container h1
{
    font-family: "PT Sans", sans-serif;
    color: white;
    font-weight: normal;
    font-size: 85px;
    margin-top: -5px;
}

.content_container
{
    width: 100%;
    margin-top: -90px;
    box-sizing: border-box;
    position: relative;
}

.counters_container
{
    width: 100%;
    height: 200px;
    position: relative;
    display: flex;
    justify-content: center;
    gap: 15px;
    align-items: center;
    color: var(--dark);
}

.counters_container > div
{
    width: 300px;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-family: "Sen", sans-serif;
    font-size: 18px;
    text-align: center;
}

.counters_container > div > div
{
    font-size: 45px;
    font-weight: bold;
    text-shadow: 0 0 15px black;
    font-family: "Alumni Sans Pinstripe", sans-serif;
}

.counters_container > div.projects.finished > div::after
{
    content: "+";
}

.counters_container > line
{
    display: block;
    width: 2px;
    height: 100%;
    padding: 10px 0;
    background-color: var(--dark);
}

.info_container
{
    width: 100%;
    margin: 50px 0;
    margin-top: 70px;
    padding: 50px 0;
    background-color: var(--dark);
    box-sizing: border-box;
    position: relative;
    color: var(--light);
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    align-items: center;
}

.info_container > .background
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../gfx/22.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0.2;
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) -5%, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0) 105%);
    z-index: -1;
}

.info_container > .text
{
    font-size: 17px;
    margin-bottom: 10px;
    font-family: "Sen", sans-serif;
    width: 45%;
    text-align: center;
    opacity: 0;
    transition: 1.2s;
    transform: translateY(-10px);
}

.info_container > .line
{
    height: 2px;
    width: 100px;
    background-color: var(--light);
    margin: 8px 0;
    transform-origin: center;
    transform: scaleX(0);
    transition: 0.75s;
}

.info_container > .title
{
    opacity: 0;
    transform: translateY(25px);
    transition: 1s;
}

.info_container > .title span
{
    font-size: 25px;
    font-family: "PT Sans", sans-serif;
}

.info_container > .title span > span
{
    font-size: 35px;
}

.offers_container
{
    width: 100%;
    margin: 50px 0;
    padding: 50px 0;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.offers_container > .title
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    background-color: rgba(0, 0, 0, 0.1);
    font-size: 50px;
    font-family: "Alumni Sans Pinstripe", sans-serif;
    font-weight: bold;
    color: var(--dark);
    opacity: 0.9;
}

.offers_container > .offers
{
    margin-top: 100px;
    width: 75%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.offers_container > .offers > div
{
    width: 350px;
    aspect-ratio: 5/4;
    background-position: center;
    background-size: 110% auto;
    background-repeat: no-repeat;
    position: relative;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    transition: 0.4s;
    transform-origin: top center;
    transform: scaleY(0.1);
    opacity: 0;
}

.offers_container > .offers > div:hover
{
    background-size: 140% auto;
}

.offers_container > .offers > div:hover > div
{
    background-color: rgba(0, 0, 0, 0.9);
}

.offers_container > .offers > div > div
{
    position: absolute;
    width: 100%;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    user-select: none;
    color: white;
    font-family: "PT Sans", sans-serif;
    padding: 10px;
    box-sizing: border-box;
    text-align: center;
    transition: 0.5s;
}

.bottom_background
{
    position: relative;
    width: 100%;
    height: 500px;
    margin-top: -460px;
    background-image: url("../gfx/bottom_background.webp");
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0.25;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8));
    z-index: -1;
}

.message
{
    margin-top: -50px;
    position: absolute;
    width: 100%;
    text-align: center;
    font-size: 17px;
    font-family: "Sen", sans-serif;
    font-style: italic;
    color: var(--dark);
}

.footer
{
    position: relative;
    width: 100%;
    height: 100px;
    background-color: var(--dark);
    color: var(--light);
    font-family: "PT Sans", sans-serif;
    padding: 30px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

.footer .owner
{
    font-size: 30px;
    font-family: "Alumni Sans Pinstripe", sans-serif;
}

.footer .contact_details
{
    position: absolute;
    top: 0;
    right: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    font-size: 26px;
    font-weight: bold;
    font-family: "Alumni Sans Pinstripe", sans-serif;
}

.footer a
{
    color: darkgray;
    transition: 0.3s;
    font-weight: normal;
}

.footer a:hover
{
    color: var(--light);
}

.footer .made_by
{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 12px;
    font-size: 11px;
    font-family: "PT Sans", sans-serif;
    color: lightgray !important;
}

.footer .made_by a
{
    color: lightgray !important;
    font-size: 13px;
    text-decoration: none;
    margin-left: 2px;
    font-weight: bold;
}