@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,600,0,0');


:root {
    --color_blue_1: #1A56AD;
    --color_blue_2: #0D4282;
}

body {
    margin: 0px;
    background-color: #1A56AD;
    font-family: "Barlow Condensed", sans-serif;
    position: relative;

    width: 100%;
    max-width: 500px;
    margin: 0px auto;
}

a {
    text-decoration: none;
    color: inherit;
}

.material-symbols-outlined {
    vertical-align: middle!important;
    margin-top: -3px!important;
}

.material-symbols-outlined::after {
    content: attr(icon);
}

nav {
    position: fixed;
    left: 0px;
    bottom: 0px;
    width: 100%;
    max-width: 500px;
    left: 50%;
    transform: translate(-50%);
    height: 80px;
    background-color: #0D4282;
    z-index: 90;
    box-shadow: 0px -7px 47px -14px rgba(0,0,0,0.75);
}

nav ul {
    position: absolute;
    width: 50%;
    margin: 0px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    padding: 0px;
    list-style: none;
}

nav ul li {
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    padding: 20px 0px;
    color: #fff;
    text-transform: uppercase;
}

nav ul a:nth-child(2) li {
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
}

nav ul li.active {
    background-color: var(--color_blue_1);
}

nav ul li i {
    display: block !important;
    margin: 5px;
    color: #ebc37c;
}

.logo {
    position: fixed;
    width: 100%;
    max-width: 500px;
    height: 100px;
    background: linear-gradient(0deg, rgba(0,189,255,0) 0%, rgba(26,86,173,1) 29%, rgba(26,86,173,1) 100%);
    z-index: 95;
}

.logo img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 200px;
}

/* LANG */

.lang {
    position: fixed;
    right: 15px;
    bottom: 90px;
    z-index: 90;
    width: 60px;
    height: 60px;
    background-color: #0D4282;
    border-radius: 100%;
    text-align: center;
    cursor: pointer;
    box-shadow: 0px 0px 70px -4px rgba(0,0,0,0.75);
}


.lang .active {
    position: absolute;
    overflow: hidden;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.lang .active img {
    position: relative;
    width: 100%;
}

.lang .sel {
    position: absolute;
    top: -164%;
    transform: translateY(-50%);
    background-color: #1A56AD;
    border-radius: 80px 80px 0px 0px;
    padding: 0px;
    display: none;
    margin: 0px;
    list-style: none;
}

.lang .sel li {
    position: relative;
    padding: 10px 0px;
    transition: 0.4s;
}

.lang:hover {
    border-radius: 0px 0px 100% 100%;
}

.lang .sel li:hover {
    background-color: var(--textalt-color);
}

.lang .sel:hover {
    display: block;
}

.lang:hover .sel {
    display: block;
}


.lang .sel img {
    position: relative;
    width: 50%;
    margin: 10px auto;
}


.pageContent {
    position: relative;
    top: 110px;
    padding-bottom: 100px;
}

.pageContent .container {
    width: 90%;
    margin: 0px auto;
    margin-bottom: 20px;
}

.pageContent h2 {
    font-size: 40px;
    font-weight: 600;
    text-transform: uppercase;
    color: #ebc37c;
    margin: 0px auto;
    box-sizing: border-box;
    padding: 20px 5%;
    background-color: var(--color_blue_2);
}

.pageContent h2 i {
    font-size: 40px;
    color: #fff;
    margin-right: 5px;
}

.pageContent h3 {
    font-size: 32px;
    font-weight: 600;
    text-transform: uppercase;
    color: #ebc37c;
    margin: 0px auto;
    box-sizing: border-box;
    margin: 10px auto;
}

.pageContent h4 {
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    margin: 0px auto;
    box-sizing: border-box;
    margin: 10px auto;
}

.pageContent p {
    color: #fff;
    font-size: 18px;
    line-height: 26px;
    margin: 10px auto;
}

.pageContent img {
    width: 100%;
    margin: 0px auto;
}

.pageContent .gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
     grid-gap: 10px;
}

.pageContent .gallery .image {
    width: 100%;
    padding-top: 100%;
    background-color: #0D4282;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.pricing {
    padding: 20px;
    background-color: var(--color_blue_2);
    margin: 20px auto;
    display: grid;
    grid-template-columns: 80% 20%;
    align-items: center;
}

.pricing .title {
    font-size: 30px;
    color: #fff;
    font-weight: 500;
    grid-column: 1;
}

.pricing .desc {
    font-size: 18px;
    color: #fff;
    font-weight: 400;
    grid-column: 1;
}

.pricing .price {
    font-size: 30px;
    color: #fff;
    font-weight: 500;
    grid-column: 2;
    grid-row: 1 / 3;
    color: #ebc37c;
    text-align: right;
}