/* BTN */
.btn-light-gray {
    appearance: none;
    background-color: #fafbfc;
    border: 1px solid rgba(27, 31, 35, 0.15);
    border-radius: 6px;
    box-shadow:
        rgba(27, 31, 35, 0.04) 0 1px 0,
        rgba(255, 255, 255, 0.25) 0 1px 0 inset;
    box-sizing: border-box;
    color: #24292e;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    list-style: none;
    padding: 6px 16px;
    position: relative;
    transition: background-color 0.2s cubic-bezier(0.3, 0, 0.5, 1);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: middle;
    white-space: nowrap;
    word-wrap: break-word;
}

.btn-light-gray:hover {
    background-color: #f3f4f6;
    text-decoration: none;
    transition-duration: 0.1s;
}

.btn-light-gray:disabled {
    background-color: #fafbfc;
    border-color: rgba(27, 31, 35, 0.15);
    color: #959da5;
    cursor: default;
}

.btn-light-gray:active {
    background-color: #edeff2;
    box-shadow: rgba(225, 228, 232, 0.2) 0 1px 0 inset;
    transition: none 0s;
}

.btn-light-gray:focus {
    outline: 1px transparent;
}

.btn-light-gray:before {
    display: none;
}

.btn-light-gray:-webkit-details-marker {
    display: none;
}


/* Content */
.page h1 {
    font-size: 2.334rem;
    line-height: 1.02;
    font-weight: 800;
}

.page h2 {
    font-size: 1.55rem;
    line-height: 1.02;
    font-weight: 800;
}

.page p {
    color: #777;
}

.page .price {
    background: linear-gradient(-45deg, #24ff72, #9a4eff);
    color: #FFF;
    max-width: 900px;
    width: 100%;
    margin: 10px auto;
}

.page .price h3 {
    font-size: 1.255rem;
    padding: 0;
    margin: 0;
    font-weight: bold;
}

.page .price .price-number {
    font-size: 2.354rem;
    font-weight: 900;
}

.page .price p {
    color: #FFF;
    padding: 0;
    margin: 0;
}

.list-icon {
    padding: 0;
    margin: 0;
    list-style: none;
}

.list-icon li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    line-height: 1.5;
}

.list-icon li strong {
    color: #0d7dc2;
}

.list-icon li::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f560";
    position: absolute;
    left: 0;
    color: #0a6b83;
    /* top: 50%; */
    /* transform: translateY(-50%); */
}

/* CTA BTN */
.cta-btn {
    padding: 12px 25px;
    border-radius: 15px;
    color: #212121;
    z-index: 1;
    background: #FFF;
    font-weight: 1000;
    font-size: 1.05rem;
    -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
}

.cta-btn:hover {
    color: #000;
}