/* --------------------------- General -------------------------------------------------- */

*, *:after, *:before { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;}
li, ul, figure { padding: 0; margin: 0; list-style: none;}

html, body {
    background-color: #77d2e7;
    color: #111;
}

body {
    background-color: #77d2e7;
    color: #111;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
}

/* --------------------------- Typography -------------------------------------------------- */

p {
    line-height: 1.6em;
}
a {
    color: inherit;
  }

/* --------------------------- Headings -------------------------------------------------- */

h1, h2, h3, h4, h5, h6 {
    font-weight: 900;
    font-style: normal;
    text-transform: uppercase;
}
h1 {
    font-size: 32px;
}

@media screen and (min-width: 992px) {
    h1 {
        font-size: 44px;
    }
}

/* --------------------------- Buttons -------------------------------------------------- */

.btn {
    border-radius: 20px;
    padding: 20px 30px;
    font-weight: 900;
    text-decoration: none; 
    display: inline-flex;
    gap: 20px;
    align-items: center;
}
.btn-primary {
    background-color: #111;
    color: #fff;
}
.btn-secondary {
    background-color: #fff;
    color: #111;
}
.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* --------------------------- Header Default -------------------------------------------------- */

.header-default .header-center {
    padding: 30px 0px 0px 0px;
}
.header-default .header-center .logo a {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: #111;
}
.header-default .header-center .logo a .icon {
    font-size: 40px;
}
.header-default .header-center .logo a .text {
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
}


/* --------------------------- Section Welcome -------------------------------------------------- */

.section-welcome .image img {
    width: 100%;
    border-radius: 40px;
    margin: 40px 0px;
}
.section-welcome .content h2 {
    margin-bottom: 40px;
    color: #fff;
}
.section-welcome .content .btn-group {
    margin-top: 40px;
}

/* --------------------------- Footer Default -------------------------------------------------- */

footer.footer-default {
    background-color: #111;
    color: #fff;
    padding: 40px 0px;
    border-radius: 40px 40px 0px 0px;
    margin-top: 40px;
}
footer.footer-default .footer-column {
    padding: 30px 0px;
}

footer.footer-default .footer-column .footer-title {
    font-weight: 900;
    text-transform: uppercase;
    color: #77d2e7;
    margin-bottom: 30px;
}
footer.footer-default .footer-column .footer-content ul.contact-list {
    margin: 0;
    padding: 0;
    line-height: 3em;
}
footer.footer-default .footer-column .footer-content ul.contact-list li {
    list-style: none;
}
footer.footer-default .footer-column .footer-content ul.contact-list li a {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
}
footer.footer-default .footer-column .footer-content ul.contact-list li a .icon {
    color: #77d2e7;
}
footer.footer-default .footer-column .footer-content address {
    font-style: normal;
    line-height: 1.5em;
}