:root {
    --primary-dark: #e57265;
    --primary-light: #e5726599;
    --primary-extra-light: #fcf2f3;
    --secondary-dark: #020414;
    --text-nav: #020414;
    --text-heading: #082a3a;
    --text-fade: #184e67;
}
.postal {
    outline: none;
    box-shadow: none;
    padding: 8px;
    background: #fbf2f2;
    border: 0;
    border-radius: 30px;
    padding: 14px 15px;
    width: 100%;
}
body {
    font-family: "Open Sans", sans-serif;
    color: #444444;
}

a {
    color: #fff;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

.bold {
    font-weight: bold;
}

.color-black {
    color: #000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Montserrat", sans-serif;
}

/*--------------------------------------------------------------
  # Back to top button
  --------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: var(--primary-dark);
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: var(--primary-light);
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
  # Disable AOS delay on mobile
  --------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }

    #header .logo img {
        width: 121px !important;
        max-width: 100%;
    }

    #hero .btn-join {
        width: 100%;
    }

    .column-links ul {
        text-align: center;
    }
}

/*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/
#header {
    height: 80px;
    transition: all 0.5s;
    z-index: 997;
    transition: all 0.5s;
}

#header.header-transparent {
    background: transparent;
}

#header.header-scrolled {
    background: #fff;
    box-shadow: 0 10px 16px #eee;
}

#header .logo h1 {
    font-size: 28px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
}

#header .logo h1 a,
#header .logo h1 a:hover {
    color: #fff;
    text-decoration: none;
}

#header .logo img {
    padding: 0;
    margin: 0;
    width: 221px;
}

/*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/

/**
  * Desktop Navigation 
  */
.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a {
    margin-right: 13px;
    font-size: 15px;
    font-family: "Poppins", sans-serif;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover:before,
.navbar li:hover > a:before,
.navbar .active:before {
    visibility: visible;
    width: 25px;
}

.header-scrolled .navbar .nav-link {
    color: #fff;
}

.header-scrolled .navbar > ul > li > a:before {
    background-color: #fff;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 30px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: var(--primary-light);
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
    color: #1acc8d;
}

.navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

.nav-link.nav-login-btn {
    min-width: 115px;
    text-align: center;
    border-radius: 23px;
    font-weight: bold;
    display: inline-block;
    background-color: var(--primary-dark);
    color: #fff;
    border: none;
    outline: none;
    box-shadow: -0.71px 0.71px 15px #e5726599;
}

.nav-link.nav-login-btn:hover {
    color: #fff;
    background-color: var(--primary-light);
}

.nav-link.nav-signup-btn {
    min-width: 115px;
    text-align: center;
    border-radius: 23px;
    font-weight: bold;
    display: inline-block;
    background-color: #fff !important;
    color: var(--primary-dark) !important;
    border: 1px solid var(--primary-dark) !important;
    outline: none;
    box-shadow: -0.71px 0.71px 15px #e5726599;
}

.nav-link.nav-signup-btn:hover,
.nav-link.nav-signup-btn:active {
    background-color: var(--primary-dark) !important;
    color: #fff !important;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

/**
  * Mobile Navigation 
  */
.nav-close-icon {
    display: none;
}
.mobile-nav-toggle {
    color: var(--primary-dark);
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }
    #nav-close-icon {
        display: block;
        position: absolute;
        cursor: pointer;
        font-size: 28px;
        /* top: 10px;  */
        right: 10px;
    }

    .navbar ul {
        display: none;
    }

    #header.header-scrolled {
        background: #fff !important;
        box-shadow: none;
    }

    #footer .links a span {
        margin: 0;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    text-align: center;
    background: var(--primary-light);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 25px;
    right: 15px;
    color: #fff;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 8px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile > ul > li {
    margin-bottom: 20px;
}

.navbar-mobile > ul > li a {
    margin-right: 0;
}

.navbar-mobile > ul > li > a:before {
    left: 20px;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul,
.navbar-mobile .dropdown .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li,
.navbar-mobile .dropdown .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a,
.navbar-mobile .dropdown .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i,
.navbar-mobile .dropdown .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a,
.navbar-mobile .dropdown .dropdown ul a:hover,
.navbar-mobile .dropdown .dropdown ul .active:hover,
.navbar-mobile .dropdown .dropdown ul li:hover > a {
    color: #1acc8d;
}

.navbar-mobile .dropdown > .dropdown-active,
.navbar-mobile .dropdown .dropdown > .dropdown-active {
    display: block;
}

/*--------------------------------------------------------------
  # Hero Section
  --------------------------------------------------------------*/
#hero {
    width: 100%;
    position: relative;
    padding: 120px 0 0 0;
}

#hero:before {
    content: "";
    background-color: var(--primary-extra-light);
    background-image: url("../../images/home/light-bg-heart.webp");
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero h1 {
    margin: 0 0 20px 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    color: var(--text-heading);
}

#hero h1 span {
    color: var(--primary-dark);
}

#hero h2 {
    color: var(--text-fade);
    margin-bottom: 40px;
    font-size: 1rem;
}

#hero .btn-join {
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 50px;
    border-radius: 6px;
    transition: 0.5s;
    color: #fff;
    text-align: center;
    background: var(--secondary-dark);
}

#hero .animated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

#hero .joinus-text {
    margin-top: 1rem;
    font-size: 13px;
    font-weight: 500;
    line-height: 21px;
    color: #0b0a0b;
    text-align: left;
}

#hero .download-applications {
    display: flex;
    align-items: center;
}

#hero .download-applications span {
    font-weight: bold;
    font-size: 0.9rem;
}

#hero .download-applications img {
    width: 25px;
    display: inline-block;
    margin-left: 10px;
}

@media (min-width: 1024px) {
    #hero {
        background-attachment: fixed;
    }
}

@media (max-width: 991px) {
    #hero {
        padding-top: 80px;
    }

    #hero .animated {
        -webkit-animation: none;
        animation: none;
    }

    #hero .hero-img {
        text-align: center;
    }

    #hero h1 {
        font-size: 28px;
        line-height: 32px;
        margin-bottom: 10px;
    }

    #hero h2 {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 30px;
    }
}

@media (max-width: 575px) {
    #hero .hero-img img {
        width: 80%;
    }
}

@-webkit-keyframes up-down {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}

.hero-waves {
    display: block;
    margin-top: 60px;
    width: 100%;
    height: 60px;
    z-index: 5;
    position: relative;
}

.wave1 use {
    -webkit-animation: move-forever1 10s linear infinite;
    animation: move-forever1 10s linear infinite;
    -webkit-animation-delay: -2s;
    animation-delay: -2s;
}

.wave2 use {
    -webkit-animation: move-forever2 8s linear infinite;
    animation: move-forever2 8s linear infinite;
    -webkit-animation-delay: -2s;
    animation-delay: -2s;
}

.wave3 use {
    -webkit-animation: move-forever3 6s linear infinite;
    animation: move-forever3 6s linear infinite;
    -webkit-animation-delay: -2s;
    animation-delay: -2s;
}

@-webkit-keyframes move-forever1 {
    0% {
        transform: translate(85px, 0%);
    }

    100% {
        transform: translate(-90px, 0%);
    }
}

@keyframes move-forever1 {
    0% {
        transform: translate(85px, 0%);
    }

    100% {
        transform: translate(-90px, 0%);
    }
}

@-webkit-keyframes move-forever2 {
    0% {
        transform: translate(-90px, 0%);
    }

    100% {
        transform: translate(85px, 0%);
    }
}

@keyframes move-forever2 {
    0% {
        transform: translate(-90px, 0%);
    }

    100% {
        transform: translate(85px, 0%);
    }
}

@-webkit-keyframes move-forever3 {
    0% {
        transform: translate(-90px, 0%);
    }

    100% {
        transform: translate(85px, 0%);
    }
}

@keyframes move-forever3 {
    0% {
        transform: translate(-90px, 0%);
    }

    100% {
        transform: translate(85px, 0%);
    }
}

/*--------------------------------------------------------------
  # Sections General
  --------------------------------------------------------------*/
section {
    padding: 60px 0;
    overflow: hidden;
}

.section-bg {
    background-color: #f5f5ff;
}

.section-title {
    padding-bottom: 40px;
}

.section-title h2 {
    font-size: 14px;
    font-weight: 500;
    padding: 0;
    line-height: 1px;
    margin: 0 0 5px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #aaaaaa;
    font-family: "Poppins", sans-serif;
}

.section-title h2::after {
    content: "";
    width: 120px;
    height: 1px;
    display: inline-block;
    background: #1acc8d;
    margin: 4px 10px;
}

.section-title p {
    margin: 0;
    margin: 0;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    color: #010483;
}

/*--------------------------------------------------------------
  # About
  --------------------------------------------------------------*/
.about {
    padding: 40px 0 0 0;
}

.about .icon-boxes h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 15px;
}

.about .icon-box {
    margin-top: 40px;
}

.about .icon-box .icon {
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border: 2px solid var(--primary-dark);
    border-radius: 50px;
    transition: 0.5s;
}

.about .icon-box .icon i {
    color: var(--primary-dark);
    font-size: 32px;
}

.about .icon-box:hover .icon {
    background: var(--primary-dark);
    border-color: var(--primary-light);
}

.about .icon-box:hover .icon i {
    color: #fff;
}

.about .icon-box .title {
    margin-left: 85px;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 18px;
}

.about .icon-box .title a {
    color: #343a40;
    transition: 0.3s;
}

.about .icon-box .title a:hover {
    color: #1acc8d;
}

.about .icon-box .description {
    margin-left: 85px;
    line-height: 24px;
    font-size: 14px;
}

.about .about-box {
    background: url("../../images/home/icon-three.png") center center no-repeat;
    background-size: contain;
    transform: rotate(90deg) !important;
    zoom: 2;
    min-height: 300px;
}

/*-------------------------------------------------------------- */
/* Features
 /* --------------------------------------------------------------*/
.features .icon-box {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #f5f5ff;
    transition: ease-in-out 0.3s;
}

.features .icon-box i {
    font-size: 32px;
    padding-right: 10px;
    line-height: 1;
}

.features .icon-box h3 {
    font-weight: 700;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-size: 16px;
}

.features .icon-box h3 a {
    color: var(--primary-light);
    transition: ease-in-out 0.3s;
}

.features .icon-box h3 a:hover {
    color: var(--primary-light);
}

.features .icon-box:hover {
    background: #ebebff;
}

/*--------------------------------------------------------------
  # Service
  --------------------------------------------------------------*/

.service {
    padding: 50px;
    background-size: cover;
    position: relative;
}

.service::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #fbe7e6;
}

.service p {
    font-size: 0.9rem;
    font-weight: bold;
}

/*--------------------------------------------------------------
  # Dating Text
  --------------------------------------------------------------*/
.dating-text {
    background: var(--primary-dark);
    padding: 1rem;
    color: #fff;
}

.dating-text p {
    color: #fff;
    font-weight: bold;
    font-size: 1rem;
    padding: 0;
    margin: 0;
    text-align: center;
}

.column-links {
    padding: 50px;
    background-size: cover;
    position: relative;
}

.column-links::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #fbe7e6;
}

.column-links ul {
    list-style: none;
}

.column-links ul li a {
    color: var(--text-fade);
    font-weight: bold;
    font-size: 0.82rem;
    display: inline-block;
    padding: 0.2rem;
}

.column-links ul li a:hover {
    color: var(--primary-dark);
}

/*--------------------------------------------------------------
  # benefits
  --------------------------------------------------------------*/

.benefits {
    padding: 50px;
    background-size: cover;
    position: relative;
}

.benefits::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #fbe7e6;
}

.benefits h2 {
    margin-bottom: 20px;
    font-weight: bold;
    color: var(--text-heading);
}

.benefits p {
    color: #000;
}

.benefits .ideal-profile-img {
    width: 60%;
    margin: auto;
}

/*--------------------------------------------------------------
  # Reconnect Black
  --------------------------------------------------------------*/

.reconnect-black {
    padding: 50px;
    position: relative;
    background-color: #fff;
}

.reconnect-black h2 {
    margin-bottom: 20px;
    font-weight: bold;
    color: var(--text-heading);
}

.reconnect-black p {
    color: #000;
    font-weight: bold;
    font-size: 0.8rem;
}

/*--------------------------------------------------------------
  # Testimonials
  --------------------------------------------------------------*/
.testimonials {
    padding: 80px 0;
    background-size: cover;
    position: relative;
}

.testimonials::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #fff;
}

.testimonials .section-header {
    margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
    overflow: hidden;
}

.testimonials .testimonial-item {
    text-align: center;
    color: #000;
}

.testimonials .testimonial-item .testimonial-img {
    height: 85px;
    width: 85px;
    object-fit: cover;
    border-radius: 50%;
    border: 6px solid rgba(255, 255, 255, 0.15);
    margin: 0 auto;
}

.testimonials .testimonial-item p {
    font-size: 15px;
    color: #403d3d;
}

.testimonials .testimonial-item h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: #000;
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: #000;
    margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: rgba(255, 255, 255, 0.4);
    font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
}

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 auto 15px auto;
    color: #000;
}

.testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    opacity: 1;
    background-color: #000;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--primary-dark);
}

@media (min-width: 1024px) {
    .testimonials {
        background-attachment: fixed;
    }
}

@media (min-width: 992px) {
    .testimonials .testimonial-item p {
        width: 80%;
    }
}

@media (min-width: 768px) {
    .pl-md-5 {
        padding-left: 3rem !important;
    }
}

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
  # Footer
  --------------------------------------------------------------*/
#footer {
    background: #fbf2f2;
    padding: 20px;
    font-size: 14px;
}

#footer .links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

#footer .links a {
    display: inline-block;
    color: var(--text-nav);
    font-size: 0.8rem;
    font-weight: bold;
}

#footer .links a span {
    display: inline-block;
    margin: 0 10px;
}

/*--------------------------------------------------------------
  # Modals
  --------------------------------------------------------------*/

.auth-modal .modal-header {
    display: block;
    position: relative;
    border: 0;
}

.auth-modal .modal-header .btn-close {
    position: absolute;
    right: 18px;
    top: 26px;
    font-weight: bold;
    font-size: 12px;
    background-color: #fff;
}

.auth-modal .modal-header .btn-close:focus,
.btn-close:active {
    outline: 0 !important;
    box-shadow: none !important;
}

.auth-modal .modal-header .modal-title {
    text-align: center;
    font-weight: bold;
    color: var(--text-heading);
}

.auth-modal .modal-content,
.auth-modal .modal-content .modal-body {
    border-radius: 15px;
}

.auth-modal .modal-body {
    background-color: #fff;
    border: 0;
}

.auth-modal .logo {
    text-align: center;
}

.auth-modal .logo img {
    max-width: 200px;
}

.auth-modal .input-group-text {
    border: 0;
    background-color: transparent;
}

.auth-modal label {
    font-weight: 600;
    font-size: 0.9rem;
}

.auth-modal .input-group {
    border: 1px solid var(--primary-dark);
    padding: 4px;
    border-radius: 23px;
}

.auth-modal .input-group .input-group-text {
    color: var(--primary-dark);
}

.auth-modal .form-control {
    border: 0;
    background-color: transparent;
}

.auth-modal .form-control:focus {
    outline: 0;
    box-shadow: none;
}

.auth-modal select {
    outline: none;
    box-shadow: none;
    padding: 8px;
    background: #fbf2f2;
    border: 0;
    border-radius: 30px;
    padding: 14px 15px;
    width: 100%;
}

.auth-modal select:focus {
    outline: none;
    box-shadow: none;
}

.auth-modal input::placeholder {
    color: var(--primary-dark);
    font-weight: bold;
    font-size: 0.9rem;
}

.auth-modal input[type="date"] {
    color: var(--primary-dark);
    font-weight: bold;
    font-size: 0.9rem;
}

.auth-modal .form-check-label {
    font-size: 0.75rem;
    font-weight: bold;
}

.auth-modal .form-check-label a {
    color: var(--primary-dark);
}

.auth-modal a.forgot-link {
    font-size: 0.75rem;
    font-weight: bold;
    color: #444;
}

.auth-modal.forgot-modal .modal-body p {
    font-size: 0.82rem;
    font-weight: 600;
    width: 90%;
    margin: 20px 0 20px 20px;
}

.auth-modal.forgot-modal .modal-header .btn-close {
    top: 20px;
}

.auth-modal .submit-btn {
    border: 0;
    background-color: #1acc8d;
    padding: 10px;
    width: 100%;
    max-width: 100%;
    border-radius: 23px;
    color: #fff;
    font-weight: bold;
}

.auth-modal .submit-btn:focus {
    outline: 0;
}

#emailVerificationModal .email-verify-text-box {
    margin-bottom: 2rem;
    margin-top: 0.9rem;
}

#emailVerificationModal .email-verify-text-box p {
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--nav-dark);
}

.auth-modal .divider {
    position: relative;
    content: "";
    display: block;
    height: 2px;
    background-color: #ececec;
    width: 90%;
    margin: 45px auto;
}

.auth-modal .divider .box {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ececec;
    position: absolute;
    left: calc(50% - 24px);
    top: -24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.auth-modal .socal-auth button {
    position: relative;
    border: 0;
    color: var(--primary-dark);
    display: block;
    width: 100%;
    padding: 16px;
    margin-bottom: 20px;
    border-radius: 23px;
    text-align: center;
    font-weight: bold;
    font-size: 1rem;
    background-color: #f8dcd8;
}

.auth-modal .socal-auth button:hover {
    background-color: var(--primary-dark);
    color: #fff;
}

.auth-modal .socal-auth button i {
    font-size: 20px;
    position: absolute;
    left: 22px;
}
