:root {
    --blue: rgb(52, 89, 230);
    --grey: rgb(73, 80, 87);
    --yellow: #fffcdb;
    --green: #6da161;
    --navy: #003b77;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: #000000;
}

footer {
    align-self: end;
    background-color: var(--navy);
    color: #fff;
}

footer .link {
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 0 15px;
    font-size: 0.8rem;
}

footer .link:first-child {
    padding-left: 0;
}

footer .link:last-child {
    padding-right: 0;
}

footer .copy {
    font-size: 0.8rem;
    color: #fff;
    margin: 0;
    padding: 0;
}

footer .link-social {
    max-width: 30px;
    display: block;
}

footer .icon {
    width: 100%;
}

footer .socials {
    display: flex;
    gap: 20px;
}

footer .border-top-white {
    border-top: 1px solid white;
}

.content {
    flex-grow: 1;
    margin-top: 83px;
}

.welcome {
    min-height: calc(100vh - 84px);
}

.text-right {
    text-align: right;
}

.logo {
    width: 150px;
}

.img-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.img-container-cover {
    width: 100%;
    border: 1px solid black;
}

.sticky-section {
    position: sticky;
    top: 110px;
    align-self: flex-start;
}

.mt-section {
    margin-top: 7rem;
}

.link-rodo {
    color: var(--navy);
}

.sticky-margin {
    margin-top: 150px;
}

.box {
    border: 1px solid var(--grey);
    padding: 20px;
}

.box-number {
    color: var(--navy);
    font-weight: bold;
    margin: 0;
    padding: 0;
    font-size: 1.3rem;
}
.nav-link {
    color: #000;
}

.nav-link:hover {
    color: #000;
}

.btn-primary {
    background-color: var(--navy);
    border-color: var(--navy);
}

.btn-primary:hover {
    background-color: var(--navy);
    border-color: var(--navy);
}

.bg-full {
    background-color: var(--yellow);
}

.box-text {
    border-top: 1px dashed var(--navy);
    padding-top: 10px;
    margin-top: 10px;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.summary-box {
    border-bottom: 1px solid var(--navy);
    border-right: 1px solid var(--navy);
    padding: 20px;
    position: relative;
}

.summary-box:after {
    content: "";
    width: 45%;
    height: 1px;
    position: absolute;
    right: 0;
    top: 0;
    background-color: var(--navy);
}
.summary-box:before {
    content: "";
    width: 1px;
    height: 40%;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: var(--navy);
}

.hon {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
}

.form-error-message {
    display: inline-block;
    font-size: 0.8rem;
}
.form-error-message:first-letter {
    text-transform: uppercase;
}

.price {
    font-weight: bold;
    font-size: 1.4rem;
}

.anchor {
    display: block;
    height: 90px;
    margin-top: -90px;
    visibility: hidden;
}

.text-bold {
    font-weight: bold;
}

.ul-rodo {
    margin-left: 2rem;
}

#privacy ul, #privacy ol, #privacy p {
    text-align: justify;
}

.box-yellow {
    color: var(--navy);
}

.box-text-yellow {
    border-top: 1px dashed var(--navy);
    color: #000000;
}

.nav-social {
    height: 24px;
}

.important {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 20px;
}

.tick-box {
    display: flex;
    align-items: center;
}

.tick {
    width: 30px;
}

.important-box {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.tick-text {
    display: flex;
    align-items: center;
}

.card-text-inside {
    font-size: 1rem;
    color: #000;
}

.card-body-inside {
    font-size: 1.3rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 5px;
}

.text-bg-primary {
    background-color: var(--navy) !important;
}

.border-primary {
    border-color: var(--navy) !important;
}

@media screen and (max-width: 992px) {
    .sticky-margin {
        margin-top: 180px;
    }
}

@media screen and (max-width: 768px) {
    .sticky-section {
        position: relative;
        top: 0;
        align-self: flex-start;
    }

    .welcome {
        height: auto;
    }

    .sticky-margin {
        margin-top: 20px;
    }

    .img-container {
        margin-top: 20px;
        width: 50%;
    }

    .important {
        grid-template-columns: 100%;
    }
}
