@import url('fonts.min.css');

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

:root {
    --clr-primary: red;
    /* --clr-primary: #FF6F61; */
    --clr-secondary: #ffffff;
    --clr-gray: #808080;
    --clr-gray-light: #e1e1e1;
    --clr-gray-dark: #212121;
    --clr-black: #212121;
    --clr-black-2: #141414;
    --clr-black-3: #000000;
    --clr-success: #28a745;
    --clr-error: #dc3545;
    /* --font-heading: "Bebas Neue", sans-serif;
    --font-body: "Nunito", sans-serif; */
    --font-heading: 'Roboto', sans-serif;
    --font-body: "Poppins", sans-serif;

}

/* Hide scrollbar for Chrome, Safari and Opera */
::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
::-webkit-scrollbar {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}


/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

::selection {
    background-color: #D3D3D3;
    color: var(--clr-gray-dark);
}


/*-----------------------------------
- PRELOADER STYLING
-----------------------------------*/

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner {
    border: 4px solid #f3f3f3;
    /* border-top: 4px solid #3498db; */
    border-top: 4px solid red;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/*-----------------------------------
- BODY STYLING
-----------------------------------*/

body {
    font-family: var(--font-body) !important;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading) !important;
}

.container-fluid {
    margin: 0 !important;
    padding: 0 !important;
}



/*-----------------------------------
- ##SCROLL TO TOP
-----------------------------------*/

/* #scrollToTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: rgb(250, 46, 46);
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.4s ease;
    display: none;
  }
  
#scrollToTopBtn:hover {
    background: var(--clr-black-2);
    color: var(--clr-secondary);
} */


#scrollToTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: rgb(250, 46, 46);
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
  
#scrollToTopBtn:hover {
    background: var(--clr-black-2);
    color: var(--clr-secondary);
}



/* .scroll-top-button a {
    text-decoration: none;
}

.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 30px;
    bottom: -30px;
    z-index: 99999;
    background: rgb(250, 46, 46);
    width: 44px;
    height: 44px;
    border-radius: 4px;
    transition: all 0.4s;
    border: none;
}

.scroll-top i {
    font-size: 1rem;
    color: var(--clr-secondary);
    line-height: 0;
}

.scroll-top:hover {
    background: var(--clr-black-2);
    color: var(--clr-secondary);
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
    bottom: 20px;
} */



/*-----------------------------------
- ##HEADER PAGE STYLING
-----------------------------------*/

/* NAVBAR STYLING */

.navbar {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    padding: 8px 0;
    z-index: 9999;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.75);
}

.navbar.is-sticky .navbar-brand img {
    max-width: 80%;
}

.navbar.is-sticky {
    position: fixed;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    backdrop-filter: blur(10px);
    /* For Firefox */
    -webkit-backdrop-filter: blur(10px) !important;
    animation: slideDown 0.35s ease-out;
}

@keyframes slideDown {
    from {
      transform: translateY(-100%);
    }
    to {
      transform: translateY(0);
    }
}

.nav-item .nav-link {
    color: var(--clr-black) !important;
    font-size: 1rem;
    font-weight: 500;
    transition: all 500ms ease;
}

.nav-item .nav-link:hover {
    color: var(--clr-primary) !important;
}

.nav-item.active > .nav-link {
    color: var(--clr-primary) !important;
}

.nav-item.active > .download {
    color: var(--clr-secondary) !important;
}

.nav-item .nav__active {
    color: var(--clr-primary) !important;
}

.nav-item .download {
    background-color: var(--clr-primary);
    color: var(--clr-secondary) !important;
    font-weight: 500;
    /* border-radius: 50px 50px; */
    border-radius: 10px;
    /* padding: 10px 24px !important; */
    padding: 8px 22px !important;
    transition: all 500ms ease;
}

.nav-item .download:hover {
    color: var(--clr-secondary) !important;
    box-shadow: rgba(255, 0, 0, 0.342) 0px 7px 29px 0px;
}

.navbar-toggler,
.navbar-toggler:focus,
.navbar-toggler:active {
    box-shadow: none !important;
    border: 0 !important;
}

#checkbox {
    display: none;
}

.toggle {
    position: relative;
    width: 36px;
    height: 32px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition-duration: .5s;
}

.bars {
    width: 100%;
    height: 4px;
    background-color: rgb(250, 30, 30);
    border-radius: 8px;
}

#bar2 {
    transition-duration: .8s;
}

#bar1,
#bar3 {
    width: 80%;
}

#checkbox:checked+.toggle .bars {
    position: absolute;
    transition-duration: .5s;
}

#checkbox:checked+.toggle #bar2 {
    transform: scaleX(0);
    transition-duration: .5s;
}

#checkbox:checked+.toggle #bar1 {
    width: 100%;
    transform: rotate(45deg);
    transition-duration: .5s;
}

#checkbox:checked+.toggle #bar3 {
    width: 100%;
    transform: rotate(-45deg);
    transition-duration: .5s;
}

#checkbox:checked+.toggle {
    transition-duration: .5s;
    transform: rotate(180deg);
}

@media screen and (max-width: 768px) {
    .nav__download__button {
        display: none;
    }
    .mobile__download__button {
        display: block;
        background: var(--clr-error);
        color: white;
        padding: 8px 14px;
        border-radius: 10px;
        font-size: 14px;
    }
    .navbar-brand img {
        width: 120px;
    }
}

@media screen and (min-width: 767px) {
    .mobile__download__button {
        display: none;
    }
}





/*-----------------------------------
- ##HOME PAGE STYLING
-----------------------------------*/

.hero__wrapper {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 70px;
}


.hero__slider {
    width: 100%;
    height: 100%;
}

.hero__slide {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: auto;
}

.hero__slide img {
    display: block;
    width: 100%;
    height: 100%;
}

.hero__slide .desktop {
    display: block;
    width: 100%;
    height: 100%;
}

.hero__slide .mobile {
    display: none;
}

.swiper-pagination-bullet {
    width: 14px !important;
    height: 14px !important;
    /* padding: 24px !important; */
}

.swiper-pagination-bullet-active {
    width: 14px !important;
    height: 14px !important;
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: var(--clr-primary) !important;
}



.overlay-text {
    position: absolute;
    top: 50%;
    width: 40%;
    transform: translateY(-50%);
    color: white;
    text-align: left;
    padding: 10px;
    border-radius: 5px;
}

.hero__title,
.hero__text {
    color: var(--clr-gray-dark);
    margin-bottom: 16px;
}

.hero__title {
    font-size: 2.4rem;
    font-weight: 800;
}

.hero__text p {
    color: #141414;
    font-size: 1.125rem;
}





/* WELCOME MESSAGE */

.welcome__img img {
    width: 100%;
    height: auto;
}



/* WHY CHOOSE ITALKS */

.why {
    background: #f8f8f8;
}

.why__card {
    background-color: #ffffff;
    text-align: center;
    border-radius: 10px;
    /* padding: 40px 20px; */
    padding: 20px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.why__img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    margin-bottom: 10px;
}

.why__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 500ms ease;
}

.why__icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-color: rgb(248 249 255);  */
    background-color: rgb(253, 241, 241);
    margin-bottom: 10px;
    transition: all 500ms ease;
}

.why__icon i {
    font-size: 36px;
    /* color: rgb(112 131 245); */
    color: rgb(245, 112, 112);
    transition: all 500ms ease;
}

.why__card:hover .why__icon {
    /* background-color: rgb(112 131 245); */
    background-color: rgb(245, 112, 112);
}

.why__card:hover .why__icon i {
    /* color: rgb(248 249 255); */
    color: rgb(253, 241, 241);
}

.why__img:hover img {
    scale: 1.1;
}

.why__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--clr-gray-dark);
}



/* HOW IT WORKS */

.how__img img {
    width: 100%;
    /* height: 400px;
    object-fit: cover; */
    height: auto;
    border-radius: 10px;
}

.who__img img {
    width: 100%;
    height: auto;
}



/* TESTIMONIALS */

.testimonial__content {
    position: relative;
    height: 100%;
}

/* .myTestimonials {
    width: 100%;
    height: 100%;
} */

.testimonial__item {
    overflow: hidden;
    position: relative;
    background-color: var(--clr-gray-light);
    padding: 20px;
    text-align: center;
    /* width: 100%; */
    /* height: auto; */
}


/* .testimonial__slider {
	overflow: hidden;
	margin: 0 auto;
	padding: 10px;
	background-color: #eee;
	box-shadow: inset 0 0 6px rgba(0, 0, 0, .1);

}

.testimonial__item {
    display: flex;
    flex: 0 0 auto;
    width: 100%;
    height: auto;
} */



/* LISTENERS */

.our-listeners {
    background: #f8f8f8;
}

.listeners__cards {
    width: 100%;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 10px;
}

.listeners__card {
    width: 100%;
    background-color: var(--clr-secondary);
    /* background-image: linear-gradient( 135deg, #F05F57 0%, #360940 100%); */
    /* color: var(--clr-secondary); */
    border-radius: 20px;
    padding: 40px 20px;
    transition: all 500ms ease;
    text-align: center;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

/* .listeners__card__head {
    background-color: var(--clr-gray-light);
    border-radius: 20px 20px 0 0;
} */


.lis__img {
    width: 100px;
    height: 100px;
    overflow: hidden;
    border-radius: 50%;
    border: 2px solid var(--clr-error);
    position: relative;
    margin-bottom: 20px;
}

.lis__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 500ms ease;
}

.lis__img:hover img {
    scale: 1.1;
}


.view__btn {
    text-decoration: none;
    font-size: 1rem;
    /* background-color: #ff0000; */
    color: var(--clr-error);
    /* color: var(--clr-secondary); */
    /* padding: 8px 30px; */
    border-radius: 50px;
    /* transition: all 500ms ease; */
}

.view__btn:hover {
    /* border-radius: 50px; */
    color: #ff0000;
    /* box-shadow: rgba(255, 0, 0, 0.342) 0px 7px 29px 0px; */
}

/* .home__lis__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 20px 10px rgba(255, 0, 0, 0.2);
} */







/* DOWNLOAD THIS APP */

/*
.app-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center;
    width: 45%;
    max-width: 160px;
    color: #fff;
    margin: 10px 10px 10px 0;
    padding: 8px;
    text-align: left;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.625rem;
    text-transform: uppercase;

    background-color: #101010;
    transition: background-color 0.25s linear;
}

.app-btn:hover {
    background-color: #454545;
}

.app-btn i {
    width: 20%;
    text-align: center;
    font-size: 28px;
    margin-right: 7px;
}

.app-btn .big-txt {
    font-size: 1.125rem;
    text-transform: capitalize;
} */


.download__section {
    /* background-color: #222426;
    background-color: ; */
    background-color: #FF9A8B;
    /* background-image: linear-gradient(90deg, #FF9A8B 0%, #FF6A88 55%, #FF99AC 100%); */
    background-image: linear-gradient(90deg, #FF9A8B 0%, #FF6A88 85%, #FF99AC 100%);

}


/* .download__wrapper {
    padding: 100px 3.5vw 3.5vw 0;
} */

/* .download__wrapper {
    padding-left: 20px;
    padding-right: 20px;
} */

.android__app-img {
    width: 170px !important;
    height: 50px !important;
}

.ios__app-img {
    width: 150px !important;
    height: 50px !important;
}

.download__content p {
    font-size: 1.125rem;
    line-height: 1.5rem;
    color: var(--clr-black-2);
}

.download__content .section__title {
    /* color: var(--clr-secondary); */
    margin-bottom: 20px;
}


.download__img img {
    margin-top: -90px;
    width: 100%;
    height: auto;
}









.coming__image img {
    width: 100%;
    height: auto;
}


.coming__image svg {
    width: 100%;
    height: auto;
}


/* .section__head {
    padding: 0 100px;
} */

.section__title {
    /* text-transform: uppercase; */
    font-size: 2.4rem;
    color: var(--clr-gray-dark);
    font-weight: 700;
}


.alone__card {
    width: 100%;
    background-color: var(--clr-secondary);
    padding: 40px 20px;
    border-radius: 20px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    transition: all 500ms ease;
}

.alone__text {
    font-size: 1.125rem;
    color: var(--clr-gray-dark);
    font-weight: 300;
    text-transform: capitalize;
}

.alone__card small {
    font-weight: 600;
}

.alone__pill {
    width: 150px;
    background-color: #b3b3b33b;
    border-radius: 50px 50px;
    padding: 4px 20px;
}

.alone__card:hover {
    transform: translateY(-10px);
}











.accordion-item:last-of-type>.accordion-header .accordion-button.collapsed {
    border-bottom-right-radius: 40px !important;
    border-bottom-left-radius: 40px !important;
}

.accordion-item:first-of-type>.accordion-header .accordion-button {
    border-top-left-radius: 40px !important;
    border-top-right-radius: 40px !important;
}

.accordion-item {
    background-color: transparent !important;
    border: 0 !important;
    border-radius: 40px !important;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.accordion-button:not(.collapsed) {
    color: var(--clr-gray-dark) !important;
    background-color: transparent !important;
    /* border: 0 !important; */
    /* border-bottom: 1px solid #b3b3b3; */
    box-shadow: none !important;
    /* border-radius: 40px; */
}



.accordion:active {
    background-color: none !important;
}

/* .accordion-item:first-of-type>.accordion-header .accordion-button {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
} */

.accordion-body {
    /* background-color: #b3b3b33b; */
    border-radius: 0 0 40px 40px;
}


.accordion-button {
    font-size: 1rem !important;
    font-weight: 700;
}

.accordion-item {
    border-radius: 16px !important;
    /* Adjust the radius as needed */
    overflow: hidden !important;
    /* Ensures the border radius is respected */
}

.accordion-button {
    border-radius: 16px !important;
    /* Same radius for the button */
}

.accordion-button:not(.collapsed) {
    border-radius: 16px !important;
    /* Maintain the same radius when expanded */
}


/* HOME ABOUT */

.home__about {
    background-color: #b3b3b33b;
}


.home__about {
    box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 4px 0px inset;
}






/*-----------------------------------
- ##ABOUT PAGE STYLING
-----------------------------------*/

.page {
    margin-top: 70px !important;
    padding: 50px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: var(--clr-secondary);
}

.about {
    background-image: url('./bg.jpg');
}

.about__page {
    background-image: url('../images/about_bg2.jpg');
    /* background-image: url('../images/about_bg.jpg'); */
    /* background-image: linear-gradient(55.15deg, #ff3434 -7.09%, #c269fd 51.72%, #ff0055 101.48%); */
}

.listeners__page {
    background-image: url('../images/listener_bg2.jpg');
}

.belistener__page {
    background-image: url('../images/belistener_bg.jpg');
}

.blog__page {
    background-image: url('../images/blog_bg.jpg');
}

.faqs__page {
    background-image: url('../images/faq_bg2.jpg');
}

.policy__page {
    background-image: url('../images/term_bg.jpg');
}

.contact_page {
    background-image: url('../images/contact_us.jpg');
}


.breadcrumb {
    justify-content: center;
}

.breadcrumb li {
    font-size: 1.125rem !important;
    font-weight: 600 !important;
    color: var(--clr-gray-light) !important;
}

.breadcrumb li a {
    text-decoration: none;
    color: var(--clr-secondary);

}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--clr-secondary) !important;
}

.about__welcome p {
    font-size: 1.125rem;
    font-weight: 400;
    margin-bottom: 4px;
}

.about__content p {
    font-size: 1.125rem;
    font-weight: 400;
}


/*-----------------------------------
- ##LISTENERS PAGE STYLING
-----------------------------------*/

.sub__title {
    font-size: 1.625rem;
    color: var(--clr-gray-dark);
    font-weight: 600;
}


.listeners__btn {
    background-color: transparent;
    text-decoration: none;
    border: 1px solid var(--clr-primary);
    color: var(--clr-gray-dark);
    border-radius: 50px 50px;
    padding: 6px 16px;
    transition: all 500ms ease;
}

.listeners__btn:hover {
    background-color: var(--clr-primary);
    color: var(--clr-secondary);
    box-shadow: rgba(255, 0, 0, 0.342) 0px 7px 29px 0px;
}

/* .listeners__btn {
    background-color: transparent;
    text-decoration: none;
    border: 2px solid var(--clr-primary);
    box-shadow: 3px 3px var(--clr-primary);

    color: var(--clr-gray-dark);
    border-radius: 10px;
    padding: 6px 16px;
    transition: all 500ms ease;
}

.listeners__btn:active {
    box-shadow: none;
    transform: translate(3px, 3px);
} */


/* MODAL OTP */

.modal {
    z-index: 9999999;
}

.modal-content {
    background-color: var(--clr-secondary) !important;
    border: 0 !important;
    border-radius: 10px !important;
    width: 100%;
    padding: 20px;
}

.modal__title {
    font-size: 1.225rem;
    font-weight: 800;
    color: #093030;
    letter-spacing: 1px;
}

.modal__form label {
    font-size: 1.125rem;
    color: var(--clr-black-2);
    font-weight: 500;
}



/* OTP IMage */
.otp__image {
    width: 220px;
    height: 220px;
    overflow: hidden;
}

.otp__image img {
    width: 100%;
    height: 100%;
}

/* .otpImage {
    position: relative;
    height: 100%;
}

.otpImage img {
    width: 100%;
    height: auto;
    object-fit: cover;
} */



/* .modal__rightwrap {
    position: relative;
    height: 100%;
    background-color: green;
} */

/* .modal__rightwrap {
    padding: 40px;
} */





.otp__button {
    text-decoration: none;
    /* background-color: #ff0000; */
    background-color: var(--clr-error);
    border-radius: 50px 50px;
    padding: 8px 20px;
    outline: none !important;
    border: 0;
    color: var(--clr-secondary);
}

.phone__section input {
    /* background-color: #f1f1f1 !important; */
    height: 48px;
    border: 1px solid #e5e5e5 !important;
    border-radius: 8px !important;
    transition: all 500ms ease;
    padding: 20px;
    font-size: 1.125rem;
    color: var(--clr-gray-dark);
    font-weight: 500;
}

.phone__section input:focus {
    border: 1px solid #979797 !important;
}

#otp-form {
    width: 100%;
    display: flex;
    gap: 20px;
    align-items: center;
    /* justify-content: center; */
    justify-content: space-evenly;

}

#otp-form input {
    border: none;
    border-bottom: 2px solid #979797;
    /* background-color: #f1f1f1; */
    color: var(--clr-gray-dark);
    font-size: 1.2rem;
    text-align: center;
    padding: 10px;
    width: 100%;
    max-width: 40px;
    height: 40px;
    /* border-radius: 4px; */
    /* outline: 2px solid rgb(214, 214, 214); */
    outline: none;
}

#otp-form input:focus-visible {
    /* outline: 2px solid royalblue; */
    border-bottom: 2px solid royalblue;

}

#otp-form input.filled {
    outline: 2px solid rgb(7, 192, 99);
}


.resendOtp {
    text-align: center;
    text-decoration: none;
    color: var(--clr-gray);
}


.resendOtpLink {
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    color: royalblue;
}


.listener__card {
    /* text-decoration: none;
    display: block;
    color: inherit; */
    background-color: var(--clr-secondary);
    border-radius: 20px;
    padding: 30px 20px;
    /* box-shadow: rgba(255, 0, 0, 0.342) 0px 2px 15px 0px; */
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
        rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
    transition: all 500ms ease;

}


.listener__card__image {
    overflow: hidden;
    position: relative;
    width: 64px;
    height: 64px;
    /* border: 3px solid var(--clr-gray-dark); */
    border-radius: 50%;
    box-shadow: rgba(255, 0, 0, 0.342) 0px 2px 15px 0px;

}

.listener__card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card__title {
    font-size: 1.125rem;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 1.5rem;
}

.designation {
    font-size: 0.875rem;
    font-weight: 300;
    color: var(--clr-gray);
}

.text {
    font-size: 0.975rem;
    font-weight: 400;
    margin-bottom: 0;
}

.listener__card__body .text {
    padding: 20px 0;
}


.rated {
    font-size: 0.875rem;
    color: #FDCC0D;
}

.unrated {
    font-size: 0.875rem;
    color: var(--clr-gray-light);
}

/* .button {
    text-decoration: none;
    background-color: transparent;
    color: var(--clr-gray-dark);
    border: 2px solid var(--clr-primary);
    border-radius: 50px 50px;
    padding: 6px 20px;
    transition: all 500ms ease;
}

.button:hover {
    background-color: var(--clr-primary);
    color: var(--clr-secondary);
    box-shadow: rgba(255, 0, 0, 0.342) 0px 7px 29px 0px;
} */


.button {
    text-decoration: none;
    color: var(--clr-secondary);
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    border: 0;
    background-color: white;
    box-shadow: rgb(0 0 0 / 5%) 0 0 8px;
    /* letter-spacing: 1.5px; */
    text-transform: uppercase;
    background-color: red;
    /* background-color: #E6C317; */
    font-size: 0.975rem;
    font-weight: 500;
    transition: all 0.5s ease;
    text-transform: capitalize;
}

.button:hover {
    /* letter-spacing: 3px; */
    background-color: red;
    color: hsl(0, 0%, 100%);
    box-shadow: rgba(255, 0, 0, 0.5) 0px 7px 29px 0px;
}

.button:active {
    /* letter-spacing: 3px; */
    background-color: red;
    color: hsl(0, 0%, 100%);
    box-shadow: rgba(255, 0, 0, 0.5) 0px 0px 0px 0px;
    transform: translateY(10px);
    transition: 100ms;
}


.listener__card:hover {
    box-shadow: 0 4px 20px 10px rgba(255, 0, 0, 0.2);
}





/*-----------------------------------
- ##LISTENER DETAILS PAGE STYLING
-----------------------------------*/

.listener__link {
    color: inherit;
}

.listener__details__wrapper {
    background-color: #FFFFFF;
    border-radius: 20px;
    padding: 20px 40px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

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

.listener__details__info .profile {
    display: flex;
    align-items: center;
}

.profile img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-right: 20px;
}

.profile .profile__name {
    font-weight: 700;
}

.listener__talk .button {
    border-radius: 10px !important;
}

.listener__details__heading {
    font-weight: 700;
}

.listener__details__text {
    font-size: 1.125rem;
    line-height: 1.5rem;
    font-weight: 400;
    color: rgba(75, 85, 99, 1);
}

.listener__details__expertise .expertise__button {
    padding: 8px 16px;
    background: rgba(253, 1, 1, 0.1);
    color: rgba(253, 1, 1, 1);
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 20px;
    border-radius: 50px;
}

.listener__details__other i {
    color: #9CA3AF;
}



/*-----------------------------------
- ##BLOG PAGE STYLING
-----------------------------------*/

/* .listeners,
.listener__details,
.blog__inner,
.blog__details,
.faqs {
    margin-top: 60px !important;
} */


.blog__card {
    position: relative;
    background-color: var(--clr-secondary);
    color: var(--clr-gray-dark);
    border: 1px solid var(--clr-gray-light);
    border-radius: 10px;
    /* box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px; */
    transition: all 500ms ease;
    /* padding: 0 0 20px 0; */
    margin-bottom: 20px;
}

.blog__info {
    padding: 20px;
}

.blog__title {
    /* font-family: var(--font-heading); */
    color: var(--clr-gray-dark);
    font-size: 1.5rem;
    font-weight: 700;
    /* letter-spacing: 1px; */
}

.blog__text {
    font-size: 0.975rem;
    color: var(--clr-gray-dark);
    font-weight: 400;
}

.tag {
    font-weight: lighter;
    color: grey;
}

.card__img {
    overflow: hidden;
    position: relative;
    /* top: -20px; */
    display: flex;
    justify-content: center;
    transition: all 500ms ease;
}

.card__img div {
    width: 100%;
    height: 220px;
}

.card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.blog__meta i {
    font-size: 0.675rem;
    color: var(--clr-black);
}

.blog__meta .meta__text {
    color: var(--clr-gray);
    font-size: 0.875rem;
}

.blog__btn .button {
    letter-spacing: 1px;
    border-radius: 10px;
}

.blog__btn .button:hover {
    border-radius: 10px;
}

/* .blog__card:hover {
    transform: scale(1.04) rotate(1deg);
} */

/* .blog__card:hover .card__img {
    top: 0;
} */

/* .blog__card:hover .blog__btn .button {
    box-shadow: rgba(255, 0, 0, 0.5) 0px 7px 29px 0px;
}

.blog__card:hover .blog__btn .button:active {
    background-color: red;
    color: hsl(0, 0%, 100%);
    box-shadow: rgba(255, 0, 0, 0.5) 0px 0px 0px 0px;
    transform: translateY(10px);
    transition: 100ms;
} */





/*-----------------------------------
- ##BLOG DETAILS PAGE STYLING
-----------------------------------*/

.details__img img {
    max-width: 1200px;
    width: 100%;
    max-height: 400px !important;
    min-height: 400px !important;
    height: 100%;
    border-radius: 10px;
    border: 2px solid #b3b3b3;
    object-fit: cover;
}

.blog__content {
    padding: 10px;
}

.blog__content h1,
.blog__content h2,
.blog__content h3,
.blog__content h4,
.blog__content h5,
.blog__content h6 {
    color: var(--clr-gray-dark);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.blog__content h1 {
    font-size: 2.5rem;
}

.blog__content h2 {
    font-size: 2.2rem;
}

.blog__content h3 {
    font-size: 1.8rem;
}

.blog__content h4 {
    font-size: 1.625rem;
}

.blog__content h5 {
    font-size: 1.4rem;
}

.blog__content h6 {
    font-size: 1.4rem;
}

.blog__content p {
    font-size: 1.1rem;
    color: var(--clr-gray-dark);
    font-weight: 400;
}

.blog__content blockquote {
    margin-top: 30px;
    margin-bottom: 30px;
    margin-left: 20px;
    border-left: 5px solid var(--clr-error);
    background-color: #ececec;
    padding: 20px;
    border-radius: 4px;
    font-size: 1.125rem;
    font-weight: 600;
}

.recent__img__box {
    width: 60px;
    height: 60px;
    overflow: hidden;
    position: relative;
}

.recent__img__box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* BLOG SIDEBAR */

.blog__widget__title {
    /* color: #757575; */
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.625rem;
    margin-bottom: 20px;
}

.blog__widget {
    border-radius: 10px;
    background: var(--clr-secondary);
    /* padding: 30px; */
    padding: 30px 30px 10px 30px;
    margin-bottom: 30px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.widget__categories {
    padding: 32px 30px 16px;
}

.widget__categories ul li {
    padding: 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.155);
}

.widget__categories ul li:last-child {
    border-bottom: none;
}

.widget__categories ul li:first-child a {
    padding-top: 0;
}

.widget__categories ul li a {
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    color: #333333;
    /* color: #b3b3b3; */
    padding: 6px 0;
    font-size: 16px;
    transition: all 500ms ease;
}

.widget__categories ul li a:hover,
.widget__categories ul li a:focus {
    color: var(--clr-error);
}



/* .widget__post {
    position: relative;
} */

.latest__post {
    width: 100%;
    /* height: 100%; */
}

.post__slide {
    /* display: flex;
    justify-content: center;
    align-items: center; */
    position: relative;
    /* position: relative; */
}

.post__slide .item {
    /* display: block; */
    width: 100%;
    height: 100%;
}

.post__slide .thumb img {
    width: 100%;
    max-height: 185px !important;
    min-height: 185px !important;
    height: 100%;
    height: auto;
}


.latest__post .post__slide .item .thumb {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 25px;
}

.post__title a {
    text-decoration: none;
    color: var(--clr-gray-dark);
    transition: all 500ms ease;
}

.post__title a:hover,
.post__title a:focus {
    color: var(--clr-error);
}

.meta__post a {
    text-decoration: none;
    color: #b3b3b3;
}

.widget__tags {
    padding: 31px 30px 30px;
}

.widget__tags ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.widget__tags ul li a {
    text-decoration: none;
    text-transform: capitalize;
    color: var(--clr-gray-dark);
    font-size: 0.875rem;
    padding: 6px 20px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    transition: all 500ms ease;

}

.widget__tags ul li a:hover {
    background-color: #ff0000;
    color: var(--clr-secondary);
    box-shadow: rgba(255, 0, 0, 0.342) 0px 7px 29px 0px;
    border: 1px solid transparent;
}





/*-----------------------------------
- ## BE A LISTENERS FORM STYLING
-----------------------------------*/

.listeners__form__body {
    height: 100%;
    overflow-y: auto;
    background-image: linear-gradient(to top, #e6e9f0 0%, #eef1f5 100%);
}

.form__container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.top__box {
    width: 90%;
    max-width: 650px;
    margin-bottom: 20px;
}

.lis__form__img img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}


.listeners__form {
    background-color: transparent;
    width: 90%;
    max-width: 650px;
    border-radius: 10px;
    border: 1px;
}

.box {
    background-color: var(--clr-secondary);
    width: 100%;
    padding: 30px 20px 16px 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    border: 1px solid var(--clr-gray-light);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;

}

.head__box {
    border-top: 8px solid var(--clr-black);
}

.form__title {
    font-size: 1.625rem;
    font-weight: 600;
    color: var(--clr-black-2);
}

.subtitle {
    font-size: 1.2rem;
    color: var(--clr-black);
    text-transform: capitalize;
    font-weight: 500;
}

.text-2 {
    font-size: 0.875rem;
    color: var(--clr-gray);
}

.email__check {
    font-size: 0.875rem !important;
}

.upload__meta {
    font-size: 0.875rem;
}

.listeners__form .form-label {
    font-size: 1rem;
    color: var(--clr-black);
    font-weight: 400;
    margin-bottom: 5px;
}

.switch__email {
    color: #1a73e8;
    cursor: pointer;
}

.listeners__form .form-label .required {
    color: red;
}

.listeners__form .form-control,
.listeners__form .form-select {
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    border-bottom: 1px solid #a3a3a352 !important;
    transition: all 500ms ease;
}

.listeners__form .form-control:focus,
.listeners__form .form-select:focus {

    border-color: var(--clr-black) !important;

}





.form-check-input:checked {
    background-color: var(--clr-black);
    border-color: var(--clr-black);
}

.form-check-input:focus {
    border-color: var(--clr-black);
}

.check__btn {
    background-color: var(--clr-black-2);
    color: var(--clr-secondary);
    padding: 10px 20px;
    border-radius: 10px;
}

.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
    background-color: var(--clr-black);
    border-color: var(--clr-black-2);
}


/* @media (min-width: 1024px) {
    .container {
        max-width: 800px !important;
    }
} */

.error {
    color: var(--clr-error);
    font-size: 0.9em;
    display: none;
}

input:invalid {
    border: 2px dashed red !important;
}

.form__button {
    text-decoration: none;
    border: none;
    background-color: var(--clr-black);
    color: var(--clr-secondary);
    font-size: 1.125rem;
    padding: .375rem 1rem;

    border-radius: 8px;
    transition: all 500ms ease;
}

.lan__wrap .form__button {
    border-radius: 6px;
}

.form__button:hover {
    background-color: var(--clr-black-2);
}

.languages {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.laguages span {
    color: var(--clr-black);
}



.clear__form {
    background-color: transparent !important;
    border: none !important;
    outline: none;
    color: var(--clr-gray);
    transition: all 500ms ease;
}

.clear__form:hover {
    color: var(--clr-black);
}








.file-upload {
    display: none;
    /* Hide the default file input */
}

.custom-file-upload {
    display: inline-block;
    padding: 8px 20px;
    cursor: pointer;
    /* background-color: transparent; */
    color: #1a73e8;
    border-radius: 5px;
    text-align: center;
    border: 1px solid #a3a3a352;
    transition: all 500 ease;
}

/* .custom-file-upload:hover {
    border-color:var(--clr-black);
} */

.file-info {
    margin-top: 10px;
}






/*-----------------------------------
- ##DOWNLOAD PAGE STYLING
-----------------------------------*/

.download__page {
    margin-top: 76px;
}

.download__sub__title {
    text-transform: uppercase;
    font-size: 2.4rem;
    font-weight: 900;

}

.download__sub__title span {
    color: transparent;
    background-clip: text;
    /* background-image: linear-gradient(55.15deg, #8EA5FE -7.09%, #BEB3FD 51.72%, #90D1FF 101.48%); */
    background-image: linear-gradient(55.15deg, #ff3434 -7.09%, #c269fd 51.72%, #ff0055 101.48%);
}


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

.app__qr img {
   max-width: 150px;
   max-height: 150px;
   width: 100%;
   height: 100%;
   transition: all 500ms ease;
}

.app__qr:hover img{
    transform: scale(1.1);
}

.download__page__wrapper {
   overflow: hidden;
}

.download__page__image img{
   max-width: 100%;
   width: 100%;
   height: auto;
}

.download__info {
   padding-left: 5vw;
}


@media screen and (max-width: 768px) {

    .download__img img,
    .download__page__image img {
        width: 100%;
        height: auto;
    }

    .download__app {
        flex-direction: column;
    }

}










/*-----------------------------------
- ##FOOTER PAGE STYLING
-----------------------------------*/

/* FOOTER STYLING */

.footer__wrapper {
    /* background-color: var(--clr-gray-dark); */
    background-color: #121212;
    padding: 40px 0;
    /* color: var(--clr-gray-light); */
    color: #DDDDDD;
    overflow: hidden;
}

.footer__about {
    font-size: 0.875rem;
    font-weight: 300;
    color: var(--clr-gray-light);
}

.footer__text .text,
.navbar-brand {
    font-size: 1.2rem !important;
    letter-spacing: 1px;
}

.download__btn {
    overflow: hidden;
    position: relative;
    width: 120px !important;
    height: auto;
    opacity: 1;
    transform: all 500ms ease;
}

.download__btn img {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
}

.download__btn:hover {
    opacity: 0.8;
}



/* FOOTER WIDGET */

.widget__title {
    color: var(--clr-secondary);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
}

.widget__item {
    padding: 6px 0;
}

.widget__item .widget__link {
    text-decoration: none;
    color: var(--clr-gray-light);
    font-size: 0.875rem;
    transition: all 500ms ease;
}


.widget__item .widget__link:hover {
    color: var(--clr-primary);
}

.widget__icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50px;
    background-color: var(--clr-primary);
    border: 2px solid var(--clr-primary);
}

.widget__icon i {
    font-size: 0.875rem;
    color: var(--clr-secondary);
}


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

.widget__icon__loc {
    margin-right: 12px;
    flex: 0 0 auto;
}

.location {
    flex: 1;
    font-size: 0.875rem;
    font-weight: 300;
}


.social__icon {
    text-decoration: none;
    color: var(--clr-gray-light);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50px;
    background-color: var(--clr-primary);
    border: 2px solid var(--clr-primary);
    transition: all 500ms ease;
}

.social__icon:hover {
    scale: 1.2;
    box-shadow: rgba(255, 0, 0, 0.342) 0px 7px 29px 0px;
}


.ios__app__img{
    width: 116px !important;
    height: 36px !important;
}
.android__app__img{
    width: 120px !important;
    height: 36px !important;
}


/* FOOTER BOTTOM */

.footer__bottom {
    padding: 20px 0;
    text-align: center;
    /* background-color: var(--clr-black-3); */
    /* background-color: #141414; */
    background-color: #000000;
    color: #FFFFFF;

    /* color: var(--clr-secondary); */
}

.footer__bottom a:hover {
    text-decoration: underline !important;
}

.footer__bottom .copyright {
    font-size: 0.875rem;
    margin-bottom: 0;
    font-weight: 300;
}








/*-----------------------------------
- ##BE A LISTENER PAGE STYLING
-----------------------------------*/


.belistener__wrapper {
    background-color: #FFFFFF;
    /* border: 1px solid black; */
    display: flex;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
    padding: 16px;
}

.left__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 35%;
    /* padding: 20px;  */
    /* background-color: #eee;  */
    /* border-radius: 8px;  */
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
    margin-right: 16px;
}

.side__titles {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.title__name {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10px 0;
    width: 100%;
    gap: 20px;
}

.step {
    text-align: right;
    flex: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    /* background-color: #007BFF; */
    background: #3333;
    border: 2px solid #777;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
    /* position: relative; */
}

/* .step-number::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    bottom: -25px;
    transform: translateX(-50%);
    width: 2px;
    height: 400px;
    background-color: darkred;
} */

.form__active {
    background: #ff0000;
    border: 2px solid darkred;
}


.page-2 {
    padding: 50px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: var(--clr-secondary);
}

.right__container {
    width: 65%;
    padding: 16px 8px;
}

.right__container .form-control:focus,
.right__container .form-select:focus {
    border-color: #333333 !important;
}

.right__container .form-control {
    font-size: 1.125rem;
}

.belistener__btn {
    background: #212121;
    border-radius: 8px;
    border: none;
    color: #FFFFFF;
    padding: 12px 70px;
    transition: all 500ms ease;
}

.previous__btn {
    border-radius: 8px;
    border: 1px solid #212121;
    color: #000000;
    padding: 12px 60px;
    transition: all 500ms ease;
}

.belistener__btn:hover {
    background: #000000;
}

.custom-file-upload {
    /* background-color: #D8D8D8; */
    outline: none;
    border: none ;
    background-color: transparent;
    /* padding: 10px 20px; */
    /* border-radius: 5px; */
    color: #696969;
    padding: 0 !important;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    width: 100%;
    display: flex;
    /* justify-content: center; */
    transition: all 500ms ease;
}

.custom-file-upload span {
    /* width: 100%; */
    border-bottom: 1px solid #696969;
}

/* .custom-file-upload:hover {
    background-color: #D8D8D865;
} */

.file-preview {
    max-width: 100%;
    max-height: 200px;
    border: 1px solid #ddd;
    margin-top: 10px;
    border-radius: 5px;
}




/* CUSTOM SELECT */

/*
    .custom-select {
        position: relative;
        display: inline-block;
        width: 100%;
    }

    .select-box {
        border: 1px solid #ccc;
        padding: 10px;
        cursor: pointer;
        background-color: #fff;
    }

    .options {
        display: none;
        position: absolute;
        border: 1px solid #ccc;
        background-color: #fff;
        width: 100%;
        max-height: 200px;
        overflow-y: auto;
        z-index: 1;
    }

    .option {
        padding: 10px;
        cursor: pointer;
    }

    .option:hover {
        background-color: #f0f0f0;
    }

    .selected {
        background-color: #007bff;
        color: white;
    }
*/



.custom-select {
    position: relative;
    display: inline-block;
    width: 100%;
}

/* .select-box {
    border: 1px solid #ccc;
    padding: 10px;
    cursor: pointer;
    background-color: #fff;
} */

.options {
    display: none;
    position: absolute;
    border: 1px solid #ccc;
    background-color: #fff;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1;
}


.option {
    padding: 10px;
    cursor: pointer;
    transition: all 500ms ease;
}

.option:hover {
    background-color: #ff000042;
    color: #093030;
}

.selected {
    background-color: #FF0000;
    color: #ffffff;
}


.save__btn {
    display: block;
    background: var(--clr-black);
    border-radius: 8px;
    border: none;
    color: var(--clr-secondary);
    padding: 10px 24px;
    /* width: ;*/
}


.top__titles {
    display: none;
}







/*-----------------------------------
- ##CONTACT PAGE STYLING
-----------------------------------*/

.contact__left,
.contact__card {
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 24px 28px;
    /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}

.contact__title {
    font-size: 1.8rem;
    color: #000000;
    font-weight: 700;
}

/* .contact__card__info {
    max-width: 350px !important;
} */



.rounded-social-buttons .social-button {
    display: inline-block;
    position: relative;
    cursor: pointer;
    border: 0.125rem solid transparent;
    padding: 0;
    text-decoration: none;
    text-align: center;
    color: #fefefe;
    font-weight: normal;
    transition: all 0.5s ease;
    margin-right: 0.25rem;
    margin-bottom: 0.25rem;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.25rem;
    line-height: 1.9em;
    border-radius: 1.25rem;
}


.rounded-social-buttons .fa-twitter, .fa-facebook-f, .fa-linkedin, .fa-tiktok, .fa-youtube, .fa-instagram {
    font-size: 20px;
}

.rounded-social-buttons .social-button.facebook {
    background: #3b5998;
}

.rounded-social-buttons .social-button.facebook:hover, .rounded-social-buttons .social-button.facebook:focus {
    color: #3b5998;
    background: #fefefe;
    border-color: #3b5998;
}

.rounded-social-buttons .social-button.twitter {
    /* background: #55acee; */
    background: #000000;
}

.rounded-social-buttons .social-button.twitter:hover, .rounded-social-buttons .social-button.twitter:focus {
    /* color: #55acee;
    background: #fefefe;
    border-color: #55acee; */
    color: #000000;
    background: #fefefe;
    border-color: #000000;
}

.rounded-social-buttons .social-button.linkedin {
    background: #007bb5;
}

.rounded-social-buttons .social-button.linkedin:hover, .rounded-social-buttons .social-button.linkedin:focus {
    color: #007bb5;
    background: #fefefe;
    border-color: #007bb5;
}

.rounded-social-buttons .social-button.youtube {
    background: #bb0000;
    border: 2px solid #bf0101;
}

.rounded-social-buttons .social-button.youtube:hover, .rounded-social-buttons .social-button.youtube:focus {
    color: #bb0000;
    background: #fefefe;
    border-color: #bb0000;
}

.rounded-social-buttons .social-button.instagram {
    /* background: #125688; */
    background: #833ab4;
    /* background: linear-gradient(
        #833ab4,#fd1d1d,#fcb045
    ); */

    background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
    border: 2px solid #d62976;

}

.rounded-social-buttons .social-button.instagram:hover, .rounded-social-buttons .social-button.instagram:focus {
    color: #fd1d1d;
    background: #fefefe;
    border-color: #fd1d1d;
}





.contact__card__info a {
    text-decoration: none;
    color: #000000;
    transition: all 500ms ease;
}

.contact__social a {
    text-decoration: none;
    color: #9CA3AF;
    padding: 12px;
}

.contact__social a i {
    font-size: 24px;
    transition: all 500ms ease;
}

.contact__card__info a:hover,
.contact__social a:hover  {
    color: #FF0000;
}

.contact__card__info i {
    color: #FF0000;
}

.contact__info__title {
    font-size: 1.125rem;
    font-weight: 700;
}

.contact__left input,
.contact__left textarea {
    border: 1px solid #D1D5DB !important;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05) !important;
    transition: all 500ms ease;
}

.contact__left label {
    font-weight: 700;

}

.contact__left input:active,
.contact__left input:focus,
.contact__left textarea:active,
.contact__left textarea:focus {
    border: 1px solid #8f9296 !important;
}

.contact__left input {
    height: 42px !important;
}






/*-----------------------------------
- ##TERMS & CONDITIONS PAGE STYLING
-----------------------------------*/

.terms p {
    font-size: 1.175rem;
    line-height: 2rem;
}

.terms li {
    font-size: 1.225rem;
}