@font-face {
    font-family: "SF Pro";
    src: url("../fonts/sf-pro/SF-Pro-Display-Regular.otf") format("otf");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "SF Pro";
    src: url("../fonts/sf-pro/SF-Pro-Display-Bold.otf") format("otf");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "SF Pro";
    src: url("../fonts/sf-pro/SF-Pro-Display-Semibold.otf") format("otf");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "SF Pro";
    src: url("../fonts/sf-pro/SF-Pro-Display-Medium.otf") format("otf");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "SF Pro";
    src: url("../fonts/sf-pro/SF-Pro-Display-Light.otf") format("otf");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "SF Pro";
    src: url("../fonts/sf-pro/SF-Pro-Display-Thin.otf") format("otf");
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "SF Pro", Arial, sans-serif;
    font-weight: normal;
    line-height: 1.6;
    color: #1e232c;
    background-color: #fff;
}

ul li {
    margin-left: 20px
}
.main .container {
    margin-top: 30px;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: .25rem;
}

.container {
    max-width: 1200px;
    padding: 0 10px;
    margin: 0 auto;
}

.header {
    background-color: #fff;
    -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header__logo-mobile {
    display: none;
}

@media (max-width: 768px) {
    .header__logo-mobile {
        margin-bottom: 1rem;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
}

.header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0.5rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .header__nav {
        padding: 1rem 2rem;
    }
}

.header__logo img {
    display: block;
}

.header__menu-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: none;
    outline: none;
    border: none;
    background-color: transparent;
}

@media (max-width: 768px) {
    .header__menu-toggle {
        display: block;
    }
}

.header__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style-type: none;
}

@media (max-width: 768px) {
    .header__menu {
        position: fixed;
        margin: 0;
        top: 0;
        bottom: 0;
        right: -100%;
        width: 300px;
        padding: 2rem;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        background-color: #fff;
        z-index: 100;
        -webkit-transition: right 0.3s ease;
        transition: right 0.3s ease;
    }
}

.header__menu-overlay {
    display: none;
}

.header__menu.active {
    right: 0;
    -webkit-transition: right 0.3s ease;
    transition: right 0.3s ease;
}

.header__menu-overlay.active {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.header__menu-item {
    margin-left: 1.875rem;
}

@media (max-width: 768px) {
    .header__menu-item {
        margin-left: 0;
        margin-bottom: 0.5rem;
    }
}

.header__menu-link {
    font-family: "SF Pro", Arial, sans-serif;
    font-weight: 600;
    color: #1e232c;
    text-decoration: none;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

.header__menu-link:hover {
    color: #ecac4c;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

.header__cta-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1.25rem;
    padding: 1.875rem;
    background-color: white;
    border: 2px solid #ecac4c;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.25rem;
    color: #1e232c;
    letter-spacing: 0.5px;
    font-weight: 600;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.header__cta-button:hover {
    background-color: #ecac4c;
    color: white;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .header__cta-button {
        margin-top: 1rem;
        -ms-flex-item-align: start;
        align-self: flex-start;
    }
}

.hero {
    padding-top: 5.625rem;
    position: relative;
}

@media (max-width: 1024px) {
    .hero {
        padding: 3rem 2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 2rem 1rem;
    }
}

.footer {
    background-color: #fff;
    color: #1e232c;
    padding: 50px 0;
}

@media (max-width: 768px) {
    .footer {
        text-align: center;
    }
}

.footer__top {
    margin-bottom: 42px;
}

.footer__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .footer__content {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .footer__content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.footer__column {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-right: 2rem;
}

@media (max-width: 1024px) {
    .footer__column {
        -ms-flex-preferred-size: 45%;
        flex-basis: 45%;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .footer__column {
        margin-right: 0;
        margin-bottom: 2rem;
    }
}

.footer__column-title {
    font-size: 16px;
    font-style: normal;
    font-weight: bold;
    line-height: 23px;
    margin-bottom: 10px;
}

.footer__menu {
    list-style-type: none;
}

.footer__menu li {
    margin-bottom: 0.5rem;
}

.footer__menu a {
    color: #1e232c;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 23px;
    text-decoration: none;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

.footer__menu a:hover {
    color: #ecac4c;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

.footer__bottom {
    padding-top: 2rem;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    margin-top: 2rem;
    border-top: 2px solid #eaeafb;
    border-bottom: 2px solid #eaeafb;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    color: #1e232c;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.footer__bottom-text {
    max-width: 40%;
}

@media (max-width: 768px) {
    .footer__bottom-text {
        max-width: 100%;
    }
}

.footer__bottom-text a {
    color: #1574f6;
    text-decoration: none;
}

.footer__copyright {
    color: #1e232c;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22.86px;
    /* 142.875% */
}

@media (max-width: 768px) {
    .footer__copyright {
        text-align: center;
    }
}
/*# sourceMappingURL=index.css.map */
.delete-account .center{
    width: 300px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.delete-account .delete-account-content {
    margin-bottom: 40px;
}
.delete-account .delete-account-content p {
    font-size: 18px;
}