@font-face {
    font-family: "kingred";
    src: url("../Fonts/kingred.woff2") format("woff2"),
        url("../Fonts/kingred.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100vw;
}

.container {
    max-width: 1326px;
    width: 90vw;
    margin: 0px auto;
    padding: 0px 15px;
}

h1 {
    font-size: 75px;
    font-weight: 700;
    line-height: 1.25;
    color: #111;
    font-family: "Merienda", cursive;
}

h2 {
    font-size: 40px;
    line-height: 1.32;
    color: #111;
    font-family: "kingred";
}

h3 {
    font-size: 34px;
    font-family: "kingred";
}

h5 {
    font-size: 27px;
}

h2 span,
h3 span {
    font-family: "kingred";
}

h6 {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 800;
    color: #111;
}

p {
    color: #111;
}

.custom-lists li {
    margin-bottom: 12px;
    position: relative;
    list-style: none;
}

.custom-lists li::before {
    content: "";
    position: absolute;
    left: -26px;
    top: 6px;
    width: 10px;
    height: 10px;
    border-radius: 50px;
    background: #2376d5;
}

.custom-lists li::after {
    position: absolute;
    left: -31px;
    top: 1px;
    width: 20px;
    height: 20px;
    border-radius: 50px;
    border: 1px solid #2376d5;
    content: "";
}

.subheading {
    font-size: 16px;
    letter-spacing: 7px;
    font-weight: 500;
    color: #2376d5;
}

.subheading-right {
    font-size: 16px;
    letter-spacing: 7px;
    font-weight: 500;
    color: #2376d5;
    position: relative;
    display: flex;
    align-items: center;
}

.subheading-right::after {
    content: "";
    background-color: #2276d5;
    display: inline-block;
    width: 76px;
    height: 2px;
}

.subheading-center {
    font-size: 16px;
    letter-spacing: 7px;
    font-weight: 500;
    color: #2376d5;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.subheading-center::before,
.subheading-center::after {
    content: "";
    display: inline-block;
    width: 77px;
    height: 2px;
    background: #2376d5;
}

.subheading-center::before {
    margin-right: 8px;
}

.highlight-color {
    color: #2376d5;
}

.new-branding .highlight-color {
    color: #b18657 !important;
}

.section-padding {
    padding: 80px 0px;
}

header.header_sec {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    z-index: 999999;
    background: #fff;
}

header.header_sec.new-branding {
    background: transparent !important;
    color: #fff;
}

header.new-branding .navbar-nav .nav-link {
    color: #fff !important;
}

.header-topBAr {
    background-color: #82bbff;
    padding: 11px 0px;
}

.bg--grey {
    background-color: #f8f8f8;
}

.top-bar {
    font-size: 13px;
    padding: 5px 0;
    color: #fff;
}

.top-bar .header-topBAr-left a {
    font-size: 16px;
}

.new-branding .gallery-sec-heading-text .subheading::before,
.new-branding .gallery-sec-heading-text .subheading::after,
.new-branding .success-heading-text .subheading::before,
.new-branding .success-heading-text .subheading::after,
.two-col-right-text .subheading::after {
    background-color: #b18657 !important;
}

.top-bar .header-topBAr-left img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.navbar {
    background: none !important;
}

.header--navbar .navbar-nav {
    gap: 35px;
}

.navbar-nav .nav-link {
    color: #111 !important;
    padding: 0px !important;
    transition: all 0.3s ease-in-out;
    position: relative;
}

/* .main-header.sticky .navbar-nav .nav-link {
    color: #0b1030 !important;
} */

.navbar-nav .nav-link.active {
    /* font-weight: 700; */
    color: #82bbff !important;
}

/* .main-header.sticky .navbar-nav .nav-link.active {
    color: #4753BF !important;
} */

.header-store-img a img {
    height: 35px;
    width: auto;
}

.navbar-nav .nav-link::before,
.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: #82bbff;
    transition: all 0.5s;
}

.navbar-nav .nav-link:hover {
    color: #82bbff !important;
}

.navbar-nav .nav-link::before {
    top: -5px;
    left: 0;
}

.navbar-nav .nav-link::after {
    bottom: -5px;
    right: 0;
}

.navbar-nav .nav-link:hover::before {
    width: 100%;
    transition: width 0.25s ease-in-out;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
    transition: width 0.25s ease-in-out 0.25s;
}

.custom-btn {
    background-color: #2376d5;
    color: #fff;
    border-radius: 5px;
    padding: 12px 36px;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    display: inline-block;
    border: 0px;
}

.custom-btn:hover {
    transform: scale(0.9);
    background-color: #2376d5;
    color: #fff;
}

.newsletter-wrapper input.form-control {
    background: transparent;
    color: #fff;
    padding: 10px;
    border-width: 3px;
}

.newsletter-wrapper input.form-control::placeholder {
    color: #fff;
}

.logo img {
    height: 75px;
    transition: all 0.3s ease-in-out;
}

body .site-mobile-logo img {
    height: 80px !important;
}

/* .main-header.sticky .logo img {
    height: 40px;
} */

.header-topBAr .header-topBAr-left p:first-child {
    padding-right: 17px;
    border-right: 1px solid #fff;
}

.header-topBAr .header-topBAr-left p:last-child {
    padding-left: 17px;
}

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

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%2382bbff' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

header.header_sec.new-branding .navbar-toggler-icon {
    filter: invert(.80);
}

/* .main-header.sticky .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%230B1030' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
} */

button.navbar-toggler {
    border: 0px !important;
    padding: 0px;
    box-shadow: none !important;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
}

.close-btn::after,
.close-btn::before {
    position: absolute;
    top: 13px;
    left: 5px;
    width: 20px;
    height: 4px;
    content: "";
    background: #2376d5;
    transform: rotate(45deg);
}

.close-btn::after {
    transform: rotate(-45deg);
}

.main-header {
    width: 100%;
    transition: all 0.3s ease-in-out;
    padding: 12px 0px;
}

.main-header.sticky {
    position: fixed;
    top: 0px;
    background: #fff;
    animation-duration: 0.8s;
    animation-name: animated;
    z-index: 9999999;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 10%);
    padding: 15px 0px;
}

header.header_sec.new-branding .main-header.sticky {
    background: rgba(0, 0, 0, 60%);
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 10%);
}

.top-bar-social-icon li a img {
    height: 19px;
}

@keyframes animated {
    0% {
        top: -100px;
    }

    100% {
        top: 0px;
    }
}

.scroll-to-top {
    position: fixed;
    bottom: 10px;
    right: 10px;
    background: #fff;
    border-radius: 50px;
    width: 40px;
    height: 40px;
    padding: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 40%);
    z-index: 99999;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    display: flex;
}

.scroll-to-top img {
    width: 100%;
}

.scroll-to-top:hover {
    transform: scale(1.1);
}

.header--navbar .navbar-nav li svg {
    width: 18px;
    height: 18px;
    display: none;
}

/* Hero Section */

section.hero-sec {
    margin-top: 165px;
}

.hero-sec.new-hero-sec {
    background-image: url("../images/new-bg-hero.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    clip-path: ellipse(105% 100% at top);
}

.top-sec {
    margin-top: 165px !important;
}

.two-col-sec.top-sec {
    margin-top: 200px !important;
}

.hero-sec-text {
    position: absolute;
    top: 35%;
    width: 90%;
    max-width: 1296px;
    margin: 0px auto;
    left: 5%;
    transform: translateY(-35%);
}

.new-hero-sec .hero-sec-text {
    max-width: 100%;
}

.hero-sec-text h1 {
    color: #111;
    font-family: "Merienda", cursive;
    display: flex;
    flex-direction: column;
}

.new-hero-sec .hero-sec-text h1 {
    color: #fff;
    width: 100%;
}

.hero-sec-text h1 .highlight-color {
    color: #2376d5;
    font-family: "Merienda", cursive;
}

.hero-sec-text>* {
    width: 100%;
    max-width: 443px;
}

.hero-sec-text p {
    color: #111;
}

.new-hero-sec .hero-sec-text p {
    color: #fff;
    width: 100%;
}

.new-hero-sec .hero-inner-text-sec>* {
    max-width: 100%;
    text-align: center;
    display: inline-block;
}

.new-hero-sec .hero-inner-text-sec {
    max-width: 1296px;
    margin-left: auto;
    margin-right: auto;
}

.hero-sec .owl-dots {
    position: absolute;
    left: 7%;
    bottom: 206px;
}

.hero-sec .owl-dots {
    display: flex;
    align-items: center;
    gap: 3px;
}

.hero-sec .owl-dots .owl-dot.active {
    padding: 2px !important;
    border: 2px solid #2376d5;
    border-radius: 50px;
}

.hero-sec .owl-dots .owl-dot.active span {
    width: 19px;
    height: 19px;
    background: #2376d5;
    padding: 5px;
    margin: 0px;
}

.hero-sec .owl-dots .owl-dot:nth-child(2) span {
    background-color: rgba(35, 118, 213, 70%);
}

.hero-sec .owl-dots .owl-dot:nth-child(3) span {
    background-color: rgba(35, 118, 213, 50%);
    width: 17px;
    height: 17px;
}

.hero-sec .owl-dots .owl-dot {
    margin-left: 3px;
}

.hero-sec .owl-dots .owl-dot span {
    background-color: rgba(35, 118, 213, 70%);
    width: 19px;
    height: 19px;
    margin: 0px;
}

.hero-sec-img {
    position: relative;
    padding-top: 73%;
}

.new-hero-sec .hero-sec-img {
    padding-top: 114vh;
}

.hero-sec-img img,
.hero-sec-img video {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: ellipse(105% 100% at top);
}

.new-hero-sec .inner-video-banner {
    position: relative;
    background-color: #000;
}

.new-hero-sec .stores-btn {
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 10px;
}

.new-hero-sec .stores-btn a {
    display: flex;
    color: #111;
    text-decoration: none;
    gap: 10px;
    background: #fff;
    border-radius: 50px;
    padding: 10px 30px;
    align-items: center; 
    transition: all .3s ease-in-out;
}

.new-hero-sec .stores-btn a:hover{
    transform: scale(0.9);
}

.new-hero-sec .stores-btn a p {
    margin-bottom: 0px;
    color: #000;
    font-weight: 600;
}

.new-hero-sec .hero-sec-img::before {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 50%);
    content: '';
    z-index: 9;
}

.new-hero-sec .hero-sec-text {
    z-index: 99;
    transform: translateY(-50%);
    top: 50%;
}

/* Explore sec */

.explore-sec-wrapper {
    background: #fff;
    padding: 20px 15px;
    margin-top: -180px;
    position: relative;
    z-index: 999;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 17%);
}

.explore-inner {
    background: rgba(220, 238, 255, 20%);
    padding: 40px 50px;
    border-radius: 10px;
}

.explore-inner h3 {
    margin-bottom: 25px;
}

.explore-form-sec .match-form {
    gap: 34px;
}

.explore-form-sec .match-form .form-group {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 5px;
    justify-content: end;
}

.explore-form-sec .match-form .form-group button {
    padding: 10px;
    background: #2376d5;
    color: #fff;
    border: 1px solid #2376d5;
    border-radius: 5px;
}

.new-branding .explore-form-sec .match-form .form-group button {
    background: #b18657;
    border: 1px solid #b18657;
}

.new-branding .custom-btn {
    background-color: #b18657;
}

.new-branding .subheading {
    color: #b18657 !important;
}

.explore-form-sec .match-form .form-group select {
    font-size: 14px;
    padding: 13px;
    appearance: none;
    position: relative;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 6 6'%3E%3Cpath d='M1 2 L3 4 L5 2' stroke='%23797979' stroke-width='1' fill='none'/%3E%3C/svg%3E") no-repeat right 10px center;
    background-color: #fff;
    border-radius: 5px;
    border-color: #e2e2e2;
}

.explore-form-sec .match-form .form-group select::after,
.explore-form-sec .match-form .form-group select::before {
    position: absolute;
    content: "";
    right: 0px;
    top: 10px;
    background-color: #797979;
    width: 6px;
    height: 1px;
}

/* Two Col Sec */

.two-col-wrapper {
    display: flex;
    align-items: end;
    padding: 120px 0px;
}

.two-col-wrapper .two-col-right-sec {
    width: 50%;
}

.two-col-wrapper .two-col-left-sec {
    width: 50%;
}

.two-col-wrapper .two-col-right-sec .two-col-right-text {
    padding: 60px 40px;
    background-color: #fff;
    margin-left: -100px;
    width: calc(100% + 100px);
    border-radius: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 17%);
    position: relative;
}

.gallery-sec {
    position: relative;
}

.two-col-wrapper .two-col-right-sec .two-col-right-text::before,
.gallery-sec::before {
    content: "";
    position: absolute;
    right: 0px;
    top: -191px;
    width: 330px;
    height: 330px;
    background-image: url("../images/m-img.png");
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
}

section.two-col-sec.two-col-reverse-sec .two-col-wrapper .two-col-right-sec .two-col-right-text::before {
    right: auto;
    left: 0px;
    top: -250px;
    width: 270px;
    height: 270px;
}

.gallery-sec::before {
    top: auto;
    bottom: -22px;
    z-index: 1;
}

.two-col-right-text .subheading {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    line-height: 1.5;
}

.two-col-right-text .subheading::after,
.experience-wrapper .experience-right-text .subheading::after,
.two-col-left-img-sec .two-col-img-right-block .subheading::after {
    content: "";
    background-color: #2276d5;
    display: inline-block;
    width: 76px;
    height: 2px;
}

.two-col-left-img-sec .two-col-img-right-block .subheading {
    display: flex;
    align-items: center;
}

.two-col-wrapper .two-col-right-sec .two-col-right-text h3 {
    margin-bottom: 20px;
}

.two-col-right-icon-text .two-col-right-icon-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.two-col-right-icon-text .two-col-right-icon-block img {
    width: 100px;
}

.two-col-right-icon-text {
    display: flex;
    gap: 20px;
    justify-content: space-evenly;
    margin-top: 50px;
    padding: 0px 15px;
}

.two-col-right-icon-text .two-col-right-icon-block p {
    margin-bottom: 0px;
    font-weight: 600;
    margin-top: 20px;
}

/* Four Col icon Sec */

.four-col-icons-sec {
    background: #82bbff;
    padding: 80px 0px;
}

.four-col-heading-text>* {
    text-align: center;
    color: #fff;
}

.four-col-icons-sec .four-col-heading-text .subheading,
.gallery-sec-heading-text .subheading {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    margin-bottom: 20px;
}

.four-col-icons-sec .four-col-heading-text .subheading::before,
.four-col-icons-sec .four-col-heading-text .subheading::after,
.gallery-sec-heading-text .subheading::before,
.gallery-sec-heading-text .subheading::after,
.success-heading-text .subheading::before,
.success-heading-text .subheading::after {
    content: "";
    display: inline-block;
    width: 100%;
    max-width: 77px;
    height: 2px;
    background: #fff;
}

.four-col-icons-sec .four-col-heading-text .subheading::before,
.gallery-sec-heading-text .subheading::before,
.success-heading-text .subheading::before {
    margin-right: 8px;
}

.gallery-sec-heading-text .subheading::before,
.gallery-sec-heading-text .subheading::after,
.success-heading-text .subheading::before,
.success-heading-text .subheading::after {
    background: #2376d5;
}

.four-col-heading-text h2 {
    line-height: 1.12;
}

.four-col-inner-icon-sec {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 70px;
}

.four-col-inner-icon-sec .four-col-icon-block-img img {
    width: 100%;
    max-width: 145px;
}

.four-col-inner-icon-sec .four-col-icon-block {
    background: #fff;
    border-radius: 18px;
    padding: 60px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
    transition: all 0.3s ease-in-out;
    position: relative;
    top: 0px;
}

.four-col-inner-icon-sec .four-col-icon-block:hover {
    top: -20px;
}

.four-col-icon-block-text h3,
.new-four-networking-sec .four-col-icon-block-text h4 {
    font-family: "kingred";
}

.four-col-icon-block-text p {
    margin-bottom: 0px;
    font-weight: 600;
}

.new-four-networking-sec .four-col-icon-block-text p {
    color: #666;
}


/* Gallery Sec */

.gallery-sec {
    padding: 80px 0px;
    background: #f8f8f8;
}

.gallery-sec-heading-text h2 {
    text-align: center;
}

.gallery-two-img-sec {
    display: grid;
    gap: 20px;
    align-items: flex-end;
    grid-template-columns: calc(56% - 10px) calc(44% - 10px);
    max-width: 1165px;
    margin: 90px auto 20px;
}

.gallery-two-img-sec .gallery-two-block-image {
    position: relative;
    padding-top: 49%;
}

.gallery-two-img-sec .gallery-two-block-image img {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-two-img-sec .gallery-two-img-block:nth-child(2) .gallery-two-block-image {
    padding-top: 45%;
}

.gallery-two-img-sec .gallery-two-img-block img {
    width: 100%;
}

.gallery-two-block-image-info {
    display: flex;
    gap: 10px;
    background-color: #2376d5;
    padding: 15px 20px;
    color: #fff;
    align-items: center;
    position: absolute;
    left: 0px;
    bottom: -80px;
    width: 100%;
    transition: all 0.5s ease-in-out;
}

.gallery-two-block-image-info h5 {
    margin-bottom: 0px;
}

.gallery-two-block-image-info img {
    width: 42px !important;
}

.gallery-two-img-block {
    position: relative;
    overflow: hidden;
}

.gallery-two-img-block:hover .gallery-two-block-image-info {
    bottom: 0px;
}

.gallery-three-img-sec {
    display: grid;
    grid-template-columns: calc(44% - 14px) calc(28% - 13px) calc(28% - 13px);
    gap: 20px;
    align-items: flex-start;
    max-width: 1070px;
    margin: 0px auto;
}

.gallery-three-img-sec .gallery-two-block-image {
    position: relative;
    padding-top: 80%;
}

.gallery-three-img-sec .gallery-two-block-image img {
    width: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    height: 100%;
    object-fit: cover;
}

.gallery-three-img-sec .gallery-two-img-block:nth-child(2) .gallery-two-block-image {
    padding-top: 100%;
}

.gallery-three-img-sec .gallery-two-img-block:nth-child(3) .gallery-two-block-image {
    padding-top: 70%;
}

/* Steps Sec */

.two-col-left-img-sec {
    position: relative;
    background-color: #dceeff;
}

.two-col-left-img-wrapper {
    display: grid;
    grid-template-columns: 50% 50%;
}

.two-col-left-img-wrapper .two-col-left-img-block img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.two-col-left-img-inner {
    position: absolute;
    left: 0px;
    width: 50%;
    top: 0px;
    height: 100%;
}

.two-col-left-img-sec .two-col-img-right-block {
    padding: 60px 0px 60px 80px;
}

.two-col-img-right-icon-sec {
    margin-left: -140px;
    z-index: 9999;
    position: relative;
}

.two-col-img-right-block .two-col-img-right-icon-block {
    display: flex;
    align-items: center;
    gap: 35px;
    padding-top: 40px;
    position: relative;
}

.two-col-img-right-block .two-col-img-right-icon-block::before {
    position: absolute;
    left: 58px;
    top: 50px;
    width: 4px;
    background-color: #111;
    height: 100%;
    content: "";
    z-index: -1;
}

.two-col-img-right-icon-block .two-col-img-right-icon-img img {
    width: 115px;
}

.two-col-img-right-block .two-col-img-right-icon-block h5 {
    font-family: "kingred";
}

.two-col-img-right-block .two-col-img-right-icon-block p {
    font-size: 14px;
    margin-bottom: 0px;
}

.two-col-img-right-block .two-col-img-right-icon-block:nth-child(3):before {
    height: 0px;
}

/* Two Col Reverse Sec */

.two-col-sec.two-col-reverse-sec .two-col-wrapper {
    flex-direction: row-reverse;
    align-items: center;
}

.two-col-sec.two-col-reverse-sec .two-col-right-text {
    margin-left: 0px;
    margin-right: -80px;
    position: relative;
    width: calc(100% + 80px);
}

.two-col-sec.two-col-reverse-sec .two-col-wrapper h3 {
    max-width: 500px;
}

/* Success Sec */

.success-heading-text {
    text-align: center;
}

.success-heading-text .subheading {
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-blocks-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 70px;
}

.success-blocks-wrapper .success-blocks-img {
    position: relative;
    width: 100%;
    padding-top: 70%;
}

.success-blocks-wrapper .success-blocks-img img {
    position: absolute;
    left: 0px;
    top: 0px;
    height: 100%;
    object-fit: cover;
    width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.success-blocks-wrapper .success-main-blocks {
    background: #fff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 10%);
    border-radius: 10px;
}

.success-blocks-wrapper .success-blocks-text {
    padding: 15px 17px;
}

.success-blocks-wrapper .success-blocks-text h6 {
    font-weight: 600;
    margin-bottom: 20px;
}

.success-blocks-wrapper .success-blocks-user-img img {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    border: 2px solid #2376d5;
}

.success-blocks-wrapper .success-blocks-profile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.success-blocks-user-info p {
    font-weight: 600;
    margin-bottom: 0px;
}

.success-blocks-user-info p.date-time {
    font-size: 14px;
    font-weight: 500;
}

/* Testimonial */

.testimonial-wrapper {
    margin-top: 70px;
}

.testimonial-map-sec .map-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    height: 600px;
    background: url("../images/1998.jpg") center/cover no-repeat;
}

section.testimonial-sec {
    padding: 100px 0px;
    overflow-x: hidden;
}

.testimonial-map-sec .map-container .avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-left: -10px;
    background-size: cover;
}

.testimonial-map-sec .map-container .avatar-wrapper {
    position: absolute;
}

.testimonial-map-sec .map-container .review-box {
    position: absolute;
    top: 100%;
    left: 0px;
    transform: translate(-50%, 5%);
    width: 390px;
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease;
    color: #333;
    pointer-events: none;
    z-index: 1;
    text-align: left;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 10%);
}

.testimonial-map-sec .map-container .avatar-wrapper:hover .review-box {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.testimonial-map-sec .map-container .review-box p {
    font-size: 14px;
}

.testimonial-map-sec .map-container .review-box .review-author p {
    font-weight: 600;
    margin-bottom: 0px;
    font-size: 16px;
}

.testimonial-map-sec .map-container .review-box .review-author p.grey {
    font-weight: 500;
    color: #939393;
    font-size: 14px;
}

/* Experience Sec */

.experience-sec {
    background-color: #f8f8f8;
    padding-top: 150px;
}

.experience-wrapper {
    background-color: #2376d5;
    border-radius: 30px;
}

.experience-wrapper {
    display: flex;
}

.experience-wrapper .experience-left-sec {
    width: 35%;
    position: relative;
    padding-left: 10px;
}

.experience-wrapper .experience-left-sec img {
    width: 100%;
    position: absolute;
    bottom: 0px;
}

.experience-wrapper .experience-right-text {
    width: 65%;
    padding: 90px 20px;
}

.experience-store-img {
    display: flex;
    gap: 15px;
}

.experience-store-img {
    height: 42px;
    width: auto;
}

.experience-wrapper .experience-right-text>* {
    color: #fff;
}

.experience-wrapper .experience-right-text .subheading {
    display: flex;
    align-items: center;
}

.experience-wrapper .experience-right-text .subheading::after {
    background-color: #fff;
}

.experience-wrapper .experience-right-text p {
    width: 100%;
    max-width: 545px;
    font-size: 14px;
}

/* Footer Sec */

.footer-sec-wrapper .top-bar-social-icon li a img {
    height: 36px;
}

footer {
    background-color: #f8f8f8;
    padding-top: 100px;
    margin-top: auto;
}

footer .footer-left-sec {
    width: 30%;
}

.footer-right-sec {
    width: 70%;
    display: flex;
    justify-content: space-around;
}

.footer-sec-wrapper {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

footer .footer-left-sec p {
    font-size: 14px;
    margin-top: 15px;
}

footer .footer-left-sec .footer-site-logo img {
    width: 120px;
}

.footer-right-sec h6 {
    color: #2376d5;
    margin-bottom: 40px;
}

.footer-right-sec ul {
    margin-bottom: 0px;
    padding-left: 0px;
}

.footer-right-sec li {
    position: relative;
    list-style: none;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.footer-right-sec li a {
    font-size: 16px;
    color: #111;
    font-weight: 600;
    text-decoration: none;
}

.footer-right-sec li::before {
    content: "";
    background-image: url("../images/left-icon.png");
    width: 13px;
    height: 13px;
    background-size: contain;
    display: inline-block;
    background-repeat: no-repeat;
    margin-right: 12px;
}

.footer-bottom-bar p {
    margin-bottom: 0px;
    color: #fff;
    font-size: 14px;
}

.footer-bottom-bar {
    background-color: #2376d5;
    padding: 12px 0px;
}

.navbar-nav .nav-link i {
    display: none;
}

footer.networking-footer {
    background: #000;
    color: #fff;
}

footer.networking-footer .footer-left-sec p,
footer.networking-footer .footer-right-sec li a {
    color: #fff;
}

footer.networking-footer .footer-right-sec h6 {
    color: #b18657;
}

footer.networking-footer .footer-right-sec li::before {
    filter: brightness(0) invert(1);
}

footer.networking-footer .footer-bottom-bar {
    background-color: #b18657;
}

footer.networking-footer .footer-sec-wrapper .top-bar-social-icon li a img {
    filter: invert(.80);
}

/* About Us Page */

.banner-sec {
    position: relative;
}

.banner-sec::before {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 40%);
    content: "";
    z-index: 9;
}

.banner-sec-text {
    width: 100%;
    position: relative;
    z-index: 99;
}

.banner-sec-wrapper {
    position: relative;
    height: calc(100vh - 165px);
    display: flex;
    align-items: center;
    max-height: 800px;
}

.banner-sec-wrapper .banner-sec-text>* {
    color: #fff;
    max-width: 500px;
}

/* Mission Sec */

section.mission-section {
    padding: 80px 0px;
}

.mission-wrapper {
    display: grid;
    grid-template-columns: calc(60% - 15px) calc(40% - 15px);
    align-items: center;
    gap: 30px;
}

.mission-image-inner {
    position: relative;
    padding-top: 100%;
}

.mission-image img {
    width: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

/* Values Section */

section.values-section {
    background-color: #f8f8f8;
    padding: 80px 0px;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 60px;
    gap: 20px;
}

.values-grid .value-item .icon {
    margin: 0px auto 15px;
    border-radius: 500px;
    padding: 25px;
    width: 120px;
    background: #fff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 10%);
}

.values-grid .value-item .icon img {
    width: 100%;
    max-width: 100px;
}

.values-grid .value-item {
    border-radius: 10px;
    background-color: #dceeff;
    padding: 30px;
}

.values-grid .value-item h6 {
    font-family: "kingred";
    font-weight: 500;
}

.values-grid .value-item p {
    font-size: 14px;
}

.two-col-right-icon {
    display: flex;
    gap: 20px;
}

.two-col-right-icon .step-number {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2376d5;
    color: #fff;
    font-size: 20px;
}

.two-col-right-icon h6 {
    font-family: "kingred";
}

.two-col-left-img img {
    border-radius: 20px;
}

/* Highlight sec */

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    margin-top: 50px;
    gap: 20px;
}

.highlights-grid .highlight-box {
    background: #fff;
    padding: 50px 30px;
    border-radius: 10px;
}

.highlights-section {
    padding: 80px 0px;
    background-color: #dceeff;
}

.highlights-grid .highlight-box h3 {
    color: #2376d5;
}

.highlights-grid .highlight-box p {
    margin-bottom: 0px;
}

/* Subscriptions Page */

.mission-text ul {
    padding-left: 40px;
}

.mission-wrapper.reverse-wrapper {
    display: flex;
    flex-direction: row-reverse;
    gap: 50px;
}

.mission-wrapper.reverse-wrapper .mission-text {
    width: calc(60% - 25px);
}

.mission-wrapper.reverse-wrapper .mission-image {
    width: calc(40% - 25px);
}

/* Pricing Sec */

.pricing-sec {
    padding: 80px 0px;
    background-color: #f8f8f8;
    position: relative;
}

.pricing-sec::before {
    content: "";
    position: absolute;
    background-image: url(../images/m-img.png);
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
    width: 200px;
    height: 200px;
    right: 0px;
    top: 0px;
}

.pricing-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.pricing-wrapper .pricing-card {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 10%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-wrapper .pricing-card ul {
    text-align: left;
    flex-grow: 1;
}

.pricing-wrapper .pricing-card .plan-price {
    color: #2376d5;
    margin-bottom: 20px;
}

.pricing-wrapper .pricing-card .plan-price span {
    color: #111;
    font-size: 22px;
}

.pricing-wrapper .pricing-card.highlight {
    background: #82bbff;
    overflow: hidden;
    position: relative;
}

.pricing-wrapper .pricing-card.highlight>* {
    color: #fff;
}

.pricing-wrapper .pricing-card.highlight .custom-lists li::before {
    background-color: #fff;
}

.pricing-wrapper .pricing-card.highlight .custom-lists li::after {
    border-color: #fff;
}

.pricing-wrapper .pricing-card.highlight .custom-btn {
    background-color: #fff;
    color: #2376d5;
}

.pricing-wrapper .pricing-card.highlight .plan-price span {
    color: #fff;
}

.pricing-wrapper .pricing-card.highlight .most-popular {
    background: #fff;
    color: #2376d5;
    width: 100%;
    padding: 5px;
    font-weight: 500;
    position: absolute;
    transform: rotate(45deg);
    top: 30px;
    right: -140px;
    font-size: 14px;
}

/* Comparison sec */

.comparison-table tr {
    border: 1px solid;
}

.comparison-table th,
.comparison-table td {
    padding: 15px;
    border: 1px solid #111;
    width: 25%;
    text-align: center;
}

.comparison-table {
    width: 100%;
    max-width: 1000px;
    margin: 50px auto 0px;
}

.comparison-table table {
    width: 100%;
}

.comparison-table tr:nth-child(even) {
    background: #fff !important;
}

.comparison-table th {
    background: #fff;
    color: #2376d5;
}

.features-comparison {
    background: #f8f8f8;
}

/* CTA Section */

.cta-sec {
    background-image: url(../images/sunrise-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    background-attachment: fixed;
}

.cta-sec::before {
    position: absolute;
    left: 0px;
    width: 100%;
    top: 0px;
    height: 100%;
    content: "";
    background-color: rgba(0, 0, 0, 40%);
}

.cta-sec-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0px auto;
}

.cta-sec-wrapper h3 {
    margin-bottom: 25px;
}

/* Explore Page */

.explore-sec-wrapper.explore-inner-sec {
    margin-top: -70px;
    margin-bottom: 80px;
}

#featuredProfiles {
    margin-top: 50px;
}

#featuredProfiles .profile-card {
    padding: 15px;
    background: #fff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 10%);
    border-radius: 10px;
    height: 100%;
}

#featuredProfiles .profile-card h6 {
    font-weight: normal;
    font-family: "kingred";
    padding: 10px 10px 0px;
    color: #2376d5;
}

#featuredProfiles .profile-card p {
    margin-bottom: 0px;
    padding: 0px 10px;
    font-weight: 700;
    font-size: 14px;
}

#featuredProfiles .profile-card p.profile-tagline {
    font-weight: 400;
    margin-bottom: 15px;
}

#featuredProfiles .owl-dots {
    display: flex !important;
    justify-content: center;
    margin-top: 30px;
}

#featuredProfiles .profile-card .profile-card-img {
    position: relative;
    padding-top: 100%;
}

#featuredProfiles .profile-card .profile-card-img img {
    border-radius: 5px;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#featuredProfiles .owl-stage {
    display: flex;
}

#featuredProfiles button.owl-dot.active span {
    background-color: #2376d5;
}

.featured-carousel {
    background: #f8f8f8;
}

section.cta-sec.cta-explore-sec {
    background-image: url(../images/couple-love.jpg);
}

section.cta-sec.cta-explore-sec::before {
    background-color: rgba(0, 0, 0, 60%);
}

.banner-sec {
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    /* padding: 15% 0px; */
    background-position: top;
    margin-top: 165px;
}

.banner-sec.about-bnr {
    background-image: url(../images/about-bg.jpg);
}

.banner-sec.faq-bnr {
    background-image: url(../images/faq-bg.jpg);
}

.banner-sec.contact-bnr {
    background-image: url(../images/Contact-bg.jpg);
}

.banner-sec.subscriptions-bg {
    background-image: url(../images/subscriptions-bg.jpg);
}

.banner-sec.explore-bnr {
    background-image: url(../images/mosque-img.jpg);
}

.banner-sec.privacy-bnr {
    background-image: url(../images/privacy-bg.jpg);
    background-position: center;
}

.banner-sec.termsConditions-bnr {
    background-image: url(../images/terms-conditions-bg.jpg);
    background-position: center;
}

.top-bar .header-topBAr-left a {
    text-decoration: none;
}

.box-shadow {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 17%);
    padding: 30px 20px;
}

/* -------- SAFE LOGIN STYLES -------- */
.login-sec .login {
    background: #f4f6f9;
    margin: 0 auto;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 550px;
    width: 90%;
}

.login-sec .login .login-logo {
    width: 120px;
    margin-bottom: 20px;
}

.login-sec label {
    text-align: left;
    color: #1f1f1f;
    width: 100%;
}

.login-sec .form-group.gender-toggle .options label {
    text-align: center;
}

.login-sec .login .connection-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    border: 1px solid #eee;
    border-radius: 8px;
    margin: 10px 0;
    cursor: pointer;
    transition: 0.3s;
    justify-content: center;
}

.login-sec .connection-box img {
    width: 25px;
}

.login-sec .c-apple {
    background: #000;
    color: #fff;
}

.login-sec .c-fb {
    background: #1877f2;
    color: #fff;
}

.login-sec .c-phone {
    background: #82bbff;
    color: #fff;
}

.login-sec input {
    width: 100%;
    padding: 12px;
    margin-top: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
}

.login-sec button {
    width: 100%;
    padding: 12px;
    margin-top: 12px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    transition: 0.3s;
    background: #1877f2;
    color: #fff;
}

.login-sec button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.login-sec .otp-input {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.login-sec .otp-input input {
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 18px;
    background-color: #badcff;
    border-radius: 0px;
    border: 0px;
}

.login-sec .msg {
    text-align: center;
    font-size: 18px;
    margin-top: 20px;
    font-weight: bold;
    color: #1f1f1f;
    max-width: 300px;
    margin: 0px auto;
}

.login-sec .msg.error {
    color: red;
}

.login-sec .images-preview {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.login-sec .images-preview img {
    width: 70px;
    height: 70px;
    border-radius: 6px;
    object-fit: cover;
}

.login-sec .login-p {
    margin-top: 15px;
    font-size: 13px;
    color: #555;
}

.login-sec .step {
    display: none;
}

.login-sec .step.active {
    display: block;
}

.login .image-upload-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin: 20px auto;
    background-color: #badcff;
    border-radius: 5px;
    max-width: 400px;
}

.login .image-upload-grid label:first-child {
    border-right: 1px solid #69a7cc;
    border-bottom: 1px solid #69a7cc;
}

.login .image-upload-grid label:nth-child(2) {
    border-bottom: 1px solid #69a7cc;
}

.login .image-upload-grid label:nth-child(3) {
    border-right: 1px solid #69a7cc;
}

.login .image-upload-grid label {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100%;
}

.login .image-upload-grid input[type="file"] {
    display: none;
}

.login .image-upload-grid .slot {
    background: #e9f3ff;
    border: 2px dashed #bcd4f5;
    border-radius: 8px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #5a8fdc;
    transition: 0.3s;
}

.login .image-upload-grid .slot img {
    width: 100%;
    height: 100%;
    border-radius: 6px;
    object-fit: cover;
}

.login .image-upload-grid label.has-image {
    padding: 0px;
}

.login .image-upload-grid label.has-image img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

/* My Profile Page */

.my-profile-sec {
    background: linear-gradient(180deg, #f4fdff 0%, #fffef8 100%);
    margin-top: 165px;
}

.my-profile-info {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    align-items: center;
    gap: 50px;
}

.my-profile-info .my-profile-img {
    position: relative;
    width: 30%;
}

.my-profile-info .my-profile-img label {
    padding-top: 100%;
    cursor: pointer;
}

.my-profile-info .profile-img-hover {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    gap: 10px;
}

.my-profile-info .my-profile-img:hover .profile-img-hover {
    opacity: 1;
}

.my-profile-info .profile-img-hover::before {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    content: "";
    background: rgba(0, 0, 0, 40%);
    border-radius: 100%;
    z-index: -1;
}

.my-profile-info .profile-img-hover i,
.my-profile-info .profile-img-hover {
    color: #fff;
}

.my-profile-info .my-profile-img img {
    width: 100%;
    border-radius: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    height: 100%;
    border: 5px solid #82bbff;
    object-fit: cover;
}

.profile-img-hover.no-image {
    opacity: 1;
}

.my-profile-details {
    width: calc(70% - 50px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.profile-header-text .profile-header-toggle {
    height: 30px;
}

.profile-header-text .profile-header-toggle img {
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.toast-container {
    top: 200px;
}

.my-profile-wrapper {
    max-width: 800px;
    width: 100%;
    margin: 30px auto;
}

.my-profile-details * {
    margin-bottom: 0px;
}

.my-profile-features table td img.check-icon {
    width: 20px;
}

.my-profile-features {
    width: 100%;
    max-width: 800px;
    margin: 0px auto;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 17%);
}

.my-profile-features table {
    width: 100%;
    border-collapse: collapse;
}

.my-profile-features table td:first-child,
.my-profile-features table th:first-child {
    text-align: left;
}

.my-profile-features table th,
.my-profile-features table td {
    width: 37%;
    text-align: center;
}

.my-profile-features table th:first-child,
.my-profile-features table td:first-child {
    width: 26%;
}

.my-profile-features table th,
.my-profile-features table td {
    border: 1px solid #e7e7e7;
    padding: 10px;
}

.profile-usage-modal {
    display: none;
    position: fixed;
    z-index: 99999999;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    align-items: center;
    justify-content: center;
}

.profile-usage-modal-content {
    background: #fff;
    margin: 10% auto;
    padding: 20px;
    width: 350px;
    border-radius: 12px;
    text-align: center;
    position: relative;
}

.profile-usage-close {
    position: absolute;
    right: 8px;
    top: -8px;
    font-size: 35px;
    cursor: pointer;
}

.profile-usage-options {
    margin: 20px 0;
    text-align: left;
}

.profile-usage-options label {
    display: block;
    margin-bottom: 10px;
    cursor: pointer;
}

#profile-usage-continue-btn {
    background: #0073e6;
    color: #fff;
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    cursor: pointer;
}

#profile-usage-continue-btn:disabled {
    background: #aaa;
    cursor: not-allowed;
}

#profile-usage-toast {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    z-index: 100000;
    font-size: 14px;
}

/* login-screen css */
.login-sec {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    background-image: url(../images/muslim-couple-2.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.login-sec::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #00000040;
}

.login-sec .login {
    position: relative;
    max-height: 80vh;
    overflow: auto;
}

.login-box {
    /* width: 50%; */
    border-radius: 10px;
    padding: 20px;
    background: #fff;
    z-index: 2;
}

.image-upload-grid img {
    width: 32px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.login-logo {
    width: 100%;
    max-width: 150px;
    z-index: 2;
    margin-bottom: 2rem;
}

.connection-box {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 8px;
    border-radius: 10px;
    padding: 10px 25px;
    margin-bottom: 0.65rem;
    cursor: pointer;
}

.connection-box p {
    margin-bottom: 0px;
    color: #fff;
}

.c-apple {
    background: #000;
}

.connection-box img {
    width: 100%;
    max-width: 25px;
}

.c-fb {
    background-color: #056ee2;
}

.c-phone {
    background-color: #56deff;
}

.login-p p {
    color: #1f1f1f;
    margin-top: 1.5rem;
}

.login-p {
    z-index: 2;
}

/* login number */
.phone-input {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.lb1 {
    background: #ffffffab !important;
}

.phone-input select,
.phone-input input {
    border: 1px solid transparent !important;
}

.phone-input input {
    border-left: 1px solid #ccc !important;
    padding-left: 10px;
}

.phone-input select:focus,
.phone-input input:focus {
    outline: 0 !important;
}

.phone-input {
    background: #fff;
    padding: 10px;
    border-radius: 12px;
}

.submit-phone button {
    width: 100%;
    border: none !important;
    border-radius: 14px;
    padding: 14px;
    color: #fff;
    margin-top: 2rem;
    background: #2376d5;
    background: linear-gradient(28deg,
            rgba(35, 118, 213, 1) 0%,
            rgba(9, 9, 121, 1) 100%);
}

/* otp */
.otp-input-fields {
    box-shadow: 0px 0px 8px 0px #020250 44;
    width: auto;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.otp-input-fields input {
    height: 50px;
    width: 50px;
    background-color: #dee2e6;
    border-radius: 4px;
    border: 1px solid #fff;
    text-align: center;
    outline: none;
    font-size: 16px;
}

.otp-input-fields input::-webkit-outer-spin-button,
.otp-input-fields input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.otp-input-fields input[type="number"] {
    -moz-appearance: textfield;
}

.otp-input-fields input:focus {
    border-width: 2px;
    border-color: #1c5abd;
    font-size: 20px;
}

.result {
    max-width: 400px;
    margin: auto;
    padding: 24px;
    text-align: center;
}

.result p {
    font-size: 24px;
    font-family: "Antonio", sans-serif;
    opacity: 1;
    transition: color 0.5s ease;
}

.result p._ok {
    color: green;
}

.result p._notok {
    color: red;
    border-radius: 3px;
}

.lb1 h4,
.lb1 p {
    text-align: center;
}

.otp {
    padding: 40px !important;
}

.verify-btn {
    background: linear-gradient(28deg,
            rgba(35, 118, 213, 1) 0%,
            rgba(9, 9, 121, 1) 100%);
    color: #fff;
    padding: 10px 50px;
    border-radius: 8px;
    border: 1px solid transparent;
}

.login-box a {
    text-decoration: none !important;
}

/* information page css */
.gender-toggle {
    font-family: Arial, sans-serif;
    font-size: 14px;
}

.gender-toggle .label {
    display: block;
    margin-bottom: 6px;
}

.gender-toggle .options {
    display: inline-flex;
    border: 1px solid #a6c8ff;
    border-radius: 6px;
    overflow: hidden;
}

/* hide real radio */
.gender-toggle input[type="radio"] {
    display: none;
}

.gender-toggle .options label {
    padding: 8px 20px;
    cursor: pointer;
    background: #e6f0ff;
    color: #333;
    font-weight: 600;
    transition: background 0.2s, color 0.2s;
    text-align: center;
    min-width: 80px;
}

.my-profile-sec .gender-toggle .options label {
    width: 100%;
}

/* divider line */
.gender-toggle label+input+label {
    border-left: 1px solid #a6c8ff;
    text-align: center;
}

/* active (checked) */
.gender-toggle input[type="radio"]:checked+label {
    background: #4a90e2;
    color: #fff;
    text-align: center;
}

.info-box {
    width: 35% !important;
    height: 375px;
    overflow-y: scroll;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    color: #333;
}

.form-group input {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: none;
    border-radius: 4px;
    background: #cfe6ff;
    /* light blue background */
    outline: none;
}

.form-group input:focus {
    background: #b3d4ff;
    box-shadow: 0 0 0 2px #4a90e2;
}

.info-box h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.options {
    width: 100%;
}

.options label {
    width: 50%;
    margin-bottom: 0px !important;
}

/* Book Section */

.book-sec {
    background-image: url(../images/book-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.book-sec::before {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    content: "";
    background-color: rgb(255 255 255 / 40%);
}

.book-sec .book-sec-wrapper {
    width: 100%;
    max-width: 700px;
    margin: 0px auto;
    position: relative;
    z-index: 999;
}

.nav-item.login a,
.nav-item.login button {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-item.login i {
    display: block;
}

.nav-item.login a .avatar-icon {
    color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-item.login a .avatar-icon img {
    width: 100%;
    border-radius: 50px;
    border: 2px solid #82bbff;
    height: 100%;
    object-fit: cover;
}

.nav-item.login a::before,
.nav-item.login a::after {
    display: none;
}

.nav-item.login .avatar-letter {
    width: 40px;
    height: 40px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2376d5;
    color: #fff;
}

/* Quiz Page */

section.quiz-sec {
    background: #ebebeb;
}

.quiz-sec .left-quiz-sec {
    width: calc(50% - 24px);
    background: #fff;
    padding: 30px;
    border-radius: 10px;
}

.quiz-sec .right-quiz-sec {
    width: calc(50% - 24px);
}

.quiz-sec .right-quiz-sec .score-div {
    width: fit-content;
}

.quiz-sec .right-quiz-sec .score-div * {
    margin-bottom: 0px;
}

.quiz-sec .right-quiz-sec a.custom-btn.custom-btn-2 {
    background: #82bbff;
}

.quiz-box-sec .quiz-box {
    max-width: 700px;
    margin: auto;
    width: 100%;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 17%);
}

.quiz-box-sec .quiz-option {
    cursor: pointer;
    transition: 0.3s;
}

.quiz-box-sec .quiz-option input {
    appearance: none;
    display: none;
}

.quiz-box-sec .quiz-option.selected {
    background-color: #82bbff;
    color: #fff;
}

.quiz-box-sec #nextBtn:disabled {
    background: #ccc !important;
    cursor: not-allowed;
}

.quiz-box-sec .quiz-box .quiz-img img {
    width: 100%;
}

#featuredProfiles .owl-nav button img {
    width: 40px;
    border-radius: 100%;
    background-color: #fff;
}

#featuredProfiles .owl-nav button:hover {
    background: transparent !important;
}

#featuredProfiles .owl-nav {
    position: absolute;
    width: 100%;
    left: 0px;
    top: 35%;
    transform: translateY(-35%);
}

#featuredProfiles .owl-nav .owl-prev {
    position: absolute;
    left: -20px;
    top: 0px;
}

#featuredProfiles .owl-nav .owl-next {
    position: absolute;
    right: -20px;
    top: 0px;
}

.text--sec h3,
.text--sec p a {
    color: #2376d5;
}


.text--sec p a {
    font-weight: 700;
    text-decoration: none;
}

.text--sec .custom-lists li::after {
    border: 1px solid #000;
}

.text--sec .custom-lists li::before {
    background: #000;
}

/* Complete Profile */

#profile-step-container .web-logo img {
    width: 100%;
    max-width: 120px;
    margin-bottom: 20px;
}

#profile-step-options h3 {
    margin-bottom: 20px;
}

#profile-step-container {
    background: #f4f6f9;
    max-width: 550px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    z-index: 99;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-height: 80vh;
    overflow: auto;
}

#profile-step-options {
    text-align: center;
}

.profile-step-btn {
    display: block;
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    background: #4a90e2;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

#profile-step-questions {
    margin-top: 20px;
    width: 90%;
}

.step-questions label {
    display: block;
    margin-top: 15px;
    font-size: 14px;
}

.step-questions input,
.step-questions textarea,
.step-questions select,
.video-upload .video-label-inner {
    width: 100%;
    padding: 10px;
    margin-top: 6px;
    border: 0px;
    border-radius: 6px;
    background: #BADCFF;
    font-size: 14px;
}

.step-questions select {
    width: 100%;
    padding: 10px;
    padding-right: 35px;
    border: 0px;
    border-radius: 6px;
    font-size: 14px;
    background: #BADCFF url("data:image/svg+xml;utf8,<svg fill='%23666' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>") no-repeat right 10px center;
    background-size: 16px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}


.step-nav {
    margin-top: 20px;
    text-align: right;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: end;
}

.step-nav button {
    padding: 10px 16px;
    margin-left: 0px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

#back-to-options {
    background: #ccc;
}

#skip-btn {
    background: #82BBFF;
    color: #fff;
}

#continue-btn {
    background: #4a90e2;
    color: #fff;
}

.progress-container {
    width: 100%;
    background: #e0e0e0;
    height: 8px;
    border-radius: 5px;
    margin-bottom: 20px;
    overflow: hidden;
}

.progress-bar {
    height: 8px;
    width: 0%;
    background: #82BBFF;
    transition: width 0.4s ease;
}

.video-upload {
    margin: 0px;
    display: flex;
    flex-direction: column;
}

.file-input {
    display: none;
}

/* Menu Page  */

.my-profile-sec .custom-tabs-wrapper {
    margin: 40px 0px;
}

.my-profile-sec .custom-tabs-list {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 10px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;
    justify-content: space-between;
}

.my-profile-sec .custom-tabs-list::-webkit-scrollbar {
    display: none;
}

.my-profile-sec .custom-tab-btn {
    white-space: nowrap;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    padding: 10px 16px;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.my-profile-sec .custom-tab-btn img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    display: none;
}

.my-profile-sec .custom-tab-btn.custom-active {
    background: #2376d5;
    color: #fff;
    border-color: #2376d5;
}

.my-profile-sec .custom-tab-content {
    margin-top: 20px;
    padding: 20px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    display: none;
}

.my-profile-sec .custom-tab-content.custom-active {
    display: block;
}

.my-profile-sec .custom-tab-btn.custom-active img {
    filter: brightness(0) invert(1);
}

.my-profile-sec .blocked-card-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.my-profile-sec .blocked-card-wrapper .blocked-cards {
    padding: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 17%);
    border-radius: 5px;
}

.my-profile-sec .blocked-card-wrapper .blocked-cards-img {
    position: relative;
    padding-top: 100%;
    width: 100%;
}

.my-profile-sec .blocked-card-wrapper .blocked-cards-img::before {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    content: '';
    background-color: rgba(0, 0, 0, 37%);
    border-radius: 5px;
    z-index: 99;
}

.my-profile-sec .blocked-card-wrapper .blocked-cards-img img {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    object-fit: cover;
}

.my-profile-sec .blocked-card-wrapper .blocked-cards-img .blocked-btn {
    position: absolute;
    left: 50%;
    top: 40%;
    transform: translate(-50%);
    width: 90%;
    text-align: center;
    z-index: 999;
}

.my-profile-sec .blocked-cards .blocked-cards-info {
    margin: 15px 0px;
    text-align: center;
}

.my-profile-sec .blocked-cards .blocked-cards-info p {
    margin-bottom: 0px;
    line-height: 1;
    font-weight: 700;
}

.my-profile-sec .blocked-cards .blocked-cards-info p.small-text {
    font-size: 14px;
    color: #3333338a;
    font-weight: 400;
}

.my-profile-sec .blocked-card-wrapper .blocked-cards-img .blocked-btn a {
    padding: 6px 25px;
}

.my-profile-sec .custom-tab-content .form-group {
    width: 100%;
}

.popup-modal-sec {
    position: fixed;
    top: 0%;
    left: 0%;
    z-index: 99999999;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 60%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-modal-sec .logout-modal-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 5px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px;
    max-width: calc(100% - 40px);
    position: relative;
}

.popup-modal-sec .logout-modal-content h3 {
    margin-bottom: 0px;
    padding-bottom: 20px;
    border-bottom: 2px solid #666;
}

.popup-modal-sec .logout-modal-content h6 {
    margin-bottom: 0px;
    font-weight: 600;
}

.popup-modal-sec .logout-modal-content .btn-cancel {
    background: #000;
}

.popup-modal-sec .logout-modal-content .logout-close::before,
.popup-modal-sec .logout-modal-content .logout-close::after {
    content: '';
    position: absolute;
    left: 3px;
    top: 10px;
    width: 20px;
    height: 3px;
    transform: rotate(45deg);
    background-color: #000;
    border-radius: 2px;
}

.popup-modal-sec .logout-modal-content .logout-close::after {
    transform: rotate(-45deg);
}

.popup-modal-sec .logout-modal-content .logout-close {
    position: absolute;
    display: inline-block;
    width: 25px;
    height: 25px;
    right: 10px;
    top: 10px;
    cursor: pointer;
}

.custom-btn.custom-outline-btn {
    background-color: transparent;
    color: #2276d5;
    border: 1px solid;
}

.new-branding.two-col-left-img-sec {
    background-color: rgba(0, 0, 0, 95%) !important;
    color: #fff;
}

.new-branding .two-col-img-right-block>* {
    color: #fff;
}

.new-branding .two-col-img-right-block .two-col-img-right-icon-block p {
    color: #fff;
}

.two-col-left-img-sec.new-branding h6.subheading::after,
.four-col-icons-sec.new-branding .subheading::before,
.four-col-icons-sec.new-branding .subheading::after {
    background: #b18657 !important;
}

.new-branding .experience-wrapper {
    background-color: #b18657;
    color: #000;
}

.new-branding .experience-wrapper .experience-right-text .subheading {
    color: #000 !important;
}

.new-branding {
    background-color: #000 !important;
}

.new-branding.hero-sec.new-hero-sec {
    clip-path: none !important;
    margin-top: 0px !important;
}

.new-branding .two-col-right-icon-text .two-col-right-icon-block p {
    color: #fff;
}

.testimonial-sec.new-branding {
    background-color: #fff !important;
}

.gallery-sec.new-branding,
.two-col-sec.two-col-reverse-sec.new-branding {
    background-color: #f8f8f8 !important;
}

.new-branding .four-col-inner-icon-sec .four-col-icon-block-img {
    padding: 35px;
    border-radius: 100px;
    background: linear-gradient(135deg, #b18657, #d0b69a);
}

.new-branding .four-col-inner-icon-sec .four-col-icon-block-img img {
    /* filter: invert(1); */
    width: 100%;
    max-width: 64px;
}

.new-branding .two-col-right-icon-text .two-col-right-icon-block img,
.new-branding .two-col-img-right-icon-block .two-col-img-right-icon-img img {
    width: 100px;
    filter: invert(0.80);
}

.new-branding .gallery-two-block-image-info {
    background-color: #b18657;

}

.new-branding .gallery-two-block-image-info img {
    filter: invert(0.80);
}

.new-branding .success-blocks-wrapper .success-blocks-user-img img {
    border-color: #b18657;
}

.new-branding.book-sec::before {
    background-color: rgba(0, 0, 0, 60%);
}

.new-branding.book-sec * {
    color: #fff;
}

.new-branding .explore-inner {
    background: rgb(189 189 189 / 10%);
}

/* @media (min-width: 768px) {
    .custom-tabs-list {
        justify-content: center;
    }

    .custom-tab-btn {
        font-size: 15px;
        padding: 12px 20px;
    }
} */

/* Dashboard page */

.dashboard-sideBar {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    max-width: 200px;
    padding: 30px;
    border-right: 2px solid #dbdbdb;
    height: 100vh;
}

.dashboard-sideBar ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dashboard-sideBar ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dashboard-sideBar ul li a {
    text-decoration: none;
    color: #111;
}

.dashboard-sideBar ul li i {
    font-size: 20px;
}

.sidebar-logo a {
    display: flex;
    transition: all .3s ease-in-out;
}

.dashboard-sideBar ul li a:hover {
    color: #1877f2;
}

.sidebar-logo a img {
    width: 80px;
    margin-bottom: 20px;
}

.dashboard-right-sec {
    width: calc(100% - 250px);
    margin-left: auto;
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.dashboard-right-sec .dashboard-right-img-sec {
    width: 35%;
    padding-top: 30%;
    position: relative;
}

.dashboard-right-sec .dashboard-right-img-sec img {
    width: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
}

.dashboard-right-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.dashboard-right-tags a {
    text-decoration: none;
    background-color: #CBE6FB;
    color: #000000;
    padding: 5px 20px;
    border-radius: 50px;
}

.tags--sec {
    width: calc(100% - 250px);
    margin-left: auto;
}

@media screen and (max-width: 1330px) {
    .hero-sec-text-wrapper {
        padding: 100px 40px 0px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    /* .site-subheading p{
        margin-bottom: 0px;
    } */
}

@media screen and (max-width: 1240px) {
    .explore-form-sec .match-form {
        gap: 10px;
    }

    .explore-inner {
        padding: 20px;
    }

    .container {
        width: 100%;
    }

    .testimonial-map-sec .map-container .avatar-wrapper:nth-child(3) .review-box {
        transform: translate(0%, 5%);
        left: auto;
        right: 0px;
    }

    .experience-wrapper .experience-left-sec img {
        position: static;
    }

    .experience-sec {
        padding-top: 50px;
    }

    .experience-wrapper {
        align-items: flex-end;
    }

    .two-col-wrapper .two-col-right-sec .two-col-right-text::before {
        top: -121px;
        width: 180px;
        height: 180px;
    }

    section.two-col-sec.two-col-reverse-sec .two-col-wrapper .two-col-right-sec .two-col-right-text::before {
        top: -160px;
        width: 170px;
        height: 170px;
    }

    .mission-wrapper.reverse-wrapper {
        gap: 30px;
    }

    .mission-wrapper.reverse-wrapper .mission-text {
        width: calc(50% - 15px);
    }

    .mission-wrapper.reverse-wrapper .mission-image {
        width: calc(50% - 15px);
    }

    .pricing-wrapper {
        gap: 20px;
    }

    .pricing-wrapper .pricing-card.highlight .most-popular {
        top: 2.6vw;
        right: -11vw;
    }

    #featuredProfiles .owl-nav {
        top: 89%;
        transform: translateY(-89%);
    }

    #featuredProfiles .owl-nav .owl-prev {
        left: calc(50% - 120px);
    }

    #featuredProfiles .owl-nav .owl-next {
        right: calc(50% - 120px);
    }
}

@media (max-width: 991px) {
    .logo img {
        height: 55px;
    }
    .new-branding.two-col-left-img-sec .two-col-img-right-block .two-col-img-right-icon-block::before{
        background-color: #b18657;
        left: 50px;
    }
    .header_sec.new-branding .close-btn::after,
    .header_sec.new-branding .close-btn::before {
        background-color: #000;
    }

    header.new-branding .navbar-nav .nav-link {
        color: #000 !important;
    }

    .header_sec.new-branding .mobile-header.navbar-collapse {
        background-color: #b18657;
    }

    .quiz-sec .left-quiz-sec,
    .quiz-sec .right-quiz-sec {
        width: 100%;
    }

    /* .logo img {
        height: 90px;
    } */

    section.hero-sec,
    .my-profile-sec {
        margin-top: 141px;
    }

    .top-sec {
        margin-top: 141px !important;
    }

    .two-col-sec.top-sec {
        margin-top: 60px !important;
    }

    .navbar-nav .nav-link i {
        display: block;
    }

    .mobile-header.navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        width: 90%;
        height: 100vh;
        background-color: #fff;
        z-index: 99999999;
        padding: 20px;
        transition: transform 0.3s ease-in-out;
        transform: translateX(-100%);
        display: block !important;
        overflow: auto;
    }

    .header-overlay {
        position: absolute;
        left: 0px;
        top: -100px;
        width: 0px;
        height: calc(100vh + 110px);
        background-color: rgba(0, 0, 0, 37%);
        transition: all 0.3s ease-in-out;
        z-index: 99999;
    }

    .header-overlay.active {
        width: 100vw;
    }

    .mobile-header.navbar-collapse.show .overlay::before {
        width: 100vw;
    }

    .mobile-header.show {
        transform: translateX(0%);
    }

    .navbar-toggler {
        z-index: 10000;
    }

    .navbar-collapse .nav-link {
        color: #fff;
        padding: 10px 0;
        display: block;
    }

    .navbar-collapse .custom-btn {
        margin-top: 20px;
        display: block;
        width: fit-content;
        text-align: center;
    }

    .header--navbar .navbar-nav {
        gap: 15px;
        text-align: left !important;
        align-items: flex-start !important;
    }

    h1 {
        font-size: 65px;
    }

    h2 {
        font-size: 32px;
    }

    h3 {
        font-size: 30px;
    }

    .hero-sec-text-wrapper h1 {
        margin-bottom: 10px;
    }

    .navbar-nav .nav-link {
        color: #111 !important;
    }

    .main-header .navbar-nav .nav-link.active {
        color: #2376d5 !important;
        font-weight: 500;
    }

    .main-header .navbar-nav .nav-link {
        display: flex;
        gap: 10px;
        align-items: center;
    }

    body .site-mobile-logo img {
        height: 60px !important;
    }

    .header--navbar .navbar-nav li {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .header--navbar .navbar-nav li svg {
        display: block;
    }

    .header--navbar .navbar-nav li svg path {
        fill: #111;
    }

    .header--navbar .navbar-nav li.active svg path {
        fill: #2376d5;
    }

    .explore-sec-wrapper {
        margin-top: -120px;
    }

    .hero-sec .owl-dots {
        bottom: 136px;
    }

    .explore-form-sec .match-form {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr);
    }

    .experience-wrapper .experience-right-text {
        padding: 50px 20px;
    }

    .success-blocks-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .two-col-sec .two-col-wrapper {
        flex-direction: column !important;
        gap: 30px;
    }

    .two-col-wrapper .two-col-right-sec {
        width: 100%;
    }

    .two-col-sec.two-col-reverse-sec .two-col-right-text,
    .two-col-wrapper .two-col-right-sec .two-col-right-text {
        margin-right: 0px;
        width: 100%;
        margin-left: 0px;
    }

    .two-col-wrapper .two-col-left-sec {
        width: 100%;
    }

    .four-col-inner-icon-sec {
        grid-template-columns: repeat(2, 1fr);
    }

    .four-col-inner-icon-sec .four-col-icon-block {
        max-width: 350px;
        margin: auto;
        width: 100%;
        margin-right: 0px;
    }

    .four-col-inner-icon-sec .four-col-icon-block:nth-child(2n + 2) {
        margin-left: 0px;
        margin-right: auto;
    }

    .two-col-left-img-inner {
        position: static;
        width: 100%;
    }

    .two-col-left-img-wrapper {
        grid-template-columns: 100%;
    }

    .two-col-img-right-icon-sec {
        margin-left: 0px;
    }

    .two-col-left-img-sec .container {
        padding: 0px;
    }

    .two-col-left-img-sec .two-col-img-right-block {
        padding: 60px 40px;
    }

    .mission-wrapper {
        grid-template-columns: calc(50% - 15px) calc(50% - 15px);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 30px;
    }

    .values-grid .value-item {
        width: 100%;
        max-width: 300px;
        margin-left: auto;
    }

    .values-grid .value-item:nth-child(2n + 2) {
        margin-left: 0px;
        margin-right: auto;
    }

    .two-col-wrapper .two-col-right-sec .two-col-right-text::before,
    section.two-col-sec.two-col-reverse-sec .two-col-wrapper .two-col-right-sec .two-col-right-text::before {
        display: none;
    }

    .gallery-sec::before {
        width: 290px;
        height: 290px;
    }

    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .highlights-grid .highlight-box {
        max-width: 300px;
        margin-left: auto;
        width: 100%;
    }

    .highlights-grid .highlight-box:nth-child(2n + 2) {
        margin-right: auto;
        margin-left: 0px;
    }

    .mission-wrapper.reverse-wrapper {
        flex-direction: column-reverse;
    }

    .mission-wrapper.reverse-wrapper .mission-text,
    .mission-wrapper.reverse-wrapper .mission-image {
        width: 100%;
    }

    .pricing-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-wrapper .pricing-card.highlight .most-popular {
        top: 3vw;
        right: -18vw;
    }

    .pricing-sec::before {
        display: none;
    }

    .main-header {
        padding: 15px 0px;
    }

    .banner-sec {
        /* padding: 25% 0px; */
        margin-top: 141px;
    }

    .my-profile-sec .blocked-card-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

    .my-profile-features table th:first-child,
    .my-profile-features table td:first-child,
    .my-profile-features table th,
    .my-profile-features table td {
        width: auto;
    }

    .banner-sec {
        margin-top: 85px;
    }

    section.hero-,
    .my-profile-sec {
        margin-top: 85px;
    }

    .header-topBAr {
        display: none;
    }

    .main-header {
        top: 0px;
    }

    h1 {
        font-size: 48px;
    }

    h2 {
        font-size: 30px;
    }

    h3 {
        font-size: 26px;
    }


    .video-three-icons-text ul {
        grid-template-columns: repeat(1, 1fr);
    }

    .explore-form-sec .match-form {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 25px;
    }

    .explore-sec-wrapper {
        margin-top: -60px;
    }

    .hero-sec .owl-dots {
        bottom: 70px;
    }

    .footer-sec-wrapper {
        flex-direction: column;
    }

    footer .footer-left-sec {
        width: 100%;
    }

    .footer-right-sec {
        justify-content: space-between;
        margin-top: 20px;
        width: 100%;
        max-width: 550px;
    }

    .experience-wrapper {
        align-items: center;
        flex-direction: column-reverse;
    }

    .experience-wrapper .experience-left-sec {
        width: 100%;
        padding-left: 0px;
        max-width: 330px;
    }

    .experience-wrapper .experience-right-text {
        padding: 30px 20px;
        width: 100%;
    }

    .testimonial-map-sec .map-container .review-box {
        transform: translate(0%, 5%);
        width: 280px;
    }

    .testimonial-map-sec .map-container .avatar-wrapper:nth-child(4) .review-box {
        transform: translate(0%, 5%);
        left: auto;
        right: 0px;
    }

    .gallery-two-img-sec,
    .gallery-three-img-sec {
        grid-template-columns: repeat(1, 1fr);
    }

    .two-col-wrapper,
    .four-col-icons-sec,
    .gallery-sec,
    section.testimonial-sec,
    .pricing-sec,
    .section-padding {
        padding: 60px 0px;
    }

    .four-col-inner-icon-sec,
    .testimonial-wrapper {
        margin-top: 40px;
    }

    .gallery-two-img-sec,
    .success-blocks-wrapper {
        margin-top: 30px;
    }

    footer {
        padding-top: 60px;
    }

    .mission-wrapper {
        display: flex;
        flex-direction: column-reverse;
    }

    .mission-wrapper .mission-image {
        width: 100%;
    }

    section.mission-section,
    section.values-section,
    .highlights-section {
        padding: 60px 0px;
    }

    .gallery-sec::before {
        display: none;
    }

    .pricing-wrapper {
        grid-template-columns: repeat(1, 1fr);
        margin-top: 30px;
    }

    .pricing-wrapper .pricing-card {
        max-width: 450px;
        margin: 0px auto;
        width: 100%;
    }

    .pricing-wrapper .pricing-card.highlight .most-popular {
        top: 40px;
        right: -160px;
    }

    .comparison-table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        width: 100%;
        padding-bottom: 20px;
        margin-top: 30px;
    }

    .comparison-table table {
        min-width: 750px;
        width: 100%;
        border-collapse: collapse;
    }

    #featuredProfiles {
        margin-top: 30px;
    }

    .explore-sec-wrapper.explore-inner-sec {
        margin-top: -40px;
        margin-bottom: 60px;
    }

    section.hero-sec {
        margin-top: 85px !important;
    }

    .my-profile-sec .blocked-card-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .my-profile-sec .blocked-card-wrapper .blocked-cards-img .blocked-btn {
        top: 50%;
    }

}

@media screen and (max-width: 650px) {
    .my-profile-details .my-profile-complete {
        display: none;
    }

    .my-profile-complete.mobile-only {
        display: block !important;
    }

    .my-profile-wrapper {
        flex-direction: column !important;
        gap: 25px;
    }

    .my-profile-info {
        gap: 20px;
        align-items: flex-start;
    }

    .my-profile-info .my-profile-img {
        height: 80px;
        width: 80px;
    }

    .my-profile-info .my-profile-img label {
        width: 100%;
    }

    .my-profile-info .my-profile-img img {
        border-width: 2px;
    }

    .my-profile-details {
        width: calc(100% - 100px);
    }

    .my-profile-details .custom-btn {
        padding: 6px 22px;
    }

    .my-profile-features {
        padding: 15px;
    }

    .my-profile-features table th:first-child,
    .my-profile-features table td:first-child,
    .my-profile-features table th,
    .my-profile-features table td {
        font-size: 14px;
    }

    section.my-profile-sec {
        padding: 30px 0px !important;
    }
}

@media screen and (max-width: 575px) {
    .new-hero-sec .hero-sec-img {
        padding-top: 90vh;
    }

    .new-hero-sec .hero-sec-img video,
    .new-hero-sec .hero-sec-img::before {
        clip-path: ellipse(160% 100% at top) !important;  
    }

    .new-hero-sec .hero-sec-img::before {
        content: '';
        position: absolute;
        left: 0px;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 60%);
        top: 0px;
        z-index: 99;
        clip-path: ellipse(105% 100% at top);
    }

    .new-hero-sec .hero-sec-text {
        z-index: 99;
    }

    h1 {
        font-size: 36px;
    }

    .hero-sec button.owl-prev,
    .hero-sec button.owl-next {
        width: 20px;
    }

    .hero-sec-text-wrapper .big-para {
        font-size: 18px;
    }

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 24px;
    }

    .hero-sec-video .hero-sec-text .play-hero-btn img {
        width: 50px;
        height: 50px;
    }

    .hero-sec-text-wrapper .play-hero-btn p {
        font-size: 22px;
    }

    h6 {
        font-size: 18px;
    }

    .scroll-to-top {
        width: 40px;
        height: 40px;
        padding: 5px;
        right: 5px;
    }

    .explore-form-sec .match-form {
        grid-template-columns: repeat(1, 1fr);
        row-gap: 25px;
    }

    .hero-sec-img {
        padding-top: 110%;
    }

    .success-blocks-wrapper {
        grid-template-columns: repeat(1, 1fr);
        margin-top: 30px;
    }

    .testimonial-map-sec .map-container .avatar-wrapper:nth-child(3) {
        left: 80% !important;
    }

    .four-col-inner-icon-sec .four-col-icon-block,
    .four-col-inner-icon-sec .four-col-icon-block:nth-child(2n + 2) {
        margin-left: auto;
        margin-right: auto;
    }

    .four-col-inner-icon-sec .four-col-icon-block {
        margin: auto;
        width: 100%;
        margin-right: auto;
    }

    .four-col-inner-icon-sec .four-col-icon-block:nth-child(2n + 2) {
        margin-left: auto;
        margin-right: auto;
    }

    .four-col-inner-icon-sec {
        grid-template-columns: repeat(1, 1fr);
    }

    .testimonial-map-sec .map-container .avatar-wrapper {
        left: 5% !important;
    }

    .testimonial-map-sec .map-container .avatar-wrapper:nth-child(1) {
        top: 5% !important;
    }

    .testimonial-map-sec .map-container .avatar-wrapper:nth-child(2) {
        top: 25% !important;
    }

    .testimonial-map-sec .map-container .avatar-wrapper:nth-child(3) {
        top: 45% !important;
        left: 5% !important;
    }

    .testimonial-map-sec .map-container .avatar-wrapper:nth-child(4) {
        top: 65% !important;
    }

    .testimonial-map-sec .map-container .review-box {
        transform: translate(25%, 0%);
        top: 10%;
    }

    .two-col-img-right-icon-block .two-col-img-right-icon-img img {
        width: 90px;
    }

    .two-col-img-right-block .two-col-img-right-icon-block::before {
        left: 45px;
        top: 90px;
    }

    .two-col-left-img-sec .two-col-img-right-block {
        padding: 30px 15px;
    }

    .two-col-img-right-block .two-col-img-right-icon-block {
        align-items: flex-start;
        gap: 20px;
    }

    .two-col-wrapper .two-col-right-sec .two-col-right-text {
        padding: 40px 25px;
    }

    .footer-right-sec h6 {
        margin-bottom: 20px;
    }

    .footer-right-sec li {
        margin-bottom: 10px;
    }

    .footer-sec-wrapper {
        margin-bottom: 30px;
    }

    .two-col-right-icon-text {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        padding: 0;
    }

    .two-col-right-icon-text .two-col-right-icon-block img {
        width: 100%;
        max-width: 80px;
    }

    .two-col-right-icon-text .two-col-right-icon-block p {
        font-size: 14px;
    }

    .four-col-inner-icon-sec .four-col-icon-block-img img {
        max-width: 120px;
    }

    .values-grid,
    .highlights-grid {
        grid-template-columns: repeat(1, 1fr);
        margin-top: 30px;
    }

    .values-grid .value-item,
    .values-grid .value-item:nth-child(2n + 2),
    .highlights-grid .highlight-box,
    .highlights-grid .highlight-box:nth-child(2n + 2) {
        margin-right: auto;
        margin-left: auto;
    }

    .banner-sec {
        /* padding: 31% 0px; */
        height: 70vh;
    }

    .two-col-right-text .subheading::after,
    .experience-wrapper .experience-right-text .subheading::after,
    .two-col-left-img-sec .two-col-img-right-block .subheading::after,
    .four-col-icons-sec .four-col-heading-text .subheading::before,
    .four-col-icons-sec .four-col-heading-text .subheading::after,
    .gallery-sec-heading-text .subheading::before,
    .gallery-sec-heading-text .subheading::after,
    .success-heading-text .subheading::before,
    .success-heading-text .subheading::after {
        display: none;
    }

    .testimonial-map-sec .map-container .avatar-wrapper:hover .review-box {
        width: calc(100vw - 100px);
    }

    .testimonial-map-sec .map-container .review-box {
        transform: translate(25%, 0%) !important;
        top: 10%;
        left: 10px !important;
        right: auto !important;
    }

    .my-profile-sec .blocked-card-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }

    .popup-modal-sec .logout-modal-content .logout-actions button {
        padding: 6px 15px;
    }

}

@media screen and (max-width: 480px) {
    .pricing-wrapper .pricing-card.highlight .most-popular {
        top: 9vw;
        right: -33vw;
    }

    .form-group.gender-toggle.rating-app .options {
        display: flex;
        flex-direction: column;
    }

    .login-sec .form-group.gender-toggle .options label {
        width: 100%;
    }

    .new-hero-sec .hero-sec-text h1 {
        display: flex;
        flex-direction: column;
    }

    .new-hero-sec .stores-btn {
        flex-direction: column;
        align-items: center;
    }
}