* {
    border: 0px solid #000000;
    padding: 0px;
    margin: 0px;
}

body {
    background-color: #ffffff;
    color: #023f56;
    font-family: "Nunito", sans-serif;
    font-optical-sizing: auto;
    font-weight: 100;
    font-style: normal;
    font-size: 12pt;
}

main {
    box-sizing: border-box;
}

section {
    box-sizing: border-box;
}

div {
    box-sizing: border-box;    
}

footer {
    box-sizing: border-box;
}

h1, h2, h3 {
    box-sizing: border-box;
    display: block;
}

h1 {
    padding-bottom: 20px;
    font-size: 20pt;
    font-weight: 600;
    line-height: 24pt;
}

h1 span {
    background-color: #b00020;
    padding: 2px 4px;
    color: #ffffff;
    text-transform: uppercase;
}

h2 {
    padding-bottom: 20px;
    font-size: 14pt;
    font-weight: 600;
}

h3 {
    padding-bottom: 20px;
    color: #ffffff;
    font-size: 14pt;
    font-weight: 600;
}

.heading {
    padding-bottom: 40px;
    color: #ffffff;
    font-size: 30pt;
    font-weight: 600;
    line-height: 30pt;
}

.price {
    padding-bottom: 20px;
    font-size: 20pt;
    font-weight: 600;
}

.list {
    display: flex;
    flex-direction: column;
}

.list-item {
    padding-bottom: 4px;
    font-weight: 400;
}

.list-item span {
    color: #0560bb;
}

.copyright {
    font-size: 10pt;
}

.copyright a {
    color: #023f56;
    text-decoration: none;
}

.copyright a:hover {
    color: #0560bb;
}

.link-welcome {
    background-color: #008b00;
    border-radius: 20px;
    height: 40px;
    padding: 0px 40px;
    position: relative;
    display: inline-block;
    align-content: center;
    color: #ffffff;
    font-size: 12pt;
    font-weight: 600;
    text-decoration: none;
}

.link-welcome:hover {
    background-color: #047101;
}

@keyframes attention {
    from {transform: scale(1)}
    to {transform: scale(1.2);}
}

.animation-attention {
    animation: attention;
    animation-duration: 2s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
}

.link-listing {
    height: 40px;
    display: grid;
    align-items: center;
    position: relative;
}

.link-listing a {
    text-decoration: none;
}

.link-listing img {
    width: 120px;
}

.section-welcome {
    position: relative;
}

.section-welcome .media-container {
    height: 50vh;
    min-height: 300px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.section-welcome .media-container .overlay-content {
    position: absolute;
    top: 40px;
    left: 40px;
    z-index: 1000;
}

.section-welcome .media-container .inline-media {
    width: 100%;
    height: 100%;
    position: relative;
}

.section-welcome .media-container .inline-media .image-welcome {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
}

.section-welcome .media-container .inline-media .gradient {
    background-image: linear-gradient(rgba(24, 24, 24, 0.8), transparent 50%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
}

.section-info {
    background-color: transparent;
}

.section-info .media-container {
    background-color: transparent;
    padding: 40px 40px;
}

.section-listings {
    background-color: #12273b;
    position: relative;
}

.section-listings .media-container {
    background-color: transparent;
    padding: 40px 40px;
}

.listings {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
}

.section-footer {
    background-color: transparent;
    position: relative;
}

.section-footer .media-container {
    background-color: transparent;
    padding: 20px 40px;
}