:root {
    --font-face: "Gilroy", sans-serif;
    --font-size: 1em;
    --text-black: #1a1a1a;
    --text-white: #ffffff;
    --primary-color: #0c5a9b;
    --secondary-color: #c4161b;
    --light-color: #f7f6f6;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text-black);
    font-family: var(--font-face);
    font-size: var(--font-size);
}

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

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-top: 0;
    margin-bottom: 0;
}

img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
}

section {
    width: 100%;
    padding: 5em 2.5em;
    position: relative;
    overflow: hidden;
    scroll-margin-top: 3em;
}

section h2 {
    font-size: 3em;
    line-height: 1.2;
    font-weight: 700;
}

@media screen and (max-width: 767px) {
    section {
        padding: 4.26667em 1.06667em;
    }

    section h2 {
        font-size: 1.75em;
    }
}

.announcement-bar {
    width: 100%;
    padding: 1em 5em;
    background-color: var(--primary-color);
    color: var(--text-white);
    font-size: .85em;
    letter-spacing: 1px;
    font-weight: 500;
    text-transform: uppercase;
}

.navbar {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 999;
    padding: 25px 0;
    background-color: var(--text-white);
    border-bottom: 1px solid #f7f6f6;
}

.navbar__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar__list {
    display: flex;
    gap: 2.5em;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.navbar__item {
    display: flex;
    align-items: center;
}

.navbar__link {
    position: relative;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.navbar__link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: var(--primary-color);
    transform: scaleY(0);
    transform-origin: bottom;
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar__link:hover {
    color: var(--primary-color);
}

.navbar__link:hover::after {
    transform: scaleY(1);
    opacity: 1;
}

.navbar__link.active {
    color: var(--primary-color);
}

.mobile-navbar__item {
    display: none;
}

.navbar__button {
    background-color: var(--primary-color);
    border-radius: .75em;
    color: var(--text-white);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .75em 2em;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.navbar__button:hover {
    opacity: .9;
    color: var(--text-white);
}

.navbar__toggle {
    display: none;
    border: none;
    background: none;
    padding: 0;
    font-size: 1.25em;
}

@media screen and (max-width: 767px) {
    .navbar {
        background-color: var(--light-color);
        padding: 20px 1.5em;
    }

    .navbar__list {
        z-index: 4;
        grid-column-gap: 0em;
        grid-row-gap: 0em;
        background-color: var(--light-color);
        color: var(--text-black);
        flex-flow: column;
        justify-content: flex-start;
        align-items: flex-start;
        width: 100%;
        height: 100vh;
        position: fixed;
        top: 139.26px;
        right: 0;
        overflow: scroll;
        transform: translate3d(101%, 0, 0);
        transition: transform 0.3s ease, all 0.25s ease;
        display: flex;
    }

    .navbar__list.open {
        transform: translate3d(0, 0, 0);
    }

    .navbar__item {
        grid-column-gap: 1.5em;
        grid-row-gap: 1.5em;
        flex-flow: wrap;
        flex: none;
        justify-content: space-between;
        align-items: flex-start;
        width: 100%;
        padding: 2em;
        padding-top: 1em;
        padding-bottom: 1em;
        border-bottom: 1px solid rgb(0 0 0 / 7%);
    }

    .mobile-navbar__item {
        display: flex;
        gap: .5em;
        margin-top: .5em;
    }

    .mobile-navbar__item .navbar__link {
        gap: .5em;
    }

    .mobile-navbar__item a {
        border-bottom: 1px solid rgb(0 0 0 / 7%);
    }

    .mobile-navbar__item .navbar__button {
        display: flex;
        margin-top: .5em;
        width: 100%;
    }

    .navbar__item:first-child {
        border-top: 1px solid rgb(0 0 0 / 7%);
    }

    .navbar__item:last-child {
        border-bottom: none;
    }

    .navbar__button {
        display: none
    }

    .navbar__toggle {
        display: block
    }
}

.hero {
    width: 100%;
    height: calc(100vh - (95px + 40.8px));
    padding: 4em 3em;
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.hero.page-hero {
    height: 60vh;
}

.hero__container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 4em;
    height: 100%;
    position: relative;
    z-index: 4;
}

.hero__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: nowrap;
}

.hero__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1.5em;
    width: 50%;
}

.hero__text h1 {
    font-size: 3.8em;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.032em;
    margin: 0;
}

.hero__highlight {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 5px 25px;
    border-radius: 0.25em;
}

.hero__text p {
    font-size: 1em;
    line-height: 1.5;
    letter-spacing: -0.01em;
    margin: 0;
    text-align: justify;
}

.hero__button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--text-white);
    font-weight: 500;
    padding: 0.75em 2em;
    border-radius: 9999em;
    transition: all 0.3s ease;
}

.hero__button:hover {
    opacity: 0.9;
    color: var(--text-white);
}

.hero__image {
    width: 50%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

@media screen and (max-width: 767px) {
    .hero {
        height: calc(100vh - (84.86px + 54.4px));
    }

    .hero__content {
        flex-direction: column-reverse;
        gap: 2em
    }

    .hero__text {
        text-align: center;
        width: 100%
    }

    .hero__text h1 {
        font-size: 2em
    }

    .hero__text p {
        font-size: 0.9em;
        text-align: center;
    }

    .hero__highlight {
        padding: 5px 15px
    }

    .hero__button {
        margin: 0 auto
    }

    .hero__image {
        width: 100%
    }
}

.pricing__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3em;
    text-align: center;
    gap: 1em;
}

.pricing__header p {
    font-size: 1em;
    line-height: 1.5;
    color: rgb(0 0 0 / 50%);
    width: 75%;
}

.pricing__header-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1em;
}

.pricing__header-toggle-switch {
    position: relative;
    display: inline-block;
    width: 415px;
    height: 40px;
}

.pricing__header-toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.pricing__header-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #f7f6f6;
    border-radius: 34px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    color: #1a1a1a;
    overflow: hidden;
    border: 1px solid rgb(0 0 0 / 2%);
}

.pricing__header-toggle-slider:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 50%;
    left: 0;
    bottom: 0;
    background-color: var(--primary-color);
    transition: .4s;
    z-index: 0;
    border-radius: 34px;
}

.pricing__header-toggle-slider-option-left,
.pricing__header-toggle-slider-option-right {
    flex: 1;
    text-align: center;
    line-height: 40px;
    position: relative;
    z-index: 1;
    transition: color 0.4s;
}

.pricing__header-toggle-switch input:checked+.pricing__header-toggle-slider:before {
    transform: translateX(100%);
}

.pricing__header-toggle-switch input:not(:checked)~.pricing__header-toggle-slider .pricing__header-toggle-slider-option-left,
.pricing__header-toggle-switch input:checked~.pricing__header-toggle-slider .pricing__header-toggle-slider-option-right {
    color: #fff;
}

.pricing .pricing__plans {
    opacity: 0;
    visibility: hidden;
    height: 0;
    overflow: hidden;
    transition: opacity 0.75s linear, height 0.15s linear;
}

.pricing .pricing__plans.active {
    opacity: 1;
    visibility: visible;
    height: auto;
}

.pricing__grid {
    row-gap: 24px;
}

.pricing__grid-item {
    gap: 1.25em;
    border-radius: 2em;
    background-color: var(--light-color);
    color: var(--text-black);
    stroke: var(--primary-color);
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    padding: 2em;
    display: flex;
    overflow: hidden;
    border: 1px solid rgb(0 0 0 / 2%);
    transition: all 0.3s ease;
}

.pricing__grid-item-header .badge {
    background: rgb(12 90 155 / 7%);
    color: var(--primary-color);
    font-weight: 500;
    text-align: center;
    padding: 5px 15px;
    border-radius: 9999em;
    margin-bottom: 0.5em;
    width: fit-content;
}

.pricing__grid-item h3 {
    font-size: 2em;
    text-transform: uppercase;
    color: var(--primary-color);
}

.pricing__grid-item-container {
    display: flex;
    gap: 1.75em;
    width: 100%;
    border-bottom: 1px solid rgb(0 0 0 / 10%);
    padding-bottom: 25px;
}

.pricing__grid-item-speed {
    font-size: 1.15em;
    display: flex;
    flex-direction: column;
}

.pricing__grid-item-speed span strong {
    font-size: 1.5em;
    color: var(--primary-color);
}

.pricing__grid-item-speed svg {
    fill: var(--primary-color);
}

.pricing__grid-item-speed p {
    font-size: .7em;
    font-style: italic;
    opacity: .75;
}

.pricing__grid-item-features {
    display: flex;
    flex-direction: column;
    gap: .75em;
    width: 100%;
    border-bottom: 1px solid rgb(0 0 0 / 10%);
    padding-bottom: 25px;
}

.pricing__grid-item-features span {
    display: flex;
    align-items: center;
    gap: .5em;
    font-size: 1em;
}

.pricing__grid-item-features i {
    color: var(--primary-color);
}

.pricing__grid-item-price {
    display: flex;
    gap: .2em;
    margin: 1em auto;
}

.pricing__grid-item-price .digits {
    font-size: 3em;
    display: inline-block;
    font-weight: 600;
    line-height: 0.8em;
    vertical-align: top;
    position: relative;
    letter-spacing: 4px;
}

.pricing__grid-item-price .digits::before {
    content: "$";
    font-size: 0.5em;
    position: relative;
    text-transform: uppercase;
    display: inline-block;
    vertical-align: top;
    margin-top: 0;
    line-height: 1em;
}

.pricing__grid-item-price .digits::after {
    content: "*";
    font-size: 0.5em;
    position: relative;
    text-transform: uppercase;
    display: inline-block;
    vertical-align: top;
    margin-top: 0;
    line-height: 1em;
}

.pricing__grid-item-price .period {
    font-size: 1em;
    margin-right: 0;
    margin-left: -15px;
    opacity: .75;
    display: flex;
    align-items: flex-end;
}

.pricing__grid-item-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--text-white);
    font-weight: 500;
    padding: 0.75em 2em;
    border-radius: 9999em;
    transition: all 0.3s ease;
    width: 100%;
}

.pricing__grid-item-button:hover {
    opacity: 0.9;
    color: var(--text-white);
}

.pricing__grid-item.featured,
.pricing__grid-item:hover {
    background-color: var(--primary-color);
    color: var(--text-white);
    stroke: var(--text-white);
}

.pricing__grid-item.featured .pricing__grid-item-header .badge,
.pricing__grid-item:hover .pricing__grid-item-header .badge {
    background: rgb(255 255 255 / 7%);
    color: var(--text-white);
}

.pricing__grid-item.featured .pricing__grid-item-header h3,
.pricing__grid-item:hover .pricing__grid-item-header h3 {
    color: var(--text-white);
}

.pricing__grid-item.featured .pricing__grid-item-speed span strong,
.pricing__grid-item:hover .pricing__grid-item-speed span strong {
    color: var(--text-white);
}

.pricing__grid-item.featured .pricing__grid-item-speed svg,
.pricing__grid-item:hover .pricing__grid-item-speed svg {
    fill: var(--text-white);
}

.pricing__grid-item.featured .pricing__grid-item-button,
.pricing__grid-item:hover .pricing__grid-item-button {
    background-color: var(--light-color);
    color: var(--primary-color);
}

.pricing__grid-item.featured .pricing__grid-item-container,
.pricing__grid-item:hover .pricing__grid-item-container {
    border-color: rgb(255 255 255 / 10%);
}

.pricing__grid-item.featured .pricing__grid-item-features,
.pricing__grid-item:hover .pricing__grid-item-features {
    border-color: rgb(255 255 255 / 10%);
}

.pricing__grid-item.featured .pricing__grid-item-features i,
.pricing__grid-item:hover .pricing__grid-item-features i {
    color: var(--text-white);
}

@media screen and (max-width: 767px) {
    .pricing__header p {
        width: 100%;
    }

    .pricing__grid {
        flex-direction: column;
        row-gap: 1.5em;
    }

    .pricing__grid-item-container {
        font-size: 85%;
    }

    .pricing__header-toggle-switch {
        width: 250px;
    }

    .pricing__header-button {
        padding: .75em 0.65em;
    }
}

.services {
    padding-top: 0;
}

.services__header {
    margin-bottom: 3em;
}

.services__grid {
    row-gap: 24px;
}

.services__grid-item {
    gap: 1em;
    border-radius: 2em;
    background-color: var(--light-color);
    color: var(--text-black);
    stroke: var(--primary-color);
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    padding: 2em;
    display: flex;
    overflow: hidden;
    border: 1px solid rgb(0 0 0 / 2%);
    transition: all 0.25s ease-in-out;
}

.services__grid-item:hover {
    background-color: var(--primary-color);
    color: var(--text-white);
    border: 1px solid rgb(0 0 0 / 2%);
}

.services__grid-item-header {
    display: flex;
    align-items: center;
    gap: 1em;
}

.services__grid-item-header h3 {
    font-size: 1.25em;
}

.services__grid-item .badge {
    background: rgb(12 90 155 / 7%);
    color: var(--primary-color);
    font-weight: 500;
    text-align: center;
    padding: 15px;
    border-radius: 9999em;
    width: fit-content;
    display: flex;
}

.services__grid-item:hover .badge {
    background: rgb(255 255 255 / 7%);
    color: var(--text-white);
}

@media screen and (max-width: 767px) {
    .services__grid {
        flex-direction: column;
        row-gap: 1.5em;
    }
}

.about__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3em;
    text-align: center;
    gap: 1em;
}

.about__content {
    display: flex;
    flex-direction: column;
    gap: 1em;
    text-align: justify;
}

.terms-conditions__header,
.privacy-policy__header {
    margin-bottom: 3em;
}

.terms-conditions__content,
.privacy-policy__content {
    font-size: 18px;
    line-height: 1.5;
}

.terms-conditions__content h3,
.privacy-policy__content h3 {
    margin: 1em 0;
    font-size: 30px;
}

.terms-conditions__content .term-list,
.privacy-policy__content .term-list {
    gap: 1em;
    display: flex;
    flex-direction: column;
}

.terms-conditions__content a,
.privacy-policy__content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact__header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 3em;
    gap: 1em;
}

.contact__alert {
    display: none;
    padding: 1em;
    border-radius: .5em;
    margin-bottom: 1.5em;
    border-style: solid;
    border-width: 1px;
}

.contact__alert.success {
    display: block;
    border-color: #0a3622;
    background-color: #d1e7dd;
    color: #0a3622;
}

.contact__alert.danger {
    display: block;
    border-color: #842029;
    background-color: #f8d7da;
    color: #842029;
}

.contact__form-label {
    font-weight: 600;
    margin-bottom: .5em;
}

.contact__form-input {
    width: 100%;
    padding: .75em 1em;
    border: 1px solid rgb(0 0 0 / 10%);
    border-radius: .75em;
    font-size: 1em;
    font-family: var(--font-face);
    resize: vertical;
    margin-bottom: 1em;
}

.contact__form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgb(12 90 155 / 20%);
}

.contact__form-button {
    font-family: var(--font-face);
    background-color: var(--primary-color);
    border-radius: .75em;
    color: var(--text-white);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5em;
    padding: 1em 2em;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
}

.contact__form button:hover {
    opacity: 0.9;
    color: var(--text-white);
}

.contact__info {
    gap: 3em;
}

.contact__grid {
    flex-direction: column;
    gap: 2em;
}

.contact__grid-item {
    display: flex;
    align-items: center;
    gap: 1em;
}

.contact__grid-item h3 {
    font-size: 1.25em;
}

.contact__grid-item .badge {
    background: rgb(12 90 155 / 7%);
    color: var(--primary-color);
    font-weight: 500;
    text-align: center;
    padding: 15px;
    border-radius: 9999em;
    width: fit-content;
    display: flex;
}

.contact__grid-item-content {
    display: flex;
    flex-direction: column;
    gap: .5em;
}

.content__grid-item-content a {
    transition: color 0.3s ease;
}

.contact__grid-item-content a:hover {
    color: var(--primary-color);
}

.footer-hero {
    width: 100%;
    height: 100%;
    background-image: url(/assets/img/footer-banner.png);
    background-position: center 45%;
    position: relative;
    overflow: hidden;
    background-size: cover;
}

.footer-hero__container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 4em;
    height: 100%;
    position: relative;
    z-index: 4;
}

.footer-hero__content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    flex-wrap: nowrap;
}

.footer-hero__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1.5em;
    width: 50%;
}

.footer-hero__text h1 {
    font-size: 3.8em;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.032em;
    margin: 0;
}

.footer-hero__highlight {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 5px 25px;
    border-radius: 0.25em;
}

.footer-hero__button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--text-white);
    font-weight: 500;
    padding: 0.75em 2em;
    border-radius: 9999em;
    transition: all 0.3s ease;
}

.footer-hero__button:hover {
    opacity: 0.9;
    color: var(--text-white);
}

@media screen and (max-width: 767px) {
    .footer-hero {
        background-position: top right;
        background-image: linear-gradient(to top,
                rgb(0 0 0 / 0%),
                rgb(255 255 255 / 100%)),
            url(/assets/img/footer-banner.png);
        border-top: 1px solid #f7f6f6;
    }

    .footer-hero__text {
        text-align: center;
        width: 100%;
    }

    .footer-hero__text h1 {
        font-size: 2em
    }

    .footer-hero__highlight {
        padding: 5px 15px
    }

    .footer-hero__button {
        margin: 0 auto
    }
}

.footer {
    background-color: var(--light-color);
    color: rgb(0 0 0 / 50%);
    width: 100%;
}

.footer__top {
    padding: 4em 0;
}

.footer__link-list {
    gap: 1em;
    flex-direction: column;
    place-items: flex-start start;
    display: flex;
}

.footer__desc {
    letter-spacing: -.008em;
    font-size: 1em;
    font-weight: 401;
    line-height: 1.56em;
    padding-right: 15px;
}

.footer__socials {
    display: flex;
    gap: .5em;
}

.footer__socials .footer__link {
    font-size: 1em;
    border: var(--primary-color) 1px solid;
    padding: .75em .7em;
    border-radius: 9999px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.footer__socials .footer__link:hover {
    background-color: var(--primary-color);
    color: var(--text-white);
}

.footer__title {
    font-size: 1.2em;
    font-weight: 600;
    line-height: 1.4em;
    color: var(--text-black);
}

.footer__link-list-content {
    display: flex;
    flex-direction: column;
    gap: .75em
}

.footer__link {
    gap: 1em;
    justify-content: flex-start;
    align-items: center;
    display: flex;
    letter-spacing: -.008em;
    font-size: 1em;
    font-weight: 401;
    line-height: 1.56em;
    transition: color 0.3s ease;
}

.footer__link:hover {
    color: var(--primary-color);
}

.footer__separator {
    background-color: rgb(0 0 0 / 10%);
    width: 100%;
    height: 1px;
    min-height: 1px;
}

.footer__bottom {
    padding: 2em 0;
}

.footer__copyright {
    display: flex;
    justify-content: space-between;
}

.footer__copyright p {
    line-height: 1.4em;
    color: rgb(0 0 0 / 50%);
}

.footer__copyright p a {
    color: var(--primary-color);
    font-weight: 600;
}

@media screen and (max-width: 767px) {
    .footer__top {
        padding: 3em 2em;
    }

    .footer__main {
        gap: 2em;
    }

    .footer__desc {
        padding-right: 0;
    }

    .footer__link.address {
        width: 70%;
    }

    .footer__copyright {
        align-items: center;
        text-align: center;
        justify-content: center;
        gap: .5em;
        font-size: 14px;
    }
}

.checkout__form-row {
    gap: 1.5em;
}

.checkout__form-label {
    display: flex;
    font-weight: 600;
    margin-bottom: .5em;
}

.checkout__form-label sup {
    color: #a00;
}

.checkout__form-input {
    width: 100%;
    padding: .75em 1em;
    border: 1px solid rgb(0 0 0 / 10%);
    border-radius: .75em;
    font-size: 1em;
    font-family: var(--font-face);
    resize: vertical;
}

.checkout__form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgb(12 90 155 / 20%);
}

.checkout__form-button {
    font-family: var(--font-face);
    background-color: var(--primary-color);
    border-radius: .75em;
    color: var(--text-white);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5em;
    padding: 1em 2em;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    width: 100%;
    margin-top: 1em;
}

.checkout__form button:hover {
    opacity: 0.9;
    color: var(--text-white);
}

.checkout__form-terms {
    margin-top: 1em;
}

.checkout__form-terms label small span {
    color: var(--secondary-color);
}

.checkout__form-fieldset {
    padding: 1.5em 2em 2em;
    border: 2px solid var(--primary-color);
    width: 100%;
    border-radius: 1.5em;
    margin-bottom: 1.5em;
}

.checkout__form-legend {
    letter-spacing: 1.1px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.25em;
}

.checkout__form-note {
    margin-top: 1em;
    opacity: .5;
}

.checkout__form-note span {
    color: var(--secondary-color);
}

textarea.checkout__form-input {
    margin-bottom: 0;
    resize: none;
}

.card-radio-group {
    margin: .25em 0;
    display: flex;
    gap: 1.5em;
    margin-bottom: 1.5em;
}

.checkout__header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 3em;
    gap: 1em;
}

.checkout__alert {
    display: none;
    padding: 1em;
    border-radius: .5em;
    margin-bottom: 1.5em;
    border-style: solid;
    border-width: 1px;
}

.checkout__alert.success {
    display: block;
    border-color: #0a3622;
    background-color: #d1e7dd;
    color: #0a3622;
}

.checkout__alert.danger {
    display: block;
    border-color: #842029;
    background-color: #f8d7da;
    color: #842029;
}

.checkout-summary {
    padding: 2em;
    border: 1px solid rgb(0 0 0 / 2%);
    background-color: var(--light-color);
    border-radius: 2em;
    margin-bottom: 1em;
}

.checkout-summary__title {
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 1em;
}

.checkout-summary__container {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.checkout-summary__item {
    display: flex;
    justify-content: space-between;
}

.checkout-summary__item--package {
    font-weight: 600;
}

.checkout-summary hr {
    opacity: 0.25;
    margin: .5em 0;
}

.checkout-summary__item--total {
    font-size: 1.1em;
    font-weight: 600;
}

.checkout-summary__label small {
    font-weight: normal;
}

.checkout-summary__value.danger {
    color: var(--secondary-color);
}