@font-face {
    font-family: 'Capsule Sans Text';
    src: url('../Typographys/CapsuleSansText-Book.woff2') format('woff2'),
    url('../Typographys/CapsuleSansText-Book.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Capsule Sans Text';
    src: url('../Typographys/CapsuleSansText-Medium.woff2') format('woff2'),
    url('../Typographys/CapsuleSansText-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Capsule Sans Text';
    src: url('../Typographys/CapsuleSansText-Bold.woff2') format('woff2'),
    url('../Typographys/CapsuleSansText-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Icons Social';
    src: url('../Typographys/IconsSocialMedia8.woff2') format('woff2'),
    url('../Typographys/IconsSocialMedia8.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
    text-decoration: none;
    font-family: 'Capsule Sans Text', sans-serif;
    cursor: pointer;
    font-size: 18px;
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 14px;
    height: 14px;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 36px rgba(0,0,0,0.1);

}
::-webkit-scrollbar-thumb {
    -webkit-box-shadow: inset 0 0 30px rgba(0,0,0,0.3);
}

.flex-column {
    flex-direction: column !important;
}

.flex-row {
    flex-direction: row !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.btn {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.25px;
    padding: 12px 24px;
    border-radius: 50px;
    display: block;
    transition: all .25s ease-out;
}

.message {
    text-align: center;
    margin-top: 19px;
    font-size: 0.9rem;
    color: #e73636;
}

.btn:hover {
    opacity: 0.9;
}

.btn-green {
    background: linear-gradient(45deg, #00ffc1 0%, rgb(102 255 121) 100%);
    color: #ffffff;
}

.btn-purple {
    background: linear-gradient(45deg, rgb(153, 51, 255) 0%, rgb(255, 102, 102) 100%);
    color: #ffffff;
}

.btn-orange {
    background: linear-gradient(45deg, #ff6b01 0%, rgb(255 102 102) 100%);
    color: #ffffff;
}

#post-1 {
    display: flex;
    height: calc(100vh);
    padding: 0 40px;
    background-color: #121212;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.content--account {
    width: 100%;
    max-width: 480px;
}

.account-main {
    display: flex;
    justify-content: center;
    width: 100%;
}

.account-main>a {
    width: 50%;
    background-color: #f0f2f7;
    padding: 20px;
    text-align: center;
    color: rgb(152, 161, 178);
}

.account-main>.main-select {
    background-color: #ffffff !important;
    color: #000000 !important;
}

.account-main>a:first-child {
    border-top-left-radius: 8px;
}

.account-main>a:last-child {
    border-top-right-radius: 8px;
}

.account-form {
    border-top: 1px solid #f5f5f5;
    border-bottom: 1px solid #f5f5f5;
}

.account-form>div {
    background-color: #ffffff;
    padding: 20px 40px;
}

.account-form>div p {
    display: flex;
    flex-direction: column;
}

.account-form>div p>label {
    font-size: 0.9rem;
}

.account-form>div p>input {
    display: block;
    width: 100%;
    min-height: 46px;
    height: 46px;
    padding: 6px 12px;
    box-sizing: border-box;
    font-size: 1rem;
    font-weight: 500;
    color: rgb(53, 63, 82);
    background-color: rgb(255, 255, 255);
    outline-width: 0;
    user-select: text;
    border: 1px solid #f5f5f5;
    border-radius: 8px;
    margin-bottom: 10px;
}

.btn.register {
    background: #0c6cf2;
    color: #ffffff;
    margin-bottom: 0;
    margin-top: 10px;
    border-radius: 8px;
    min-height: 52px;
    height: 52px;
}

.account-footer>div {
    background-color: #ffffff;
    padding: 20px 40px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    text-align: center;
}

.account-footer>div>a {
    font-size: 1rem;
    letter-spacing: -0.25px;
    color: rgb(103, 113, 132);
}

.account-footer>div>a>span {
    background: #0c6cf2;
    -webkit-background-clip: text;
    color: transparent;
}

.content--plans {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.content--plans>div {
    margin: 0.8%;
    width: 31.7%;
    max-width: 355px;
    background: #ffffff;
    border-radius: 8px;
}

.content--plans>div>div {
    padding: 40px;
    background: #ffffff;
    border-radius: 8px;
    text-align: center;
}

.content--plans>div>div>h2 {
    font-size: 1.3rem;
}

.content--plans>div>div>h3 {
    font-size: 2rem;
}

.content--plans>div>div>form>select {
    display: block;
    width: 100%;
    min-height: 46px;
    height: 46px;
    padding: 6px 12px;
    box-sizing: border-box;
    font-size: 1rem;
    font-weight: 500;
    color: rgb(53, 63, 82);
    background-color: rgb(255, 255, 255);
    outline-width: 0;
    user-select: text;
    border: 1px solid #f5f5f5;
    border-radius: 8px;
    margin-bottom: 10px;
    text-align: center;
}

.content--plans>div>div>form>input {
    width: 100%;
}

#footer {
    background-color: #121212;
    padding: 40px;
}

#footer>.footer--content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.nav--footer>ul,
.email--footer>ul {
    display: flex;
    align-items: center;
}

.nav--footer>ul>li,
.email--footer>ul>li {
    display: flex;
    align-items: center;
    list-style: none;
}

.nav--footer>ul>li>a,
.email--footer>ul>li>a {
    padding: 25px 10px 20px 10px;
    font-size: 1rem;
    font-weight: normal;
    letter-spacing: -0.25px;
    color: #e1e1e1;
    transition: all .25s ease-out;
}

.nav--footer>ul>li>a:hover {
    color: #ffffff;
}

.email--footer>ul>li>a {
    font-size: 0.9rem !important;
    padding: 10px 10px 20px 10px !important;
    color: #019ac4 !important;
}

.logo--footer>div {
    display: flex;
    align-items: center;
}

.logo--footer>div>img {
    width: 100%;
    max-width: 200px;
}

.social--footer>ul {
    display: flex;
    align-items: center;
}

.social--footer>ul>li {
    display: flex;
    align-items: center;
    list-style: none;
}

.social--footer>ul>li>a {
    padding: 8px 10px;
    font-family: 'Icons Social';
    font-size: 2rem;
    font-weight: normal;
    letter-spacing: -0.25px;
    color: #ffffff;
    transition: all .25s ease-out;
}

.social--footer>ul>li:hover>a {
    color: #019ac4;
}

.table {
    width: 100%;
    padding: 2rem;
    border-radius: 0.5rem;
    background-color: rgb(255, 255, 255);
    box-shadow: rgb(0 0 0 / 9%) 12px 24px 64px;
    border-spacing: 0;
    /* Tu padding aquí */
}

.table td,
.table th {
    padding: 1rem 0px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.8px;
    line-height: 1rem;
    text-transform: uppercase;
    position: relative;
    text-align: left;
}

.bordered-row td::after,
.bordered-row th::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    border-bottom: 1px solid rgb(223, 227, 235);
}

.bordered-row:last-child td::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    border-bottom: 0px solid rgb(223, 227, 235);
}

.table a,
.table select {
    color: #0c6cf2;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.8px;
    line-height: 1rem;
    text-transform: uppercase;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    border: none;
    background-color: rgb(12 108 242 / 18%);
    cursor: pointer;
    transition: background-color 0.3s ease 0s;
}

.table select {
    background-color: rgb(230, 250, 236) !important;
    color: #00994c !important;
}

.table select>option {
    background-color: #ffffff !important;
    color: #000000 !important;
}

.text-h2 {
    margin-bottom: 40px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.8px;
    line-height: 1rem;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    border: none;
    background-color: rgb(230, 250, 236);
    cursor: pointer;
    color: #00994c;
}

.table .paid {
    background-color: rgb(245 210 210) !important;
    color: #ff3344 !important;
}

.two {
    color: #0c6cf2 !important;
    background-color: rgb(12 108 242 / 18%) !important;
}

@media screen and (min-width: 250px) and (max-width: 900px) {
    .content--plans {
        margin: 20px 0;
    }

    .post-1 {
        height: auto !important;
    }

    .content--plans>div {
        width: 100%;
        margin: 10px 0;
        max-width: 100%;
    }
}

@media screen and (min-width: 250px) and (max-width: 800px) {
    .nav--footer>ul, .email--footer>ul {
        flex-direction: column;
    }

    .nav--footer>ul>li>a, .email--footer>ul>li>a {
        padding: 10px 10px !important;
        font-size: 0.9rem !important;
    }

}


@media screen and (min-width: 250px) and (max-width: 650px) {
    section {
        padding: 0 20px !important;
    }
}