﻿#line-1 {
    font-size: 12rem;
}

.about #line-1 {
    font-size: 3rem;
}
.about #line-2 {
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 1.2rem;
}

#sec-main {
    position: relative;
    height: calc(100vh);
    background-image: url("/img/bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

#sec-locale {
    padding-top: 5rem;
}

.box {
    font-weight: 800;
    position: absolute;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.paragraph .cite {
    font-size: 1.2rem;
    font-style: italic;
    color: #999;
    margin-bottom: 0;
}

.paragraph .author {
    font-size: .8rem;
    color: #999;
}

.paragraph .desc {
    font-size: 1.2rem;
}

.paragraph .link {
    white-space: nowrap;
}

.section {
    padding: 2rem 0;
}

.elem {
    display: block;
    width: 100%;
    opacity: 0;
    color: white;
    font-size: 4rem;
    transition: opacity 3s;
    -webkit-transition: opacity 3s;
}

ul.unstyled {
    list-style: none;
    padding: 0;
}

.mail {
    max-width: 600px;
    margin: 0 auto;
    color: white;
}

a.elem {
    font-size: 2.5rem;
    color: white;
    text-decoration: none;
}

.cols {
    max-width: 1200px;
    margin-top: 4rem;
    display: grid;
    gap: 1rem;
}

#lang {
    min-width: unset;
}

@media (min-width: 737px) {
    .cols {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 736px) {
    .box {
        margin: 0 auto;
    }
}


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

    body.subpage {
        padding-top: 44px;
    }

}

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

    #line-1 {
        font-size: 7rem;
    }
    #line-2 {
        font-size: 2rem;
    }
}

.form-select {
    border-top: hidden;
    border-left: hidden;
    border-right: hidden;
    border-bottom: 2px solid var(--lk-foreground ); 
    border-radius: 0;
}



.section .image {  
    background-position: 50% 50%;
    --animation-custom_in-translate_x: 0px;
    --animation-custom_in-translate_y: 0px;
    --animation-custom_in-opacity: 0;
    --animation-custom_in-rotate: 0deg;
    --animation-custom_in-scale: 0.3;
    margin: 0 auto;
}

.section .paragraph-left {
    margin-bottom: 20px;
    --animation-custom_in-translate_x: 300px;
    --animation-custom_in-translate_y: 0px;
    --animation-custom_in-opacity: 0;
    --animation-custom_in-rotate: 0deg;
    --animation-custom_in-scale: 1;
}

.section .paragraph-right {
    margin-bottom: 20px;
    --animation-custom_in-translate_x: -200px;
    --animation-custom_in-translate_y: 0px;
    --animation-custom_in-opacity: 0;
    --animation-custom_in-rotate: 0deg;
    --animation-custom_in-scale: 1;
}

.section-right {
    background-color: #000;
}

.section .animated {
    visibility: visible;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation: customAnimationIn;
}

.image {
    visibility:hidden;
}
.image2 {
    object-fit: cover;
    display: block;
    vertical-align: middle;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}


