@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #1E8E9A;
    
    font-family: 'Source Sans Pro', sans-serif;
    
}

.page:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #1E8E9A, rgb(30 142 154 / 40%));
    z-index: -1;
}

.page{
    background: url('hero.jpg') no-repeat center center / cover;
    z-index: 1;
    position: relative;
    
    height: 100vh;
}
.page-inner{
    padding-top: 200px;
    padding-bottom: 40px;
    overflow: auto;
    height: 100%;
}
.logo {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    padding: 40px 40px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    max-width: 300px;
    width: 100%;
}

.logo img {
    display: block;
    width: 100%;
}
.section-title{
    display: flex;
    align-items: center;
}
.flags{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 30px;
}
.flags a{
    text-decoration: none;
    display: block;
    border:2px solid transparent;
    transition: all 0.3s ease-out;
}
.flags a.active{
    border-color: #fff;
}
.flags img{
    height: 20px;
    display: block;
}
.section-title h1 {
    color: #fff;
    font-size: 60px;
    margin-bottom: 20px;
    font-family: 'Oswald', sans-serif;
}

p {
    font-size: 26px;
    color: #fff;
    line-height: 1.5;
    font-weight: 300;
}

.page-container {
    max-width: 900px;
    width: 100%;
    padding: 0 40px;
    margin: 0 auto;
}
.info{
    display: grid;
    text-align: center;
    grid-template-columns: repeat(4,1fr);
    margin-top: 40px;
    color: #fff;
}
.info svg{
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}
.info svg *{
    fill: #fff;
}
.info h3{
    font-size: 24px;
    margin-bottom: 10px;
    font-family: 'Oswald', sans-serif;
}
.info span{
    font-size: 20px;
    font-weight: 300;
    line-height: 1.4;
    display: block;
}
.info span a{
    color: #fff;
    text-decoration: none;
}
.content-text{
    display: none;
}
.content-text.active{
    display: block;
}
.footer{
    text-align: center;
    
    margin-top: 60px;
}
.footer p{
    font-size: 18px;
}
.footer p a{
    color: #fff;
    text-decoration: none;
}
@media(max-width:768px){
    p{
        font-size: 22px;
    }
    .page-inner{
        padding-bottom: 100px;
    }
    .info{
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .info span{
        max-width: 200px;
        width: 100%;
        margin:0 auto
    }
}
@media(max-width:520px){
    .section-title{
        flex-direction: column;
        align-items: flex-start;
    }
    .flags{
        margin:0 0 20px 0;
    }
}