@charset "UTF-8";

@keyframes toTopFromBottom {
    49% {
        transform: translateY(-100%);
    }

    50% {
        opacity: 0;
        transform: translateY(100%);
    }

    51% {
        opacity: 1;
    }
}

body {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 23px;
    color: #111111;
    width: 100%;
    padding-right: 0 !important;
    background: #fffdfd;
    transition: all 0.5s;
}

a {
    color: #111111;
    font-family: "Lato", sans-serif;
    text-decoration: none;
    transition: all 0.5s;
}

i:before {
    margin-left: 0 !important;
}

a:hover, a:focus {
    text-decoration: none;
    outline: none;
    transition: all 0.5s;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: "Lato", sans-serif;
    line-height: 1.1;
    font-weight: 400;
    color: #111111;
    margin: 0;
    padding: 0;
}

.b-none {
    border: none !important;
}

p, a {
    margin: 0;
    padding: 0;
    color: #797979;
}

p {
    font-family: "Lato", sans-serif;
}

ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    transition: all 0.5s;
}

img {
    transition: all 0.5s;
}

#back-to-top {
    display: inline-block;
    background: linear-gradient(to right, #fa2456, #fd735a);
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: #ffffff;
    border-radius: 35px 35px 0 0;
    position: fixed;
    bottom: -50px;
    right: 90px;
    transition: all 0.5s;
    z-index: 1000;
    padding-top: 3px;
}

    #back-to-top.show {
        bottom: 0;
    }

.bg-color1 {
    background-color: #f6f7f9 !important;
}

.bg-color2 {
    background-color: #f9f9f9 !important;
}

.bg-color3 {
    background-color: #fffdfd !important;
}

.font-color-pink {
    color: #fa2456;
}

.cls-3 {
    fill: none;
    stroke-miterlimit: 10;
    stroke-width: 6px;
}

.custum-select select {
    display: none;
}

.custum-select .dropdown {
    border: solid 1px #e2e2e2;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.0075);
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    float: left;
    font-size: 14px;
    font-weight: normal;
    height: 50px;
    line-height: 48px;
    outline: none;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
    text-align: left !important;
    transition: all 0.2s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    white-space: nowrap;
    width: 100%;
    color: #797979;
}

    .custum-select .dropdown:focus {
        background-color: #fd6a50;
        color: #ffffff;
    }

        .custum-select .dropdown:focus:after {
            border-color: #ffffff;
        }

    .custum-select .dropdown:hover {
        background-color: #fd6f55;
        color: #ffffff;
    }

        .custum-select .dropdown:hover:after {
            border-color: #ffffff;
        }

    .custum-select .dropdown:active, .custum-select .dropdown.open {
        background-color: #fd684d !important;
        border-color: #d8d8d8;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05) inset;
        color: #ffffff;
    }

        .custum-select .dropdown:active:after, .custum-select .dropdown.open:after {
            border-color: #ffffff;
        }

    .custum-select .dropdown:after {
        height: 8px;
        width: 8px;
        border: 1px solid #797979;
        border-top: 0;
        border-left: 0;
        transform: rotate(45deg) translateY(-50%);
        transition: all 0.125s ease-in-out;
        content: "";
        display: block;
        margin-top: -4px;
        pointer-events: none;
        position: absolute;
        right: 20px;
        top: 50%;
    }

    .custum-select .dropdown.open:after {
        transform: rotate(225deg);
        border-color: #ffffff;
    }

    .custum-select .dropdown.open .list {
        transform: scale(1);
        opacity: 1;
        pointer-events: auto;
    }

    .custum-select .dropdown.open .option {
        cursor: pointer;
    }

    .custum-select .dropdown.wide {
        width: 100%;
    }

        .custum-select .dropdown.wide .list {
            left: 0 !important;
            right: 0 !important;
        }

    .custum-select .dropdown .list {
        box-sizing: border-box;
        transition: all 0.15s cubic-bezier(0.25, 0, 0.25, 1.75), opacity 0.1s linear;
        transform: scale(0.75);
        transform-origin: 50% 0;
        box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.09);
        background-color: #ffffff;
        border-radius: 6px;
        margin-top: 4px;
        padding: 3px 0;
        opacity: 0;
        overflow: hidden;
        pointer-events: none;
        position: absolute;
        width: 100%;
        top: 100%;
        left: 0;
        z-index: 999;
    }

        .custum-select .dropdown .list:hover .option:not(:hover) {
            background-color: transparent !important;
            color: #797979;
        }

    .custum-select .dropdown .option {
        cursor: default;
        font-weight: 400;
        line-height: 48px;
        outline: none;
        padding-left: 18px;
        padding-right: 29px;
        text-align: left;
        transition: all 0.2s;
        color: #797979;
    }

        .custum-select .dropdown .option:hover, .custum-select .dropdown .option:focus {
            background-color: #fd735a !important;
            color: #ffffff;
        }

        .custum-select .dropdown .option.selected {
            font-weight: 600;
            background: #fd735a;
            color: #ffffff;
        }

            .custum-select .dropdown .option.selected:focus {
                background: #fd735a;
                color: #ffffff;
            }

#header-shape-gradient {
    --color-stop: #fa2456;
    --color-bot: #fd735a;
}

.heading h2 {
    font-size: 44px;
    font-weight: 300;
    color: #191919;
    line-height: 55px;
}

.heading .heart-line {
    margin: 5px 0 10px;
    position: relative;
}

    .heading .heart-line i {
        font-size: 12px;
        background: linear-gradient(to right, #fa2456, #fd735a);
        -webkit-background-clip: text;
        -moz-background-clip: text;
        -webkit-text-fill-color: transparent;
        -moz-text-fill-color: transparent;
    }

    .heading .heart-line:after {
        position: absolute;
        content: "";
        width: 92px;
        height: 2px;
        background: #d1d1d1;
        top: 50%;
        left: 15px;
        transform: translateY(-50%);
    }

    .heading .heart-line:before {
        position: absolute;
        content: "";
        width: 36px;
        height: 2px;
        top: 50%;
        left: 15px;
        transform: translateY(-50%);
        background: #fa2456;
        z-index: 1;
    }

.heading.heading-white h2, .heading.heading-white p {
    color: #ffffff;
}

.btn-ul {
    display: flex;
    justify-content: flex-start;
    -moz-column-gap: 20px;
    column-gap: 20px;
    margin-top: 50px;
}

a.main-btn, .main-btn {
    display: inline-block;
    height: 50px;
    line-height: 50px;
    text-align: center;
    width: 200px;
    position: relative;
    background-image: linear-gradient(to right, #fa2456, #fd735a, #fa2456, #fd735a);
    background-size: 300%;
    border-radius: 35px;
    color: #ffffff !important;
    border: none !important;
}

    a.main-btn .icon, button.main-btn .icon {
        width: 60px;
        height: 50px;
        float: left;
        display: inline-block;
        font-size: 26px;
        border-right: 1px solid rgba(233, 233, 233, 0.2);
    }

    a.main-btn:hover, button.main-btn:hover {
        animation: animate 16s ease-in infinite alternate;
    }

.custom-button {
    display: inline-block;
    padding: 11px 35px;
    width: auto;
    border-radius: 50px;
    margin-left: 20px;
    height: auto;
    border: 2px solid rgba(0, 0, 0, 0.1);
    background-color: transparent;
}

@keyframes animate {
    0% {
        background-position: 0%;
    }

    25% {
        background-position: 100%;
    }

    50% {
        background-position: 200%;
    }

    100% {
        background-position: 300%;
    }
}

.center-heading {
    text-align: center;
}

    .center-heading .heart-line {
        z-index: 2;
        width: 92px;
        margin: 10px auto;
    }

        .center-heading .heart-line:before {
            width: 46px;
            left: 0;
            z-index: -1;
        }

        .center-heading .heart-line:after {
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: -2;
        }

.preloder {
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: #ffffff;
    z-index: 9999;
}

.heart p {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #000000;
    font-size: 20px;
    position: absolute;
    top: 100px;
    width: 100%;
    animation: fadeOut 5s infinite alternate;
}

.heart {
    position: absolute;
    font-size: 0;
    width: 138px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

[class*=heart-piece-] {
    position: absolute;
    top: -5px;
    width: 10px;
    height: 10px;
    border-radius: 5px;
}

.heart-piece-4 {
    animation: piece-4 3.2s infinite;
}

.heart-piece-3,
.heart-piece-5 {
    animation: piece-3 3.2s infinite;
}

.heart-piece-2,
.heart-piece-6 {
    animation: piece-2 3.2s infinite;
}

.heart-piece-1,
.heart-piece-7 {
    animation: piece-1 3.2s infinite;
}

.heart-piece-0,
.heart-piece-8 {
    animation: piece-0 3.2s infinite;
}

.heart-piece-0 {
    left: 0px;
    animation-delay: 0s;
    background-color: #ec2d73;
}

.heart-piece-1 {
    left: 16px;
    animation-delay: 0.15s;
    background-color: #eb5324;
}

.heart-piece-2 {
    left: 32px;
    animation-delay: 0.3s;
    background-color: #fdc800;
}

.heart-piece-3 {
    left: 48px;
    animation-delay: 0.45s;
    background-color: #47b264;
}

.heart-piece-4 {
    left: 64px;
    animation-delay: 0.6s;
    background-color: #1470bd;
}

.heart-piece-5 {
    left: 80px;
    animation-delay: 0.75s;
    background-color: #76469a;
}

.heart-piece-6 {
    left: 96px;
    animation-delay: 0.9s;
    background-color: #ec2d73;
}

.heart-piece-7 {
    left: 112px;
    animation-delay: 1.05s;
    background-color: #eb5324;
}

.heart-piece-8 {
    left: 128px;
    animation-delay: 1.2s;
    background-color: #fdc800;
}

@keyframes piece-4 {
    0%, 10%, 90%, 100% {
        height: 10px;
        top: -5px;
    }

    45%, 55% {
        height: 94px;
        top: -23px;
    }
}

@keyframes piece-3 {
    0%, 10%, 90%, 100% {
        height: 10px;
        top: -5px;
    }

    45%, 55% {
        height: 90px;
        top: -31px;
    }
}

@keyframes piece-2 {
    0%, 10%, 90%, 100% {
        height: 10px;
        top: -5px;
    }

    45%, 55% {
        height: 80px;
        top: -37px;
    }
}

@keyframes piece-1 {
    0%, 10%, 90%, 100% {
        height: 10px;
        top: -5px;
    }

    45%, 55% {
        height: 60px;
        top: -31px;
    }
}

@keyframes piece-0 {
    0%, 10%, 90%, 100% {
        height: 10px;
        top: -5px;
    }

    45%, 55% {
        height: 30px;
        top: -15px;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0.3;
    }
}

@keyframes dash {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes calculating {
    0% {
        content: "74%";
    }

    5% {
        content: "28%";
    }

    10% {
        content: "54%";
    }

    15% {
        content: "17%";
    }

    20% {
        content: "44%";
    }

    25% {
        content: "5%";
    }

    30% {
        content: "87%";
    }

    35% {
        content: "100%";
    }

    40% {
        content: "66%";
    }

    50% {
        content: "89%";
    }

    60% {
        content: "22%";
    }

    70% {
        content: "32%";
    }

    85% {
        content: "80%";
    }

    100% {
        content: "35%";
    }
}

@keyframes arrow {
    to {
        opacity: 1;
    }
}

@keyframes scaleAni {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.media-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    -moz-column-gap: 10px;
    column-gap: 10px;
    row-gap: 10px;
    margin-top: 10px;
}

    .media-list li a {
        display: inline-block;
        width: 35px;
        height: 35px;
        line-height: 35px;
        background-color: #f1f1f1;
        text-align: center;
        border-radius: 50%;
        color: #707070;
        overflow: hidden;
        transition: all 0.5s;
        position: relative;
        z-index: 2;
    }

        .media-list li a::after {
            content: "";
            position: absolute;
            width: 100%;
            height: 100%;
            left: -100%;
            top: 0;
            border-radius: 50%;
            background: linear-gradient(to right, #fa2456, #fd735a);
            z-index: -1;
            transition: all 0.5s;
        }

        .media-list li a:hover {
            color: #ffffff;
        }

            .media-list li a:hover::after {
                left: 0;
            }

.mydropdown .maindropdown {
    position: absolute;
    top: 85px;
    right: 0;
    width: 200px;
    border-radius: 8px;
    text-align: left;
    background-color: #ffffff;
    box-shadow: 0 -12px 46px 12px rgba(182, 14, 14, 0.0509803922);
    transition: all 300ms ease;
    opacity: 0;
    visibility: hidden;
    animation: moveitback 400ms ease forwards;
    will-change: transform;
}

    .mydropdown .maindropdown li {
        perspective: 1000px;
    }

        .mydropdown .maindropdown li a {
            padding: 8px 20px;
            display: inline-block;
            width: 100%;
            position: relative;
            display: inline-block;
            transition: transform 0.3s;
            transform-origin: 50% 0;
            color: #797979;
            transform-style: preserve-3d;
        }

            .mydropdown .maindropdown li a::before {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                height: 100%;
                content: attr(data-hover);
                transition: color 0.3s;
                transform: rotateX(-88deg);
                transform-origin: 50% 0;
                padding: 8px 20px;
            }

            .mydropdown .maindropdown li a:hover {
                transform: rotateX(90deg) translateY(-22px);
                color: #797979;
            }

                .mydropdown .maindropdown li a:hover::before {
                    color: red;
                }

.mydropdown:hover .maindropdown {
    opacity: 1;
    visibility: visible;
    animation: moveit 900ms ease forwards;
    will-change: transform;
}

body.dark header .main-header .main-menu ul li a:hover {
    color: #c5c5c5;
    transform: translateY(-2px);
}


/*-- mega-menu --*/
.mydropdown .mega-menu {
    position: absolute;
    top: 85px;
    right: 0;
    width: 500px;
    border-radius: 8px;
    text-align: left;
    background-color: #ffffff;
    box-shadow: 0 -12px 46px 12px rgba(182, 14, 14, 0.0509803922);
    transition: all 300ms ease;
    opacity: 0;
    visibility: hidden;
    animation: moveitback 400ms ease forwards;
    will-change: transform;
    display: flex;
}

    .mydropdown .mega-menu li {
        perspective: 1000px;
    }

        .mydropdown .mega-menu li a {
            padding: 15px 20px;
            display: inline-block;
            width: 100%;
            position: relative;
            display: inline-block;
            transition: transform 0.3s;
            transform-origin: 50% 0;
            color: #797979;
            transform-style: preserve-3d;
        }

            .mydropdown .mega-menu li a::before {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                height: 100%;
                content: attr(data-hover);
                transition: color 0.3s;
                transform: rotateX(-88deg);
                transform-origin: 50% 0;
                padding: 15px 20px;
            }

            .mydropdown .mega-menu li a:hover {
                transform: rotateX(90deg) translateY(-22px);
                color: #797979;
            }

                .mydropdown .mega-menu li a:hover::before {
                    color: #fa2456;
                }

.mydropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    animation: moveit 900ms ease forwards;
    will-change: transform;
}

.quantity {
    position: relative;
}

    .quantity input[type=number] {
        -moz-appearance: textfield;
    }

        .quantity input[type=number]::-webkit-inner-spin-button, .quantity input[type=number]::-webkit-outer-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }

    .quantity input {
        height: 50px;
        line-height: 1.65;
        float: left;
        display: block;
        padding: 0;
        margin: 0;
        padding-left: 20px;
        border: 1px solid #eee;
    }

        .quantity input:focus {
            outline: 0;
        }

    .quantity .quantity-nav {
        float: left;
        position: relative;
        height: 50px;
    }

        .quantity .quantity-nav .quantity-button {
            position: relative;
            cursor: pointer;
            border-left: 1px solid #eee;
            width: 25px;
            height: 25px;
            text-align: center;
            color: #333;
            font-size: 16px;
            line-height: 25px;
            transform: translateX(-100%);
            -webkit-user-select: none;
            -moz-user-select: none;
            -o-user-select: none;
            user-select: none;
        }

            .quantity .quantity-nav .quantity-button.quantity-up {
                position: absolute;
                top: 0;
                border-bottom: 1px solid #eee;
            }

            .quantity .quantity-nav .quantity-button.quantity-down {
                position: absolute;
                bottom: -1px;
            }

.rating-group {
    display: inline-flex;
}

    .rating-group .rating__input {
        position: absolute !important;
        left: -9999px !important;
    }

        .rating-group .rating__input.rating__input--none {
            display: none;
        }

        .rating-group .rating__input:checked ~ .rating__label .rating__icon--star {
            color: #ddd;
        }

        .rating-group .rating__input:hover .rating__label .rating__icon--star {
            color: orange;
        }

        .rating-group .rating__input:hover ~ .rating__label .rating__icon--star {
            color: #ddd;
        }

    .rating-group .rating__label {
        cursor: pointer;
        padding: 0 5px;
        font-size: 20px;
    }

        .rating-group .rating__label .rating__icon {
            pointer-events: none;
        }

            .rating-group .rating__label .rating__icon.rating__icon--star {
                color: orange;
            }

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

        .switch input:checked + .slider:before {
            transform: translateX(26px);
        }

    .switch .slider {
        position: absolute;
        cursor: pointer;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to right, #fa2456, #fd735a);
        border-radius: 34px;
        transition: 0.4s;
    }

        .switch .slider:before {
            position: absolute;
            content: "";
            height: 26px;
            border-radius: 50%;
            width: 26px;
            left: 4px;
            bottom: 4px;
            background-color: white;
            transition: 0.4s;
        }

button.js-toggle-dark-mode {
    background: transparent;
    border-color: transparent;
}

    button.js-toggle-dark-mode .darkSunMode {
        color: #111111;
        display: block;
    }

    button.js-toggle-dark-mode .darkMoonMode {
        color: white;
        display: none;
    }

body.dark {
    background: #222222 !important;
}

    body.dark .main-innerpage {
        margin-top: 0px;
    }

    body.dark header .main-header .main-menu {
        background: #111111;
    }

        body.dark header .main-header .main-menu ul {
            border-color: #565656;
        }

            body.dark header .main-header .main-menu ul li a {
                color: #fff;
            }

                body.dark header .main-header .main-menu ul li a .fa {
                    color: #fb3557;
                }

    body.dark .mydropdown .maindropdown {
        background-color: #111111;
    }

    body.dark header .main-header .main-menu > ul > li .sidebar-toggle .sidebar-toggle-1, body.dark header .main-header .main-menu > ul > li .sidebar-toggle .sidebar-toggle-2 {
        background-color: #fff;
    }

    body.dark .dating-wapper {
        background: #222222;
    }

.elite {
    background-image: url("../images/map-bg.png") !important;
    background-position-y: -80px !important;
}

body.dark .dating-wapper .take-a-change {
    background: #0a0a0a;
}

    body.dark .dating-wapper .take-a-change .change-box label {
        color: #fff;
    }

    body.dark .dating-wapper .take-a-change .change-box .custum-range .ui-slider-horizontal {
        background: #fff;
    }

    body.dark .dating-wapper .take-a-change .change-box .custum-select .dropdown {
        border-color: #fff;
    }

        body.dark .dating-wapper .take-a-change .change-box .custum-select .dropdown .current {
            color: #fff;
        }

        body.dark .dating-wapper .take-a-change .change-box .custum-select .dropdown:after {
            border-color: #fff;
        }

body.dark .bg-color2 {
    background-color: #222222 !important;
}

body.dark .counter-section .counter-box .counter-icon::after {
    background-color: #111111;
}

body.dark .counter-section .counter-box .counter-text {
    background-color: #111111;
    border: 1px solid #353535;
}

    body.dark .counter-section .counter-box .counter-text .h2 {
        color: #fff;
    }

    body.dark .counter-section .counter-box .counter-text p {
        color: #fff;
    }

body.dark .doctor-love {
    background: #010000;
}

    body.dark .doctor-love .heading h2 {
        color: #fff;
    }

    body.dark .doctor-love .heading p {
        color: #fff;
    }

    body.dark .doctor-love .love-calculater .love-calculater-box {
        background: #222222;
    }

        body.dark .doctor-love .love-calculater .love-calculater-box .enter-name label {
            color: #fff;
        }

        body.dark .doctor-love .love-calculater .love-calculater-box .enter-name input {
            background: #111111;
            border-color: #fff;
            color: #fb3257;
        }

            body.dark .doctor-love .love-calculater .love-calculater-box .enter-name input::-moz-placeholder {
                color: #fb3257;
            }

            body.dark .doctor-love .love-calculater .love-calculater-box .enter-name input::placeholder {
                color: #fb3257;
            }

body.dark .heading h2 {
    color: #fff;
}

body.dark .heading p {
    color: #fff;
}

body.dark .how-it-work .counter-box .counter-text {
    background: #111111;
    border: 1px solid #353535;
}

    body.dark .how-it-work .counter-box .counter-text h5 {
        color: #fff;
    }

    body.dark .how-it-work .counter-box .counter-text span {
        color: #fff;
    }

body.dark .how-it-work .counter-box .counter-icon::after {
    background-color: #111111;
}

body.dark .how-it-work .counter-box:hover .counter-icon span {
    background: #111111;
    color: #fff;
}

body.dark .main-customers-slider {
    background-color: #111111 !important;
}

    body.dark .main-customers-slider .slider-text .slider-heading h4 {
        color: #fff;
    }

    body.dark .main-customers-slider .slider-text p {
        color: #fff;
    }

    body.dark .main-customers-slider .customers-slider .owl-nav button .fas {
        color: #fa3057;
    }

body.dark .main-members-section {
    background-color: #222222 !important;
}

    body.dark .main-members-section img.shape1 {
        display: none;
    }

    body.dark .main-members-section .members-box .members-text::after {
        background-color: #111111;
    }

    body.dark .main-members-section .members-box .members-text h6 {
        color: #ffffff;
    }

    body.dark .main-members-section .members-box .members-text span {
        color: #ffffff;
    }

body.dark .main-princing-section {
    background-color: #111111;
}

    body.dark .main-princing-section .counter-box .counter-icon::after {
        background-color: #222222;
    }

    body.dark .main-princing-section .counter-box .counter-text h4 {
        color: #fff;
    }

    body.dark .main-princing-section .counter-box .counter-text .table-ul {
        border-top: 1px solid #ffffff;
    }

        body.dark .main-princing-section .counter-box .counter-text .table-ul li {
            color: #fff;
        }

    body.dark .main-princing-section .counter-box .counter-text {
        background-color: #222222;
    }

body.dark .blog {
    background-color: #111111;
}

    body.dark .blog .blog-box .blog-text {
        background-color: #222222;
    }

        body.dark .blog .blog-box .blog-text .h4 {
            color: #fff;
        }

body.dark .bootem-footer p {
    color: #fff;
}

body.dark .bootem-footer ul li a {
    color: #fff;
}

body.dark footer a {
    color: #fff;
}

body.dark footer .footer-content .media-icon li a {
    border: 1px solid #fff;
    color: #fff;
}

body.dark button.js-toggle-dark-mode .darkSunMode {
    display: none;
}

body.dark button.js-toggle-dark-mode .darkMoonMode {
    display: block;
}

body.dark .about-section .counter-box .counter-text h4 {
    color: #fff;
}

body.dark .heading .heart-line:after {
    background: #fff;
}

body.dark .blog-page .sidepannal .pannal-box {
    background-color: #222222;
}

    body.dark .blog-page .sidepannal .pannal-box h5 {
        color: #fff;
    }

    body.dark .blog-page .sidepannal .pannal-box .pannal-content .blog-list .blog-box .blog-list-text .h6 {
        color: #fff;
    }

body.dark .main-pagination li a {
    color: #fff;
    background-color: #222222;
}

    body.dark .main-pagination li a:hover {
        background-color: #222222;
    }

body.dark .main-innerpage .innerpages {
    background-color: #1e1e1e;
}

    body.dark .main-innerpage .innerpages h2 {
        color: #fff;
    }

    body.dark .main-innerpage .innerpages span {
        color: #fff;
    }

        body.dark .main-innerpage .innerpages span .font-color-pink {
            color: #fa2456;
        }

body.dark .comment_wrapper h4, body.dark .comment_wrapper .comment_box .comment-content h5, body.dark .about-admin .admin-text h4, body.dark .main-chat-box .chat-box .main-chat .chat-tab ul li a .profile-name {
    color: #fff;
}

body.dark .about-admin {
    background-color: #222222;
}

body.dark .comment_wrapper .comment-form .comment_input .form_input input, body.dark .comment_wrapper .comment-form .comment_input .form_input textarea, body.dark .main-chat-box .chat-box, body.dark .main-chat-box .chat-box .main-chat .msger .msger-inputarea input, body.dark .main-chat-box .chat-box .main-chat .chat-tab ul li a {
    background-color: #222222;
}

    body.dark .main-chat-box .chat-box .main-chat .msger .msger-inputarea, body.dark .main-chat-box .chat-box .top-bar, body.dark .main-chat-box .chat-box .main-chat .msger .msger-chat, body.dark .main-chat-box .chat-box .main-chat .chat-tab .chat-list {
        border: 1px solid;
        border-color: rgba(235, 236, 249, 0.2784313725);
    }

    body.dark .main-chat-box .chat-box .top-bar {
        background-color: #222222;
    }

body.dark .main-chat-box {
    background-color: #111111;
}

    body.dark .main-chat-box .chat-box .top-bar .left a {
        color: #fff;
    }

    body.dark .main-chat-box .chat-box .top-bar .right a {
        color: #fff;
    }

    body.dark .main-chat-box .chat-box .top-bar .chat-search input {
        background: #222222;
    }

body.dark .button3-wrapper {
    background-image: linear-gradient(to top right, #111111, #111111, #111111);
}

body.dark .section-heading h4 {
    color: #fff;
}

body.dark .button4-wrapper .btn4 {
    color: #fff;
    border-color: #dbdbdb;
}

    body.dark .button4-wrapper .btn4:hover {
        border-color: #dbdbdb;
    }

body.dark .button9-wrapper .expan-rouded-btn {
    color: #fff;
}

body.dark .button12-wrapper .flat-shadow-btn {
    color: #fff;
}

    body.dark .button12-wrapper .flat-shadow-btn:hover {
        background: linear-gradient(to right, #fa2456, #fd735a);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

body.dark .button6-wrapper .btn6.checkout:hover {
    background: linear-gradient(to right, #fa2456, #fd735a);
}

body.dark .button3-wrapper .btn3.black-btn:hover {
    color: #ffffff;
}

body.dark .button3-wrapper .btn3.gray-btn:hover {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

body.dark .main-chat-box .chat-box .main-chat .msger .msger-inputarea input, body.dark .main-chat-box .chat-box .top-bar .chat-search input {
    color: #fff;
}

body.dark .client1-wrapper, body.dark .client2-wrapper, body.dark .client3-wrapper {
    background-color: #222222;
}

    body.dark .client1-wrapper a, body.dark .client3-wrapper .hover-box .overlay {
        background-color: #ffffff;
        opacity: 1;
        margin-bottom: 15px;
    }

body.dark .contact-section, body.dark .counter-one-wrapper, body.dark .counter-three-wrapper, body.dark .client1-wrapper, body.dark .client3-wrapper, body.dark .button1-wrapper, body.dark .button3-wrapper, body.dark .button5-wrapper, body.dark .button7-wrapper, body.dark .button9-wrapper, body.dark .button11-wrapper, body.dark .blog-page, body.dark .my-profile .input-info-box .content .my-notification-box {
    background-color: #111111;
}

    body.dark .contact-section .form-box, body.dark .counter-two-wrapper, body.dark .client2-wrapper, body.dark .button2-wrapper, body.dark .button4-wrapper, body.dark .button6-wrapper, body.dark .button8-wrapper, body.dark .button10-wrapper, body.dark .button12-wrapper, body.dark .counter-four-wrapper, body.dark .my-profile .friends-box, body.dark .my-profile .input-info-box {
        background-color: #222222;
    }

        body.dark .main-form h4, body.dark .contact-section .contact-detail .contact-detail-box h4, body.dark .my-profile .input-info-box .header, body.dark .my-profile .input-info-box .content .my-notification-box .left .top h5 {
            color: #ffffff;
        }

    body.dark .main-form .form-input input, body.dark .main-form .form-input textarea, body.dark .contact-section .contact-detail .contact-detail-box {
        background-color: #222222;
    }

body.dark .contact-detail-text p a {
    color: #707070;
}

body.dark .main-form .form-input textarea, body.dark .main-form .form-input input, body.dark .contact-section .contact-detail .contact-detail-box .contact-detail-list .contact-detail-text {
    border-color: #606060;
}

body.dark .main-form .form-input input,
body.dark .main-form .form-input textarea {
    color: #d3d3d3;
}

body.dark .counter-one .our-progress h4 a {
    color: #fff;
}

body.dark .counter-one .our-progress .chart-one .percent {
    color: #fff;
}

body.dark .counter-two .our-progress h4 a {
    color: #fff;
}

body.dark .blog-page .sidepannal .pannal-box .pannal-content .profile-setting li a {
    color: #888;
}

    body.dark .blog-page .sidepannal .pannal-box .pannal-content .profile-setting li a:hover {
        color: #fff;
    }

    body.dark .blog-page .sidepannal .pannal-box .pannal-content .profile-setting li a.active {
        color: #fff;
    }

body.dark .friends-box .friend-name h4 {
    color: #fff;
}

body.dark .friends-box .friend-name span {
    color: #888;
}

body.dark .my-profile .request-btn .custom-button, body.dark .custom-button {
    border-color: #fff;
    color: #fff;
}

body.dark .my-profile .input-info-box .content .my-input-box textarea, body.dark .my-profile .input-info-box .content .my-input-box input, body.dark .my-profile .input-info-box .content .my-input-box .custum-select .dropdown, body.dark .form-control {
    background-color: #222222;
    border-color: #606060;
    color: #606060;
}

body.dark .my-profile .input-info-box .content .my-input-box label {
    color: #fff;
}

body.dark .form-one-wrapper, body.dark .tab-five-wrapper {
    background-color: #111111;
}

body.dark .form-two-wrapper, body.dark .form-four-wrapper {
    background-color: #222222;
    background-image: unset;
}

    body.dark .form-two-wrapper .form-two form, body.dark .form-three-wrapper {
        background-color: #111111;
    }

body.dark .form-three label {
    color: #606060;
}

body.dark .form-floating > label {
    color: #606060;
}

body.dark .ic-section-1, body.dark .ic-section-3, body.dark .ic-section-5, body.dark .list-main-wrapper-one, body.dark .list-main-wrapper-three, body.dark .list-main-wrapper-five, body.dark .main-singin-box .singin-box .singin-right .main-form, body.dark .main-singin-box .singin-box .singin-left .tag, body.dark .main-my-profile, body.dark .gallery1-wrapper, body.dark .gallery3-wrapper, body.dark .pt-section-1 .p-box-1 .heading-1, body.dark .pt-section-1, body.dark .pt-section-1 .p-box-1.box-border, body.dark .pt-section-5 .p-box-5 .content-5, body.dark .pt-section-4, body.dark .pt-section-2 .p-box-2, body.dark .main-profile, body.dark .tabbox .tab-content .friends-box, body.dark .community-page, body.dark .search-text .search-box, body.dark .search-text .search-box input, body.dark .an_checkout_form_wrapper {
    background-color: #111111;
}

    body.dark .search-text .search-box input::-moz-placeholder {
        color: #fff;
    }

    body.dark .search-text .search-box input::placeholder, body.dark .search-text .search-box input, body.dark .search-text .search-box i, body.dark .end_form form label {
        color: #fff;
    }

body.dark .search-text .search-box {
    border: 1px solid #fff;
}

body.dark .search-text .search-result .main-members-section {
    padding: 40px 0 0 0;
}

body.dark .ic-section-2, body.dark .ic-section-4, body.dark .list-main-wrapper-two, body.dark .list-main-wrapper-four, body.dark .main-my-profile .profile-box, body.dark .gallery2-wrapper, body.dark .gallery4-wrapper, body.dark .pt-section-1 .p-box-1 .text-1, body.dark .pt-section-2, body.dark .pt-section-4 .p-box-4, body.dark .main-profile .profile-content, body.dark .tabbox, body.dark .tabbox .position-relative, body.dark .tabbox .tab-content .add-post .post-type .text textarea, body.dark .jquery-uploader-preview-container, body.dark .an_checkout_form_wrapper .an_checkout_form_row .an_information_box form, body.dark .an_checkout_form_wrapper .an_checkout_form_row .an_information_box form input {
    background-color: #222222;
}

    body.dark .list-main-wrapper-five .list-five-wrapper ul li, body.dark .list-main-wrapper-three .list-three-wrapper ul li, body.dark .main-my-profile .profile-box .profile-name, body.dark .gallery4-wrapper .tab_image_text, body.dark .tabbox .position-relative {
        border-color: #606060 !important;
    }

body.dark .jquery-uploader-select-card {
    border-color: #fff;
}

body.dark .pt-section-4 .p-box-4 .p-box-4-1 h3 {
    background-color: #111;
    color: #fff;
}

body.dark .pt-section-4 .p-box-4 .p-box-4-1 {
    background-color: #575757;
}

    body.dark .icon-box-three h4 a, body.dark .icon-box-four h4 a, body.dark .icon-box-five h4 a, body.dark .icon-box-two h4 a, body.dark .list-main-wrapper-five .list-five-wrapper ul li .list-content .list-head, body.dark .list-main-wrapper-five .list-five-wrapper ul li .list-price, body.dark .accor-heading h3, body.dark .main-singin-box .singin-box .singin-right .main-form h4, body.dark .main-my-profile .profile-box .profile-name h3, body.dark .gallery4-wrapper .tab_image_wrapper .project_title h4 a, body.dark .gallery4-wrapper .project_likes a, body.dark .gallery4-wrapper .project_category h4 a, body.dark .pt-section-1 .p-box-1 h4, body.dark .pt-section-4 .p-box-4 .list-6 li, body.dark .pt-section-4 .p-box-4 .p-box-4-1 h2, body.dark .pt-section-2 .p-box-2 .heading-2, body.dark .pt-section-2 .p-box-2 .p-top-padding a, body.dark .main-profile .profile-content .profile-details .profile-name h3, body.dark .main-profile .profile-content .profile-details .right ul li .h2, body.dark .tabbox .nav li a, body.dark .tabbox .tab-content .profile-tab h4, body.dark .tabbox .tab-content .profile-tab h4 .edit-icon, body.dark .tabbox .tab-content .profile-tab ul li p, body.dark .tabbox .tab-content .profile-tab ul li, body.dark .tabbox .tab-content .add-post .post-type-tab li a, body.dark .tabbox .tab-content .add-post .post-type .text textarea, body.dark .tabbox .tab-content .posts-box .profile-details .profile-name h5, body.dark .jquery-uploader-select i, body.dark .jquery-uploader-select > .upload-button a, body.dark .main-profile .profile-content .about-photo h4, body.dark .main-profile .profile-content .profile-details .right ul li .menu, body.dark .search-text h2, body.dark .an_checkout_form_wrapper .an_checkout_form_row .an_information_box form label, body.dark .an_checkout_form_wrapper .an_checkout_form_row .an_information_box form input, body.dark .an_checkout_form_wrapper .an_checkout_form_row .an_information_box form.pay_ment ul li:first-child p, body.dark .an_checkout_form_wrapper .an_checkout_form_row .an_information_box form ul li, body.dark .an_checkout_form_wrapper .an_checkout_form_row .an_information_box form.pay_ment ul li p, body.dark .an_checkout_form_wrapper .an_checkout_form_row .an_information_box form.pay_ment ul li:first-child span, body.dark .an_checkout_form_wrapper .an_checkout_form_row .an_information_box form.pay_ment ul li:last-child span, body.dark .an_show a, body.dark .bz_product_grid_content_main_wrapper .bz_cart_main_wrapper table tbody tr td .name, body.dark .bz_product_grid_content_main_wrapper .bz_cart_main_wrapper table tbody tr td a, body.dark .bz_product_grid_content_main_wrapper .bz_cart_main_wrapper table tbody tr td, body.dark .bz_product_grid_content_main_wrapper .your_order h3, body.dark .bz_product_grid_content_main_wrapper .your_order .order_rate h3, body.dark .comment_wrapper .comment-form .comment_input .rating h3, body.dark .bz_single_product_main_wrapper .b_product_sell_details_wrapper .bz_product_heading h3, body.dark .bz_single_product_main_wrapper .b_product_sell_details_wrapper .bz_product_heading h3, body.dark .icon1-main-wrapper .social-icons ul li a, body.dark .icon2-main-wrapper .social-icons ul li a, body.dark .icon5-main-wrapper .social-icons ul li a, body.dark .tab-one-wrapper .tab-content .tab-one-home .tab-one-content h1, body.dark .tab-one-wrapper .tab-one .nav-tabs .nav-item .nav-link:hover, body.dark .tab-five-wrapper .tab-content .tab-five-content h2, body.dark .tab-one-wrapper .tab-content .tab-one-home .tab-one-content a:hover, body.dark .tab-three-wrapper .nav-pills .nav-item .nav-link:hover, body.dark .strategic-content h5 {
        color: #fff;
    }

body.dark .tab-two-wrapper .tab-content .tab-two-head .tab-two-head-wrapper a {
    color: #e12454;
}

body.dark .tab-one-wrapper .tab-one .nav-tabs .nav-item .nav-link.active:hover, body.dark .tab-three-wrapper .nav-pills .nav-item .nav-link.active {
    color: #111111;
}

body.dark .bz_product_grid_content_main_wrapper, body.dark .bz_single_product_main_wrapper, body.dark .icon1-main-wrapper, body.dark .icon3-main-wrapper, body.dark .icon5-main-wrapper, body.dark .icon6-main-wrapper, body.dark .tab-one-wrapper, body.dark .tab-three-wrapper, body.dark .tab-three-wrapper .tab-content .tab-three-accordion, body.dark .tab-three-wrapper, body.dark .team-one-wrapper, body.dark .team-three-wrapper, body.dark .testimonial-one-wrapper, body.dark .testimonial-three-wrapper, body.dark .testimonial-five-wrapper {
    background-color: #111111;
}

    body.dark .bz_product_grid_content_main_wrapper .bz_cart_main_wrapper table tbody tr td, body.dark .bz_product_grid_content_main_wrapper .your_order, body.dark .icon2-main-wrapper, body.dark .icon4-main-wrapper, body.dark .icon7-main-wrapper, body.dark .tab-two-wrapper, body.dark .tab-three-wrapper .tab-content .tab-accordion .accordion-item .accordion-header button, body.dark .accordion-item .accordion-collapse, body.dark .accordion1-main-wrapper .accordion .accordion-item .accordion-header .accordion-button, body.dark .accordion4-wrapper .accordion-item .accordion-header button, body.dark .tab-five-wrapper, body.dark .team-two-wrapper, body.dark .team-four-wrapper, body.dark .testimonial-one-wrapper .testimonial-one .test-content, body.dark .testimonial-three-wrapper .slider-two-wrapper, body.dark .testimonial-four-wrapper {
        background-color: #222222;
    }

body.dark .accordion1-main-wrapper .accordion-item .accordion-body {
    margin: 0 1rem 1.25rem;
}

body.dark .bz_single_product_main_wrapper .b_product_sell_details_wrapper .color_code .color_change .black-co a {
    background-color: #303030;
}

body.dark .an_checkout_form_wrapper .an_checkout_form_row .an_information_box form .payment_card ul li a svg:hover {
    fill: #ffffff;
}

body.dark .an_information_box .custum-select .dropdown .list ul li {
    color: #111111;
    padding: 0 10px;
}

body.dark .bz_single_product_accordian_main_wrapper .checkout_form .checkout_accord .card-body .content_single_product .nots li, body.dark .bz_single_product_accordian_main_wrapper .checkout_form .checkout_accord .card-body .content_single_product .form-group, body.dark .color_code, body.dark .color_code p span a, body.dark .tab-five-wrapper .nav-pills .nav-item .nav-link, body.dark .tab-five-wrapper .tab-content .tab-five-content a, body.dark .tab-two-wrapper .tab-content .tab-two-head .tab-two-head-wrapper h2, body.dark .tab-two-wrapper .tab-content .tab-two-head .tab-two-content h6, body.dark .accordion1-main-wrapper .accordion .accordion-item .accordion-header .accordion-button, body.dark .accordion4-wrapper .accordion-item .accordion-header button, body.dark .testimonial-one-wrapper .testimonial-one .test-content h6, body.dark .testimonial-three-wrapper .slider-two-wrapper .slider-author .author-name h6 {
    color: #808080;
}

body.dark .testimonial-one-wrapper .testimonial-one .test-content .test-icon, body.dark .testimonial-two-wrapper .slider-test .owl-carousel .item .slider-wrapper .slider-content {
    background: #111111;
}

    body.dark .testimonial-two-wrapper .slider-test .owl-carousel .item .slider-wrapper .slider-content::before {
        border-color: #111111 transparent transparent;
    }

body.dark .accordion1-main-wrapper .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed), body.dark .accordion4-wrapper .accordion-item .accordion-header .accordion-button:not(.collapsed) {
    color: #e12454;
}

body.dark .bz_product_grid_content_main_wrapper .bz_cart_main_wrapper table thead {
    border-color: #606060;
}

body.dark .main-singin-box .singin-box .singin-right .main-form p a {
    color: #fa2456;
}

body.dark .ic-section-2 .icon-box-two, body.dark .ic-section-4 .icon-box-four {
    background-color: #111;
}

body.dark .icon-box-three, body.dark .icon-box-five, body.dark .ic-section-1 .box {
    background-color: #222;
}

body.dark .list-main-wrapper-three .list-three-wrapper ul li, body.dark .list-main-wrapper-two .list-two-wrapper ul li, body.dark .list-main-wrapper-one .list-one-wrapper ul li, body.dark .tabbox .tab-content .posts-box .profile-details .profile-name span, body.dark .tabbox .tab-content .posts-box .like-comment-count li a {
    color: #b6b0b0;
}

body.dark .pt-section-4 .p-box-4:hover .p-box-4-1 {
    background-color: #4e49de;
}

body.dark .dating-wapper .about-us-img .testimaonl-box {
    background-color: #222222;
}

.dark .preloder {
    background-color: #000;
}

    .dark .preloder .heart p {
        color: #fff;
    }

.dark .index2-first-wrapper {
    background-image: linear-gradient(to right, #000000, #000000, #000000, #000000, #000000);
}

.dark .contact-us-wrapper {
    background-color: #000;
}

.dark .main-search-2 {
    background-color: #222;
}

.dark .index2-footer {
    background-color: White;
}

    .dark .index2-footer .footer-logo {
        /*border-top: 2px solid #000;*/
    }

.dark header .main-header-two .main-menu-two .index2-inner-ul .sideline .index-2-btn .menuBtn-2 a {
    color: #fff;
}

.dark .index2-first-wrapper .index-inner-wrap-2 {
    background-color: #111111;
}

    .dark .index2-first-wrapper .index-inner-wrap-2 .change-box label {
        color: #fff;
    }

    .dark .index2-first-wrapper .index-inner-wrap-2 .custum-select .dropdown {
        border: solid 1px #fff;
        color: #fff;
    }

.dark .counter-section-2 .counter-box-2 .counter-text-2 .counter {
    color: #fff;
}

.dark .counter-section-2 .counter-box-2 .counter-text-2 p {
    color: #fff;
}

.dark .dating-wrapper-2 .dating-content .detail-box h6 a {
    color: #fff;
}

.dark .how-it-work-3 .counter-box-2 .counter-icon {
    border: 2px solid #fff;
}

.dark .how-it-work-3 .counter-box-2 .counter-text-2 h5 {
    color: #fff;
}

.dark .how-it-work-3 .counter-box-2 .counter-text-2 span {
    color: #fff;
}

.dark .how-it-work-2 .awesome-slider .awesome-slider-box .aw-tect-box {
    background-color: #111111;
}

    .dark .how-it-work-2 .awesome-slider .awesome-slider-box .aw-tect-box h6 a {
        color: #fff;
    }

    .dark .how-it-work-2 .awesome-slider .awesome-slider-box .aw-tect-box p {
        color: #fff;
    }

.dark .doctor-love-2 .love-calculater .calc-inner-box .love-inner-box .enter-name2 label {
    color: #fff;
}

.dark .doctor-love-2 .love-calculater .calc-inner-box .love-inner-box .enter-name1 label {
    color: #fff;
}

.dark header .main-header-two .main-menu-two .index2-inner-ul .sideline .index-2-btn .menuBtn-2 {
    color: white;
}

.dark .doctor-love-2 .love-calculater .calc-inner-box .love-inner-box .enter-name1 input {
    background-color: #111111;
    color: #ef2095;
}

.dark .doctor-love-2 .love-calculater .calc-inner-box .love-inner-box .enter-name2 input {
    background-color: #111111;
    color: #ef2095;
}

.dark .contact-us-wrapper .contact-inner-wrap {
    background-color: #111111;
}

    .dark .contact-us-wrapper .contact-inner-wrap .li-third .contact-box-3 .contact-btn {
        background-color: #111111;
    }

.dark .counter-section-2 .counter-box-2 .counter-text-2 .counter {
    color: #808080;
}

.dark .counter-section-2 .counter-box-2 .counter-text-2 p {
    color: #808080;
}

.dark .right-sidebar {
    background: #111111;
}

    .dark .right-sidebar .sidebar-contant h4 {
        color: #ffffff;
    }

    .dark .right-sidebar .sidebar-contant h5 {
        margin-top: 25px;
        color: #ffffff;
    }

    .dark .right-sidebar .sidebar-contant h5 {
        margin-top: 25px;
        color: #ffffff;
    }

    .dark .right-sidebar .sidebar-close::before {
        background-color: #ffffff;
    }

    .dark .right-sidebar .sidebar-close::after {
        background-color: #ffffff !important;
    }

    .dark .right-sidebar .sidebar-close::after {
        background-color: #ffffff !important;
    }

.dark header .main-header-three {
    background-color: #000;
}

    .dark header .main-header-three .main-menu .main-btn .menubtn-3 {
        color: #fff;
    }

        .dark header .main-header-three .main-menu .main-btn .menubtn-3 a {
            color: #fff;
        }

.dark .meet-wrapper {
    background-color: #000;
}

.dark .counter-section-ind-3 {
    background-color: #000 !important;
}

.dark .blog-next {
    background-color: #000 !important;
}

.dark .main-customers-slider-2 .customers-slider .slider-box {
    background-color: #000;
}

.dark .blog-next .blog-box-next .blog-text .h5 {
    color: #fff;
}

.dark .footer-index-3 .main-search-2::after {
    background-color: #111111 !important;
}

.dark .main-search-2 {
    background-color: #111111;
}

.dark .footer-index-3 .footer-bottom {
    background-color: #111111;
}

.dark .footer-index-3 .main-search-2 ul li .heading h3 {
    color: #fff;
}

.dark .dating-wrapper-3 .carousel-control-next {
    background-color: #000;
}

.dark .dating-wrapper-3 .carousel-control-prev {
    background-color: #000;
}

.dark .counter-section-ind-3 .inner-counter-box .counter-box-next {
    background-color: #111111;
}

    .dark .counter-section-ind-3 .inner-counter-box .counter-box-next:hover .counter-text p {
        color: #ef2095;
    }

    .dark .counter-section-ind-3 .inner-counter-box .counter-box-next .counter-text {
        color: #ffffff;
    }

        .dark .counter-section-ind-3 .inner-counter-box .counter-box-next .counter-text .counter {
            color: #ffffff !important;
        }

        .dark .counter-section-ind-3 .inner-counter-box .counter-box-next .counter-text p {
            color: #ffffff;
        }

            .dark .counter-section-ind-3 .inner-counter-box .counter-box-next .counter-text p:hover {
                color: #ef2095;
            }

.dark .doctor-love-next .index-three-counter ul li input {
    background-color: #000000;
    border: 2px solid #000000;
}

.dark .top-main-wrapper {
    background-color: #111;
}

.dark header .main-header-four .main-menu > ul > li .search-box-4 .ind4-search-btn {
    background-color: #ffffff;
}

.dark .top-main-wrapper .select-wrapper-ind4 .take-a-change-4 .inner-select-wrapper {
    background-color: #111111;
}

.dark .top-main-wrapper .top-moddle-wrapper .main-title h1 {
    color: #ffffff;
}

.dark .ind4-common-heading p {
    color: #fff;
}

.dark .ind4-about-wrapper {
    background-color: #111111;
}

.dark .about-counter-wrapper {
    background-color: #000;
}

    .dark .about-counter-wrapper .counter-inner-about .about-counter-box {
        background-color: #111;
    }

        .dark .about-counter-wrapper .counter-inner-about .about-counter-box .counter-text p {
            color: #fff;
        }

.dark .ind4-love-calc-wrap .love-calculater .love-calculater-box .calculat-love .index4-btn {
    background-color: #000;
}

.dark .ind4-about-wrapper .ind4-about-box-2 .detail-about-box {
    background-color: #111;
}

    .dark .ind4-about-wrapper .ind4-about-box-2 .detail-about-box .about4-para p {
        color: #fff;
    }

.dark .step-wrapper {
    background-color: #000;
}

    .dark .step-wrapper .step-side-box .step-ul-box ul li p {
        color: #fff;
    }

    .dark .step-wrapper .step-side-box .step-ul-box ul li a span {
        background-color: #111111;
    }

.dark .ind4-about-wrapper .ind4-about-box-2 .detail-about-box .about-sigature-box ul li .signature-name {
    color: #fff;
}

.dark .ind4-about-wrapper .ind4-about-box-2 .verification-box ul li .verfi-text p a {
    color: #fff;
}

.dark .meet-single-wrappper {
    background-color: #111111;
}

.dark .success-wrapper .success-inner-box .success-box {
    background-color: #000;
}

    .dark .success-wrapper .success-inner-box .success-box .success-text .success-heading {
        color: white;
    }

    .dark .success-wrapper .success-inner-box .success-box .success-text .tag-list li .success-date {
        color: #fff;
    }

    .dark .success-wrapper .success-inner-box .success-box .success-text .tag-list li p a {
        color: white;
    }

.dark .map-detail-wrapper {
    background-color: #000;
}

.dark .mobile-app-ind4-wrap {
    background-color: #111;
}

.dark footer .ind4-footer {
    background-color: #000;
}

    .dark footer .ind4-footer .ind4-footer-box-1 .ind4-footer-text {
        color: white;
    }

    .dark footer .ind4-footer .ind4-footer-box-2 ul li .img-text-wrap a {
        color: #fff;
    }

    .dark footer .ind4-footer .ind4-footer-box-3 ul li a {
        color: white;
    }

    .dark footer .ind4-footer .ind4-footer-box-4 ul li .img-text-wrap a {
        color: #fff;
    }

.dark .top-main-wrapper .top-moddle-wrapper .top-left-box .top-leftdetail-box {
    background-color: #111;
}

    .dark .top-main-wrapper .top-moddle-wrapper .top-left-box .top-leftdetail-box .topleft-content-box .top-inner-name {
        color: #fff;
    }

    .dark .top-main-wrapper .top-moddle-wrapper .top-left-box .top-leftdetail-box .topleft-content-box .top-left-box-btn a {
        color: #fff;
    }

.dark .top-main-wrapper .select-wrapper-ind4 .take-a-change-4 {
    background-color: #000;
}

.index2-btn {
    background-color: #ef2095;
    max-width: 215px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border: 3px solid white;
    position: relative;
}

    .index2-btn::after {
        position: absolute;
        content: "";
        width: 0;
        height: 0;
        top: -9px;
        left: -9px;
        border-top: 3px solid transparent;
        border-left: 3px solid transparent;
        transition: 0.5s;
    }

    .index2-btn::before {
        position: absolute;
        content: "";
        width: 0;
        height: 0;
        bottom: -9px;
        right: -9px;
        border-bottom: 3px solid transparent;
        border-right: 3px solid transparent;
        transition: 0.5s;
    }

    .index2-btn:hover {
        color: #ffffff;
    }

        .index2-btn:hover a {
            color: #ffffff;
        }

        .index2-btn:hover::after {
            width: calc(100% + 15px);
            height: calc(100% + 15px);
            border-color: #ffffff;
        }

        .index2-btn:hover::before {
            width: calc(100% + 15px);
            height: calc(100% + 15px);
            border-color: #ffffff;
        }

.index2-btn2 {
    background-color: transparent;
    max-width: 215px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ef2095;
    border: 3px solid #ef2095;
    position: relative;
    margin: 0 auto;
    transition: 0.25s;
}

    .index2-btn2:hover {
        border-color: #ef2095;
        color: #fff;
        box-shadow: inset 0 0 0 2em #ef2095;
        background-color: #ef2095;
    }

/* ....................................
2. header CSS 
.......................................*/
.right-sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    width: 440px;
    height: 100%;
    padding: 45px;
    text-align: center;
    background: #ffffff;
    z-index: 1080;
    box-shadow: 0 -12px 46px 12px rgba(182, 14, 14, 0.0509803922);
    transform: translate3d(20px, 0, 0);
    transition: all 0.5s;
    opacity: 0;
    visibility: hidden;
    overflow-x: hidden;
    overflow-y: auto;
}

    .right-sidebar.open {
        opacity: 1;
        visibility: visible;
        transform: translate3d(0, 0, 0);
    }

    .right-sidebar .sidebar-close {
        width: 100%;
        float: right;
        position: relative;
        background: none;
        border: none;
        outline: none;
        padding: 0;
        width: 40px;
        height: 40px;
    }

        .right-sidebar .sidebar-close::after {
            content: "";
            position: absolute;
            top: 20px;
            left: 0;
            width: 100%;
            height: 1px;
            background-color: #000000;
            transform: rotate(-45deg);
        }

        .right-sidebar .sidebar-close::before {
            content: "";
            position: absolute;
            top: 20px;
            right: 0;
            width: 100%;
            height: 1px;
            background-color: #000000;
            transform: rotate(45deg);
        }

    .right-sidebar .sidebar-contant {
        width: 100%;
        float: left;
        margin-top: 55px;
    }

        .right-sidebar .sidebar-contant h4 {
            font-size: 24px;
            line-height: 1.25;
            font-weight: 500;
            font-family: "Poppins", sans-serif;
        }

        .right-sidebar .sidebar-contant h5 {
            margin-top: 25px;
        }

        .right-sidebar .sidebar-contant .heart-line {
            position: relative;
            z-index: 2;
            width: 92px;
            margin: 25px auto;
        }

            .right-sidebar .sidebar-contant .heart-line i {
                font-size: 12px;
                background: linear-gradient(to right, #fa2456, #fd735a);
                -webkit-background-clip: text;
                -moz-background-clip: text;
                -webkit-text-fill-color: transparent;
                -moz-text-fill-color: transparent;
            }

            .right-sidebar .sidebar-contant .heart-line:after {
                position: absolute;
                content: "";
                width: 92px;
                height: 2px;
                background: #d1d1d1;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                z-index: -2;
            }

            .right-sidebar .sidebar-contant .heart-line:before {
                position: absolute;
                content: "";
                height: 2px;
                width: 46px;
                left: 0;
                transform: none;
                z-index: -1;
                top: 50%;
                background: linear-gradient(to right, #fa2456, #fd735a);
            }

        .right-sidebar .sidebar-contant .sidebar-profile .owl-item .item {
            transform: translate3d(0, 0, 0);
            padding: 50px 0;
        }

            .right-sidebar .sidebar-contant .sidebar-profile .owl-item .item img {
                box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
                transition: 0.3s;
                transform: scale(1);
                border-radius: 5px;
            }

        .right-sidebar .sidebar-contant .sidebar-profile .owl-item.active {
            z-index: -1;
            opacity: 0.3;
        }

        .right-sidebar .sidebar-contant .sidebar-profile .owl-item.center.active {
            z-index: 99;
            opacity: 1;
        }

        .right-sidebar .sidebar-contant .sidebar-profile .owl-item.center .item img {
            transform: scale(1.5);
        }

header {
    position: relative;
}

    header .main-header {
        position: relative;
        z-index: 8;
    }

        header .main-header .main-header-logo {
            width: 100%;
            max-width: 250px;
            min-width: 250px;
            float: right;
            height: 235px;
            line-height: 200px;
            text-align: center;
            background-image: linear-gradient(to right, #fa2456, #fd735a);
            border-radius: 0px 0px 50% 50%;
            position: relative;
        }

        header .main-header .main-menu {
            text-align: right;
            box-shadow: 0 0 46px 12px rgba(182, 14, 14, 0.0509803922);
            margin-bottom: 70px;
            padding-right: 50px;
            display: flex;
            flex-wrap: wrap;
            justify-content: flex-end;
            align-items: center;
            background: #ffffff;
        }

            header .main-header .main-menu > ul {
                padding-right: 30px;
                border-right: 1px solid #e9e9e9;
            }

                header .main-header .main-menu > ul .d-lg-block {
                    display: inline-block !important;
                }

                header .main-header .main-menu > ul > li {
                    display: inline-block;
                    padding: 25px 0;
                    position: relative;
                }

                    header .main-header .main-menu > ul > li > a {
                        padding: 10px 15px;
                        font-weight: 500;
                        position: relative;
                        transition: all 0.5s;
                        display: flex;
                        align-items: center;
                        gap: 8px;
                        z-index: 8;
                    }

                        header .main-header .main-menu > ul > li > a:hover {
                            color: #fa2456;
                        }

                    header .main-header .main-menu > ul > li .sidebar-toggle {
                        padding: 0;
                        width: 46px;
                        display: inline-block;
                    }

                        header .main-header .main-menu > ul > li .sidebar-toggle .sidebar-toggle-1 {
                            transition-duration: 0.5s;
                            width: 50%;
                            display: inline-block;
                            height: 2px;
                            background-color: #000000;
                        }

                        header .main-header .main-menu > ul > li .sidebar-toggle .sidebar-toggle-2 {
                            transition-duration: 0.5s;
                            width: 70%;
                            display: inline-block;
                            height: 2px;
                            background-color: #000000;
                            position: absolute;
                            right: 0;
                        }

                    header .main-header .main-menu > ul > li .search-dropsown {
                        position: absolute;
                        width: 320px;
                        top: 93px;
                        right: 0;
                        padding: 30px;
                        background: #ffffff;
                        box-shadow: 0 -12px 46px 12px rgba(182, 14, 14, 0.0509803922);
                        transition: all 300ms ease;
                        opacity: 0;
                        visibility: hidden;
                        animation: moveitback 400ms ease forwards;
                        will-change: transform;
                        z-index: 8;
                    }

                        header .main-header .main-menu > ul > li .search-dropsown input {
                            width: calc(100% - 50px);
                            height: 45px;
                            float: left;
                            border: none;
                            outline: none;
                            border-bottom: 1px solid #fa2456;
                        }

                        header .main-header .main-menu > ul > li .search-dropsown button {
                            width: 50px;
                            height: 45px;
                            float: left;
                            color: #fa2456;
                            border: none;
                            outline: none;
                            border-bottom: 1px solid #fa2456;
                            background-color: transparent;
                        }

                        header .main-header .main-menu > ul > li .search-dropsown.open {
                            opacity: 1;
                            visibility: visible;
                            animation: moveit 900ms ease forwards;
                            will-change: transform;
                        }

            header .main-header .main-menu .overlay {
                position: fixed;
                top: 100%;
                left: -100%;
                width: 100%;
                height: 100%;
                background-color: rgba(0, 0, 0, 0.2);
                transition: all 0.15s;
            }

                header .main-header .main-menu .overlay.close {
                    top: 0;
                    left: 0;
                }

            header .main-header .main-menu .main-btn {
                margin-left: 30px;
            }

                header .main-header .main-menu .main-btn .menuBtn {
                    display: inline-block;
                    height: 50px;
                    line-height: 50px;
                    text-align: center;
                    width: 200px;
                    position: relative;
                    background-image: linear-gradient(to right, #fa2456, #fd735a);
                    background-size: 300%;
                    border-radius: 35px;
                    color: #ffffff;
                    cursor: pointer;
                }

                    header .main-header .main-menu .main-btn .menuBtn a {
                        color: #ffffff;
                    }

                    header .main-header .main-menu .main-btn .menuBtn:hover {
                        animation: animate 16s ease-in infinite alternate;
                    }

            header .main-header .main-menu .login-header {
                width: 200px;
            }

                header .main-header .main-menu .login-header .after-login {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                }

                    header .main-header .main-menu .login-header .after-login li a {
                        font-size: 26px;
                        color: #111111;
                        position: relative;
                    }

                        header .main-header .main-menu .login-header .after-login li a small {
                            position: absolute;
                            top: -2px;
                            right: -2px;
                            color: #ffffff;
                            width: 17px;
                            height: 17px;
                            border-radius: 50%;
                            line-height: 17px;
                            text-align: center;
                            font-size: 12px;
                            background: linear-gradient(to right, #fa2456, #fd735a);
                        }

    header .banner-shap {
        opacity: 0.7;
        z-index:6;
        position:relative;
    }

        header .banner-shap img {
            position: absolute;
            top: 0;
            right: 0;
            opacity: 0.2;
            z-index: 3;
        }

        header .banner-shap.innrpage-shap img {
            max-width: 222px;
            opacity: 1;
        }

    header .shadow-img {
        width: 100%;
        height: 180px;
        margin-top: 55px;
        background-image: url("../images/shadow-img-rotate.png");
        background-repeat: no-repeat;
        background-size: cover;
        /*opacity: 0.8;*/
    }

.inner-header header .banner-shap img {
    max-width: 222px;
}

@keyframes moveit {
    0% {
        transform: scale3d(0.96, 0.96, 1);
    }

    20% {
        transform: scale3d(1.1, 1.1, 1);
    }

    40% {
        transform: scale3d(0.98, 0.98, 1);
    }

    60% {
        transform: scale3d(1.05, 1.05, 1);
    }

    80% {
        transform: scale3d(1.01, 1.01, 1);
    }

    100% {
        transform: scale3d(1, 1, 1);
    }
}

@keyframes moveitback {
    0% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(0) scale3d(0.96, 0.96, 1);
    }
}

header .main-header-two {
    margin: 40px 0px 0px 0px;
}

    header .main-header-two .main-header-logo-2 {
        width: 100%;
        height: 100%;
    }

        header .main-header-two .main-header-logo-2 a img {
            display: block;
            margin: 0 auto;
        }

    header .main-header-two .main-menu-two {
        background-color: transparent;
        box-shadow: none;
        justify-content: space-between;
        margin: 0 !important;
    }

        header .main-header-two .main-menu-two > ul {
            border-right: none;
        }

            header .main-header-two .main-menu-two > ul > li > a {
                color: #ffffff;
            }

                header .main-header-two .main-menu-two > ul > li > a:hover {
                    color: #fd735a;
                }

        header .main-header-two .main-menu-two .index2-inner-ul {
            display: inline-flex;
            align-items: center;
        }

            header .main-header-two .main-menu-two .index2-inner-ul > li a {
                color: #ec018c;
            }

            header .main-header-two .main-menu-two .index2-inner-ul > li .sidebar-toggle .sidebar-toggle-1 {
                background-color: #ec018c;
            }

            header .main-header-two .main-menu-two .index2-inner-ul > li .sidebar-toggle .sidebar-toggle-2 {
                background-color: #ec018c;
            }

            header .main-header-two .main-menu-two .index2-inner-ul .sideline {
                border-left: 1px solid #bbb2b2;
                margin-left: 40px;
            }

                header .main-header-two .main-menu-two .index2-inner-ul .sideline .index-2-btn {
                    padding-left: 0px;
                }

                    header .main-header-two .main-menu-two .index2-inner-ul .sideline .index-2-btn .menuBtn-2 {
                        width: 140px;
                    }

                        header .main-header-two .main-menu-two .index2-inner-ul .sideline .index-2-btn .menuBtn-2 a {
                            color: #000000;
                        }

header .main-header-three {
    z-index: 3;
    background-color: #ffffff;
    height: 100px;
    box-shadow: 0 0 46px 12px rgba(182, 14, 14, 0.0509803922);
}

    header .main-header-three .main-menu {
        background-color: transparent !important;
        box-shadow: none !important;
        margin-bottom: 0px !important;
    }

        header .main-header-three .main-menu > ul {
            padding: 4px 30px 4px 0px;
        }

            header .main-header-three .main-menu > ul > li .sidebar-toggle .sidebar-toggle-1 {
                transition-duration: 0.5s;
                width: 50%;
                display: inline-block;
                height: 2px;
                background-color: #d40073 !important;
            }

            header .main-header-three .main-menu > ul > li .sidebar-toggle .sidebar-toggle-2 {
                transition-duration: 0.5s;
                width: 70%;
                display: inline-block;
                height: 2px;
                background-color: #d40073 !important;
                position: absolute;
                right: 0;
            }

        header .main-header-three .main-menu .main-btn .menubtn-3 {
            display: inline-block;
            height: 50px;
            line-height: 50px;
            text-align: center;
            width: 200px;
            position: relative;
            background-color: transparent;
            background-size: 300%;
            color: #000;
            cursor: pointer;
        }

    header .main-header-three .main-header-logo-3 {
        width: 100%;
        padding: 20px;
        margin-bottom: 0px;
        border-right: 1px solid #e9e9e9;
    }

        header .main-header-three .main-header-logo-3 a {
            display: block;
        }

            header .main-header-three .main-header-logo-3 a img {
                display: block;
                margin: 0 auto;
            }

@media (max-width: 1440px) {
    header .main-header-two {
        margin: 15px 0px 0px 0px;
    }
}

@media (max-width: 1366px) {
    header .main-header-two .main-menu-two > ul > li > a {
        padding: 10px 10px;
        font-weight: 500;
        position: relative;
        transition: all 0.5s;
        display: flex;
        align-items: center;
        gap: 8px;
        z-index: 8;
    }
}

@media (max-width: 1199px) {
    header .main-header-two .main-menu-two {
        margin-bottom: 0px !important;
    }
}

@media (max-width: 1060px) {
    header .main-header-two .main-menu-two .index2-inner-ul .sideline .index-2-btn .menuBtn-2 {
        width: 130px;
    }

    header .main-header-two .main-menu-two > ul {
        padding-right: 0px;
    }

    header .main-header-two .main-menu-two .index2-inner-ul .sideline {
        margin-left: 20px;
    }

    header .main-header-two .main-menu-two ul > li > a {
        padding: 10px 5px !important;
    }

    header .main-header-two .main-menu-two > ul {
        padding-right: 5px !important;
        padding-left: 20px !important;
    }
}

@media (max-width: 991px) {
    header .main-header-two .main-menu-two {
        justify-content: flex-end !important;
        margin: 0px 40px 0px 0px !important;
    }

    header .main-header-two .main-header-logo-2 a img {
        margin-left: 60px;
    }

    header .main-header-two {
        margin: 20px 0px 0px 0px;
    }

    .mobToggle {
        gap: 10px;
        align-items: center;
        margin-top: 15px;
    }
}

@media (max-width: 425px) {
    header .main-header-two .main-menu-two {
        margin: 0px 0px 0px 0px !important;
    }

    header .main-header-two .main-header-logo-2 a img {
        margin-left: 20px;
    }

    header .main-header-two .main-menu-two .mobToggle {
        margin-top: 0px;
    }
}

@media (max-width: 1366px) {
    header .main-header-three .main-menu .main-btn .menubtn-3 {
        width: 120px;
    }
}

@media (max-width: 1199px) {
    header .main-header-three {
        height: 90px;
        z-index: 12;
    }

        header .main-header-three .main-header-logo-3 {
            padding: 15px;
        }

        header .main-header-three .main-menu ul > li > a {
            font-size: 14px;
        }
}

@media (max-width: 1099px) {
    header .main-header-three .main-menu ul > li > a {
        padding: 10px 4px !important;
    }

    header .main-header-three .main-menu .main-btn .menuBtn {
        width: 130px !important;
        height: 40px;
        line-height: 40px;
        font-size: 13px !important;
    }

    header .main-header-three .main-header-logo-3 {
        padding: 19px;
    }
}

@media (max-width: 991px) {
    header .main-header-three .main-header-logo-3 {
        padding: 12px;
        border-color: transparent !important;
    }

    header .main-header-three {
        height: 85px;
    }

        header .main-header-three .main-menu .mobToggle {
            margin-top: 0px !important;
            margin-right: 15px;
        }

        header .main-header-three .main-header-logo-3 a img {
            margin-left: 40px;
        }

        header .main-header-three .main-menu ul > li > a {
            padding: 15px 15px !important;
        }

        header .main-header-three .main-menu .float-end li a img {
            display: block;
            margin: 0 auto;
        }

    .toggle-btn-3 .icon-left {
        background-color: #d40073 !important;
    }

        .toggle-btn-3 .icon-left:before {
            background-color: #d40073 !important;
        }

        .toggle-btn-3 .icon-left:after {
            background-color: #d40073 !important;
        }

    .toggle-btn-3 .icon-right {
        background-color: #d40073 !important;
    }

        .toggle-btn-3 .icon-right:before {
            background-color: #d40073 !important;
        }

        .toggle-btn-3 .icon-right:after {
            background-color: #d40073 !important;
        }

    .toggle-btn-3.open .icon-left {
        background: transparent !important;
    }

    .toggle-btn-3.open .icon-right {
        background: transparent !important;
    }

    .js-toggle-dark-mode-3 {
        background-color: #d40073 !important;
    }
}

header {
    position: relative;
}

    header .main-header-four {
        position: relative;
        z-index: 8;
        padding: 30px 0px 30px 0px;
    }

        header .main-header-four .main-menu {
            text-align: right;
            display: flex;
            flex-wrap: wrap;
            justify-content: flex-end;
            align-items: center;
            margin-bottom: 0px !important;
            background-color: transparent !important;
            box-shadow: none !important;
            padding-right: 0px;
        }

            header .main-header-four .main-menu > ul {
                padding-right: 0px;
                display: flex;
                align-items: center;
                border: none !important;
            }

                header .main-header-four .main-menu > ul .d-lg-block {
                    display: inline-block !important;
                }

                header .main-header-four .main-menu > ul > li {
                    display: inline-block;
                    position: relative;
                }

                    header .main-header-four .main-menu > ul > li > a {
                        padding: 10px 15px;
                        font-weight: 500;
                        position: relative;
                        transition: all 0.5s;
                        display: flex;
                        align-items: center;
                        gap: 8px;
                        z-index: 8;
                    }

                        header .main-header-four .main-menu > ul > li > a:hover {
                            color: #fa2456;
                        }

                    header .main-header-four .main-menu > ul > li .sidebar-toggle {
                        padding: 0;
                        width: 46px;
                        display: inline-block;
                    }

                        header .main-header-four .main-menu > ul > li .sidebar-toggle .sidebar-toggle-1 {
                            transition-duration: 0.5s;
                            width: 50%;
                            display: inline-block;
                            height: 2px;
                            background-color: #000000;
                        }

                        header .main-header-four .main-menu > ul > li .sidebar-toggle .sidebar-toggle-2 {
                            transition-duration: 0.5s;
                            width: 70%;
                            display: inline-block;
                            height: 2px;
                            background-color: #000000;
                            position: absolute;
                            right: 0;
                        }

                    header .main-header-four .main-menu > ul > li .search-box-4 {
                        margin-left: 10px;
                    }

                        header .main-header-four .main-menu > ul > li .search-box-4 .ind4-search-btn {
                            position: relative;
                            width: 212px;
                            height: 45px;
                            background: #FFFFFF;
                            opacity: 0.4;
                            border-radius: 10px;
                            border: none;
                            padding-left: 14px;
                        }

                            header .main-header-four .main-menu > ul > li .search-box-4 .ind4-search-btn:focus {
                                border: none;
                                outline: none;
                            }

                        header .main-header-four .main-menu > ul > li .search-box-4 ::-moz-placeholder {
                            color: #111111;
                            opacity: 1;
                            font-family: "Poppins";
                            font-style: normal;
                            font-weight: 400;
                            font-size: 14px;
                            line-height: 21px;
                        }

                        header .main-header-four .main-menu > ul > li .search-box-4 ::placeholder {
                            color: #111111;
                            opacity: 1;
                            font-family: "Poppins";
                            font-style: normal;
                            font-weight: 400;
                            font-size: 14px;
                            line-height: 21px;
                        }

                        header .main-header-four .main-menu > ul > li .search-box-4 span {
                            position: absolute;
                            top: 38%;
                            right: 5%;
                        }

                header .main-header-four .main-menu > ul .mydropdown .maindropdown {
                    top: 60px;
                }

            header .main-header-four .main-menu .overlay {
                position: fixed;
                top: 100%;
                left: -100%;
                width: 100%;
                height: 100%;
                background-color: rgba(0, 0, 0, 0.2);
                transition: all 0.15s;
            }

                header .main-header-four .main-menu .overlay.close {
                    top: 0;
                    left: 0;
                }

            header .main-header-four .main-menu .main-btn {
                padding-left: 35px;
            }

            header .main-header-four .main-menu .login-header {
                width: 200px;
            }

                header .main-header-four .main-menu .login-header .after-login {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                }

                    header .main-header-four .main-menu .login-header .after-login li a {
                        font-size: 26px;
                        color: #111111;
                        position: relative;
                    }

                        header .main-header-four .main-menu .login-header .after-login li a small {
                            position: absolute;
                            top: -2px;
                            right: -2px;
                            color: #ffffff;
                            width: 17px;
                            height: 17px;
                            border-radius: 50%;
                            line-height: 17px;
                            text-align: center;
                            font-size: 12px;
                            background: linear-gradient(to right, #fa2456, #fd735a);
                        }

/* ....................................
3. footer CSS 
.......................................*/
footer {
    background-color: #252525;
}

    footer a {
        color: #797979;
    }

        footer a:hover {
            color: #fa2456;
        }

    footer .main-footer-logo {
        width: 100%;
        max-width: 250px;
        min-width: 250px;
        margin: 0 auto;
        height: 235px;
        line-height: 200px;
        text-align: center;
        background-image: linear-gradient(to right, #fa2456, #fd735a);
        border-radius: 0px 0px 50% 50%;
    }

    footer .footer-content {
        max-width: 860px;
        margin: 0 auto;
        margin-top: 50px;
    }

        footer .footer-content .media-icon {
            display: flex;
            justify-content: center;
            -moz-column-gap: 10px;
            column-gap: 10px;
            margin-top: 30px;
        }

            footer .footer-content .media-icon li a {
                display: inline-block;
                width: 40px;
                height: 40px;
                line-height: 40px;
                border: 1px solid #828282;
                border-radius: 50%;
                color: #828282;
                transition: all 0.5s;
            }

                footer .footer-content .media-icon li a:hover {
                    background: linear-gradient(to right, #fa2456, #fd735a);
                    color: #ffffff;
                    border-color: transparent;
                }

    footer .bootem-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-top: 1px solid #828282;
        padding: 30px 0;
        margin-top: 30px;
    }

        footer .bootem-footer p span {
            color: #fa2456;
        }

        footer .bootem-footer ul {
            display: flex;
            justify-content: flex-end;
            -moz-column-gap: 30px;
            column-gap: 30px;
        }

/* ....................................
4. home CSS 
.......................................*/
.dating-wapper {
    background: #fffdfd;
    padding: 60px 0;
    text-align: center;
}

    .dating-wapper .dating-content {
        padding-bottom: 50px;
        text-align: left;
    }

    .dating-wapper .take-a-change {
        padding: 60px;
        background: #ffffff;
        box-shadow: -1px 3px 20px 0px rgb(231 231 231 / 10%);
        border-radius: 100px;
    }

        .dating-wapper .take-a-change .change-box {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
        }

            .dating-wapper .take-a-change .change-box label {
                width: 55px;
                float: left;
                color: #797979;
            }

            .dating-wapper .take-a-change .change-box .label-2nd {
                width: 125px;
            }

            .dating-wapper .take-a-change .change-box .custum-select {
                width: calc(100% - 60px);
                float: left;
                margin-left: 5px;
            }

            .dating-wapper .take-a-change .change-box .custum-range {
                width: calc(100% - 125px);
                float: left;
            }

                .dating-wapper .take-a-change .change-box .custum-range .ui-slider-horizontal {
                    height: 1px;
                    border: none;
                    background: #bababa;
                }

                    .dating-wapper .take-a-change .change-box .custum-range .ui-slider-horizontal .ui-slider-range {
                        height: 3px;
                        background: linear-gradient(to right, #fa2456, #fd735a);
                        top: 50%;
                        transform: translateY(-50%);
                    }

                    .dating-wapper .take-a-change .change-box .custum-range .ui-slider-horizontal .ui-slider-handle {
                        top: 50%;
                        transform: translateY(-50%);
                        background: linear-gradient(to right, #fa2456, #fd735a);
                        height: 12px;
                        width: 12px;
                        border-radius: 50%;
                        border: none;
                        outline: none;
                    }

                        .dating-wapper .take-a-change .change-box .custum-range .ui-slider-horizontal .ui-slider-handle .value {
                            position: absolute;
                            bottom: 20px;
                            left: 0;
                            width: 30px;
                            text-align: center;
                            display: block;
                            font-size: 14px;
                            line-height: 20px;
                            color: #ffffff;
                            background: linear-gradient(to right, #fa2456, #fd735a);
                        }

                            .dating-wapper .take-a-change .change-box .custum-range .ui-slider-horizontal .ui-slider-handle .value:after {
                                content: "";
                                position: absolute;
                                width: 6px;
                                height: 6px;
                                -webkit-clip-path: polygon(0 0, 0 100%, 100% 0);
                                clip-path: polygon(0 0, 0 100%, 100% 0);
                                background: #fa2456;
                                bottom: -6px;
                                left: 5px;
                            }

        .dating-wapper .take-a-change .main-btn-2 .main-btn {
            width: 100%;
            max-width: 200px;
            /*float: right;*/
        }

.counter-section {
    padding: 100px 0 70px;
    background: #f9f9f9;
}

    .counter-section .counter-box {
        margin-bottom: 30px;
    }

        .counter-section .counter-box .counter-icon {
            text-align: center;
            background: linear-gradient(to right, #fa2456, #fd735a);
            padding: 35px 0 15px 0px;
            border-radius: 150px 150px 0 0;
            width: 65.5%;
            max-width: 200px;
            margin: 0 auto;
            box-shadow: 0 -12px 46px 12px rgba(182, 14, 14, 0.0509803922);
            position: relative;
            transition: all 0.5s;
            z-index: 2;
        }

            .counter-section .counter-box .counter-icon::after {
                content: "";
                position: absolute;
                top: -1%;
                left: -1%;
                width: 102%;
                height: 101%;
                background-color: #ffffff;
                border-radius: 150px 150px 0 0;
                transform: scale(1);
                z-index: 1;
                transition: all 0.5s;
            }

            .counter-section .counter-box .counter-icon svg {
                width: 50px;
                height: 50px;
                fill: url(#header-shape-gradient);
                transition: all 0.5s;
                z-index: 2;
                position: relative;
            }

        .counter-section .counter-box .counter-text {
            text-align: center;
            border: 1px solid #e2e2e2;
            padding: 25px 0;
            transition: all 0.5s;
            z-index: 5;
            position: relative;
        }

            .counter-section .counter-box .counter-text .h2 {
                font-size: 46px;
                line-height: 72px;
                color: #3d3d3d;
            }

            .counter-section .counter-box .counter-text .counter-pluseicon {
                position: relative;
                width: -moz-fit-content;
                width: fit-content;
                margin: 0 auto;
            }

                .counter-section .counter-box .counter-text .counter-pluseicon:after {
                    content: "+";
                    position: absolute;
                    top: 50%;
                    transform: translateY(-50%);
                    right: -30px;
                }

        .counter-section .counter-box:hover .counter-icon::after {
            top: 101%;
        }

        .counter-section .counter-box:hover .counter-icon svg {
            fill: #ffffff;
        }

        .counter-section .counter-box:hover .counter-text {
            background: #ffffff;
            box-shadow: 0 -12px 46px 12px rgba(182, 14, 14, 0.0509803922);
            border-color: transparent;
        }

.doctor-love {
    padding: 0px 0px 80px 0px;
    background: #fffdfd;
}

    .doctor-love .love-calculater {
        margin-top: 65px;
        text-align: center;
    }

        .doctor-love .love-calculater .love-result {
            position: relative;
            width: 100%;
            height: 100%;
        }

            .doctor-love .love-calculater .love-result .circle {
                width: 620px;
                height: 300px;
                margin: 0 auto;
            }

                .doctor-love .love-calculater .love-result .circle .circle__path {
                    stroke-dashoffset: 1000;
                    stroke-width: 2;
                    stroke-opacity: 1;
                    stroke-dasharray: 20, 20;
                    fill: none;
                    animation: dash 20s linear infinite;
                }

            .doctor-love .love-calculater .love-result img {
                margin: 0 auto;
            }

            .doctor-love .love-calculater .love-result h2 {
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                text-align: center;
                font-size: 92px;
                font-weight: 600;
                background: linear-gradient(to right, #fa2456, #fd735a);
                -webkit-background-clip: text;
                -moz-background-clip: text;
                -webkit-text-fill-color: transparent;
                -moz-text-fill-color: transparent;
            }

            .doctor-love .love-calculater .love-result #resultLabel.animated:after {
                content: "";
                animation-name: calculating;
                animation-duration: 3s;
            }

        .doctor-love .love-calculater .love-calculater-box {
            padding: 40px 20px 20px;
            background: #ffffff;
            box-shadow: 0 0 46px 12px rgba(182, 14, 14, 0.0509803922);
            border-radius: 100px;
        }

            .doctor-love .love-calculater .love-calculater-box .enter-name {
                width: 50%;
                float: left;
                position: relative;
            }

                .doctor-love .love-calculater .love-calculater-box .enter-name label {
                    width: 100%;
                    padding-right: 130px;
                    margin-bottom: 15px;
                    font-size: 14px;
                    color: #797979;
                }

                .doctor-love .love-calculater .love-calculater-box .enter-name input {
                    width: 210px;
                    height: 50px;
                    padding-left: 30px;
                    border-radius: 35px;
                    border: 1px solid #e2e2e2;
                    background: #ffffff;
                    position: relative;
                    z-index: 2;
                    outline: none;
                }

            .doctor-love .love-calculater .love-calculater-box .enter-name2:before {
                content: "";
                position: absolute;
                top: -40px;
                left: 7.5px;
                border: 1px dashed #e2e2e2;
                height: 105px;
                width: 210px;
                border-right: 0;
                border-top: 0;
            }

            .doctor-love .love-calculater .love-calculater-box .enter-name1:after {
                content: "";
                position: absolute;
                top: -40px;
                right: 7.5px;
                border: 1px dashed #e2e2e2;
                height: 105px;
                width: 210px;
                border-left: 0;
                border-top: 0;
            }

            .doctor-love .love-calculater .love-calculater-box .calculat-love {
                margin-top: 15px;
            }

.how-it-work {
    padding: 100px 0 70px;
}

    .how-it-work .heading {
        margin-bottom: 30px;
    }

    .how-it-work .counter-box {
        margin-top: 30px;
    }

        .how-it-work .counter-box .counter-icon {
            text-align: center;
            padding: 40px 0 40px 0px;
            background: linear-gradient(to right, #fa2456, #fd735a);
            border-radius: 150px 150px 0 0;
            width: 65.5%;
            max-width: 275px;
            margin: 0 auto;
            box-shadow: 0 -12px 46px 12px rgba(182, 14, 14, 0.0509803922);
            position: relative;
            transition: all 0.5s;
            z-index: 2;
        }

            .how-it-work .counter-box .counter-icon::after {
                content: "";
                position: absolute;
                top: -1%;
                left: -1%;
                width: 102%;
                height: 101%;
                background-color: #ffffff;
                border-radius: 150px 150px 0 0;
                transform: scale(1);
                z-index: 1;
                transition: all 0.5s;
            }

            .how-it-work .counter-box .counter-icon svg {
                width: 50px;
                height: 50px;
                fill: url(#header-shape-gradient);
                transition: all 0.5s;
                z-index: 2;
                position: relative;
            }

            .how-it-work .counter-box .counter-icon span {
                position: absolute;
                left: 50%;
                top: 0;
                transform: translateX(-90px);
                color: #ffffff;
                background: #fa2456;
                display: inline-block;
                text-align: center;
                width: 37px;
                height: 37px;
                line-height: 37px;
                border-radius: 50%;
                z-index: 9;
            }

        .how-it-work .counter-box .counter-text {
            text-align: center;
            border: 1px solid #e2e2e2;
            padding: 30px;
            transition: all 0.5s;
            z-index: 5;
            position: relative;
        }

            .how-it-work .counter-box .counter-text h5 {
                font-size: 20px;
                line-height: 27px;
                font-weight: 500;
                font-family: "Lato";
                margin-bottom: 10px;
            }

            .how-it-work .counter-box .counter-text span {
                line-height: 27px;
                font-size: 16px;
                color: #797979;
            }

        .how-it-work .counter-box:hover .counter-icon::after {
            top: 101%;
        }

        .how-it-work .counter-box:hover .counter-icon svg {
            fill: #ffffff;
        }

        .how-it-work .counter-box:hover .counter-icon span {
            background: #ffffff;
            color: #fa2456;
            transition: all 0.5s;
        }

        .how-it-work .counter-box:hover .counter-text {
            background: #ffffff;
            box-shadow: 0 -12px 46px 12px rgba(182, 14, 14, 0.0509803922);
            border-color: transparent;
        }

.main-customers-slider {
    padding: 65px 0;
}

    .main-customers-slider .customers-slider {
        margin-top: 80px;
    }

        .main-customers-slider .customers-slider .slider-box {
            display: flex;
            justify-content: center;
            align-items: center;
            -moz-column-gap: 105px;
            column-gap: 105px;
            padding-left: 97px;
        }

            .main-customers-slider .customers-slider .slider-box .slider-text {
                max-width: 510px;
                position: relative;
            }

                .main-customers-slider .customers-slider .slider-box .slider-text .quote-icon {
                    width: 67px;
                    position: absolute;
                    left: -97px;
                    top: -33px;
                }

                .main-customers-slider .customers-slider .slider-box .slider-text .slider-heading {
                    display: flex;
                    align-items: center;
                    -moz-column-gap: 20px;
                    column-gap: 20px;
                    margin-bottom: 20px;
                }

                    .main-customers-slider .customers-slider .slider-box .slider-text .slider-heading a {
                        color: #fa2456;
                    }

        .main-customers-slider .customers-slider .owl-nav {
            display: flex;
            flex-direction: column;
            row-gap: 10px;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(190px, -50%);
        }

            .main-customers-slider .customers-slider .owl-nav button {
                font-size: 20px;
                outline: none !important;
            }

                .main-customers-slider .customers-slider .owl-nav button:hover {
                    background: linear-gradient(to right, #fa2456, #fd735a);
                    -webkit-background-clip: text;
                    -moz-background-clip: text;
                    -webkit-text-fill-color: transparent;
                    -moz-text-fill-color: transparent;
                    transition: all 0.5s;
                }

.main-members-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

    .main-members-section .shape1 {
        position: absolute;
        top: 0px;
        left: 0px;
        width: 100%;
        height: auto;
        animation: scaleAni 4s linear infinite;
    }

    .main-members-section .heading {
        margin-bottom: 55px;
    }

    .main-members-section .members-box {
        text-align: center;
        margin-bottom: 35px;
    }

        .main-members-section .members-box .members-img {
            width: -moz-fit-content;
            width: fit-content;
            margin: 0 auto;
            position: relative;
            z-index: 5;
            box-shadow: 0 -12px 46px 12px rgba(182, 14, 14, 0.0509803922);
        }

            .main-members-section .members-box .members-img::after {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: linear-gradient(to right, #fa2456, #fd735a);
                opacity: 30%;
                transform: scaleY(0);
                transition-property: transform;
                transform-origin: 50% 100%;
                transition: 300ms ease-out;
            }

        .main-members-section .members-box .members-text {
            box-shadow: 0 -12px 46px 12px rgba(182, 14, 14, 0.0509803922);
            text-align: center;
            background: linear-gradient(to right, #fa2456, #fd735a);
            padding: 25px 0px;
            border-radius: 0 0 150px 150px;
            width: 65.5%;
            max-width: 200px;
            margin: 0 auto;
            position: relative;
            transition: all 0.5s;
            z-index: 2;
        }

            .main-members-section .members-box .members-text::after {
                content: "";
                position: absolute;
                bottom: -1%;
                left: -1%;
                width: 102%;
                height: 101%;
                background-color: #ffffff;
                border-radius: 0 0 150px 150px;
                transform: scale(1);
                z-index: -1;
                transition: all 0.5s;
            }

            .main-members-section .members-box .members-text h6 {
                font-size: 20px;
                font-weight: 600;
                text-transform: capitalize;
                color: #121e28;
                transition: all 0.5s;
            }

            .main-members-section .members-box .members-text span {
                margin-top: 7px;
                color: #121e28;
                display: inline-block;
                text-transform: capitalize;
                transition: all 0.5s;
            }

        .main-members-section .members-box:hover .members-img::after {
            transform: scaleY(1);
            transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
        }

        .main-members-section .members-box:hover .members-text::after {
            bottom: 101%;
        }

        .main-members-section .members-box:hover .members-text h6, .main-members-section .members-box:hover .members-text span {
            color: #ffffff;
        }

.main-princing-section {
    padding: 100px 0;
    background-color: #fffdfd;
}

    .main-princing-section .counter-box {
        margin-bottom: 30px;
    }

        .main-princing-section .counter-box .counter-icon {
            z-index: 2;
        }

            .main-princing-section .counter-box .counter-icon::after {
                z-index: -1;
            }

            .main-princing-section .counter-box .counter-icon h2 {
                font-size: 46px;
                background: linear-gradient(to right, #fa2456, #fd735a);
                -webkit-background-clip: text;
                -moz-background-clip: text;
                -webkit-text-fill-color: transparent;
                -moz-text-fill-color: transparent;
                transition: all 0.5s;
            }

        .main-princing-section .counter-box .counter-text {
            padding: 35px;
            padding-top: 50px;
        }

            .main-princing-section .counter-box .counter-text h4 {
                font-size: 35px;
                color: #3d3d3d;
            }

            .main-princing-section .counter-box .counter-text .table-ul {
                border-top: 1px solid #e2e2e2;
                padding: 30px 0;
                margin: 40px 0 20px;
            }

                .main-princing-section .counter-box .counter-text .table-ul li {
                    padding: 10px 0;
                    color: #797979;
                }

            .main-princing-section .counter-box .counter-text .main-btn {
                position: absolute;
                bottom: -25px;
                left: 50%;
                transform: translateX(-50%);
            }

        .main-princing-section .counter-box:hover .counter-icon h2 {
            -webkit-text-fill-color: #ffffff;
        }

.mobile-app-section {
    padding-top: 100px;
}

    .mobile-app-section .heading {
        margin-bottom: 20px;
    }

.blog {
    padding: 100px 0;
    background-color: #fffdfd;
}

    .blog .heading {
        margin-bottom: 40px;
    }

    .blog .blog-box {
        margin: 25px 0;
    }

        .blog .blog-box .blog-img img {
            width: 100%;
        }

        .blog .blog-box .blog-text {
            padding: 35px 25px 60px;
            position: relative;
            background-color: #ffffff;
            box-shadow: 0 -12px 46px 12px rgba(182, 14, 14, 0.0509803922);
        }

            .blog .blog-box .blog-text .tag-list {
                display: flex;
                justify-content: center;
                -moz-column-gap: 40px;
                column-gap: 40px;
                position: relative;
                margin-bottom: 15px;
            }

                .blog .blog-box .blog-text .tag-list li {
                    min-width: 120px;
                }

                    .blog .blog-box .blog-text .tag-list li a {
                        color: #797979;
                        transition: all 0.5s;
                    }

                        .blog .blog-box .blog-text .tag-list li a span {
                            margin-right: 10px;
                            background: linear-gradient(to right, #fa2456, #fd735a);
                            -webkit-background-clip: text;
                            -webkit-text-fill-color: transparent;
                        }

                        .blog .blog-box .blog-text .tag-list li a:hover {
                            color: #fa2456;
                        }

                    .blog .blog-box .blog-text .tag-list li:first-child {
                        text-align: right;
                    }

                .blog .blog-box .blog-text .tag-list::after {
                    content: "";
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    transform: translate(-50%, -50%);
                    width: 1px;
                    height: 15px;
                    background-color: #797979;
                }

            .blog .blog-box .blog-text .h4 {
                display: inline-block;
                font-size: 20px;
                margin-bottom: 15px;
                color: #3a3a3a;
                transition: all 0.5s;
            }

            .blog .blog-box .blog-text .main-btn {
                position: absolute;
                bottom: -25px;
                left: 50%;
                transform: translateX(-50%);
            }

        .blog .blog-box:hover .blog-text .h4 {
            color: #fa2456;
        }

.main-search {
    padding: 100px 0;
    background-image: url(../images/main-search.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 5;
}

.main-search-footer {
    background-image: url(../images/FOURTH-IMAGE-min-scaled.jpg) !important;
    background-position-y: -150px;
}

.main-search::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    background-color: #252525;
    opacity: 80%;
}

.main-search .search-box {
    display: flex;
    justify-content: center;
    max-width: 740px;
    margin: 0 auto;
    margin-top: 25px;
}

    .main-search .search-box input {
        width: calc(100% - 200px);
        outline: none;
        border-radius: 35px 0 0 35px;
        padding-left: 30px;
        border: none;
    }

    .main-search .search-box .main-btn {
        border-radius: 0 35px 35px 0;
    }

        .main-search .search-box .main-btn .icon {
            border-right-width: 0;
            float: right;
            font-size: 16px;
        }





.main-search-header {
    padding: 180px 0;
    background-image: url(../images/main-search.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 5;
}

    .main-search-header::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        z-index: -1;
        background-color: #252525;
        opacity: 80%;
    }

    .main-search-header .search-box {
        display: flex;
        justify-content: center;
        max-width: 740px;
        margin: 0 auto;
        margin-top: 25px;
    }

        .main-search-header .search-box input {
            width: calc(100% - 200px);
            outline: none;
            border-radius: 35px 0 0 35px;
            padding-left: 30px;
            border: none;
        }

        /*  .main-search-header .search-box .main-btn {
            border-radius: 0 35px 35px 0;
        }*/

        .main-search-header .search-box .main-btn .icon {
            border-right-width: 0;
            float: right;
            font-size: 16px;
        }
















/* ....................................

5. Home 02
.......................................*/
.index2-first-wrapper {
    width: 100%;
    background-image: linear-gradient(to right, #ec018c, #f01a86, #f2297f, #f5357a, #f64075);
    background-position: center center;
    background-repeat: repeat;
    background-size: cover;
    /*height: 1000px;*/
    /* position: relative;*/
    margin: 0;
    padding: 0;
}
    /*
    .index2-first-wrapper::after {
        content: "";
        position: absolute;
        display: block;
        top: 0;
        right: 0;
        background-image: url("../images/index2-side-img.png");
        background-repeat: no-repeat;
        background-size: cover;
        margin: 0;
        padding: 0;
        width: 700px;
        height: 1000px;
    }*/

    .index2-first-wrapper::before {
        content: "";
        position: absolute;
        display: block;
        bottom: 0;
        left: 0;
        background-image: url("../images/index-shape-1.png");
        background-repeat: no-repeat;
        background-size: cover;
        margin: 0;
        padding: 0;
        width: 340px;
        height: 100px;
    }

    .index2-first-wrapper .shape-wrap {
        position: relative;
    }

        .index2-first-wrapper .shape-wrap::before {
            content: "";
            display: block;
            top: 290px;
            left: 37px;
            width: 177px;
            height: 476px;
            position: absolute;
            background-image: url("../images/index2-shape-2.png");
            background-repeat: no-repeat;
            background-size: cover;
            animation: swing ease-in-out 1s infinite alternate;
        }

    .index2-first-wrapper .index-inner-wrap-1 {
        margin-left: 16%;
        max-width: 800px;
    }

        .index2-first-wrapper .index-inner-wrap-1 p a {
            font-size: 16px;
            color: #ffffff;
            text-transform: uppercase;
            letter-spacing: 10px;
        }

        .index2-first-wrapper .index-inner-wrap-1 h1 {
            margin-top: 27px;
        }

            .index2-first-wrapper .index-inner-wrap-1 h1 a {
                font-size: 55px;
                color: #ffffff;
                font-family: "badscript-regular";
                font-weight: 300;
            }

        .index2-first-wrapper .index-inner-wrap-1 .para-wrap-1 {
            color: #ffffff;
            font-family: "Poppins", sans-serif;
            margin-top: 37px;
        }

        .index2-first-wrapper .index-inner-wrap-1 .index-btn {
            margin-top: 26px;
        }

    .index2-first-wrapper .index-inner-wrap-2 {
        position: relative;
        background-color: #ffffff;
        width: 1070px;
        height: 170px;
        padding: 58px 68px;
        box-shadow: 0 20px 46px 12px rgba(182, 14, 14, 0.0509803922);
        margin-top: 40px;
        z-index: 6;
    }

        .index2-first-wrapper .index-inner-wrap-2 .change-box {
            display: flex;
            align-items: center;
            -moz-column-gap: 22px;
            column-gap: 22px;
        }

            .index2-first-wrapper .index-inner-wrap-2 .change-box label {
                width: 55px;
                float: left;
                color: #797979;
            }

            .index2-first-wrapper .index-inner-wrap-2 .change-box .label-2nd {
                width: 125px;
            }

            .index2-first-wrapper .index-inner-wrap-2 .change-box .custum-select {
                width: calc(100% - 60px);
                float: left;
                margin-left: 5px;
            }

                .index2-first-wrapper .index-inner-wrap-2 .change-box .custum-select .dropdown:hover {
                    background-color: #ec008c;
                    color: #ffffff;
                }

                .index2-first-wrapper .index-inner-wrap-2 .change-box .custum-select .dropdown:focus {
                    background-color: #ec008c !important;
                    color: #ffffff;
                }

                .index2-first-wrapper .index-inner-wrap-2 .change-box .custum-select .open {
                    background-color: #ec008c !important;
                }

                .index2-first-wrapper .index-inner-wrap-2 .change-box .custum-select .option.selected {
                    background: #ec008c;
                }

                    .index2-first-wrapper .index-inner-wrap-2 .change-box .custum-select .option.selected:hover {
                        background-color: #ec008c !important;
                        color: #ffffff;
                    }

                .index2-first-wrapper .index-inner-wrap-2 .change-box .custum-select .option:hover, .index2-first-wrapper .index-inner-wrap-2 .change-box .custum-select .option:focus {
                    background-color: #ec008c !important;
                    color: #ffffff;
                }

            .index2-first-wrapper .index-inner-wrap-2 .change-box .custum-range {
                width: calc(100% - 125px);
                float: left;
            }

                .index2-first-wrapper .index-inner-wrap-2 .change-box .custum-range .ui-slider-horizontal {
                    height: 1px;
                    border: none;
                    background: #bababa;
                }

                    .index2-first-wrapper .index-inner-wrap-2 .change-box .custum-range .ui-slider-horizontal .ui-slider-range {
                        height: 3px;
                        background: linear-gradient(to right, #fa2456, #fd735a);
                        top: 50%;
                        transform: translateY(-50%);
                    }

                    .index2-first-wrapper .index-inner-wrap-2 .change-box .custum-range .ui-slider-horizontal .ui-slider-handle {
                        top: 50%;
                        transform: translateY(-50%);
                        background: linear-gradient(to right, #fc6767, #ec008c);
                        height: 12px;
                        width: 12px;
                        border-radius: 50%;
                        border: none;
                        outline: none;
                    }

                        .index2-first-wrapper .index-inner-wrap-2 .change-box .custum-range .ui-slider-horizontal .ui-slider-handle .value {
                            position: absolute;
                            bottom: 20px;
                            left: 0;
                            width: 30px;
                            text-align: center;
                            display: block;
                            font-size: 14px;
                            line-height: 20px;
                            color: #ffffff;
                            background: linear-gradient(to right, #fa2456, #fd735a);
                        }

                            .index2-first-wrapper .index-inner-wrap-2 .change-box .custum-range .ui-slider-horizontal .ui-slider-handle .value:after {
                                content: "";
                                position: absolute;
                                width: 6px;
                                height: 6px;
                                -webkit-clip-path: polygon(0 0, 0 100%, 100% 0);
                                clip-path: polygon(0 0, 0 100%, 100% 0);
                                background: #fa2456;
                                bottom: -6px;
                                left: 5px;
                            }

.right-sidebar-2 .sidebar-contant a.main-btn, .right-sidebar-2 .sidebar-contant button.main-btn {
    background: #ec008c;
    background: linear-gradient(to right, #fc6767, #ec008c);
}

.dating-wrapper-2 {
    position: relative;
}

    .dating-wrapper-2::before {
        content: "";
        display: block;
        position: absolute;
        bottom: 45px;
        left: 80px;
        width: 150px;
        height: 406px;
        background-image: url("../images/dating-index2-shape.png");
        background-repeat: no-repeat;
        background-size: cover;
        animation: swing ease-in-out 1s infinite alternate;
    }

    .dating-wrapper-2 .heading h2 {
        font-size: 40px;
        font-family: "badscript-regular";
    }

    .dating-wrapper-2 .dating-content .detail-box {
        margin-top: 35px;
    }

        .dating-wrapper-2 .dating-content .detail-box p {
            font-family: "asem-kandis";
            color: #ef2095;
            font-size: 51px;
        }

        .dating-wrapper-2 .dating-content .detail-box h5 {
            margin-top: 15px;
        }

            .dating-wrapper-2 .dating-content .detail-box h5 a {
                font-size: 20px;
                font-family: "Poppins", sans-serif;
                color: #111111;
            }

        .dating-wrapper-2 .dating-content .detail-box h6 {
            margin-top: 10px;
        }

            .dating-wrapper-2 .dating-content .detail-box h6 a {
                font-size: 16px;
                font-family: "Poppins", sans-serif;
                color: #a2a1a1;
            }

.counter-section-2 {
    background-color: #f6f7f9;
}

    .counter-section-2 .counter-box-2 {
        max-width: 135px;
        margin: 0 auto;
    }

        .counter-section-2 .counter-box-2 .counter-icon-2 {
            position: relative;
            height: 128px;
            position: relative;
            border: 3px solid transparent;
            width: 126px;
            padding: 25px;
            background: #ec008c;
            background: linear-gradient(to right, #fc6767, #ec008c);
            box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.2);
            transition: 0.3s;
        }

            .counter-section-2 .counter-box-2 .counter-icon-2::after {
                border-radius: 0px !important;
            }

            .counter-section-2 .counter-box-2 .counter-icon-2 img {
                display: block;
                margin: 0 auto;
            }

            .counter-section-2 .counter-box-2 .counter-icon-2:hover {
                border: 4px solid #ffffff;
                box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.4);
                transform: scale(1.05, 1.05);
            }

        .counter-section-2 .counter-box-2 .counter-text-2 {
            margin-top: 30px;
            text-align: center;
        }

            .counter-section-2 .counter-box-2 .counter-text-2 .counter {
                font-size: 46px;
                color: #3d3d3d;
            }

            .counter-section-2 .counter-box-2 .counter-text-2 p {
                font-size: 18px;
                color: #3d3d3d;
                margin-top: 20px;
                transition: all 0.5s;
            }

            .counter-section-2 .counter-box-2 .counter-text-2:hover p {
                color: #ef2095;
            }

            .counter-section-2 .counter-box-2 .counter-text-2:hover .counter {
                color: #ef2095;
            }

.doctor-love-2 {
    position: relative;
    width: 100%;
    height: 100%;
}

    .doctor-love-2 .heading h2 {
        font-size: 40px;
        font-family: "badscript-regular";
    }

    .doctor-love-2 .heading p {
        margin: 0 auto;
        max-width: 640px;
    }

    .doctor-love-2 .love-calculater {
        position: relative;
        z-index: 2;
    }

        .doctor-love-2 .love-calculater .calc-inner-box {
            position: relative;
            z-index: 2;
        }

            .doctor-love-2 .love-calculater .calc-inner-box .love-inner-box {
                width: 100%;
            }

                .doctor-love-2 .love-calculater .calc-inner-box .love-inner-box .enter-name1 {
                    margin-bottom: 25px;
                }

                    .doctor-love-2 .love-calculater .calc-inner-box .love-inner-box .enter-name1 label {
                        display: block;
                        text-align: left;
                        font-size: 24px;
                        font-family: "Lato", sans-serif;
                        color: #797979;
                        margin-bottom: 20px;
                    }

                    .doctor-love-2 .love-calculater .calc-inner-box .love-inner-box .enter-name1 input {
                        display: block;
                        color: #ef2095;
                        padding: 30px 0px;
                        padding-left: 40px;
                        background-color: #f7f7f7;
                        border: 2px solid #e2e2e2;
                        width: 100%;
                        outline: none;
                    }

                .doctor-love-2 .love-calculater .calc-inner-box .love-inner-box .enter-name2 label {
                    display: block;
                    text-align: left;
                    font-size: 24px;
                    font-family: "Lato", sans-serif;
                    color: #797979;
                    margin-bottom: 20px;
                }

                .doctor-love-2 .love-calculater .calc-inner-box .love-inner-box .enter-name2 input {
                    display: block;
                    color: #ef2095;
                    padding: 30px 0px;
                    padding-left: 40px;
                    background-color: #f7f7f7;
                    border: 2px solid #e2e2e2;
                    width: 100%;
                    outline: none;
                }

            .doctor-love-2 .love-calculater .calc-inner-box .calculat-love {
                margin-top: 25px;
            }

                .doctor-love-2 .love-calculater .calc-inner-box .calculat-love .index2-btn2 {
                    margin: unset !important;
                    padding: 0px 30px;
                }

    .doctor-love-2::after {
        content: "";
        position: absolute;
        display: block;
        bottom: 0;
        width: 100%;
        height: 300px;
        background-image: url(../images/sweet-bottom-img-2.png);
        background-repeat: no-repeat;
        background-size: cover;
    }

    .doctor-love-2::before {
        content: "";
        position: absolute;
        display: block;
        left: 100px;
        top: 500px;
        width: 108px;
        height: 290px;
        background-image: url(../images/404-balloon.png);
        background-repeat: no-repeat;
        background-size: cover;
        z-index: 9;
        animation: swing ease-in-out 1s infinite alternate;
    }

.how-it-work-2 {
    position: relative;
}

    .how-it-work-2 .heading h2 {
        font-size: 40px;
        font-family: "badscript-regular";
    }

    .how-it-work-2 .heading p {
        margin: 0 auto;
        max-width: 640px;
    }

    .how-it-work-2 .awesome-slider .awesome-slider-box {
        box-shadow: 0 -12px 46px 12px rgba(182, 14, 14, 0.0509803922);
        width: 100%;
        height: 365px;
    }

        .how-it-work-2 .awesome-slider .awesome-slider-box .aw-img-box img {
            width: 100%;
        }

        .how-it-work-2 .awesome-slider .awesome-slider-box .aw-tect-box {
            background-color: #ffffff;
            text-align: center;
            height: 95px;
            padding: 18px 0px 0px 0px;
            transition: all 0.5s;
        }

            .how-it-work-2 .awesome-slider .awesome-slider-box .aw-tect-box h6 a {
                font-size: 20px;
                font-family: "badscript-regular";
                color: #93979b;
                transition: all 0.5s;
            }

            .how-it-work-2 .awesome-slider .awesome-slider-box .aw-tect-box h6hover {
                color: #111111;
            }

            .how-it-work-2 .awesome-slider .awesome-slider-box .aw-tect-box p {
                font-family: "Lato", sans-serif;
                color: #93979b;
                padding: 15px 0px 0px 0px;
            }

            .how-it-work-2 .awesome-slider .awesome-slider-box .aw-tect-box:hover {
                background: #ec008c;
                background: linear-gradient(to right, #fc6767, #ec008c);
            }

                .how-it-work-2 .awesome-slider .awesome-slider-box .aw-tect-box:hover p {
                    color: #ffffff;
                }

                .how-it-work-2 .awesome-slider .awesome-slider-box .aw-tect-box:hover a {
                    color: #ffffff;
                }

    .how-it-work-2 .awesome-slider .owl-carousel .owl-nav {
        display: block;
        position: absolute;
        top: 50%;
        width: 100%;
    }

        .how-it-work-2 .awesome-slider .owl-carousel .owl-nav .owl-prev {
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            left: -11%;
            transition: all 0.5s;
        }

            .how-it-work-2 .awesome-slider .owl-carousel .owl-nav .owl-prev span {
                font-size: 50px;
                color: #ec008c;
                margin-bottom: 3px;
            }

                .how-it-work-2 .awesome-slider .owl-carousel .owl-nav .owl-prev span:hover {
                    color: #ffffff;
                    fill: #ffffff;
                }

            .how-it-work-2 .awesome-slider .owl-carousel .owl-nav .owl-prev:hover {
                background: #ec008c;
                background: linear-gradient(to right, #fc6767, #ec008c);
                box-shadow: 0 -12px 46px 12px rgba(182, 14, 14, 0.0509803922);
                border-radius: 55px;
            }

                .how-it-work-2 .awesome-slider .owl-carousel .owl-nav .owl-prev:hover span {
                    color: #ffffff;
                    fill: #ffffff;
                }

        .how-it-work-2 .awesome-slider .owl-carousel .owl-nav .owl-next {
            width: 33px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            right: -11%;
        }

            .how-it-work-2 .awesome-slider .owl-carousel .owl-nav .owl-next span {
                font-size: 50px;
                margin-bottom: 3px;
                color: #ec008c;
            }

                .how-it-work-2 .awesome-slider .owl-carousel .owl-nav .owl-next span:hover {
                    color: #ffffff;
                    fill: #ffffff;
                }

            .how-it-work-2 .awesome-slider .owl-carousel .owl-nav .owl-next:hover {
                background: #ec008c;
                background: linear-gradient(to right, #fc6767, #ec008c);
                box-shadow: 0 -12px 46px 12px rgba(182, 14, 14, 0.0509803922);
                border-radius: 55px;
            }

                .how-it-work-2 .awesome-slider .owl-carousel .owl-nav .owl-next:hover span {
                    color: #ffffff;
                    fill: #ffffff;
                }

    .how-it-work-2 .awesome-btn {
        width: 100%;
        clear: both;
        padding-top: 45px;
    }

.blog-wrap-2 {
    position: relative;
    width: 100%;
    height: 100%;
}

    .blog-wrap-2 .heading h2 {
        font-size: 44px;
        font-family: "badscript-regular";
    }

    .blog-wrap-2 .heading p {
        margin: 0 auto;
        max-width: 640px;
    }

    .blog-wrap-2::before {
        content: "";
        position: absolute;
        display: block;
        bottom: 0;
        width: 100%;
        height: 300px;
        background-image: url("../images/sweet-bottom-img-2.png");
        background-repeat: no-repeat;
        background-size: cover;
    }

    .blog-wrap-2 .blog-btn-box {
        width: 100%;
        padding-top: 50px;
        clear: both;
    }

.how-it-work-3 {
    position: relative;
    width: 100%;
    height: 100%;
    clear: both;
    background-color: #f6f7f9 !important;
}

    .how-it-work-3 .heading h2 {
        font-size: 44px;
        font-family: "badscript-regular";
    }

    .how-it-work-3 .heading p {
        margin: 0 auto;
        max-width: 640px;
    }

    .how-it-work-3 .counter-box-2 {
        position: relative;
    }

        .how-it-work-3 .counter-box-2 .counter-icon {
            width: 95px;
            height: 95px;
            border: 2px solid #828282;
            border-radius: 50px;
            position: relative;
            margin: 0 auto;
            transition: all 0.5s;
            background-color: white;
        }

            .how-it-work-3 .counter-box-2 .counter-icon img {
                display: block;
                margin: 0 auto;
                padding: 19px 0px;
            }

            .how-it-work-3 .counter-box-2 .counter-icon span {
                position: absolute;
                left: 3%;
                top: -10px;
                color: #ffffff;
                background: #fb4b58;
                display: inline-block;
                text-align: center;
                width: 29px;
                height: 29px;
                line-height: 29px;
                border-radius: 50%;
                z-index: 9;
            }

            .how-it-work-3 .counter-box-2 .counter-icon:hover {
                background-color: #ffffff;
                border: 2px solid;
            }

        .how-it-work-3 .counter-box-2 .counter-text-2 {
            margin-top: 22px;
        }

            .how-it-work-3 .counter-box-2 .counter-text-2 h5 {
                font-size: 20px;
                font-family: "badscript-regular";
                color: #747576;
                text-align: center;
            }

            .how-it-work-3 .counter-box-2 .counter-text-2 span {
                color: #bdbdbe;
                display: inline-block;
                text-align: center;
                width: 100%;
                margin-top: 15px;
            }

    .how-it-work-3 .position-div {
        position: relative;
    }

        .how-it-work-3 .position-div::before {
            content: "";
            display: block;
            position: absolute;
            width: 40%;
            height: 17px;
            bottom: 70%;
            left: 85%;
            background-image: url("../images/wave-arrow.png");
            background-repeat: no-repeat;
            background-size: cover;
        }

.mobile-app-section-2 .heading h2 {
    font-size: 44px;
    font-family: "badscript-regular";
}

.mobile-app-section-2 .heading p {
    margin: 0 auto;
    max-width: 640px;
}

.mobile-app-section-2 .main-btn {
    border-radius: 0px !important;
    background: #ec008c;
    background: linear-gradient(to right, #fc6767, #ec008c);
}

.contact-us-wrapper {
    width: 100%;
    padding: 100px 0px;
    height: 100%;
    clear: both;
    position: relative;
}

    .contact-us-wrapper .contact-inner-wrap {
        box-shadow: 0 -12px 46px 12px rgba(182, 14, 14, 0.0509803922);
        width: 100%;
        height: 200px;
        background-color: #ffffff;
        border: 3px solid #ec008c;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .contact-us-wrapper .contact-inner-wrap .li-first {
            width: 25%;
        }

            .contact-us-wrapper .contact-inner-wrap .li-first .contact-box-1 {
                padding: 45px 0px;
                text-align: center;
            }

                .contact-us-wrapper .contact-inner-wrap .li-first .contact-box-1 p {
                    font-family: "badscript-regular";
                    font-size: 22px;
                    color: #ec008c;
                    line-height: 35px;
                }

                    .contact-us-wrapper .contact-inner-wrap .li-first .contact-box-1 p strong {
                        font-size: 31px;
                    }

        .contact-us-wrapper .contact-inner-wrap .li-second {
            width: 50%;
        }

            .contact-us-wrapper .contact-inner-wrap .li-second .contact-box-2 {
                background-color: #ec008c;
                padding: 70px 0px;
            }

                .contact-us-wrapper .contact-inner-wrap .li-second .contact-box-2 .ul-inner {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    padding: 0px 50px;
                    -moz-column-gap: 40px;
                    column-gap: 40px;
                }

                    .contact-us-wrapper .contact-inner-wrap .li-second .contact-box-2 .ul-inner li a {
                        color: #ffffff;
                        font-size: 40px;
                    }

                    .contact-us-wrapper .contact-inner-wrap .li-second .contact-box-2 .ul-inner li p {
                        color: #ffffff;
                        text-align: center;
                    }

        .contact-us-wrapper .contact-inner-wrap .li-third {
            width: 25%;
        }

            .contact-us-wrapper .contact-inner-wrap .li-third .contact-box-3 {
                background-color: #ec008c;
                padding: 73px 0px;
                border-left: 2px solid rgba(255, 255, 255, 0.3019607843);
                position: relative;
            }

                .contact-us-wrapper .contact-inner-wrap .li-third .contact-box-3 .contact-btn {
                    background-color: #ffffff;
                    color: #ec008c;
                }

                    .contact-us-wrapper .contact-inner-wrap .li-third .contact-box-3 .contact-btn:hover {
                        border: 2px solid #ffffff;
                        background-color: transparent;
                        color: #ffffff;
                    }

                .contact-us-wrapper .contact-inner-wrap .li-third .contact-box-3 span {
                    position: absolute;
                    width: 30px;
                    height: 32px;
                    background-color: #ffffff;
                    font-size: 14px;
                    border-radius: 55px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    color: #adadad;
                    left: -16px;
                    z-index: 9;
                    top: 44%;
                }

    .contact-us-wrapper::after {
        content: "";
        display: block;
        position: absolute;
        left: 60px;
        top: 225px;
        width: 108px;
        height: 290px;
        background-image: url("../images/contact-shape-img-1.png");
        background-repeat: no-repeat;
        background-size: cover;
        z-index: 9;
        animation: swing ease-in-out 1s infinite alternate;
    }

    .contact-us-wrapper::before {
        content: "";
        display: block;
        position: absolute;
        right: 60px;
        top: 250px;
        width: 108px;
        height: 290px;
        background-image: url("../images/contact-shape-img-1.png");
        background-repeat: no-repeat;
        background-size: cover;
        z-index: 9;
        animation: swing ease-in-out 1s infinite alternate;
    }

    .contact-us-wrapper .side-img {
        position: relative;
    }

        .contact-us-wrapper .side-img::before {
            content: "";
            display: block;
            position: absolute;
            right: 60px;
            top: -175px;
            width: 108px;
            height: 290px;
            background-image: url("../images/contact-shape-img-1.png");
            background-repeat: no-repeat;
            background-size: cover;
            z-index: 9;
            animation: swing ease-in-out 1s infinite alternate;
        }

.main-search-2 {
    background-image: none;
    background-color: #f6f7f9;
}

    .main-search-2::after {
        background-color: transparent;
    }

    .main-search-2 .heading h2 {
        color: #ec008c;
        font-size: 32px;
        font-family: "badscript-regular";
        text-align: left;
        margin-left: 280px;
    }

    .main-search-2 .heading p {
        color: #797979;
        text-align: left;
        margin-left: 280px;
    }

    .main-search-2 .media-icon {
        display: flex;
        justify-content: flex-start;
        -moz-column-gap: 10px;
        column-gap: 10px;
        margin-top: 30px;
        margin-left: 280px;
    }

        .main-search-2 .media-icon li a {
            display: flex;
            width: 40px;
            height: 40px;
            line-height: 40px;
            border: 1px solid #828282;
            border-radius: 50%;
            color: #828282;
            justify-content: center;
            align-items: center;
            transition: all 0.5s;
        }

            .main-search-2 .media-icon li a:hover {
                background: #ec008c;
                background: linear-gradient(to right, #fc6767, #ec008c);
                color: #ffffff;
                border-color: transparent;
            }

    .main-search-2 .search-box input {
        border-radius: 0px 0 0 0px;
    }

    .main-search-2 .search-box .main-btn {
        border-radius: 0 0px 0px 0;
        background: #ec008c;
        background: linear-gradient(to right, #fc6767, #ec008c);
    }

.index2-footer {
    background-color: #f6f7f9;
    position: relative;
}

    .index2-footer .footer-logo {
        border-top: 2px solid #ececec;
        padding-top: 56px;
    }

    .index2-footer::after {
        content: "";
        position: relative;
        display: block;
        width: 100%;
        height: 130px;
        bottom: 0;
        background-image: url("../images/bottom-footer-shape.png");
        background-size: cover;
        background-repeat: no-repeat;
    }

    .index2-footer .bootem-footer {
        border-top: 1px solid #ececec;
    }

    .index2-footer .footer-content .media-icon-index li a {
        border: none !important;
    }

        .index2-footer .footer-content .media-icon-index li a:hover {
            background: #ec008c;
            background: linear-gradient(to right, #fc6767, #ec008c);
            color: #ffffff;
            border-color: transparent;
        }

@media (max-width: 1750px) {
    .index2-first-wrapper::after {
        width: 608px;
        /* height: 1000px;*/
    }

    .how-it-work-2 .awesome-slider .owl-carousel .owl-nav .owl-prev {
        left: -7%;
    }

    .how-it-work-2 .awesome-slider .owl-carousel .owl-nav .owl-next {
        right: -7%;
    }
}

@media (max-width: 1650px) {
    .index2-first-wrapper .index-inner-wrap-1 {
        max-width: 700px;
    }

        .index2-first-wrapper .index-inner-wrap-1 h1 a {
            font-size: 60px;
        }

    .index2-first-wrapper .index-inner-wrap-2 {
        width: 1000px;
        padding: 50px 42px;
    }

    .dating-wrapper-2::before {
        left: 21px;
    }

    .index2-first-wrapper .shape-wrap::before {
        left: 21px;
    }

    .contact-us-wrapper .side-img::before {
        right: 20px;
        z-index: 9;
    }

    .doctor-love-2::before {
        right: 20px;
        z-index: 9;
    }

    .contact-us-wrapper::before {
        right: 20px;
        z-index: 9;
    }

    .contact-us-wrapper::after {
        left: 20px;
    }

    .contact-us-wrapper .contact-inner-wrap {
        position: relative;
        z-index: 99;
    }
}

@media (max-width: 1550px) {
    .index2-first-wrapper .index-inner-wrap-1 {
        max-width: 670px;
    }

        .index2-first-wrapper .index-inner-wrap-1 h1 a {
            font-size: 50px;
        }

    .index2-first-wrapper .index-inner-wrap-2 {
        width: 1000px;
        padding: 50px 42px;
    }

    .index2-first-wrapper::after {
        width: 550px;
    }

    .how-it-work-2 .awesome-slider .owl-carousel .owl-nav .owl-prev {
        left: -4%;
    }

    .how-it-work-2 .awesome-slider .owl-carousel .owl-nav .owl-next {
        right: -4%;
    }

    .how-it-work-2 .awesome-slider .awesome-slider-box {
        box-shadow: 0 -12px 46px 12px rgba(182, 14, 14, 0.0509803922);
        width: 100%;
        height: auto !important;
    }

    .main-search-2 .heading p {
        margin-left: 185px;
    }

    .main-search-2 .heading h2 {
        margin-left: 190px;
    }

    .main-search-2 .media-icon {
        margin-left: 185px;
    }
}

@media (max-width: 1440px) {
    .index2-first-wrapper::after {
        width: 506px;
    }
}

@media (max-width: 1399px) {
    .how-it-work-2 .awesome-slider .owl-carousel .owl-nav .owl-prev {
        left: -7%;
    }

    .how-it-work-2 .awesome-slider .owl-carousel .owl-nav .owl-next {
        right: -7%;
    }

    .contact-us-wrapper .contact-inner-wrap {
        height: 155px;
    }

        .contact-us-wrapper .contact-inner-wrap .li-second .contact-box-2 {
            padding: 46px 0px;
        }

        .contact-us-wrapper .contact-inner-wrap .li-third .contact-box-3 {
            padding: 50px 0px;
        }

        .contact-us-wrapper .contact-inner-wrap .li-second .contact-box-2 .ul-inner li a {
            font-size: 27px;
        }

        .contact-us-wrapper .contact-inner-wrap .li-third .contact-box-3 .contact-btn {
            max-width: 180px;
        }

    .how-it-work-3 .position-div::before {
        width: 47%;
        height: 17px;
        bottom: 70%;
        left: 80%;
    }
}

@media (max-width: 1366px) {
    .index2-first-wrapper .index-inner-wrap-1 {
        max-width: 620px;
    }

    .index2-first-wrapper .index-inner-wrap-2 {
        width: 924px;
        padding: 40px 34px;
        height: 140px;
    }

    .doctor-love-2 .love-calculater .calc-inner-box .love-inner-box .enter-name2 input {
        padding-left: 30px !important;
        padding: 17px 0px;
    }

    .doctor-love-2 .love-calculater .calc-inner-box .love-inner-box .enter-name1 input {
        padding-left: 30px !important;
        padding: 17px 0px;
    }

    .doctor-love-2 .love-calculater .calc-inner-box .enter-name input {
        padding: 17px 0px;
        padding-left: 32px;
        max-width: 120px;
    }

    .doctor-love-2 .love-calculater .calc-inner-box .love-inner-box .enter-name1 label {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .doctor-love-2 .love-calculater .calc-inner-box .love-inner-box .enter-name2 label {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .doctor-love-2 .love-calculater .calc-inner-box .enter-name label {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .how-it-work-2 .awesome-slider .owl-carousel .owl-nav .owl-prev span {
        font-size: 35px;
        margin-bottom: 4px;
    }

    .how-it-work-2 .awesome-slider .owl-carousel .owl-nav .owl-next span {
        font-size: 35px;
        margin-bottom: 4px;
    }

    .how-it-work-2 .awesome-slider .owl-carousel .owl-nav .owl-next {
        width: 30px;
        height: 30px;
        display: flex;
    }

    .how-it-work-2 .awesome-slider .owl-carousel .owl-nav .owl-prev {
        width: 30px;
        height: 30px;
        display: flex;
    }

    .contact-us-wrapper::before {
        right: 80px;
    }

    .contact-us-wrapper .side-img::before {
        right: 76px;
        z-index: 9;
    }

    .contact-us-wrapper::after {
        left: 30px;
    }
}

@media (max-width: 1299px) {
    .how-it-work-2 .awesome-slider .owl-carousel .owl-nav .owl-prev {
        left: -5%;
    }

    .how-it-work-2 .awesome-slider .owl-carousel .owl-nav .owl-next {
        right: -5%;
    }
}

@media (max-width: 1260px) {
    .index2-first-wrapper::after {
        width: 450px;
        height: 920px;
    }

    .index2-first-wrapper .index-inner-wrap-1 {
        max-width: 535px;
    }

    .index2-first-wrapper {
        /*height: 920px;*/
    }

    .how-it-work-2 .awesome-slider .owl-carousel .owl-nav .owl-prev {
        left: -3%;
    }

    .how-it-work-2 .awesome-slider .owl-carousel .owl-nav .owl-next {
        right: -3%;
    }

    .doctor-love-2 .graph-box {
        position: relative;
        z-index: 9;
    }
}

@media (max-width: 1199px) {
    .how-it-work-2 .awesome-slider .owl-carousel .owl-nav .owl-prev {
        left: -7%;
    }

    .how-it-work-2 .awesome-slider .owl-carousel .owl-nav .owl-next {
        right: -7%;
    }

    .how-it-work-3 .position-div::before {
        width: 57%;
        left: 75%;
    }

    .main-search-2 .heading h2 {
        margin-left: 100px;
    }

    .main-search-2 .heading p {
        margin-left: 100px;
    }

    .main-search-2 .media-icon {
        margin-left: 100px;
    }

    .contact-us-wrapper::after {
        left: 30px;
        top: 140px;
    }
}

@media (max-width: 1100px) {
    .doctor-love-2 .love-calculater .love-result .circle {
        display: none !important;
    }

    .doctor-love .love-calculater .love-result h2 {
        position: absolute;
        top: 40%;
        left: 40%;
        transform: translate(-40%, -40%);
    }
}

@media (max-width: 1150px) {
    .index2-first-wrapper::after {
        width: 405px;
        height: 920px;
    }

    .index2-first-wrapper .index-inner-wrap-1 {
        max-width: 490px;
    }

        .index2-first-wrapper .index-inner-wrap-1 h1 a {
            font-size: 46px;
        }

    header .main-header-two .main-menu-two ul > li > a {
        padding: 10px 6px !important;
    }

    .index2-first-wrapper .index-inner-wrap-2 {
        width: 890px;
        padding: 30px 17px;
        height: 125px;
    }

    header .main-header-two .main-menu-two ul > li > a {
        padding: 10px 4px !important;
    }

    .dating-wrapper-2 {
        position: relative;
        padding: 60px 0px !important;
    }

        .dating-wrapper-2 .dating-img {
            position: relative;
            bottom: 130px;
        }

        .dating-wrapper-2::before {
            bottom: 100px;
        }
}

@media (max-width: 1080px) {
    .index2-first-wrapper .index-inner-wrap-1 {
        top: 20%;
        left: 10%;
    }

    header .main-header-two .main-menu-two ul > li > a {
        font-size: 14px;
    }

    header .main-header-two .main-menu-two .index2-inner-ul .sideline .index-2-btn .menuBtn-2 a {
        font-size: 14px;
    }

    .index2-first-wrapper {
        /* height: 875px; */
    }

    header .main-header-two .main-menu-two ul > li > a {
        padding: 10px 3px !important;
    }

    header .main-header-two .main-menu-two > ul > li > a {
        gap: 5px;
    }

    header .main-header-two .main-menu-two > ul {
        padding-left: 15px !important;
    }

    .index2-first-wrapper::after {
        width: 390px;
        height: 920px;
    }

    .index2-first-wrapper .index-inner-wrap-2 .change-box label {
        width: 50px;
        font-size: 12px;
    }

    .index2-first-wrapper .index-inner-wrap-2 .change-box .dropdown-wrapper {
        width: 230px;
        padding: 10px 10px;
        font-size: 12px;
    }

    .index2-first-wrapper .index-inner-wrap-2 .change-box {
        -moz-column-gap: 8px;
        column-gap: 8px;
    }

        .index2-first-wrapper .index-inner-wrap-2 .change-box .custum-range {
            width: calc(100% - 57px);
        }

    .index2-first-wrapper .index-inner-wrap-2 {
        width: 820px;
        padding: 25px 17px;
        height: 100px;
    }

        .index2-first-wrapper .index-inner-wrap-2 .change-box .label-2nd {
            width: 105px;
        }

    .index2-btn2 {
        font-size: 13px;
    }

    .how-it-work-2 .awesome-slider .owl-carousel .owl-nav .owl-prev {
        left: -5%;
    }

    .how-it-work-2 .awesome-slider .owl-carousel .owl-nav .owl-next {
        right: -5%;
    }
}

@media (max-width: 1040px) {
    .how-it-work-2 .awesome-slider .owl-carousel .owl-nav .owl-prev {
        left: 3%;
    }

    .how-it-work-2 .awesome-slider .owl-carousel .owl-nav .owl-next {
        right: 3%;
    }

    .how-it-work-2 .awesome-slider .owl-carousel .owl-nav {
        top: 40%;
    }
}

@media (max-width: 991px) {

    .main-search-header {
        background-position-x: -950px;
    }

    .toggle-btn-2 .icon-left {
        background-color: #ffffff !important;
    }

        .toggle-btn-2 .icon-left:before {
            background-color: #ffffff !important;
        }

        .toggle-btn-2 .icon-left:after {
            background-color: #ffffff !important;
        }

    .toggle-btn-2 .icon-right {
        background-color: #ffffff !important;
    }

        .toggle-btn-2 .icon-right:before {
            background-color: #ffffff !important;
        }

        .toggle-btn-2 .icon-right:after {
            background-color: #ffffff !important;
        }

    .toggle-btn-2.open .icon-left {
        background: transparent !important;
    }

    .toggle-btn-2.open .icon-right {
        background: transparent !important;
    }

    .js-toggle-dark-mode-2 {
        background-color: #ec008c !important;
    }

    .index2-first-wrapper .index-inner-wrap-2 .change-box {
        margin-bottom: 10px;
    }

    .index2-first-wrapper .index-inner-wrap-2 {
        width: 650px;
        padding: 30px 17px;
        height: 218px;
    }

        .index2-first-wrapper .index-inner-wrap-2 .change-box {
            margin-bottom: 20px;
        }

    .index2-first-wrapper::after {
        background-image: none;
    }

    .index2-first-wrapper .index-inner-wrap-1 {
        max-width: 765px;
    }

    .dating-wrapper-2 .dating-img {
        bottom: 30px;
    }

    .dating-wapper .dating-content {
        padding-left: 40px;
    }

    .index2-first-wrapper .index-inner-wrap-2 .change-box .custum-range .ui-slider-horizontal {
        width: 300px;
    }

        .index2-first-wrapper .index-inner-wrap-2 .change-box .custum-range .ui-slider-horizontal .ui-slider-handle .value {
            bottom: 16px;
            width: 20px;
            font-size: 9px;
            line-height: 14px;
        }

    .how-it-work-3 .position-div::before {
        display: none !important;
    }

    .how-it-work-3 .counter-box-2 {
        position: relative;
        margin-top: 30px;
    }

    .doctor-love-2 .graph-box {
        padding-top: 30px;
    }

    .doctor-love-2::before {
        top: 65%;
    }

    .contact-us-wrapper .contact-inner-wrap .li-second .contact-box-2 .ul-inner li a {
        font-size: 25px;
    }

    .contact-us-wrapper .contact-inner-wrap .li-second .contact-box-2 .ul-inner li p {
        text-align: left;
        font-size: 13px;
    }

    .contact-us-wrapper .contact-inner-wrap .li-third .contact-box-3 .contact-btn {
        max-width: 140px;
    }

    .contact-us-wrapper .contact-inner-wrap .li-first .contact-box-1 p {
        font-size: 18px;
        line-height: 29px;
    }

        .contact-us-wrapper .contact-inner-wrap .li-first .contact-box-1 p strong {
            font-size: 21px;
        }

    .contact-us-wrapper .contact-inner-wrap .li-second .contact-box-2 .ul-inner {
        -moz-column-gap: 40px;
        column-gap: 40px;
    }

    .contact-us-wrapper::before {
        top: 161px;
    }

    .index-inner-wrap-2 .index2-btn2 {
        margin: 0 !important;
    }

    .main-search-2 .heading h2 {
        margin-left: 65px;
    }

    .main-search-2 .heading p {
        margin-left: 65px;
    }

    .main-search-2 .media-icon {
        margin-left: 65px;
    }

    .doctor-love-2 .love-calculater .calc-inner-box {
        margin: 0px 0px;
    }

    .doctor-love .love-calculater .love-result h2 {
        position: absolute;
        top: 40%;
        left: 50%;
        transform: translate(-40%, -40%);
    }

    .counter-section-2 .counter-box-2 {
        margin-bottom: 33px;
    }

        .counter-section-2 .counter-box-2 .counter-text-2 {
            margin-top: 14px;
        }

            .counter-section-2 .counter-box-2 .counter-text-2 p {
                margin-top: 8px;
            }

    header .main-header-two .main-menu-two .sidebar-menu-css li a {
        width: 100%;
        padding: 20px !important;
    }

        header .main-header-two .main-menu-two .sidebar-menu-css li a img {
            margin: 0 auto;
        }

    header .main-header-two .main-menu-two .sidebar-menu-css {
        padding-right: px !important;
        padding-left: 0px !important;
    }

    .mobile-app-section-2 .app-content .heading p {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 899px) {
    .contact-us-wrapper .contact-inner-wrap .li-second .contact-box-2 .ul-inner li a {
        font-size: 20px;
    }

    header .main-header-two .main-menu-two {
        justify-content: flex-end !important;
        margin: 0px 0px 0px 0px !important;
    }
}

@media (max-width: 767px) {
    .heading h2 {
    
        font-size:22px !important;
        padding-bottom:10px;
    }

    .index2-first-wrapper .index-inner-wrap-2 {
        width: 510px;
    }

    .contact-us-wrapper .contact-inner-wrap .li-second .contact-box-2 .ul-inner li a {
        font-size: 15px;
    }

    .contact-us-wrapper .contact-inner-wrap .li-second .contact-box-2 .ul-inner li p {
        font-size: 10px;
    }

    .contact-us-wrapper .contact-inner-wrap .li-second .contact-box-2 .ul-inner {
        -moz-column-gap: 25px;
        column-gap: 25px;
    }

    .main-search-2 .heading h2 {
        margin-left: 5px;
    }

    .main-search-2 .heading p {
        margin-left: 5px;
    }

    .main-search-2 .media-icon {
        margin-left: 5px;
    }

    .doctor-love-2 .heading p {
        font-size: 13px;
    }

    .blog-wrap-2 .heading p {
        font-size: 13px;
    }

    .how-it-work-2 .heading p {
        font-size: 13px;
    }

    .how-it-work-3 .heading p {
        font-size: 13px;
    }

    .how-it-work-2 .awesome-slider .owl-carousel .owl-nav {
        top: 36%;
    }

    .contact-us-wrapper .contact-inner-wrap .li-second .contact-box-2 .ul-inner {
        padding: 0px 24px;
    }

    .mobile-app-section-2 .mobile-img {
        position: relative;
        z-index: 99;
    }

    .doctor-love-2 {
        padding-bottom: 30px;
    }

    .blog-wrap-2 {
        padding-bottom: 65px;
    }

    .doctor-love-2 .heading h2 {
        font-size: 35px;
    }

    .blog-wrap-2 .heading h2 {
        font-size: 35px;
    }

    .mobile-app-section-2 .heading h2 {
        font-size: 36px;
    }

    .counter-section-2 {
        padding-bottom: 20px;
    }
}

@media (max-width: 676px) {





    .dating-wrapper-2::before {
        bottom: 45px;
    }

    .index2-first-wrapper .index-inner-wrap-1 {
        max-width: 500px;
    }

    .index2-first-wrapper .index-inner-wrap-2 {
        width: 467px;
    }

    .doctor-love-2 .love-calculater .calc-inner-box {
        margin: 0px 35px;
    }

    .contact-us-wrapper .contact-inner-wrap .li-third .contact-box-3 .contact-btn {
        max-width: 107px;
    }

    .contact-us-wrapper .contact-inner-wrap .li-first .contact-box-1 p strong {
        font-size: 18px;
    }

    .contact-us-wrapper .contact-inner-wrap .li-first .contact-box-1 p {
        font-size: 14px;
        line-height: 27px;
    }

    .blog-wrap-2 .blog-box .blog-text .tag-list {
        -moz-column-gap: 20px;
        column-gap: 20px;
    }

    .doctor-love-2 .heading h2 {
        font-size: 36px;
    }

    .doctor-love-2 .love-calculater .love-result img {
        margin: 0 auto;
        margin-top: 30px;
    }
}

@media (max-width: 599px) {
    .contact-us-wrapper .contact-inner-wrap {
        display: inline-block;
        height: 100%;
    }

        .contact-us-wrapper .contact-inner-wrap .li-second {
            width: 100%;
        }

        .contact-us-wrapper .contact-inner-wrap .li-third {
            width: 100%;
            border-top: 2px solid white;
        }

            .contact-us-wrapper .contact-inner-wrap .li-third .contact-box-3 span {
                left: 50%;
                top: -12%;
            }

            .contact-us-wrapper .contact-inner-wrap .li-third .contact-box-3 {
                border-left: none;
            }

        .contact-us-wrapper .contact-inner-wrap .li-first {
            width: 100%;
        }

            .contact-us-wrapper .contact-inner-wrap .li-first .contact-box-1 {
                padding: 20px 0px;
            }

        .contact-us-wrapper .contact-inner-wrap .li-third .contact-box-3 .contact-btn {
            max-width: 170px;
        }

    .doctor-love-2 .heading h2 {
        font-size: 30px;
    }

    .how-it-work-2 .heading h2 {
        font-size: 30px;
    }

    .blog-wrap-2 .heading h2 {
        font-size: 30px;
        font-family: "badscript-regular";
    }

    .how-it-work-3 .heading h2 {
        font-size: 30px;
    }

    .mobile-app-section-2 .heading h2 {
        font-size: 30px;
    }

    .doctor-love-2 .love-calculater .calc-inner-box .love-inner-box {
        padding-left: 0px;
    }

    .contact-us-wrapper {
        padding-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .index2-first-wrapper .index-inner-wrap-2 .change-box .custum-range .ui-slider-horizontal {
        width: 180px;
    }

    .index2-first-wrapper .index-inner-wrap-2 .change-box .label-2nd {
        width: 120px;
    }

    .index2-first-wrapper .index-inner-wrap-2 {
        width: 400px;
    }

    .index2-first-wrapper .index-inner-wrap-1 h1 a {
        font-size: 34px;
    }

    .index2-first-wrapper .index-inner-wrap-1 {
        max-width: 360px;
    }

    .index2-first-wrapper .index-inner-wrap-1 {
        top: 17%;
    }

    .doctor-love-2::before {
        display: none;
    }

    .dating-wrapper-2::before {
        bottom: 18px;
    }

    .doctor-love-2 .love-calculater .calc-inner-box {
        -moz-column-gap: 25px;
        column-gap: 25px;
    }

    .dating-wrapper-2::before {
        bottom: -54px;
    }

    .dating-wrapper-2 {
        padding-top: 50px !important;
        padding-bottom: 30px !important;
    }

    .counter-section-2 {
        padding: 70px 0 70px;
    }

    .doctor-love-2 {
        /*padding: 60px 0;*/
    }

    .how-it-work-2 {
        padding: 60px 0 55px;
    }

    .how-it-work-3 {
        padding: 50px 0 40px;
    }

    .blog-wrap-2 {
        padding-top: 50px;
    }

    .mobile-app-section-2 {
        padding-top: 55px;
    }

    .main-search-2 {
        padding-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .index2-first-wrapper .index-inner-wrap-2 {
        width: 360px;
    }

    .index2-first-wrapper .index-inner-wrap-1 {
        max-width: 348px;
    }

    .index2-first-wrapper .index-inner-wrap-1 {
        top: 14%;
    }

        .index2-first-wrapper .index-inner-wrap-1 h1 a {
            font-size: 33px;
        }

    .dating-wapper .dating-content {
        padding-left: 20px;
        width: 100%;
        padding-right: 10px;
    }

    .dating-wrapper-2 .heading h2 {
        font-size: 34px;
    }

    .contact-us-wrapper .side-img::before {
        top: -94px;
    }

    .custum-select .dropdown {
        font-size: 13px;
    }
}

@media (max-width: 400px) {
    .index2-first-wrapper .index-inner-wrap-2 {
        width: 315px;
    }

    .index-inner-wrap-2 .index2-btn2 {
        max-width: 150px;
    }

    .doctor-love-2 .love-calculater .calc-inner-box {
        margin: 0px 5px;
    }

    .doctor-love-2 .heading p {
        font-size: 15px;
    }

    .how-it-work-2 .heading p {
        font-size: 16px;
    }

    .how-it-work-3 .heading p {
        font-size: 16px;
    }

    .blog-wrap-2 .heading p {
        font-size: 16px;
    }

    .index2-first-wrapper .index-inner-wrap-1 h1 a {
        font-size: 31px;
    }

    .dating-wrapper-2::before {
        bottom: -69px;
    }

    .index2-first-wrapper .index-inner-wrap-2 .change-box {
        -moz-column-gap: 0px;
        column-gap: 0px;
    }

    .custum-select .dropdown {
        font-size: 13px;
        padding-left: 12px;
    }

    .index2-first-wrapper .index-inner-wrap-2 .change-box .custum-range {
        width: calc(100% - 18px);
    }

    .index2-first-wrapper .index-inner-wrap-2 .change-box .label-2nd {
        width: 128px;
    }

    .index2-first-wrapper .index-inner-wrap-1 {
        left: 5%;
    }
}

@media (max-width: 360px) {
    .index2-first-wrapper .index-inner-wrap-2 {
        width: 285px;
        height: 238px;
    }

    .how-it-work-2 .heading p {
        font-size: 14px;
    }

    .doctor-love-2 .heading p {
        font-size: 14px;
    }

    .blog-wrap-2 .heading p {
        font-size: 14px;
    }

    .index2-first-wrapper .index-inner-wrap-1 h1 a {
        font-size: 28px;
    }

    .index2-first-wrapper .index-inner-wrap-1 .para-wrap-1 {
        font-size: 15px;
    }

    .dating-wrapper-2::before {
        display: none;
    }

    .contact-us-wrapper .contact-inner-wrap .li-third .contact-box-3 span {
        left: 45%;
        top: -12%;
    }

    .custum-select .dropdown {
        font-size: 10px;
    }
}

@media (max-width: 340px) {
    .dating-wapper .dating-content {
        padding-left: 15px;
    }

    .index2-first-wrapper::before {
        width: 320px;
    }
}

@keyframes swing {
    0% {
        transform: rotate(3deg);
    }

    100% {
        transform: rotate(-3deg);
    }
}
/* ....................................
6. Home 02
.......................................*/
.dating-wrapper-3 {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #fffdfd;
}

    .dating-wrapper-3::after {
        content: "";
        position: absolute;
        display: block;
        left: 1%;
        top: 30px;
        background-image: url("../images/ind3-side-shape-img-1.png");
        background-repeat: no-repeat;
        background-size: cover;
        width: 555px;
        height: 640px;
    }

    .dating-wrapper-3::before {
        content: "";
        position: absolute;
        display: block;
        left: 75px;
        top: 40%;
        background-image: url("../images/ind3-heart-img-1.png");
        background-repeat: no-repeat;
        background-size: cover;
        width: 112px;
        height: 300px;
        z-index: 2;
        animation: swing ease-in-out 1s infinite alternate;
    }

    .dating-wrapper-3 .date-img {
        position: relative;
        z-index: 1;
    }

    .dating-wrapper-3 .take-a-change-3 {
        border-radius: 0px !important;
        margin-top: 100px;
        z-index: 1;
        position: relative;
    }

        .dating-wrapper-3 .take-a-change-3 .custum-select .dropdown:hover {
            background-color: #ec008c;
            color: #ffffff;
        }

        .dating-wrapper-3 .take-a-change-3 .custum-select .dropdown:focus {
            background-color: #ec008c !important;
            color: #ffffff;
        }

        .dating-wrapper-3 .take-a-change-3 .custum-select .open {
            background-color: #ec008c !important;
        }

        .dating-wrapper-3 .take-a-change-3 .custum-select .option.selected {
            background: #ec008c;
        }

            .dating-wrapper-3 .take-a-change-3 .custum-select .option.selected:hover {
                background-color: #ec008c !important;
                color: #ffffff;
            }

        .dating-wrapper-3 .take-a-change-3 .custum-select .option:hover, .dating-wrapper-3 .take-a-change-3 .custum-select .option:focus {
            background-color: #ec008c !important;
            color: #ffffff;
        }

    .dating-wrapper-3 .dating-content {
        position: relative;
    }

        .dating-wrapper-3 .dating-content .heading span {
            color: #191919;
            font-family: "Lato", sans-serif;
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: 10px;
            font-weight: 600;
        }

        .dating-wrapper-3 .dating-content .heading h2 {
            max-width: 465px;
            line-height: 75px;
            color: #d40073;
            font-size: 70px;
        }

        .dating-wrapper-3 .dating-content p {
            margin-top: 45px;
            color: #777777;
            line-height: 35px;
        }

        .dating-wrapper-3 .dating-content .index-3-btn {
            margin: 45px 0px 0px 0px;
        }

        .dating-wrapper-3 .dating-content::after {
            content: "";
            position: absolute;
            display: block;
            right: 2%;
            top: 25%;
            background-image: url(../images/ind3-cloud-shape-1.png);
            background-repeat: no-repeat;
            background-size: cover;
            width: 200px;
            height: 100px;
            animation: rotate 3s infinite ease-in-out;
        }

    .dating-wrapper-3 .dating-slider {
        z-index: 2;
    }

    .dating-wrapper-3 .carousel-control-prev {
        left: -13%;
        top: 45%;
        background-color: white;
        width: 40px;
        height: 40px;
        box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
        border-radius: 50px;
        transition: all 0.5s;
    }

        .dating-wrapper-3 .carousel-control-prev span svg {
            fill: #d40073;
            width: 25px;
            height: 22px;
        }

    .dating-wrapper-3 .carousel-control-next {
        right: -13%;
        top: 45%;
        background-color: white;
        width: 40px;
        height: 40px;
        box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
        border-radius: 50px;
        transition: all 0.5s;
    }

        .dating-wrapper-3 .carousel-control-next span svg {
            fill: #d40073;
            width: 25px;
            height: 22px;
        }

.meet-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 10px 0px 100px 0px;
    background-color: #fffdfd;
}

    .meet-wrapper .dating-content {
        position: relative;
    }

        .meet-wrapper .dating-content .heading span {
            color: #191919;
            font-family: "Lato", sans-serif;
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: 10px;
            font-weight: 600;
        }

        .meet-wrapper .dating-content .heading h2 {
            font-size: 40px;
            line-height: 50px;
        }

        .meet-wrapper .dating-content p {
            margin-top: 45px;
            color: #777777;
            line-height: 35px;
        }

        .meet-wrapper .dating-content .index-3-btn {
            margin: 45px 0px 0px 0px;
        }

    .meet-wrapper .date-img {
        position: relative;
        z-index: 1;
    }

    .meet-wrapper .side-shape {
        position: relative;
    }

        .meet-wrapper .side-shape::before {
            content: "";
            position: absolute;
            display: block;
            right: 0%;
            bottom: -140px;
            background-image: url(../images/ind3-side-shape-img-2.png);
            background-repeat: no-repeat;
            background-size: cover;
            width: 555px;
            height: 709px;
        }

    .meet-wrapper .side-shape-2 {
        position: relative;
    }

        .meet-wrapper .side-shape-2::before {
            content: "";
            position: absolute;
            display: block;
            right: 60px;
            bottom: -90px;
            background-image: url("../images/ind3-bird-img-1.png");
            background-repeat: no-repeat;
            background-size: cover;
            width: 200px;
            height: 145px;
            animation: geometric-form-animation 1s alternate ease-in-out infinite;
        }

    .meet-wrapper .side-shape-3 {
        position: relative;
    }

        .meet-wrapper .side-shape-3::after {
            content: "";
            position: absolute;
            display: block;
            right: 60px;
            top: -490px;
            background-image: url("../images/ind3-bird-img-1.png");
            background-repeat: no-repeat;
            background-size: cover;
            width: 200px;
            height: 145px;
            animation: geometric-form-animation 1s alternate ease-in-out infinite;
        }

    .meet-wrapper .side-shape-5 {
        position: relative;
    }

        .meet-wrapper .side-shape-5::after {
            content: "";
            position: absolute;
            display: block;
            left: 22px;
            bottom: -70px;
            background-image: url("../images/ind3-cloud-shape-2.png");
            background-repeat: no-repeat;
            background-size: cover;
            width: 210px;
            height: 100px;
        }

    .meet-wrapper .side-shape-4 {
        position: relative;
    }

        .meet-wrapper .side-shape-4::after {
            content: "";
            position: absolute;
            display: block;
            right: 2%;
            bottom: 160px;
            background-image: url("../images/ind3-cloud-shape-1.png");
            background-repeat: no-repeat;
            background-size: cover;
            width: 235px;
            height: 150px;
            animation: rotate 3s infinite ease-in-out;
        }

.doctor-love-next {
    padding: 80px 0px 80px 0px !important;
    position: relative;
}

    .doctor-love-next .heading {
        position: relative;
        z-index: 2;
    }

    .doctor-love-next .index-three-counter {
        position: relative;
        z-index: 3;
    }

        .doctor-love-next .index-three-counter ul {
            display: flex;
            justify-content: center;
            align-items: center;
            -moz-column-gap: 120px;
            column-gap: 120px;
        }

            .doctor-love-next .index-three-counter ul li input {
                background-color: #f7f7f7;
                max-width: 215px;
                height: 45px;
                display: block;
                border: 2px solid #e2e2e2;
                color: #d40073;
                padding-left: 30px;
                margin-bottom: 40px;
                font-size: 16px;
                outline: none;
                position: relative;
            }

            .doctor-love-next .index-three-counter ul li .enter-name1 {
                position: relative;
            }

                .doctor-love-next .index-three-counter ul li .enter-name1 label::before {
                    content: "";
                    display: block;
                    position: absolute;
                    width: 130px;
                    height: 6px;
                    background-color: #d40073;
                    right: -130px;
                    top: 50%;
                    transform: translateY(-50%);
                    z-index: 1;
                }

                .doctor-love-next .index-three-counter ul li .enter-name1 label span {
                    display: inline-block;
                    margin-bottom: 15px;
                    width: 100%;
                    text-align: left;
                    color: #797979;
                }

            .doctor-love-next .index-three-counter ul li .enter-name2 {
                position: relative;
            }

                .doctor-love-next .index-three-counter ul li .enter-name2 label::before {
                    content: "";
                    display: block;
                    position: absolute;
                    width: 130px;
                    height: 6px;
                    background-color: #d40073;
                    left: -130px;
                    top: 50%;
                    transform: translateY(-50%);
                    z-index: 1;
                }

                .doctor-love-next .index-three-counter ul li .enter-name2 label span {
                    display: inline-block;
                    margin-bottom: 15px;
                    width: 100%;
                    text-align: left;
                    color: #797979;
                }

    .doctor-love-next .counter-btn-box {
        clear: both;
        padding-top: 56px;
        position: relative;
        z-index: 3;
    }

    .doctor-love-next::after {
        content: "";
        position: absolute;
        display: block;
        left: 1%;
        top: 50%;
        background-image: url("../images/ind3-side-shape-img-3.png");
        background-repeat: no-repeat;
        background-size: cover;
        width: 590px;
        height: 650px;
        z-index: 2;
    }

    .doctor-love-next::before {
        content: "";
        position: absolute;
        display: block;
        left: 4%;
        top: 40%;
        background-image: url("../images/ind3-bird-img-1.png");
        background-repeat: no-repeat;
        background-size: cover;
        width: 250px;
        height: 187px;
        z-index: 3;
        animation: geometric-form-animation 1s alternate ease-in-out infinite;
    }

    .doctor-love-next .cloud-shape {
        position: relative;
    }

        .doctor-love-next .cloud-shape::after {
            content: "";
            position: absolute;
            display: block;
            right: 5%;
            top: 250px;
            background-image: url("../images/ind3-cloud-shape-1.png");
            background-repeat: no-repeat;
            background-size: cover;
            width: 200px;
            height: 100px;
            animation: rotate 3s infinite ease-in-out;
        }

        .doctor-love-next .cloud-shape::before {
            content: "";
            position: absolute;
            display: block;
            right: 2%;
            top: 400px;
            background-image: url("../images/ind3-heart-line-shape-2.png");
            background-repeat: no-repeat;
            background-size: cover;
            width: 330px;
            height: 230px;
            z-index: 2;
            animation: swing ease-in-out 1s infinite alternate;
        }

.counter-section-ind-3 {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #fffdfd !important;
}

    .counter-section-ind-3 .heading {
        position: relative;
        z-index: 2;
    }

    .counter-section-ind-3 .inner-counter-box {
        margin-top: 60px;
        position: relative;
        z-index: 1;
    }

        .counter-section-ind-3 .inner-counter-box .counter-box-next {
            background-color: #ffffff;
            width: 250px;
            height: 235px;
            box-shadow: 0 20px 46px 12px rgba(182, 14, 14, 0.0509803922);
            transition: all 0.5s;
            border: 2px solid transparent;
            padding: 30px;
        }

            .counter-section-ind-3 .inner-counter-box .counter-box-next .counter-icon {
                margin-bottom: 28px;
            }

            .counter-section-ind-3 .inner-counter-box .counter-box-next .counter-text {
                color: #121e28;
                font-size: 26px;
            }

                .counter-section-ind-3 .inner-counter-box .counter-box-next .counter-text p {
                    font-size: 16px;
                    color: #121e28;
                    margin-top: 15px;
                    border-bottom: 1px solid #d40073;
                    padding-bottom: 15px;
                }

            .counter-section-ind-3 .inner-counter-box .counter-box-next:hover {
                border: 2px solid #d40073;
            }

                .counter-section-ind-3 .inner-counter-box .counter-box-next:hover .counter-text {
                    color: #d40073;
                }

                    .counter-section-ind-3 .inner-counter-box .counter-box-next:hover .counter-text p {
                        font-size: 16px;
                        color: #121e28;
                    }

    .counter-section-ind-3::before {
        content: "";
        position: absolute;
        display: block;
        left: 50px;
        top: 10%;
        background-image: url("../images/ind3-heart-img-1.png");
        background-repeat: no-repeat;
        background-size: cover;
        width: 112px;
        height: 300px;
        z-index: 2;
        animation: swing ease-in-out 1s infinite alternate;
    }

    .counter-section-ind-3::after {
        content: "";
        position: absolute;
        display: block;
        left: 4%;
        bottom: 0%;
        background-image: url("../images/ind3-cloud-shape-1.png");
        background-repeat: no-repeat;
        background-size: cover;
        width: 200px;
        height: 100px;
        animation: rotate 3s infinite ease-in-out;
    }

.how-it-work-next {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #fffdfd !important;
}

    .how-it-work-next .heading {
        position: relative;
        z-index: 2;
    }

        .how-it-work-next .heading h2 {
            font-size: 44px;
            font-family: "Lato", sans-serif;
        }

    .how-it-work-next .counter-box-2 .counter-icon {
        background-color: #f6cce3 !important;
        border: 1px solid #f6cce3 !important;
    }

        .how-it-work-next .counter-box-2 .counter-icon img {
            display: block;
            margin: 0 auto;
            padding: 19px 0px;
        }

    .how-it-work-next .counter-box-2 .counter-text-2 h5 {
        font-family: "Lato", sans-serif;
        color: #898989;
    }

    .how-it-work-next .line-box {
        position: relative;
        width: 100%;
        height: auto;
        z-index: 4;
    }

        .how-it-work-next .line-box::before {
            content: "";
            position: absolute;
            display: block;
            left: 18%;
            top: 25%;
            background-image: url("../images/ind3-line-img.png");
            background-repeat: no-repeat;
            background-size: cover;
            width: 67%;
            height: 2px;
        }

    .how-it-work-next::after {
        content: "";
        position: absolute;
        display: block;
        left: 0%;
        top: 30px;
        background-image: url("../images/ind3-side-shape-img-4.png");
        background-repeat: no-repeat;
        background-size: cover;
        width: 489px;
        height: 620px;
        z-index: 2;
    }

    .how-it-work-next::before {
        content: "";
        position: absolute;
        display: block;
        left: 45px;
        top: 30%;
        background-image: url("../images/ind3-heart-img-1.png");
        background-repeat: no-repeat;
        background-size: cover;
        width: 112px;
        height: 300px;
        z-index: 3;
        animation: swing ease-in-out 1s infinite alternate;
    }

    .how-it-work-next .cloud-shape {
        position: relative;
    }

        .how-it-work-next .cloud-shape::after {
            content: "";
            position: absolute;
            display: block;
            right: 2%;
            top: -130px;
            background-image: url("../images/ind3-cloud-shape-1.png");
            background-repeat: no-repeat;
            background-size: cover;
            width: 200px;
            height: 100px;
            animation: rotate 3s infinite ease-in-out;
        }

.main-customers-slider-2 {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #fffdfd !important;
}

    .main-customers-slider-2 .heading {
        position: relative;
        z-index: 2;
    }

    .main-customers-slider-2 .customers-slider .slider-box {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        -moz-column-gap: 40px;
        column-gap: 40px;
        padding-left: 97px;
        background-color: #ffffff;
        border: 1px solid rgba(128, 128, 128, 0.1019607843);
        box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
    }

        .main-customers-slider-2 .customers-slider .slider-box .slider-text .quote-icon {
            width: 67px;
            position: absolute;
            top: -72px !important;
            left: 121% !important;
        }

    .main-customers-slider-2 .customers-slider .owl-nav {
        display: flex;
        row-gap: 10px;
        -moz-column-gap: 20px;
        column-gap: 20px;
        position: absolute;
        flex-direction: inherit !important;
        top: 80%;
        left: 79%;
        transform: translate(86%, -74%);
    }

    .main-customers-slider-2::before {
        content: "";
        position: absolute;
        display: block;
        right: 0%;
        bottom: 0%;
        background-image: url("../images/ind3-side-shape-img-5.png");
        background-repeat: no-repeat;
        background-size: cover;
        width: 464px;
        height: 734px;
    }

    .main-customers-slider-2::after {
        content: "";
        position: absolute;
        display: block;
        right: 2%;
        top: 2%;
        background-image: url("../images/ind3-heart-line-shape-2.png");
        background-repeat: no-repeat;
        background-size: cover;
        width: 330px;
        height: 230px;
        z-index: 2;
        animation: swing ease-in-out 1s infinite alternate;
    }

    .main-customers-slider-2 .shapes {
        position: relative;
    }

        .main-customers-slider-2 .shapes::before {
            content: "";
            position: absolute;
            display: block;
            left: 45px;
            top: 40%;
            background-image: url("../images/ind3-heart-img-1.png");
            background-repeat: no-repeat;
            background-size: cover;
            width: 112px;
            height: 300px;
            animation: swing ease-in-out 1s infinite alternate;
        }

.blog-next {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #fffdfd !important;
    padding: 60px 0px;
}

    .blog-next .heading {
        position: relative;
        z-index: 2;
    }

    .blog-next .blog-box-next {
        position: relative;
    }

        .blog-next .blog-box-next .blog-text .date-box a {
            display: block;
            text-align: left;
            color: #d40073;
        }

        .blog-next .blog-box-next .blog-text .btn {
            display: block;
            text-align: left;
            font-size: 16px;
            color: #d40073;
            transition: all 0.5s;
        }

            .blog-next .blog-box-next .blog-text .btn:hover {
                text-decoration: underline;
            }

        .blog-next .blog-box-next .blog-text .h5 {
            display: block;
            text-align: left;
            font-size: 22px;
            font-family: "Lato", sans-serif;
            margin-top: 20px;
            line-height: 30px;
            color: #111111;
        }

        .blog-next .blog-box-next .blog-text p {
            text-align: left;
            line-height: 30px;
            font-size: 16px;
            margin-bottom: 30px;
            margin-top: 20px;
        }

    .blog-next::after {
        content: "";
        position: absolute;
        display: block;
        left: 2%;
        top: 0%;
        background-image: url("../images/ind3-cloud-shape-1.png");
        background-repeat: no-repeat;
        background-size: cover;
        width: 200px;
        height: 100px;
        animation: rotate 3s infinite ease-in-out;
    }

    .blog-next .blog-slider {
        position: relative;
    }

        .blog-next .blog-slider .owl-carousel .owl-nav {
            display: flex;
            justify-content: space-between;
            position: absolute;
            font-size: 50px;
            top: 40%;
            width: 100%;
        }

            .blog-next .blog-slider .owl-carousel .owl-nav .owl-prev {
                position: relative;
                left: 0%;
                background-color: #d40073;
                width: 40px;
                height: 40px;
                border: 2px solid transparent;
                transition: all 0.5s;
            }

                .blog-next .blog-slider .owl-carousel .owl-nav .owl-prev span {
                    color: #ffffff;
                }

                .blog-next .blog-slider .owl-carousel .owl-nav .owl-prev:hover {
                    background-color: transparent;
                    border: 2px solid #d40073;
                }

                    .blog-next .blog-slider .owl-carousel .owl-nav .owl-prev:hover span {
                        color: #d40073;
                    }

            .blog-next .blog-slider .owl-carousel .owl-nav .owl-next {
                position: relative;
                right: 0%;
                background-color: #d40073;
                width: 40px;
                height: 40px;
                transition: all 0.5s;
            }

                .blog-next .blog-slider .owl-carousel .owl-nav .owl-next span {
                    color: #ffffff;
                }

                .blog-next .blog-slider .owl-carousel .owl-nav .owl-next:hover {
                    background-color: transparent;
                    border: 2px solid #d40073;
                }

                    .blog-next .blog-slider .owl-carousel .owl-nav .owl-next:hover span {
                        color: #d40073;
                    }

.footer-index-3 .main-search-2::after {
    background-image: url("../images/ind3-footer-bg-img.png") !important;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    background-color: #fffdfd !important;
}

.footer-index-3 .main-search-2 ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 100px;
}

    .footer-index-3 .main-search-2 ul li .heading p {
        margin-left: 0px !important;
        color: #afb4b4;
        font-family: "Lato", sans-serif;
    }

    .footer-index-3 .main-search-2 ul li .heading h3 {
        font-size: 30px;
        font-family: "Lato", sans-serif;
        font-weight: 300;
        margin-bottom: 20px;
    }

    .footer-index-3 .main-search-2 ul li .search-box .main-btn {
        border-radius: 0 0px 0px 0;
        background: transparent;
    }

    .footer-index-3 .main-search-2 ul li .search-box input {
        background-color: transparent !important;
        border-left: 5px solid #d40073;
    }

.footer-index-3 .main-search-2 .bottom-line {
    display: block;
    border-bottom: 1px solid #ccf8f8;
    margin-top: 55px;
}

.footer-index-3 .footer-bottom {
    background-color: #f2fdfd;
    width: 100%;
    border-top: 1px solid #ccf8f8;
}

.footer-index-3 .bootem-footer {
    border-top: 1px solid #ccf8f8;
}

.footer-index-3 .footer-content .media-icon-index-3 li a {
    border-color: transparent !important;
}

    .footer-index-3 .footer-content .media-icon-index-3 li a i {
        color: #d40073;
    }

    .footer-index-3 .footer-content .media-icon-index-3 li a:hover {
        background: #d40073 !important;
        border-color: transparent;
    }

        .footer-index-3 .footer-content .media-icon-index-3 li a:hover i {
            color: #ffffff;
        }

@media (max-width: 1799px) {
    .meet-wrapper .side-shape-4::after {
        bottom: 231px;
    }

    .meet-wrapper .side-shape-2::before {
        bottom: 35px;
        height: 148px;
    }

    .meet-wrapper .side-shape-5::after {
        bottom: 120px;
    }

    .doctor-love-next .cloud-shape::after {
        top: 50px;
    }

    .doctor-love-next::before {
        top: 68%;
    }
}

@media (max-width: 1699px) {
    .dating-wrapper-3 .carousel-control-next {
        right: -6%;
    }

    .dating-wrapper-3 .carousel-control-prev {
        left: -6%;
    }

    .dating-wrapper-3::before {
        left: 25px;
    }

    .counter-section-ind-3::before {
        left: 20px;
        top: -3%;
    }

    .main-customers-slider-2 .shapes::before {
        left: 10px;
    }

    .meet-wrapper .side-shape-3::after {
        right: 25px;
    }

    .meet-wrapper .side-shape-2::before {
        right: 25px;
    }

    .dating-wrapper-3 .dating-content .heading h2 {
        line-height: 55px;
        font-size: 50px;
    }
}

@media (max-width: 1499px) {
    .dating-wrapper-3 .carousel-control-next {
        right: -3%;
    }

    .dating-wrapper-3 .carousel-control-prev {
        left: -3%;
    }

    .dating-wrapper-3::before {
        left: 15px;
        top: 17%;
        width: 83px;
        height: 223px;
    }

    .blog-next .blog-box-next .blog-text .h5 {
        font-size: 17px;
        margin-top: 15px;
        line-height: 26px;
    }

    .main-customers-slider-2 .customers-slider .slider-box .slider-text .quote-icon {
        left: 94% !important;
    }

    .dating-wrapper-3 .dating-content .heading span {
        font-size: 12px;
        letter-spacing: 6px;
    }

    .main-customers-slider-2::after {
        width: 206px;
        height: 146px;
    }

    .doctor-love-next .cloud-shape::before {
        width: 201px;
        height: 140px;
    }

    .meet-wrapper .side-shape-3::after {
        width: 140px;
        height: 104px;
    }

    .meet-wrapper .side-shape-2::before {
        width: 140px;
        height: 104px;
    }

    .doctor-love-next::before {
        left: 15px;
        width: 140px;
        height: 104px;
    }

    .meet-wrapper .side-shape-4::after {
        width: 141px;
        height: 70px;
    }

    .main-customers-slider-2 .shapes::before {
        width: 72px;
        height: 193px;
    }

    .how-it-work-next::before {
        left: 20px;
        width: 72px;
        height: 193px;
    }

    .doctor-love-next::after {
        width: 498px;
        height: 536px;
    }

    .how-it-work-next::after {
        width: 284px;
        height: 366px;
    }
}

@media (max-width: 1199px) {
    .dating-wrapper-3 .dating-content .heading h2 {
        line-height: 48px;
        font-size: 40px;
    }

    .dating-wrapper-3 .dating-content .heading h2 {
        line-height: 48px;
        font-size: 40px;
    }

    .dating-wrapper-3 .dating-content .index-3-btn {
        max-width: 151px;
    }

    .meet-wrapper .dating-content .heading h2 {
        font-size: 33px;
        line-height: 38px;
    }

    .meet-wrapper .dating-content p {
        margin-top: 15px;
        line-height: 30px;
        margin-bottom: 10px;
    }

    .how-it-work-next .cloud-shape::after {
        width: 153px;
        height: 77px;
    }

    .blog-next .blog-box-next .blog-text p {
        line-height: 21px;
        font-size: 14px;
        margin-top: 15px;
        margin-bottom: 13px;
    }

    .blog .blog-box .blog-text {
        padding: 20px 15px 20px;
    }

    .blog-next .blog-box-next .blog-text .h5 {
        font-size: 15px;
        line-height: 22px;
    }

    .dating-wrapper-3 .dating-content p {
        margin-top: 18px;
        line-height: 28px;
    }

    .main-customers-slider-2::before {
        width: 332px;
        height: 495px;
    }

    .main-customers-slider-2::after {
        width: 141px;
        height: 100px;
    }

    .main-customers-slider-2 .customers-slider .owl-nav {
        left: 84%;
    }

    .main-customers-slider-2 .customers-slider .slider-box .slider-text .quote-icon {
        left: 79% !important;
    }

    .counter-section-ind-3 .inner-counter-box .counter-box-next {
        width: 200px;
    }

    .blog-next .blog-box-next .blog-text .btn {
        padding: 0;
    }

    .meet-wrapper .side-shape::before {
        width: 447px;
        height: 505px;
    }

    .doctor-love-next::after {
        width: 400px;
        height: 440px;
    }

    .doctor-love-next::before {
        top: 78%;
    }

    .meet-wrapper .side-shape-3::after {
        top: -465px;
    }

    header .main-header-three .main-menu .main-btn .menubtn-3 {
        width: 135px;
    }

    .how-it-work-3 .heading p {
        z-index: 3;
    }
}

@media (max-width: 991px) {
    .main-customers-slider .customers-slider .owl-nav {
        -moz-column-gap: 0px !important;
        column-gap: 0px !important;
        justify-content: space-around !important;
        top: 50% !important;
    }

    .dating-wrapper-3 .dating-content {
        position: relative;
        margin-top: 40px;
        padding-left: 0px !important;
    }

    .dating-wrapper-3 .take-a-change-3 {
        margin-top: 40px;
    }

    .dating-wrapper-3 {
        padding: 75px;
    }

    .main-customers-slider .customers-slider .slider-box .slider-text {
        margin-top: 30px;
    }

    .counter-section-ind-3 .inner-counter-box .counter-box-next {
        width: 340px;
        margin: 0 auto;
    }

    .counter-section-ind-3 .inner-counter-box .row {
        row-gap: 20px;
    }

    .how-it-work-next .line-box::before {
        top: 35%;
    }

    .doctor-love-next .index-three-counter ul {
        -moz-column-gap: 75px;
        column-gap: 75px;
    }

        .doctor-love-next .index-three-counter ul li .enter-name1 label::before {
            width: 90px;
            right: -90px;
        }

        .doctor-love-next .index-three-counter ul li .enter-name2 label::before {
            width: 90px;
            left: -90px;
        }

    .doctor-love-next .love-calculater .love-result h2 {
        -webkit-text-fill-color: #d40073 !important;
        font-size: 65px !important;
    }

    .doctor-love-next .love-calculater .love-result h2 {
        top: 47% !important;
        left: 47% !important;
    }

    .doctor-love-next .index-three-counter ul li input {
        max-width: 180px;
    }

    .main-customers-slider-2 .heading {
        position: relative;
        z-index: 3;
    }

    .dating-wrapper-3 .carousel-control-prev {
        top: 33%;
    }

    .dating-wrapper-3 .carousel-control-next {
        top: 33%;
    }

    .footer-index-3 .main-search-2 ul {
        flex-wrap: wrap;
    }

    .blog-next .blog-slider .owl-carousel .owl-nav {
        top: 45%;
    }
}

@media (max-width: 767px) {
    .dating-wrapper-3 .carousel-control-prev {
        top: 25%;
    }

    .dating-wrapper-3 .carousel-control-next {
        top: 25%;
    }

    .doctor-love-next {
        padding: 70px 0px 0px 0px !important;
    }

    .counter-section-ind-3 {
        padding: 40px 0 70px;
    }

    .counter-section-ind-3 {
        padding: 40px 0 70px;
    }

        .counter-section-ind-3::before {
            width: 70px;
            height: 187px;
            top: -11%;
        }

    .how-it-work-next {
        padding: 30px 0 50px !important;
    }

    .main-customers-slider-2 {
        padding: 30px 0 !important;
    }

    .how-it-work-next .line-box::before {
        display: none !important;
    }

    .dating-wrapper-3 {
        padding: 30px;
    }

    .meet-wrapper {
        padding: 40px 0px 100px 0px;
    }

    .counter-section-ind-3 .inner-counter-box .counter-box-next {
        width: 280px;
    }

    .how-it-work .heading {
        position: relative;
        z-index: 3;
    }

    .doctor-love-next .index-three-counter ul {
        -moz-column-gap: 40px;
        column-gap: 40px;
    }

        .doctor-love-next .index-three-counter ul li .enter-name1 label::before {
            width: 47px;
            right: -47px;
        }

        .doctor-love-next .index-three-counter ul li .enter-name2 label::before {
            width: 47px;
            left: -47px;
        }

    .dating-wrapper-3 .dating-content p {
        position: relative;
        z-index: 2;
    }
}

@media (max-width: 676px) {
    .doctor-love-next .index-three-counter ul li input {
        max-width: 152px;
    }

    .counter-section-ind-3 .inner-counter-box .counter-box-next {
        width: 243px;
    }

    .main-customers-slider .customers-slider .owl-nav {
        -moz-column-gap: 15px !important;
        column-gap: 15px !important;
        top: 85% !important;
        justify-content: end !important;
        padding-right: 20px;
    }

    .doctor-love-next .love-calculater .love-result h2 {
        font-size: 45px !important;
    }

    .doctor-love-next .cloud-shape::before {
        width: 130px;
        height: 89px;
    }

    .main-customers-slider-2::after {
        top: -5%;
    }

    .dating-wapper-3 .dating-content {
        padding-left: 0px !important;
    }

    .blog-next .heading {
        position: relative;
        z-index: 2;
    }

    .blog-next .blog-slider .owl-carousel .owl-nav {
        top: 38%;
    }
}

@media (max-width: 576px) {
    .doctor-love-next .index-three-counter ul li input {
        max-width: 130px;
        padding-left: 10px;
        font-size: 13px;
    }

    .blog .blog-box .blog-text {
        padding: 20px 25px 20px;
    }

    .dating-wrapper-3::after {
        display: none !important;
    }

    .doctor-love-next .index-three-counter ul li .enter-name1 label::before {
        width: 36px;
        right: -36px;
    }

    .doctor-love-next .index-three-counter ul li .enter-name2 label::before {
        width: 36px;
        left: -36px;
    }

    .doctor-love-next .index-three-counter ul {
        -moz-column-gap: 28px;
        column-gap: 28px;
    }

    .dating-wrapper-3 .carousel-control-prev {
        top: 18%;
    }

    .dating-wrapper-3 .carousel-control-next {
        top: 18%;
    }

    .meet-wrapper .side-shape::before {
        display: none !important;
    }

    .main-customers-slider-2::before {
        display: none !important;
    }

    .meet-wrapper .side-shape-2::before {
        display: none;
    }

    .meet-wrapper .side-shape-3::after {
        display: none !important;
    }

    .main-search-2 {
        padding-top: 30px;
    }

    .dating-wrapper-3::before {
        left: 8px;
        top: 6%;
    }

    .main-customers-slider-2::after {
        top: -9%;
    }
}

@media (max-width: 480px) {
    .dating-wapper-3 .dating-content {
        padding-left: 0px !important;
    }

    .dating-wrapper-3 .dating-content .index-3-btn {
        margin: 25px 0px 0px 0px;
    }

    .doctor-love-next .love-calculater .love-result h2 {
        font-size: 35px !important;
    }

    .doctor-love-next .index-three-counter ul {
        flex-wrap: wrap !important;
        row-gap: 30px;
    }

        .doctor-love-next .index-three-counter ul li .enter-name1 label::before {
            display: none !important;
        }

        .doctor-love-next .index-three-counter ul li .enter-name2 label::before {
            display: none !important;
        }

        .doctor-love-next .index-three-counter ul li input {
            margin-bottom: 0px;
        }

    .main-customers-slider .customers-slider .owl-nav {
        top: 5% !important;
    }

    .doctor-love-next::after {
        display: none !important;
    }

    .doctor-love-next::before {
        display: none !important;
    }
}

@media (max-width: 380px) {
    .dating-wrapper-3 .dating-content .heading h2 {
        line-height: 33px;
        font-size: 35px;
    }

    .dating-wrapper-3 .dating-content .heading h2 {
        line-height: 33px;
        font-size: 35px;
    }

    .how-it-work-next .heading h2 {
        font-size: 35px;
        font-family: "Lato", sans-serif;
    }

    .meet-wrapper .dating-content .heading h2 {
        font-size: 28px;
        line-height: 35px;
    }

    .dating-wrapper-3 .carousel-control-prev {
        top: 15%;
    }

    .dating-wrapper-3 .carousel-control-next {
        top: 15%;
    }

    .dating-wrapper-3 .take-a-change-3 {
        padding: 25px 20px !important;
    }

    .footer-index-3 .main-search-2 ul li .heading h3 {
        font-size: 28px;
    }

    .counter-section-ind-3::before {
        left: 0;
        top: -12%;
    }

    .meet-wrapper {
        padding: 40px 0px 25px 0px;
    }
}

@keyframes geometric-form-animation {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(5deg);
    }

    100% {
        transform: rotate(10deg);
    }
}

@keyframes swing {
    0% {
        transform: rotate(3deg);
    }

    100% {
        transform: rotate(-3deg);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(3deg);
    }
}
/* ....................................
7. Home 02
.......................................*/
/*====================     index page four scss start    =====================*/
/*======= common css for page  =======*/
.about4-title p {
    font-family: Poppins;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.49em;
    text-align: left;
    color: #FB4958;
}

.ind4-common-heading {
    margin-top: 16px;
}

    .ind4-common-heading p {
        font-family: "Merienda";
        font-style: normal;
        font-weight: 400;
        font-size: 45px;
        line-height: 65px;
        color: #111111;
    }

        .ind4-common-heading p span {
            color: #FB4958;
        }

.index4-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 28px;
    width: 194px;
    height: 49px;
    background: #FB4958;
    border-radius: 5px;
    border: 0px solid transparent;
    font-family: "Poppins";
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-transform: capitalize;
    color: #FFFFFF;
    transform: all 0.5s;
    border: 1px solid transparent;
}

    .index4-btn:hover {
        color: #FB4958;
        background-color: transparent;
        border: 1px solid #FB4958;
    }

/*==================   scss for top header ==================  */
.topheader {
    background-color: #FB3957;
    height: 50px;
    display: flex;
    align-items: center;
    position: relative;
}

    .topheader .left-topheader ul {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        -moz-column-gap: 25px;
        column-gap: 25px;
    }

        .topheader .left-topheader ul li a {
            font-family: Poppins;
            font-size: 16px;
            font-weight: 500;
            line-height: 24px;
            letter-spacing: 0em;
            text-align: left;
            color: #ffffff;
        }

            .topheader .left-topheader ul li a span {
                display: inline-block;
            }

    .topheader .right-topheader {
        display: flex;
        justify-content: end;
        align-items: center;
    }

        .topheader .right-topheader a {
            font-family: Poppins;
            font-size: 16px;
            font-weight: 500;
            line-height: 24px;
            letter-spacing: 0em;
            text-align: left;
            text-transform: capitalize;
            color: #fff;
        }

/*==================   top main wrapper scss ==================  */
.top-main-wrapper {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-color: #F5F5F5;
    width: 100%;
    /*height: 1217px;*/
    position: relative;
}

    .top-main-wrapper .header-box {
        width: 100%;
        height: 135px;
    }

    .top-main-wrapper .top-moddle-wrapper {
        position: relative;
        width: 100%;
    }

        .top-main-wrapper .top-moddle-wrapper .main-title {
            margin-top: 80px;
        }

            .top-main-wrapper .top-moddle-wrapper .main-title h1 {
                text-align: center;
                font-family: "Merienda-Bold";
                font-size: 75px;
                font-weight: 700;
                line-height: 94px;
                letter-spacing: 0em;
                text-align: center;
            }

                .top-main-wrapper .top-moddle-wrapper .main-title h1 span {
                    color: #FB4958;
                    position: relative;
                }

                    .top-main-wrapper .top-moddle-wrapper .main-title h1 span::after {
                        content: "";
                        display: block;
                        position: absolute;
                        top: 101px;
                        left: 42px;
                        width: 195px;
                        height: 15px;
                        background-image: url("../images/meet-border.png");
                        background-repeat: no-repeat;
                        background-size: cover;
                        margin: 0 auto;
                    }

        .top-main-wrapper .top-moddle-wrapper .top-left-box {
            position: relative;
            top: 385px;
            display: inline-block;
        }

            .top-main-wrapper .top-moddle-wrapper .top-left-box .top-leftdetail-box {
                display: inline-block;
                position: relative;
                width: 233px;
                height: 246px;
                background: #FFFFFF;
                box-shadow: 0px 4px 28px 9px rgba(0, 0, 0, 0.04);
                border-radius: 20px;
                transform: translate3d(0, 100%, 0, 100%);
                animation: float 2s infinite;
            }

                .top-main-wrapper .top-moddle-wrapper .top-left-box .top-leftdetail-box .left-img-box {
                    position: absolute;
                    top: -15%;
                    left: 30%;
                }

                    .top-main-wrapper .top-moddle-wrapper .top-left-box .top-leftdetail-box .left-img-box img {
                        border-radius: 55px;
                        border: 3px solid #FB4958;
                    }

                .top-main-wrapper .top-moddle-wrapper .top-left-box .top-leftdetail-box .topleft-content-box {
                    padding-top: 75px;
                    text-align: center;
                }

                    .top-main-wrapper .top-moddle-wrapper .top-left-box .top-leftdetail-box .topleft-content-box .top-inner-city {
                        font-family: Poppins;
                        font-size: 18px;
                        font-weight: 500;
                        line-height: 27px;
                        letter-spacing: 0em;
                        text-align: center;
                    }

                    .top-main-wrapper .top-moddle-wrapper .top-left-box .top-leftdetail-box .topleft-content-box .top-inner-name {
                        font-family: "Poppins";
                        font-style: normal;
                        font-weight: 500;
                        font-size: 25px;
                        line-height: 38px;
                        color: #111111;
                        text-align: center;
                    }

                        .top-main-wrapper .top-moddle-wrapper .top-left-box .top-leftdetail-box .topleft-content-box .top-inner-name span {
                            color: #FB4958;
                            display: inline-block;
                        }

                    .top-main-wrapper .top-moddle-wrapper .top-left-box .top-leftdetail-box .topleft-content-box .distance-title {
                        font-style: normal;
                        font-weight: 500;
                        font-size: 12px;
                        line-height: 18px;
                        color: #CCCCCC;
                    }

                    .top-main-wrapper .top-moddle-wrapper .top-left-box .top-leftdetail-box .topleft-content-box .top-left-box-btn {
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        margin-top: 20px;
                    }

                        .top-main-wrapper .top-moddle-wrapper .top-left-box .top-leftdetail-box .topleft-content-box .top-left-box-btn a {
                            width: 102px;
                            height: 30px;
                            border-radius: 5px;
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            border: 2px solid #FB4958;
                            font-family: Poppins;
                            font-size: 12px;
                            font-weight: 500;
                            letter-spacing: 0em;
                            text-align: left;
                        }

            .top-main-wrapper .top-moddle-wrapper .top-left-box::before {
                content: "";
                position: absolute;
                top: -210px;
                left: 170px;
                width: 75px;
                height: 62px;
                background-image: url("../images/hii-img.png");
                background-repeat: no-repeat;
                background-size: cover;
                animation: float 2s infinite;
            }

        .top-main-wrapper .top-moddle-wrapper .indshape-1 {
            position: relative;
            display: block;
        }

            .top-main-wrapper .top-moddle-wrapper .indshape-1::after {
                content: "";
                position: absolute;
                top: -250px;
                right: 16%;
                height: 234px;
                width: 238px;
                background-image: url("../images/smile-emoji.png");
                background-repeat: no-repeat;
                background-size: cover;
                animation: box 6s linear infinite;
            }

            .top-main-wrapper .top-moddle-wrapper .indshape-1::before {
                content: "";
                position: absolute;
                top: -76px;
                right: 24%;
                width: 86px;
                height: 110px;
                background-image: url("../images/emoji-arrow.png");
                background-repeat: no-repeat;
                background-size: cover;
            }

        .top-main-wrapper .top-moddle-wrapper .indshape-2 {
            position: relative;
            display: block;
        }

            .top-main-wrapper .top-moddle-wrapper .indshape-2::after {
                content: "";
                position: absolute;
                right: 22%;
                width: 477px;
                height: 167px;
                background-image: url("../images/Chat.png");
                background-repeat: no-repeat;
                background-size: cover;
                border-radius: 30px;
                box-shadow: -20px 17px 56px rgba(0, 0, 0, 0.15);
                animation: float 3s infinite;
                bottom: 130px;
            }

    .top-main-wrapper .select-wrapper-ind4 {
        position: absolute;
        width: 100%;
        z-index: 2;
        bottom: -3%;
    }

        .top-main-wrapper .select-wrapper-ind4 .take-a-change-4 {
            width: 100%;
            background: #FFFFFF;
            box-shadow: 0px 4px 28px 9px rgba(0, 0, 0, 0.04);
            border-radius: 20px;
            padding: 20px 15px;
        }

            .top-main-wrapper .select-wrapper-ind4 .take-a-change-4 .inner-select-wrapper {
                width: 100%;
                height: auto;
                background: #FFEEF6;
                border-radius: 20px;
                padding: 40px 50px 40px 50px;
            }

                .top-main-wrapper .select-wrapper-ind4 .take-a-change-4 .inner-select-wrapper .ind4-common-heading {
                    margin-top: 0px;
                }

                    .top-main-wrapper .select-wrapper-ind4 .take-a-change-4 .inner-select-wrapper .ind4-common-heading p {
                        font-size: 25px;
                    }

                .top-main-wrapper .select-wrapper-ind4 .take-a-change-4 .inner-select-wrapper ul {
                    display: flex;
                    align-items: center;
                    justify-content: flex-start;
                    -moz-column-gap: 35px;
                    column-gap: 35px;
                    margin-top: 25px;
                }

                    .top-main-wrapper .select-wrapper-ind4 .take-a-change-4 .inner-select-wrapper ul li {
                        width: 100%;
                    }

                        .top-main-wrapper .select-wrapper-ind4 .take-a-change-4 .inner-select-wrapper ul li .change-box .custum-select .dropdown {
                            width: 100%;
                            height: 50px;
                            background: #FFFFFF;
                            border-radius: 5px;
                            margin-top: 5px;
                            transition: all 0.5s;
                        }

                            .top-main-wrapper .select-wrapper-ind4 .take-a-change-4 .inner-select-wrapper ul li .change-box .custum-select .dropdown:hover {
                                background-color: #FB4958;
                            }

                            .top-main-wrapper .select-wrapper-ind4 .take-a-change-4 .inner-select-wrapper ul li .change-box .custum-select .dropdown .list ul {
                                display: block;
                                margin-top: 0px;
                            }

                        .top-main-wrapper .select-wrapper-ind4 .take-a-change-4 .inner-select-wrapper ul li .ind4-btn-box {
                            margin-bottom: 25px;
                        }

                            .top-main-wrapper .select-wrapper-ind4 .take-a-change-4 .inner-select-wrapper ul li .ind4-btn-box .ind4-select-btn {
                                background: linear-gradient(242.82deg, #FB3957 -7%, #FC5F59 100.52%);
                                border-radius: 5px;
                                text-align: center;
                                padding: 12px 20px;
                                position: absolute;
                                width: 194px;
                                height: 49px;
                                color: #fff;
                                font-family: Poppins;
                                font-size: 16px;
                                font-weight: 500;
                                line-height: 24px;
                                letter-spacing: 0em;
                                transition: all 0.5s;
                                border: 2px solid transparent;
                            }

                                .top-main-wrapper .select-wrapper-ind4 .take-a-change-4 .inner-select-wrapper ul li .ind4-btn-box .ind4-select-btn:hover {
                                    background: transparent;
                                    border: 2px solid #FB4958;
                                    color: #FB4958;
                                }

/*==================   about wrapper scss ==================  */
.ind4-about-wrapper {
    background-color: #F5F5F5;
    width: 100%;
    height: 100%;
    position: relative;
    padding: 120px 0px 100px 0px;
}

    .ind4-about-wrapper .ind4-about-box-1 {
        position: relative;
        z-index: 4;
    }

        .ind4-about-wrapper .ind4-about-box-1 img {
            background: #D9D9D9;
            border-radius: 10px;
            width: 100%;
            height: 100%;
        }

    .ind4-about-wrapper::after {
        content: "";
        display: block;
        position: absolute;
        top: 7px;
        left: 130px;
        width: 400px;
        height: 350px;
        background-image: url("../images/ind4-aboutshape-1.png");
        background-repeat: no-repeat;
        background-size: cover;
        margin: 0 auto;
    }

    .ind4-about-wrapper::before {
        content: "";
        display: block;
        position: absolute;
        top: 124px;
        right: 118px;
        width: 172px;
        height: 169px;
        background-image: url("../images/ind4-aboutshape-2.png");
        background-repeat: no-repeat;
        background-size: cover;
        margin: 0 auto;
    }

    .ind4-about-wrapper .ind4-about-box-2 {
        position: relative;
        width: 100%;
        height: 100%;
    }

        .ind4-about-wrapper .ind4-about-box-2 .detail-about-box {
            width: 830px;
            height: 550px;
            background: #FFFFFF;
            box-shadow: 0px 4px 28px 9px rgba(0, 0, 0, 0.04);
            border-radius: 20px;
            position: absolute;
            left: -110px;
            top: 70px;
            z-index: 6;
            padding: 50px 50px 65px 50px;
        }

            .ind4-about-wrapper .ind4-about-box-2 .detail-about-box .about4-para {
                margin-top: 22px;
            }

                .ind4-about-wrapper .ind4-about-box-2 .detail-about-box .about4-para p {
                    font-family: Poppins;
                    font-size: 16px;
                    font-weight: 400;
                    line-height: 24px;
                    letter-spacing: 0em;
                    text-align: left;
                    color: #111111;
                }

            .ind4-about-wrapper .ind4-about-box-2 .detail-about-box .about-sigature-box ul {
                display: flex;
                align-items: center;
                justify-content: space-between;
            }

                .ind4-about-wrapper .ind4-about-box-2 .detail-about-box .about-sigature-box ul li .signature-name {
                    font-family: Poppins;
                    font-size: 25px;
                    font-weight: 600;
                    line-height: 38px;
                    letter-spacing: 0em;
                    text-align: left;
                    color: #111111;
                    margin-top: 52px;
                }

                .ind4-about-wrapper .ind4-about-box-2 .detail-about-box .about-sigature-box ul li .signature {
                    font-style: normal;
                    font-weight: 400;
                    font-size: 38px;
                    line-height: 59px;
                    font-family: "Merienda";
                    color: #111111;
                }

                    .ind4-about-wrapper .ind4-about-box-2 .detail-about-box .about-sigature-box ul li .signature span {
                        color: #FB4958;
                    }

        .ind4-about-wrapper .ind4-about-box-2 .verification-box {
            position: absolute;
            bottom: 0;
            margin-left: 20px;
        }

            .ind4-about-wrapper .ind4-about-box-2 .verification-box ul {
                display: flex;
                align-items: center;
                justify-content: center;
                -moz-column-gap: 50px;
                column-gap: 50px;
            }

                .ind4-about-wrapper .ind4-about-box-2 .verification-box ul li .verfi-symbol {
                    transition: all 0.5s;
                }

                    .ind4-about-wrapper .ind4-about-box-2 .verification-box ul li .verfi-symbol span {
                        width: 119px;
                        height: 119px;
                        background-color: #FFEEF6;
                        border-radius: 50%;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        border: 2px solid #FB4958;
                        margin: 0 auto;
                        transition: all 0.5s;
                    }

                    .ind4-about-wrapper .ind4-about-box-2 .verification-box ul li .verfi-symbol:hover span {
                        background: linear-gradient(242.82deg, #FB3957 -7%, #FC5F59 100.52%);
                    }

                        .ind4-about-wrapper .ind4-about-box-2 .verification-box ul li .verfi-symbol:hover span a svg path {
                            fill: #ffffff;
                        }

                .ind4-about-wrapper .ind4-about-box-2 .verification-box ul li .verfi-text {
                    margin-top: 28px;
                }

                    .ind4-about-wrapper .ind4-about-box-2 .verification-box ul li .verfi-text p a {
                        font-family: Poppins;
                        font-size: 25px;
                        font-weight: 600;
                        line-height: 38px;
                        letter-spacing: 0em;
                        text-align: center;
                        display: block;
                        color: #111111;
                        transition: all 0.5s;
                    }

                    .ind4-about-wrapper .ind4-about-box-2 .verification-box ul li .verfi-text p:hover a {
                        color: #FB4958;
                    }

/*==================   about  counter wrapper scss ==================  */
.about-counter-wrapper {
    background-color: #FFEEF6;
    width: 100%;
    padding: 80px 0px;
    position: relative;
}

    .about-counter-wrapper .counter-inner-about {
        margin-top: 72px;
    }

        .about-counter-wrapper .counter-inner-about .about-counter-box {
            width: 100%;
            height: 360px;
            background: #FFFFFF;
            border-radius: 20px;
            padding: 65px 0px 48px 0px;
        }

            .about-counter-wrapper .counter-inner-about .about-counter-box span {
                display: flex;
                justify-content: center;
                align-items: center;
            }

            .about-counter-wrapper .counter-inner-about .about-counter-box .counter-text .counter {
                font-family: Merienda;
                font-size: 35px;
                font-weight: 700;
                line-height: 51px;
                letter-spacing: 0em;
                color: #FB4958;
                text-align: center;
                margin-top: 24px;
            }

            .about-counter-wrapper .counter-inner-about .about-counter-box .counter-text p {
                font-family: Poppins;
                font-size: 16px;
                font-weight: 500;
                line-height: 24px;
                letter-spacing: 0em;
                text-align: center;
                color: #111111;
            }

    .about-counter-wrapper .heart-shape-1 {
        position: absolute;
        display: inline-block;
        background-image: url("../images/about-heart-1.png");
        background-repeat: no-repeat;
        background-size: cover;
        width: 65px;
        height: 50px;
        top: 31%;
        left: 8%;
        animation: beat 1s infinite;
    }

    .about-counter-wrapper .heart-shape-2 {
        position: absolute;
        display: inline-block;
        background-image: url("../images/about-heart-2.png");
        background-repeat: no-repeat;
        background-size: cover;
        width: 40px;
        height: 30px;
        bottom: 31%;
        left: 10%;
        animation: beat 1s infinite;
    }

    .about-counter-wrapper .heart-shape-3 {
        position: absolute;
        display: inline-block;
        background-image: url("../images/about-heart-2.png");
        background-repeat: no-repeat;
        background-size: cover;
        width: 40px;
        height: 30px;
        top: 35%;
        right: 10%;
        animation: beat 1s infinite;
    }

    .about-counter-wrapper .heart-shape-4 {
        position: absolute;
        display: inline-block;
        background-image: url("../images/about-heart-1.png");
        background-repeat: no-repeat;
        background-size: cover;
        width: 65px;
        height: 50px;
        bottom: 5%;
        right: 8%;
        animation: beat 1s infinite;
    }

/*==================   love calculatoor  wrapper scss ==================  */
.ind4-love-calc-wrap {
    background-color: #F5F5F5;
    width: 100%;
    position: relative;
}

    .ind4-love-calc-wrap .love-calculater .love-calculater-box {
        background: linear-gradient(242.82deg, #FB3957 -7%, #FC5F59 100.52%);
        border-radius: 20px;
        padding: 40px;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        -moz-column-gap: 30px;
        column-gap: 30px;
        position: relative;
        z-index: 4;
    }

        .ind4-love-calc-wrap .love-calculater .love-calculater-box .enter-name {
            width: 100%;
        }

            .ind4-love-calc-wrap .love-calculater .love-calculater-box .enter-name input {
                width: 100%;
                background: #FFFFFF;
                border-radius: 5px;
                padding-left: 22px;
                padding-top: 8px;
            }

                .ind4-love-calc-wrap .love-calculater .love-calculater-box .enter-name input::-moz-placeholder {
                    display: flex;
                    align-items: center;
                    justify-content: start;
                    color: #CCCCCC;
                }

                .ind4-love-calc-wrap .love-calculater .love-calculater-box .enter-name input::placeholder {
                    display: flex;
                    align-items: center;
                    justify-content: start;
                    color: #CCCCCC;
                }

            .ind4-love-calc-wrap .love-calculater .love-calculater-box .enter-name label {
                padding: none;
                font-family: "Poppins";
                font-style: normal;
                font-weight: 500;
                font-size: 16px;
                line-height: 24px;
                text-transform: capitalize;
                color: #FFFFFF;
                text-align: start;
            }

        .ind4-love-calc-wrap .love-calculater .love-calculater-box .calculat-love {
            margin-top: 35px;
        }

            .ind4-love-calc-wrap .love-calculater .love-calculater-box .calculat-love .index4-btn {
                background-color: #fff;
                color: #FB4958;
            }

    .ind4-love-calc-wrap .love-calculater .love-result {
        position: relative;
    }

        .ind4-love-calc-wrap .love-calculater .love-result .circle {
            width: 620px;
            height: 547px;
            margin: 0 auto;
            position: relative;
            bottom: -90px;
        }

        .ind4-love-calc-wrap .love-calculater .love-result h2 {
            top: 70%;
            left: 50%;
            transform: translate(-50%, -70%);
        }

        .ind4-love-calc-wrap .love-calculater .love-result::before {
            content: "";
            position: absolute;
            left: 67%;
            top: 40%;
            width: 35px;
            height: 30px;
            background-repeat: no-repeat;
            background-size: cover;
            background-image: url("../images/ind4-dr-circle-heart-1.png");
            animation: img-rotate 8s linear infinite;
        }

        .ind4-love-calc-wrap .love-calculater .love-result::after {
            content: "";
            position: absolute;
            left: 28%;
            top: 76%;
            width: 40px;
            height: 34px;
            background-repeat: no-repeat;
            background-size: cover;
            background-image: url("../images/ind4-dr-circle-heart-2.png");
            animation: img-rotate 8s linear infinite;
        }

    .ind4-love-calc-wrap .dr-shape-1 {
        display: inline-block;
        position: absolute;
        left: 6%;
        bottom: 43%;
        animation-name: swinging;
        animation-duration: 1.2s;
        animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
        animation-delay: 0s;
        animation-direction: alternate;
        animation-iteration-count: infinite;
        animation-fill-mode: none;
        animation-play-state: running;
    }

    .ind4-love-calc-wrap .dr-shape-2 {
        display: inline-block;
        position: absolute;
        right: 2%;
        bottom: 25%;
        animation-name: swinging;
        animation-duration: 1.2s;
        animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
        animation-delay: 0s;
        animation-direction: alternate;
        animation-iteration-count: infinite;
        animation-fill-mode: none;
        animation-play-state: running;
    }

/*==================   index 4  step wrapper scss ==================  */
.step-wrapper {
    width: 100%;
    background-color: #FFEEF6;
    padding: 0px;
}

    .step-wrapper .step-img-box {
        position: relative;
        left: -12px;
        height: 800px;
    }

        .step-wrapper .step-img-box img {
            height: 100%;
            width: 100%;
        }

    .step-wrapper .step-side-box {
        padding: 0px 0px 0px 0px;
    }

        .step-wrapper .step-side-box .step-ul-box {
            position: relative;
            left: -105px;
        }

            .step-wrapper .step-side-box .step-ul-box ul {
                display: flex;
                -moz-column-gap: 47px;
                column-gap: 47px;
                justify-content: flex-start;
                align-items: center;
                padding: 30px 0px 25px 0px;
            }

                .step-wrapper .step-side-box .step-ul-box ul li a {
                    display: block;
                }

                    .step-wrapper .step-side-box .step-ul-box ul li a span {
                        width: 133px;
                        height: 133px;
                        background: #FFFFFF;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        border-radius: 50%;
                        border: 3px solid #FB4958;
                        position: relative;
                        z-index: 3;
                    }

                .step-wrapper .step-side-box .step-ul-box ul li .step-heading {
                    font-family: Merienda;
                    font-size: 35px;
                    font-weight: 700;
                    line-height: 51px;
                    color: #FB4958;
                    margin-bottom: 10px;
                }

                .step-wrapper .step-side-box .step-ul-box ul li p {
                    color: #111111;
                    max-width: 470px;
                    font-family: Poppins;
                    font-size: 16px;
                    font-weight: 400;
                    line-height: 24px;
                    letter-spacing: 0em;
                }

        .step-wrapper .step-side-box .step-bottom-line {
            position: relative;
        }

            .step-wrapper .step-side-box .step-bottom-line::before {
                content: "";
                position: absolute;
                width: 6px;
                height: 300px;
                top: 110px;
                left: 67px;
                background-image: url("../images/step-line.png");
                background-size: cover;
                background-repeat: no-repeat;
            }

    .step-wrapper .about4-title {
        margin-left: 70px;
    }

    .step-wrapper .ind4-common-heading {
        margin-left: 70px;
    }

/*==================   index 4 meet single wrapper scss ==================  */
.meet-single-wrappper {
    width: 100%;
    background-color: #F5F5F5;
    padding: 100px 0px;
}

    .meet-single-wrappper .meet-ul-box-first {
        margin: 100px 0px 0px 0px;
        position: relative;
        z-index: 2;
    }

        .meet-single-wrappper .meet-ul-box-first .meet-first-ul {
            display: flex;
            justify-content: center;
            align-items: end;
            -moz-column-gap: 20px;
            column-gap: 20px;
        }

            .meet-single-wrappper .meet-ul-box-first .meet-first-ul li .meet-wrapper-overaly {
                position: relative;
                overflow: hidden;
                height: 100%;
            }

                .meet-single-wrappper .meet-ul-box-first .meet-first-ul li .meet-wrapper-overaly .meet-img-wrapper {
                    position: relative;
                }

                    .meet-single-wrappper .meet-ul-box-first .meet-first-ul li .meet-wrapper-overaly .meet-img-wrapper .img-hover-item {
                        position: relative;
                        display: block;
                        width: 100%;
                        transform: scale(1.02);
                        transition: 0.25s 0.1s ease-out;
                    }

                    .meet-single-wrappper .meet-ul-box-first .meet-first-ul li .meet-wrapper-overaly .meet-img-wrapper .meet-overlay-box {
                        width: 100%;
                        height: 73px;
                        background-color: #FB4958;
                        position: absolute;
                        opacity: 0;
                        transition: 0.25s ease-in-out;
                    }

                        .meet-single-wrappper .meet-ul-box-first .meet-first-ul li .meet-wrapper-overaly .meet-img-wrapper .meet-overlay-box p {
                            font-family: "Poppins";
                            font-style: normal;
                            font-weight: 600;
                            font-size: 25px;
                            line-height: 38px;
                            color: #FFFFFF;
                            padding: 15px 0px 15px 20px;
                            display: flex;
                            align-items: center;
                        }

                            .meet-single-wrappper .meet-ul-box-first .meet-first-ul li .meet-wrapper-overaly .meet-img-wrapper .meet-overlay-box p span {
                                width: 44px;
                                height: 44px;
                                background: #FFFFFF;
                                display: inline-flex;
                                justify-content: center;
                                align-items: center;
                                border: 2px solid #FB4958;
                                border-radius: 50%;
                                margin-right: 12px;
                            }

            .meet-single-wrappper .meet-ul-box-first .meet-first-ul li .hov-img-slide_up .meet-img-wrapper .meet-overlay-box {
                bottom: 0;
                right: 0;
                left: 0;
                height: 0%;
                opacity: 0.75;
            }

            .meet-single-wrappper .meet-ul-box-first .meet-first-ul li .hov-img-slide_up .meet-img-wrapper:hover .meet-overlay-box {
                height: 73px;
                display: block;
            }

            .meet-single-wrappper .meet-ul-box-first .meet-first-ul li .hov-img-slide_up .meet-img-wrapper:hover .img-hover-item {
                transform: scale(1.1);
            }

        .meet-single-wrappper .meet-ul-box-first::before {
            content: "";
            display: block;
            position: absolute;
            top: -76px;
            left: 37px;
            width: 172px;
            height: 169px;
            background-image: url("../images/ind4-aboutshape-2.png");
            background-repeat: no-repeat;
            background-size: cover;
            margin: 0 auto;
        }

        .meet-single-wrappper .meet-ul-box-first::after {
            content: "";
            display: block;
            position: absolute;
            top: 5%;
            right: -3px;
            width: 225px;
            height: 210px;
            background-image: url("../images/ind4-meet-single-shape-address.png");
            background-repeat: no-repeat;
            background-size: cover;
            margin: 0 auto;
            z-index: -1;
        }

    .meet-single-wrappper .meet-ul-box-second {
        margin-top: 20px;
    }

        .meet-single-wrappper .meet-ul-box-second .meet-second-ul {
            display: flex;
            justify-content: center;
            -moz-column-gap: 20px;
            column-gap: 20px;
            position: relative;
        }

            .meet-single-wrappper .meet-ul-box-second .meet-second-ul li .meet-wrapper-overaly {
                position: relative;
                overflow: hidden;
            }

                .meet-single-wrappper .meet-ul-box-second .meet-second-ul li .meet-wrapper-overaly .meet-img-wrapper {
                    position: relative;
                }

                    .meet-single-wrappper .meet-ul-box-second .meet-second-ul li .meet-wrapper-overaly .meet-img-wrapper .img-hover-item {
                        position: relative;
                        display: block;
                        width: 100%;
                        transform: scale(1.02);
                        transition: 0.25s 0.1s ease-out;
                    }

                    .meet-single-wrappper .meet-ul-box-second .meet-second-ul li .meet-wrapper-overaly .meet-img-wrapper .meet-overlay-box {
                        width: 100%;
                        height: 73px;
                        background-color: #FB4958;
                        position: absolute;
                        opacity: 0;
                        transition: 0.25s ease-in-out;
                    }

                        .meet-single-wrappper .meet-ul-box-second .meet-second-ul li .meet-wrapper-overaly .meet-img-wrapper .meet-overlay-box p {
                            font-family: "Poppins";
                            font-style: normal;
                            font-weight: 600;
                            font-size: 25px;
                            line-height: 38px;
                            color: #FFFFFF;
                            padding: 15px 0px 15px 20px;
                            display: flex;
                            align-items: center;
                        }

                            .meet-single-wrappper .meet-ul-box-second .meet-second-ul li .meet-wrapper-overaly .meet-img-wrapper .meet-overlay-box p span {
                                width: 44px;
                                height: 44px;
                                background: #FFFFFF;
                                display: inline-flex;
                                justify-content: center;
                                align-items: center;
                                border: 2px solid #FB4958;
                                border-radius: 50%;
                                margin-right: 12px;
                            }

            .meet-single-wrappper .meet-ul-box-second .meet-second-ul li .hov-img-slide_up .meet-img-wrapper .meet-overlay-box {
                bottom: 0;
                right: 0;
                left: 0;
                height: 0%;
                opacity: 0.75;
            }

            .meet-single-wrappper .meet-ul-box-second .meet-second-ul li .hov-img-slide_up .meet-img-wrapper:hover .meet-overlay-box {
                height: 73px;
            }

            .meet-single-wrappper .meet-ul-box-second .meet-second-ul li .hov-img-slide_up .meet-img-wrapper:hover .img-hover-item {
                transform: scale(1.1);
            }

            .meet-single-wrappper .meet-ul-box-second .meet-second-ul::before {
                content: "";
                display: block;
                position: absolute;
                bottom: 0%;
                right: 20%;
                width: 400px;
                height: 350px;
                background-image: url("../images/ind4-meet-single-shape.png");
                background-repeat: no-repeat;
                background-size: cover;
                margin: 0 auto;
            }

    .meet-single-wrappper .meet-single-btn {
        margin-top: 60px;
        display: flex;
        justify-content: center;
    }

        .meet-single-wrappper .meet-single-btn .index4-btn {
            width: 220px;
            -moz-column-gap: 10px;
            column-gap: 10px;
            height: 48px;
        }

/*==================   index 4 meet single wrapper scss ==================  */
.success-wrapper {
    background-image: url("../images/success-wrapper-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    height: auto;
    padding: 60px 0px 100px 0px;
}

    .success-wrapper .success-inner-box {
        margin-top: 70px;
    }

        .success-wrapper .success-inner-box .success-box {
            background-color: #ffffff;
            height: 520px;
            width: 100%;
            border-radius: 15px;
        }

            .success-wrapper .success-inner-box .success-box .success-img img {
                border-top-left-radius: 15px;
                border-top-right-radius: 15px;
            }

            .success-wrapper .success-inner-box .success-box .success-text {
                padding: 20px 20px;
            }

                .success-wrapper .success-inner-box .success-box .success-text .success-heading {
                    font-family: "Poppins";
                    font-style: normal;
                    font-weight: 600;
                    font-size: 21px;
                    line-height: 38px;
                    text-align: left;
                    color: #111111;
                    display: block;
                    transition: all 0.5s;
                }

                    .success-wrapper .success-inner-box .success-box .success-text .success-heading:hover {
                        color: #FB4958;
                    }

                .success-wrapper .success-inner-box .success-box .success-text .tag-list {
                    display: flex;
                    justify-content: flex-start;
                    align-items: center;
                    -moz-column-gap: 13px;
                    column-gap: 13px;
                    margin-top: 18px;
                }

                    .success-wrapper .success-inner-box .success-box .success-text .tag-list li a span {
                        font-weight: 500;
                    }

                        .success-wrapper .success-inner-box .success-box .success-text .tag-list li a span img {
                            border-radius: 50%;
                            border: 2px solid #FB4958;
                            width: 54px;
                            height: 54px;
                        }

                    .success-wrapper .success-inner-box .success-box .success-text .tag-list li p a {
                        font-family: Poppins;
                        font-size: 16px;
                        font-weight: 500;
                        line-height: 24px;
                        letter-spacing: 0em;
                        text-align: left;
                    }

                    .success-wrapper .success-inner-box .success-box .success-text .tag-list li .success-date {
                        font-family: Poppins;
                        font-size: 16px;
                        font-weight: 400;
                        line-height: 24px;
                        letter-spacing: 0em;
                        text-align: left;
                        display: block;
                    }

        .success-wrapper .success-inner-box .sucess-slider .owl-carousel .owl-dots {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 40px;
            -moz-column-gap: 10px;
            column-gap: 10px;
        }

            .success-wrapper .success-inner-box .sucess-slider .owl-carousel .owl-dots .owl-dot span {
                background-color: #FFEEF6;
                width: 10px;
                height: 10px;
                display: inline-block;
                border-radius: 50px;
            }

            .success-wrapper .success-inner-box .sucess-slider .owl-carousel .owl-dots .active span {
                background-color: #FB4958;
            }

        .success-wrapper .success-inner-box .sucess-slider .owl-nav {
            display: none;
        }

/*==================   index 4 meet map-deatil wrapper scss ==================  */
.map-detail-wrapper {
    background-color: #F5F5F5;
    width: 100%;
    padding: 70px 0px 100px 0px;
}

    .map-detail-wrapper .ind4-map-box {
        margin-top: 80px;
    }

/*==================   index 4 mobile-app-ind4-wrap scss ==================  */
.mobile-app-ind4-wrap {
    background-color: #F5F5F5;
    padding: 120px 0px 50px 0px;
}

    .mobile-app-ind4-wrap .mobile-box {
        height: 389px;
        background: linear-gradient(242.82deg, #FB3957 -7%, #FC5F59 100.52%);
        border-radius: 40px;
        display: flex;
    }

        .mobile-app-ind4-wrap .mobile-box ul {
            display: flex;
            -moz-column-gap: 50px;
            column-gap: 50px;
            justify-content: flex-start;
            align-items: center;
        }

            .mobile-app-ind4-wrap .mobile-box ul li .mobile-img {
                position: relative;
                bottom: 55px;
                left: 28px;
            }

            .mobile-app-ind4-wrap .mobile-box ul li .app-content .about4-title p {
                color: #ffffff;
                margin-bottom: 22px;
            }

            .mobile-app-ind4-wrap .mobile-box ul li .app-content .ind4-common-heading p {
                color: #ffffff;
                text-align: left;
                font-size: 45px;
            }

            .mobile-app-ind4-wrap .mobile-box ul li .app-content p {
                font-family: Poppins;
                font-size: 16px;
                font-weight: 400;
                line-height: 24px;
                letter-spacing: 0em;
                color: #FFFFFF;
                margin-bottom: 24px;
                padding-right: 90px;
            }

            .mobile-app-ind4-wrap .mobile-box ul li .app-content ul {
                display: flex;
                justify-content: flex-start;
                align-items: center;
                -moz-column-gap: 18px;
                column-gap: 18px;
            }

/*==================   index 4 footer scss ==================  */
footer {
    background-color: #F5F5F5;
}

    footer .ind4-footer {
        background-color: #F5F5F5;
        width: 100%;
        padding: 70px 0px;
        position: relative;
    }

        footer .ind4-footer .ind4-footer-heading {
            font-family: Poppins;
            font-size: 20px;
            font-weight: 600;
            line-height: 30px;
            letter-spacing: 0em;
            text-align: left;
            color: #FB4958;
            margin-bottom: 26px;
        }

        footer .ind4-footer .ind4-footer-box-1 .ind4-footer-logo {
            margin-bottom: 30px;
        }

        footer .ind4-footer .ind4-footer-box-1 .ind4-footer-text {
            font-family: Poppins;
            font-size: 16px;
            font-weight: 400;
            line-height: 24px;
            letter-spacing: 0em;
            text-align: left;
            margin-bottom: 30px;
        }

        footer .ind4-footer .ind4-footer-box-1 .media-icon {
            display: flex;
            justify-content: flex-start;
            align-items: center;
            -moz-column-gap: 20px;
            column-gap: 20px;
        }

            footer .ind4-footer .ind4-footer-box-1 .media-icon li a {
                transition: all 0.5s;
            }

                footer .ind4-footer .ind4-footer-box-1 .media-icon li a span {
                    width: 35px;
                    height: 35px;
                    background-color: #FFEEF6;
                    border-radius: 50%;
                    display: inline-flex;
                    justify-content: center;
                    align-items: center;
                    border: 2px solid transparent;
                    transition: all 0.5s;
                }

                    footer .ind4-footer .ind4-footer-box-1 .media-icon li a span i {
                        color: #FB4958;
                    }

                footer .ind4-footer .ind4-footer-box-1 .media-icon li a:hover span {
                    background-color: transparent;
                    border: 2px solid #FB4958;
                }

        footer .ind4-footer .ind4-footer-box-2 .ind4-footer-heading {
            font-family: Poppins;
            font-size: 20px;
            font-weight: 600;
            line-height: 30px;
            letter-spacing: 0em;
            text-align: left;
            color: #FB4958;
            margin-bottom: 26px;
        }

        footer .ind4-footer .ind4-footer-box-2 ul {
            display: flex;
            justify-content: flex-start;
            align-items: center;
            -moz-column-gap: 17px;
            column-gap: 17px;
        }

            footer .ind4-footer .ind4-footer-box-2 ul li .img-box-wrap a img {
                border-radius: 50%;
                border: 2px solid #FB4958;
            }

            footer .ind4-footer .ind4-footer-box-2 ul li .img-text-wrap {
                font-family: Poppins;
                font-size: 16px;
                font-weight: 400;
                line-height: 24px;
                letter-spacing: 0em;
                color: #FB4958;
            }

                footer .ind4-footer .ind4-footer-box-2 ul li .img-text-wrap a {
                    display: block;
                    font-weight: 500;
                    color: #111111;
                }

                footer .ind4-footer .ind4-footer-box-2 ul li .img-text-wrap:hover a {
                    color: #FB4958;
                }

        footer .ind4-footer .ind4-footer-box-2 .first-ul {
            margin-bottom: 20px;
        }

        footer .ind4-footer .ind4-footer-box-2 .second-ul {
            margin-bottom: 20px;
        }

        footer .ind4-footer .ind4-footer-box-3 ul li a {
            font-family: Poppins;
            font-size: 16px;
            font-weight: 500;
            line-height: 45px;
            letter-spacing: 0em;
            color: #111111;
            transition: all 0.5s;
        }

            footer .ind4-footer .ind4-footer-box-3 ul li a span {
                margin-right: 21px;
            }

            footer .ind4-footer .ind4-footer-box-3 ul li a:hover {
                color: #FB4958;
            }

        footer .ind4-footer .ind4-footer-box-4 ul {
            display: flex;
            justify-content: flex-start;
            align-items: center;
            -moz-column-gap: 17px;
            column-gap: 17px;
        }

            footer .ind4-footer .ind4-footer-box-4 ul li .img-text-wrap {
                font-family: Poppins;
                font-size: 16px;
                font-weight: 400;
                line-height: 24px;
                letter-spacing: 0em;
                color: #FB4958;
            }

                footer .ind4-footer .ind4-footer-box-4 ul li .img-text-wrap a {
                    display: block;
                    font-weight: 500;
                    color: #111111;
                    transition: all 0.5s;
                }

                footer .ind4-footer .ind4-footer-box-4 ul li .img-text-wrap:hover a {
                    color: #FB4958;
                }

        footer .ind4-footer .ind4-footer-box-4 .first-ul {
            margin-bottom: 20px;
        }

        footer .ind4-footer .ind4-footer-box-4 .second-ul {
            margin-bottom: 20px;
        }

        footer .ind4-footer::before {
            content: "";
            display: block;
            position: absolute;
            bottom: 35%;
            left: 0%;
            width: 115px;
            height: 254px;
            background-image: url("../images/ind4-footer-shape-1.png");
            background-repeat: no-repeat;
            background-size: cover;
            margin: 0 auto;
        }

        footer .ind4-footer::after {
            content: "";
            display: block;
            position: absolute;
            bottom: 25%;
            right: 0%;
            width: 110px;
            height: 235px;
            background-image: url("../images/ind4-footer-shape-2.png");
            background-repeat: no-repeat;
            background-size: cover;
            margin: 0 auto;
        }

    footer .ind4-footer-bottom {
        background-color: #FB4958;
        width: 100%;
        height: 50px;
    }

        footer .ind4-footer-bottom a {
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: Poppins;
            font-size: 16px;
            font-weight: 500;
            line-height: 24px;
            letter-spacing: 0em;
            color: #fff;
            transition: all 0.5s;
            padding: 13px 0px;
        }

            footer .ind4-footer-bottom a:hover {
                color: #FFEEF6;
            }

@keyframes beat {
    from {
        transform: scale(1);
        transform-origin: center center;
        animation-timing-function: ease-out;
    }

    10% {
        transform: scale(1.05);
        animation-timing-function: ease-in;
    }

    15% {
        transform: scale(1.1);
        animation-timing-function: ease-out;
    }

    25% {
        transform: scale(1.15);
        animation-timing-function: ease-in;
    }

    35% {
        transform: scale(1.2);
        animation-timing-function: ease-out;
    }
}

@keyframes swinging {
    0% {
        transform: rotate(-10deg) translate3d(-15px, 0, 0);
    }

    100% {
        transform: rotate(10deg) translate3d(15px, 0, 0);
    }
}

@keyframes box {
    from {
        transform: rotate(-45deg);
    }

    to {
        transform: rotate(-405deg);
    }
}

@keyframes float {
    0% {
        transform: translatey(0px);
    }

    50% {
        transform: translatey(-20px);
    }

    100% {
        transform: translatey(0px);
    }
}

@keyframes img-rotate {
    from {
        transform: rotate(-45deg);
    }

    to {
        transform: rotate(-405deg);
    }
}

.fadein {
    opacity: 0;
    transition: all 1.5s;
    transform: translate(0, 100px);
}

    .fadein.visible {
        opacity: 1;
        transform: translate(0, 0);
    }

@media (max-width: 1699px) {
    .ind4-about-wrapper::after {
        left: 54px;
    }

    .ind4-about-wrapper::before {
        right: 40px;
    }

    .about-counter-wrapper .heart-shape-2 {
        left: 4%;
    }

    .about-counter-wrapper .heart-shape-3 {
        right: 3%;
    }

    .about-counter-wrapper .heart-shape-1 {
        left: 2%;
    }

    .about-counter-wrapper .heart-shape-4 {
        right: 2%;
    }
}

@media (max-width: 1499px) {
    .ind4-about-wrapper::after {
        left: 2%;
    }

    .about-counter-wrapper .heart-shape-2 {
        left: 2%;
    }

    .about-counter-wrapper .heart-shape-3 {
        right: 2%;
    }

    .ind4-love-calc-wrap .dr-shape-2 {
        right: 4%;
        bottom: 30%;
    }

    .ind4-love-calc-wrap .dr-shape-1 {
        left: 4%;
        bottom: 43%;
    }

    .ind4-about-wrapper .ind4-about-box-2 .detail-about-box {
        width: 700px;
        height: auto;
        padding: 30px;
    }

    .ind4-common-heading p {
        font-size: 37px;
        line-height: 45px;
    }

    .ind4-about-wrapper .ind4-about-box-2 .detail-about-box .about-sigature-box ul li .signature-name {
        line-height: 15px;
        margin-top: 35px;
    }

    .ind4-about-wrapper .ind4-about-box-2 .verification-box ul li .verfi-symbol span {
        width: 100px;
        height: 100px;
        transition: All 0.5s;
    }

    .ind4-about-wrapper .ind4-about-box-2 .verification-box ul li .verfi-text p a {
        line-height: 10px;
        font-size: 19px;
    }

    .mobile-app-ind4-wrap .mobile-box ul li .app-content .ind4-common-heading p {
        font-size: 35px;
    }

    header .main-header-four .main-menu {
        justify-content: end;
        flex-wrap: nowrap;
    }

    .step-wrapper .step-side-box .step-ul-box ul li .step-heading {
        font-size: 30px;
    }

    .step-wrapper .step-side-box .step-ul-box ul {
        padding: 30px 0px 0px 0px;
    }

    .doctor-love .love-calculater {
        margin-top: 0px;
        text-align: center;
    }

    .success-wrapper .success-inner-box .success-box {
        height: 460px;
    }

        .success-wrapper .success-inner-box .success-box .success-text .success-heading {
            font-size: 18px;
            line-height: 22px;
        }

    .ind4-about-wrapper::before {
        right: 100px;
    }

    .step-wrapper .step-img-box {
        height: 675px;
    }
}

@media (max-width: 1399px) {
    .mobile-app-ind4-wrap .mobile-box {
        height: 320px;
    }

    .map-detail-wrapper {
        padding: 70px 0px 64px 0px;
    }

    .ind4-love-calc-wrap .love-calculater .love-result::after {
        left: 25%;
    }

    .ind4-love-calc-wrap .love-calculater .love-result::before {
        left: 69%;
    }

    .top-main-wrapper .top-moddle-wrapper .indshape-2::after {
        top: 253px;
        width: 352px;
        height: 130px;
    }

    .top-main-wrapper .top-moddle-wrapper .indshape-1::after {
        top: -223px;
        right: 16%;
        height: 200px;
        width: 200px;
    }
}

@media (max-width: 1299px) {
    .success-wrapper .success-inner-box .success-box .success-text .success-heading {
        font-size: 19px;
        line-height: 27px;
    }

    .success-wrapper .success-inner-box .success-box {
        height: 440px;
    }

    .ind4-about-wrapper .ind4-about-box-2 .detail-about-box {
        width: 654px;
        top: 30px;
    }

    header .main-header-four .main-menu > ul > li > a {
        padding: 12px 8px;
    }

    .ind4-common-heading p {
        font-size: 30px;
        line-height: 16px;
    }

    .ind4-about-wrapper .ind4-about-box-2 .detail-about-box .about-sigature-box ul li .signature-name {
        margin-top: 20px;
    }

    .ind4-about-wrapper .ind4-about-box-2 .detail-about-box .about-sigature-box ul li .signature {
        font-size: 30px;
        line-height: 45px;
    }

    .ind4-about-wrapper .ind4-about-box-2 .verification-box ul {
        -moz-column-gap: 20px;
        column-gap: 20px;
    }

        .ind4-about-wrapper .ind4-about-box-2 .verification-box ul li .verfi-text {
            margin-top: 16px;
        }

    .step-wrapper .step-side-box .step-ul-box ul {
        padding: 20px 0px 0px 0px;
    }

    .step-wrapper .step-img-box {
        height: 100%;
    }

    header .main-header-four .main-menu .main-btn {
        padding-left: 15px;
    }

    header .main-header-four .main-menu > ul {
        padding-right: 5px;
    }

    .step-wrapper .step-side-box .step-ul-box ul li .step-heading {
        font-size: 25px;
        margin-bottom: 0px;
    }

    .step-wrapper .step-side-box .step-ul-box ul li a span {
        width: 110px;
        height: 110px;
    }

    .step-wrapper .step-side-box .step-ul-box {
        left: -95px;
    }

    .step-wrapper .step-side-box .step-bottom-line::before {
        left: 56px;
        height: 280px;
    }

    .step-wrapper .step-side-box {
        padding: 60px 0px 40px 0px;
    }
}

@media (max-width: 1199px) {
    .top-main-wrapper .top-moddle-wrapper .indshape-1::after {
        right: 8%;
    }

    .top-main-wrapper .top-moddle-wrapper .indshape-1::before {
        right: 15%;
    }

    .top-main-wrapper .select-wrapper-ind4 .take-a-change-4 .inner-select-wrapper ul li .ind4-btn-box .ind4-select-btn {
        width: 150px;
        padding: 12px 10px;
        font-size: 14px;
    }

    .top-main-wrapper .select-wrapper-ind4 .take-a-change-4 .inner-select-wrapper ul {
        -moz-column-gap: 20px;
        column-gap: 20px;
    }
}

@media (max-width: 1099px) {
    .ind4-about-wrapper .ind4-about-box-2 .detail-about-box {
        width: 555px;
        top: 10px;
    }

    .ind4-about-wrapper .ind4-about-box-2 .detail-about-box {
        padding: 25px;
    }

    .ind4-about-wrapper::before {
        top: 40px;
    }

    .step-wrapper .step-side-box .step-ul-box ul li .step-heading {
        font-size: 22px;
        margin-bottom: 0px;
    }

    .step-wrapper .step-side-box {
        padding: 45px 0px 0px 0px;
    }

        .step-wrapper .step-side-box .step-ul-box ul {
            padding: 12px 0px 0px 0px;
        }

    footer .ind4-footer::before {
        background-image: none;
        width: 0px;
        height: 0px;
    }

    footer .ind4-footer::after {
        background-image: none;
        width: 0px;
        height: 0px;
    }

    header .main-header-four .main-menu > ul > li > a {
        gap: 4px;
    }

    .meet-single-wrappper .meet-ul-box-first::after {
        top: -28%;
    }

    .ind4-love-calc-wrap .love-calculater .love-result::after {
        left: 20%;
        top: 76%;
    }

    .ind4-love-calc-wrap .love-calculater .love-result::before {
        left: 74%;
        top: 40%;
    }

    header .main-header-four .main-menu > ul > li .search-box-4 .ind4-search-btn {
        width: 165px;
    }

    .top-main-wrapper .top-moddle-wrapper .indshape-1::after {
        right: 5%;
    }
}

@media (max-width: 991px) {
    header .main-header-four .main-menu {
        justify-content: end;
    }

        header .main-header-four .main-menu > ul.close {
            left: 0;
            display: block;
        }

        header .main-header-four .main-menu > ul .mydropdown .maindropdown {
            top: 0px;
        }

    header .main-header-four .logo {
        padding-left: 30px;
    }

    header .main-header-four .main-menu {
        padding-right: 30px;
    }

        header .main-header-four .main-menu .sidebar-menu-css li a {
            width: 100%;
            padding: 20px !important;
        }

            header .main-header-four .main-menu .sidebar-menu-css li a img {
                margin: 0 auto;
            }

        header .main-header-four .main-menu .sidebar-menu-css {
            padding-left: 0px !important;
        }

    .top-main-wrapper .top-moddle-wrapper .main-title h1 {
        font-size: 50px;
    }

        .top-main-wrapper .top-moddle-wrapper .main-title h1 span::after {
            left: 70px;
        }

    .ind4-about-wrapper .ind4-about-box-2 .detail-about-box {
        width: 100%;
        height: auto;
        left: 0px;
        z-index: 0;
        position: relative;
    }

    .ind4-about-wrapper .ind4-about-box-2 .verification-box {
        position: relative;
        margin-top: 50px;
    }

    .ind4-about-wrapper .row {
        row-gap: 30px;
    }

    .counter-inner-about .row {
        row-gap: 30px;
    }

    .doctor-love .love-calculater {
        margin-top: 75px;
    }

    .ind4-love-calc-wrap .dr-shape-2 {
        bottom: 40%;
    }

    .step-wrapper .step-side-box .step-ul-box {
        left: 0px;
        margin-left: 20px;
    }

    .mobile-app-ind4-wrap .mobile-box ul li .app-content .ind4-common-heading p {
        font-size: 26px;
    }

    .ind4-footer .row {
        row-gap: 30px;
    }

    .ind4-love-calc-wrap .love-calculater .love-result h2 {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .step-wrapper .step-side-box {
        padding: 45px 0px 45px 0px;
    }

    .success-wrapper .success-inner-box .success-box {
        height: 490px;
    }

    .top-main-wrapper .select-wrapper-ind4 .take-a-change-4 .inner-select-wrapper ul li .ind4-btn-box .ind4-select-btn {
        width: 135px;
        padding: 12px 8px;
        font-size: 13px;
    }

    .top-main-wrapper .select-wrapper-ind4 .take-a-change-4 .inner-select-wrapper {
        padding: 30px 30px 30px 30px;
    }

    .mobile-app-ind4-wrap {
        padding: 40px 0px 50px 0px;
    }

    .step-wrapper .step-img-box {
        left: 0px;
    }

    .topheader .left-topheader ul li a span svg {
        width: 18px;
    }

    .topheader .left-topheader ul {
        -moz-column-gap: 16px;
        column-gap: 16px;
    }
}

@media (max-width: 767px) {
    .topheader {
        height: 100%;
        padding: 15px 0px;
    }

        .topheader .left-topheader ul {
            justify-content: center;
        }

        .topheader .row {
            row-gap: 10px;
        }

        .topheader .right-topheader {
            justify-content: center;
        }

    .top-main-wrapper .top-moddle-wrapper .indshape-1::before {
        display: none;
    }

    .top-main-wrapper .top-moddle-wrapper .main-title h1 span::after {
        top: 77px;
        left: 6px;
        width: 150px;
        height: 12px;
    }

    .top-main-wrapper .top-moddle-wrapper .indshape-1::after {
        right: 16%;
        height: 145px;
        width: 130px;
    }

    .ind4-love-calc-wrap .dr-shape-1 {
        left: 5%;
    }

        .ind4-love-calc-wrap .dr-shape-1 svg {
            width: 110px;
        }

    .ind4-love-calc-wrap .dr-shape-2 svg {
        width: 90px;
    }

    .step-wrapper .step-side-box .step-bottom-line {
        margin-top: 25px;
    }

    .ind4-love-calc-wrap .dr-shape-2 {
        bottom: 37%;
        right: 8%;
    }

    .mobile-app-ind4-wrap .mobile-box ul li .app-content .ind4-common-heading p {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .mobile-app-ind4-wrap .mobile-box {
        height: 280px;
    }

        .mobile-app-ind4-wrap .mobile-box ul li .app-content p {
            padding-right: 15px;
        }

        .mobile-app-ind4-wrap .mobile-box ul li .mobile-img {
            bottom: 5px;
        }

    .top-main-wrapper .select-wrapper-ind4 {
        bottom: -28%;
    }

        .top-main-wrapper .select-wrapper-ind4 .take-a-change-4 .inner-select-wrapper ul {
            flex-wrap: wrap;
            row-gap: 15px;
            margin-bottom: 20px;
        }

    .top-main-wrapper .top-moddle-wrapper .indshape-2::after {
        display: none;
    }

    .ind4-about-wrapper {
        padding: 230px 0px 100px 0px;
    }
}

@media (max-width: 576px) {
    .mobile-app-ind4-wrap .mobile-box {
        height: 100%;
        padding: 30px;
    }

        .mobile-app-ind4-wrap .mobile-box ul {
            flex-wrap: wrap;
            row-gap: 8px;
        }

    .top-main-wrapper .top-moddle-wrapper .indshape-2::after {
        display: none;
    }

    .top-main-wrapper .top-moddle-wrapper .top-left-box {
        top: 570px;
    }

        .top-main-wrapper .top-moddle-wrapper .top-left-box::before {
            top: -180px;
            left: 38px;
        }

    .top-main-wrapper .top-moddle-wrapper .main-title h1 {
        font-size: 32px;
    }

        .top-main-wrapper .top-moddle-wrapper .main-title h1 span::after {
            top: 54px;
            left: 0px;
            width: 123px;
            height: 10px;
        }

    .top-main-wrapper .top-moddle-wrapper .indshape-1::after {
        right: 36%;
    }

    .ind4-love-calc-wrap .love-calculater .love-result::before {
        left: 79%;
    }

    .doctor-love .love-calculater .love-calculater-box {
        flex-wrap: wrap;
    }

    .ind4-common-heading p {
        font-size: 24px;
        line-height: 39px;
    }

    .success-wrapper .success-inner-box .success-box {
        height: 540px;
    }

    .ind4-love-calc-wrap .love-calculater .love-result::after {
        left: 16%;
        top: -10%;
    }

    .ind4-love-calc-wrap .dr-shape-2 {
        bottom: 43%;
        right: 8%;
    }

    .mobile-app-ind4-wrap .mobile-box ul li .app-content .about4-title p {
        margin-top: 24px;
    }

    .mobile-app-ind4-wrap .mobile-box ul li .mobile-img {
        left: 0px;
    }

    .about4-title p span svg {
        width: 60px;
    }

    .step-wrapper .step-side-box .step-ul-box ul {
        flex-wrap: wrap;
    }

    .step-wrapper .step-side-box .step-bottom-line::before {
        display: none;
    }

    .meet-single-wrappper .meet-ul-box-second .meet-second-ul::before {
        display: none;
    }

    .meet-single-wrappper .meet-ul-box-first .meet-first-ul {
        flex-wrap: wrap;
        row-gap: 20px;
    }

    .meet-single-wrappper .meet-ul-box-first::after {
        display: none;
    }

    .ind4-about-wrapper::after {
        display: none;
    }

    .meet-single-wrappper .meet-ul-box-second .meet-second-ul {
        flex-wrap: wrap;
        row-gap: 20px;
    }

    .top-main-wrapper .top-moddle-wrapper .top-left-box {
        top: 400px;
    }

        .top-main-wrapper .top-moddle-wrapper .top-left-box .top-leftdetail-box {
            width: 200px;
            height: 238px;
        }

    .mobile-app-ind4-wrap {
        padding: 20px 0px 50px 0px;
    }

    .top-main-wrapper .select-wrapper-ind4 .take-a-change-4 .inner-select-wrapper {
        padding: 15px 15px 15px 15px;
    }

    .success-wrapper {
        padding: 60px 0px 40px 0px;
    }

    footer .ind4-footer {
        padding: 25px 0px;
    }

    .meet-single-wrappper {
        padding: 50px 0px;
    }

    .ind4-love-calc-wrap .love-calculater .love-calculater-box .calculat-love {
        margin-top: 10px;
    }

    .ind4-love-calc-wrap .love-calculater .love-calculater-box {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .ind4-about-wrapper .ind4-about-box-2 .verification-box ul {
        flex-wrap: wrap;
        flex-direction: column;
        row-gap: 30px;
    }

    .success-wrapper .success-inner-box .success-box {
        height: 490px;
    }

    .ind4-about-wrapper::before {
        right: 135px;
    }

    .about4-title p span svg {
        width: 50px;
    }

    .top-main-wrapper .top-moddle-wrapper .main-title h1 {
        font-size: 29px;
    }

    .topheader .left-topheader ul {
        flex-wrap: wrap;
        row-gap: 10px;
    }

    .ind4-love-calc-wrap .dr-shape-1 {
        display: none;
    }

    .ind4-love-calc-wrap .dr-shape-2 {
        display: none;
    }

    .step-wrapper .step-side-box .step-ul-box ul li .step-heading {
        font-size: 20px;
    }

    .step-wrapper .ind4-common-heading {
        margin-left: 5px;
    }

    .step-wrapper .about4-title {
        margin-left: 5px;
    }

    .ind4-love-calc-wrap .love-calculater .love-result::before {
        left: 74%;
        top: 70%;
    }

    footer .ind4-footer-bottom a {
        flex-wrap: wrap;
        row-gap: 10px;
        text-align: center;
    }

    footer .ind4-footer-bottom {
        height: 100%;
    }

    .top-main-wrapper .top-moddle-wrapper .top-left-box {
        display: none;
    }

    .ind4-about-wrapper {
        padding: 260px 0px 100px 0px;
    }

        .ind4-about-wrapper .ind4-about-box-2 .detail-about-box .about-sigature-box ul li .signature-name {
            font-size: 20px;
        }

    .top-main-wrapper .top-moddle-wrapper .indshape-1::after {
        top: 13px;
    }
}

@media (max-width: 360px) {
    .about4-title p {
        font-size: 12px;
    }

    .top-main-wrapper .top-moddle-wrapper .main-title h1 {
        font-size: 25px;
    }

    .ind4-love-calc-wrap .love-calculater .love-result::after {
        top: -23%;
    }

    .success-wrapper .success-inner-box .success-box {
        height: 420px;
    }

    .mobile-app-ind4-wrap .mobile-box ul li .app-content .ind4-common-heading p {
        font-size: 21px;
    }

    .ind4-love-calc-wrap .love-calculater .love-result::before {
        top: 80%;
    }

    .top-main-wrapper .top-moddle-wrapper .main-title h1 span::after {
        top: 37px;
        width: 90px;
        height: 7px;
    }
}

.langSelect .select-hidden {
    display: none;
    visibility: hidden;
    padding-right: 10px;
}

.langSelect .select {
    cursor: pointer;
    display: inline-block;
    position: relative;
    font-size: 16px;
    color: #fff;
    width: 100%;
    height: auto;
}

.langSelect .select-styled {
    background-color: transparent;
    padding: 0px 15px;
}

    .langSelect .select-styled:after {
        content: "";
        width: 0;
        height: 0;
        border: 7px solid transparent;
        border-color: #fff transparent transparent transparent;
        position: absolute;
        top: 7px;
        right: -5px;
    }

    .langSelect .select-styled:hover {
        background-color: #fb3f4f;
    }

    .langSelect .select-styled:active, .langSelect .custum-select .select-styled.dropdown.open, .custum-select .langSelect .select-styled.dropdown.open, .langSelect .select-styled.active {
        background-color: #fa3041;
    }

        .langSelect .select-styled:active:after, .langSelect .custum-select .select-styled.dropdown.open:after, .custum-select .langSelect .select-styled.dropdown.open:after, .langSelect .select-styled.active:after {
            top: 9px;
            border-color: transparent transparent #fff transparent;
        }

.langSelect .select-options {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    width: 160px;
    z-index: 9;
    margin: 0;
    padding: 0;
    list-style: none;
    background-color: #fa3041;
}

    .langSelect .select-options li {
        margin: 0;
        padding: 12px 0;
        text-indent: 15px;
        border-top: 1px solid #fa172a;
    }

        .langSelect .select-options li:hover, .langSelect .select-options li.is-selected {
            color: #FB4958;
            background: #fff;
        }

        .langSelect .select-options li[rel=hide] {
            display: none;
        }

/* ....................................
8. inner-pages CSS 
.......................................*/
.main-innerpage {
    position: relative;
    bottom: 70px;
}

    .main-innerpage .innerpages {
        padding: 25px 70px;
        background-color: #ffffff;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        box-shadow: 0px 8px 46px 12px rgb(201 0 0 / 5%);
    }

        .main-innerpage .innerpages h2 {
            font-size: 40px;
            opacity: 80%;
        }

.dating-wapper .about-us-img {
    position: relative;
    padding-right: 66px;
}

    .dating-wapper .about-us-img .testimaonl-box {
        position: absolute;
        right: 0;
        bottom: 70px;
        padding: 30px 55px;
        max-width: 480px;
        background-color: #ffffff;
        border-radius: 5px;
        box-shadow: 0 -12px 46px 12px rgba(182, 14, 14, 0.0509803922);
    }

        .dating-wapper .about-us-img .testimaonl-box .icon {
            width: 26px;
            float: left;
            margin-right: 15px;
        }

            .dating-wapper .about-us-img .testimaonl-box .icon i {
                font-size: 26px;
                background: linear-gradient(to right, #fa2456, #fd735a);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
            }

        .dating-wapper .about-us-img .testimaonl-box .text {
            width: calc(100% - 41px);
            float: left;
        }

            .dating-wapper .about-us-img .testimaonl-box .text img {
                margin-top: 10px;
            }

.about-section .counter-box .counter-text {
    padding: 40px;
    background: #ffffff;
    box-shadow: 0 20px 46px 12px rgba(182, 14, 14, 0.0509803922);
    border-color: transparent;
}

    .about-section .counter-box .counter-text h4 {
        color: #3d3d3d;
        font-size: 25px;
        margin-bottom: 20px;
    }

    .about-section .counter-box .counter-text p {
        color: #3d3d3d;
    }

.main-pagination {
    width: 100%;
    float: left;
    margin-top: 55px;
}

    .main-pagination .pagination {
        width: 100%;
        max-width: 485px;
        height: 50px;
        margin: 0 auto;
        -moz-column-gap: 14px;
        column-gap: 14px;
        border-radius: 35px;
        box-shadow: 0 -12px 46px 12px rgba(182, 14, 14, 0.0509803922);
    }

    .main-pagination li a {
        display: inline-block;
        width: 50px;
        height: 50px;
        color: #111111;
        text-align: center;
        line-height: 50px;
        transition: all 0.5s;
        border-radius: 5px;
        position: relative;
        overflow: hidden;
        z-index: 2;
        transition: all 0.5s;
    }

        .main-pagination li a::after {
            content: "";
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, #fa2456, #fd735a);
            position: absolute;
            top: 0;
            z-index: -1;
            left: -100%;
            transition: all 0.5s;
        }

        .main-pagination li a:hover {
            color: #ffffff;
        }

            .main-pagination li a:hover::after {
                left: 0;
            }

    .main-pagination li:first-child a {
        width: 75px;
        border-right: 1px solid rgba(169, 169, 169, 0.3019607843);
        border-radius: 35px 0 0 35px;
    }

        .main-pagination li:first-child a:hover {
            background: linear-gradient(to right, #fa2456, #fd735a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .main-pagination li:first-child a::after {
            display: none;
        }

    .main-pagination li:last-child a {
        width: 75px;
        border-left: 1px solid rgba(169, 169, 169, 0.3019607843);
        border-radius: 0 35px 35px 0;
    }

        .main-pagination li:last-child a:hover {
            background: linear-gradient(to right, #fa2456, #fd735a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .main-pagination li:last-child a::after {
            display: none;
        }

.community-page .main-members-section {
    padding: 0;
    margin-top: 30px;
}

    .community-page .main-members-section .members-box .members-img .profile-status {
        position: absolute;
        display: inline-block;
        width: 210px;
        height: 35px;
        line-height: 35px;
        bottom: -17.5px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 35px;
        color: #ffffff;
        z-index: 4;
    }

        .community-page .main-members-section .members-box .members-img .profile-status.off {
            background: linear-gradient(to right, #fa2456, #fd735a);
        }

        .community-page .main-members-section .members-box .members-img .profile-status.active {
            background: #148b13;
        }

    .community-page .main-members-section .members-box .members-img .age {
        position: absolute;
        display: inline-block;
        right: 0;
        top: 30px;
        padding: 10px 20px 10px 40px;
        border-radius: 35px 0 0 35px;
        color: #ffffff;
        background: linear-gradient(to right, #fa2456, #fd735a);
        font-family: "Lato", sans-serif;
        z-index: 4;
    }

    .community-page .main-members-section .members-box .members-text {
        max-width: 267px;
        padding: 40px 0;
    }

        .community-page .main-members-section .members-box .members-text .font-color-pink {
            color: #fa2456;
            font-weight: 600;
        }

    .community-page .main-members-section .members-box:hover .members-text .font-color-pink {
        color: #ffffff;
    }

.search-text {
    padding: 50px 0;
}

    .search-text h2 {
        font-size: 35px;
        color: #111111;
        font-family: "Poppins", sans-serif;
        margin-bottom: 20px;
    }

    .search-text p {
        color: #838383;
    }

    .search-text .search-box {
        position: relative;
        padding: 25px 30px;
        margin: 30px 0;
        background-color: #ffffff;
        box-shadow: 0 -12px 46px 12px rgba(182, 14, 14, 0.0509803922);
    }

        .search-text .search-box input {
            width: 100%;
            height: 60px;
            border: none;
            outline: none;
            position: relative;
            padding: 0;
        }

            .search-text .search-box input::-moz-placeholder {
                font-size: 30px;
                opacity: 20%;
                color: #797979;
            }

            .search-text .search-box input::placeholder {
                font-size: 30px;
                opacity: 20%;
                color: #797979;
            }

        .search-text .search-box label {
            position: absolute;
            top: 50%;
            right: 30px;
            transform: translateY(-50%);
            font-size: 40px;
        }

    .search-text .search-result .top-tool {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #eae6db;
        padding-bottom: 15px;
    }

        .search-text .search-result .top-tool ul {
            display: flex;
            justify-content: flex-end;
            -moz-column-gap: 20px;
            column-gap: 20px;
        }

            .search-text .search-result .top-tool ul li a {
                font-size: 18px;
                color: #7a7a7a;
                transition: all 0.5s;
            }

                .search-text .search-result .top-tool ul li a.active, .search-text .search-result .top-tool ul li a:hover {
                    background: linear-gradient(to right, #fa2456, #fd735a);
                    -webkit-background-clip: text;
                    -webkit-text-fill-color: transparent;
                }

    .search-text .search-result .short-tool {
        display: flex;
        justify-content: flex-end;
        margin-top: 20px;
    }

        .search-text .search-result .short-tool .custum-select {
            width: 255px;
        }

    .search-text .search-result .main-members-section {
        margin-top: 20px;
    }

        .search-text .search-result .main-members-section .members-box .members-text {
            max-width: 320px;
            width: 85%;
        }

.main-error-wrapper {
    padding: 0 165px;
    background-image: url(../images/bg-404.png);
    background-position: top left;
    background-size: contain;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

    .main-error-wrapper .text-404 {
        align-items: flex-start;
        display: flex;
        row-gap: 10px;
        flex-direction: column;
        justify-content: center;
    }

        .main-error-wrapper .text-404 h1 {
            font-size: 260px;
            font-weight: 900;
            color: rgba(0, 0, 0, 0.8);
            position: relative;
        }

            .main-error-wrapper .text-404 h1::after {
                content: "";
                position: absolute;
                left: 177px;
                top: 52%;
                transform: translateY(-50%);
                width: 155px;
                height: 155px;
                border-radius: 50%;
                background: #ffffff;
            }

            .main-error-wrapper .text-404 h1::before {
                content: "";
                background-image: url(../images/heard-404.png);
                position: absolute;
                left: 191px;
                top: 35%;
                width: 127px;
                height: 115px;
                z-index: 1;
                animation-name: pulse-shrink;
                animation-duration: 0.3s;
                animation-timing-function: linear;
                animation-iteration-count: infinite;
                animation-direction: alternate;
            }

        .main-error-wrapper .text-404 h2 {
            font-family: "Poppins", sans-serif;
            font-size: 40px;
            line-height: 51px;
            max-width: 500px;
            color: #333333;
        }

        .main-error-wrapper .text-404 a {
            font-size: 20px;
        }

    .main-error-wrapper .air-balloon {
        position: absolute;
        right: 10%;
        bottom: 0;
        transform: translateY(280px);
        animation: message_move 8s linear infinite;
    }

        .main-error-wrapper .air-balloon.one {
            animation-delay: 1s;
        }

        .main-error-wrapper .air-balloon.two {
            animation-delay: 3s;
            right: 15%;
        }

        .main-error-wrapper .air-balloon.three {
            animation-delay: 5s;
        }

        .main-error-wrapper .air-balloon.foure {
            animation-delay: 7s;
            right: 15%;
        }

@keyframes message_move {
    0% {
        transform: translateY(280px);
    }

    100% {
        transform: translateY(-1080px);
    }
}

@keyframes pulse-shrink {
    to {
        transform: scale(0.9);
    }
}
/* ....................................
9. blog CSS 
.......................................*/
.blog-page {
    padding-top: 30px;
}

    .blog-page .blog-box {
        margin: 30px 0;
    }

    .blog-page .sidepannal {
        width: 100%;
        float: left;
    }

        .blog-page .sidepannal .pannal-box {
            width: 100%;
            float: left;
            background-color: #ffffff;
            box-shadow: 0 -12px 46px 12px rgba(182, 14, 14, 0.0509803922);
            margin-top: 30px;
            padding: 30px;
        }

            .blog-page .sidepannal .pannal-box h5 {
                color: #111111;
                font-size: 20px;
                margin-bottom: 20px;
            }

            .blog-page .sidepannal .pannal-box .pannal-content {
                width: 100%;
                float: left;
            }

                .blog-page .sidepannal .pannal-box .pannal-content .profile-setting li a {
                    display: inline-block;
                    width: 100%;
                    padding: 10px 33px 10px 0;
                    font-size: 18px;
                    transition: all 0.5s;
                }

                    .blog-page .sidepannal .pannal-box .pannal-content .profile-setting li a span {
                        display: inline-block;
                        width: 40px;
                        height: 40px;
                        border-radius: 50%;
                        text-align: center;
                        line-height: 40px;
                        background: #ffffff;
                        box-shadow: 0 20px 46px 12px rgba(182, 14, 14, 0.0509803922);
                        margin-right: 15px;
                        transition: all 0.5s;
                    }

                        .blog-page .sidepannal .pannal-box .pannal-content .profile-setting li a span i {
                            background: linear-gradient(to right, #fa2456, #fd735a);
                            -webkit-background-clip: text;
                            -webkit-text-fill-color: transparent;
                            transition: all 0.5s;
                        }

                    .blog-page .sidepannal .pannal-box .pannal-content .profile-setting li a.active, .blog-page .sidepannal .pannal-box .pannal-content .profile-setting li a:hover {
                        color: #fa2456;
                    }

                        .blog-page .sidepannal .pannal-box .pannal-content .profile-setting li a.active span, .blog-page .sidepannal .pannal-box .pannal-content .profile-setting li a:hover span {
                            background: #ffe0e7;
                        }

                            .blog-page .sidepannal .pannal-box .pannal-content .profile-setting li a.active span i, .blog-page .sidepannal .pannal-box .pannal-content .profile-setting li a:hover span i {
                                background: linear-gradient(to right, #fa2456, #fd735a);
                                -webkit-background-clip: text;
                                -webkit-text-fill-color: transparent;
                            }

                .blog-page .sidepannal .pannal-box .pannal-content .categories-list li {
                    padding: 5px 0;
                }

                    .blog-page .sidepannal .pannal-box .pannal-content .categories-list li a {
                        font-weight: 600;
                        color: #797979;
                        transition: all 0.5s;
                    }

                        .blog-page .sidepannal .pannal-box .pannal-content .categories-list li a i {
                            margin-right: 20px;
                        }

                        .blog-page .sidepannal .pannal-box .pannal-content .categories-list li a:hover {
                            color: #fa2456;
                        }

                .blog-page .sidepannal .pannal-box .pannal-content .blog-list {
                    width: 100%;
                    float: left;
                }

                    .blog-page .sidepannal .pannal-box .pannal-content .blog-list .blog-box {
                        width: 100%;
                        float: left;
                        margin: 0;
                        padding: 30px 0;
                        align-items: center;
                        display: flex;
                    }

                        .blog-page .sidepannal .pannal-box .pannal-content .blog-list .blog-box .blog-list-img {
                            width: 130px;
                            float: left;
                            margin-right: 20px;
                        }

                        .blog-page .sidepannal .pannal-box .pannal-content .blog-list .blog-box .blog-list-text {
                            width: calc(100% - 150px);
                            float: left;
                        }

                            .blog-page .sidepannal .pannal-box .pannal-content .blog-list .blog-box .blog-list-text .h6 {
                                font-size: 18px;
                                color: #111111;
                                display: inline-block;
                                width: 100%;
                                margin-bottom: 10px;
                                transition: all 0.5s;
                            }

                            .blog-page .sidepannal .pannal-box .pannal-content .blog-list .blog-box .blog-list-text span {
                                color: #797979;
                            }

                        .blog-page .sidepannal .pannal-box .pannal-content .blog-list .blog-box:last-child {
                            padding-bottom: 0;
                        }

                        .blog-page .sidepannal .pannal-box .pannal-content .blog-list .blog-box:hover .blog-list-text .h6 {
                            color: #fa2456;
                        }

                        .blog-page .sidepannal .pannal-box .pannal-content .blog-list .blog-box + .blog-box {
                            border-top: 1px solid rgba(121, 121, 121, 0.2);
                        }

                .blog-page .sidepannal .pannal-box .pannal-content .tag-list {
                    display: flex;
                    flex-wrap: wrap;
                    -moz-column-gap: 20px;
                    column-gap: 20px;
                    row-gap: 15px;
                }

                    .blog-page .sidepannal .pannal-box .pannal-content .tag-list li a {
                        padding: 10px 20px;
                        display: inline-block;
                        color: #707070;
                        border-radius: 35px;
                        background-color: #f1f1f1;
                        position: relative;
                        z-index: 2;
                        overflow: hidden;
                        transition: all 0.5s;
                    }

                        .blog-page .sidepannal .pannal-box .pannal-content .tag-list li a::after {
                            content: "";
                            position: absolute;
                            width: 100%;
                            height: 100%;
                            left: -100%;
                            top: 0;
                            border-radius: 35px;
                            background: linear-gradient(to right, #fa2456, #fd735a);
                            z-index: -1;
                            transition: all 0.5s;
                        }

                        .blog-page .sidepannal .pannal-box .pannal-content .tag-list li a:hover {
                            color: #ffffff;
                        }

                            .blog-page .sidepannal .pannal-box .pannal-content .tag-list li a:hover::after {
                                left: 0;
                            }

                .blog-page .sidepannal .pannal-box .pannal-content .custum-select {
                    margin-bottom: 20px;
                    width: 100%;
                    float: left;
                }

                    .blog-page .sidepannal .pannal-box .pannal-content .custum-select .dropdown::before {
                        content: "";
                        font-family: "Font Awesome 5 Free";
                        font-weight: 900;
                        background: linear-gradient(to right, #fa2456, #fd735a);
                        -webkit-background-clip: text;
                        -webkit-text-fill-color: transparent;
                        font-size: 16px;
                        margin-right: 12px;
                    }

                    .blog-page .sidepannal .pannal-box .pannal-content .custum-select .dropdown:hover::before, .blog-page .sidepannal .pannal-box .pannal-content .custum-select .dropdown:focus::before, .blog-page .sidepannal .pannal-box .pannal-content .custum-select .dropdown.open::before {
                        color: #ffffff;
                        -webkit-text-fill-color: #ffffff;
                    }

                    .blog-page .sidepannal .pannal-box .pannal-content .custum-select.your-gender .dropdown::before {
                        content: "\f007";
                    }

                    .blog-page .sidepannal .pannal-box .pannal-content .custum-select.male .dropdown::before {
                        content: "\f004";
                    }

                    .blog-page .sidepannal .pannal-box .pannal-content .custum-select.age .dropdown::before {
                        content: "\f073";
                    }

                    .blog-page .sidepannal .pannal-box .pannal-content .custum-select.country .dropdown::before {
                        content: "\f3c5";
                    }

                    .blog-page .sidepannal .pannal-box .pannal-content .custum-select.interests .dropdown::before {
                        content: "\f135";
                    }

                .blog-page .sidepannal .pannal-box .pannal-content .main-btn {
                    width: 100%;
                }

                .blog-page .sidepannal .pannal-box .pannal-content .add-friends {
                    display: flex;
                    flex-wrap: wrap;
                    -moz-column-count: 2;
                    column-count: 2;
                    -moz-column-gap: 30px;
                    column-gap: 30px;
                    row-gap: 30px;
                }

                    .blog-page .sidepannal .pannal-box .pannal-content .add-friends li {
                        position: relative;
                        width: calc(50% - 15px);
                    }

                        .blog-page .sidepannal .pannal-box .pannal-content .add-friends li img {
                            width: 100%;
                        }

                        .blog-page .sidepannal .pannal-box .pannal-content .add-friends li .add-icon {
                            position: absolute;
                            top: 10px;
                            right: 10px;
                            width: 18px;
                            height: 18px;
                            line-height: 18px;
                            background: linear-gradient(to right, #fa2456, #fd735a);
                            color: #ffffff;
                            font-size: 10px;
                            border-radius: 50%;
                            text-align: center;
                            transition: all 0.5s;
                        }

                            .blog-page .sidepannal .pannal-box .pannal-content .add-friends li .add-icon:hover {
                                transform: scale(1.2);
                            }

.blog-single-page .blog-box .blog-text {
    width: 100%;
    float: left;
    padding: 30px 25px 20px;
}

    .blog-single-page .blog-box .blog-text .tag-list {
        max-width: 259px;
    }

        .blog-single-page .blog-box .blog-text .tag-list li {
            min-width: auto;
        }

        .blog-single-page .blog-box .blog-text .tag-list::after {
            left: 47%;
        }

    .blog-single-page .blog-box .blog-text .h4 {
        font-size: 25px;
    }

.blog-single-page .blog-box .comment {
    width: 100%;
    float: left;
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to right, #fa2456, #fd735a);
}

    .blog-single-page .blog-box .comment .icon {
        width: 43px;
        float: left;
        margin-right: 20px;
    }

    .blog-single-page .blog-box .comment .text {
        width: calc(100% - 190px);
        float: left;
    }

        .blog-single-page .blog-box .comment .text p {
            font-size: 20px;
            color: #ffffff;
        }

.about-admin {
    width: 100%;
    float: left;
    padding: 30px 35px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    box-shadow: 0 -12px 46px 12px rgba(182, 14, 14, 0.0509803922);
}

    .about-admin .admin-img {
        width: 124px;
        float: left;
        margin-right: 30px;
    }

    .about-admin .admin-text {
        width: calc(100% - 154px);
        float: left;
    }

        .about-admin .admin-text h4 {
            margin-bottom: 15px;
        }

.comment_wrapper {
    width: 100%;
    float: left;
    margin-top: 50px;
}

    .comment_wrapper h4 {
        font-size: 25px;
        color: #3a3a3a;
    }

    .comment_wrapper .comment_box {
        width: 100%;
        float: left;
        display: flex;
        align-items: center;
        padding: 30px 0;
        border-bottom: 1px solid #e8e8e8;
    }

        .comment_wrapper .comment_box .comment_img {
            width: 100px;
            float: left;
            margin-right: 30px;
        }

        .comment_wrapper .comment_box .comment-content {
            width: calc(100% - 130px);
            float: left;
        }

            .comment_wrapper .comment_box .comment-content h5 {
                font-size: 22px;
                color: #2f2f2f;
            }

                .comment_wrapper .comment_box .comment-content h5 i {
                    font-size: 16px;
                    line-height: 26px;
                }

                    .comment_wrapper .comment_box .comment-content h5 i a {
                        text-decoration: underline;
                    }

                        .comment_wrapper .comment_box .comment-content h5 i a:hover {
                            color: #fa2456;
                        }

            .comment_wrapper .comment_box .comment-content p {
                color: #777777;
            }

        .comment_wrapper .comment_box.side_comment_box {
            padding-left: 65px;
        }

    .comment_wrapper .comment-form {
        width: 100%;
        float: left;
        margin-top: 30px;
    }

        .comment_wrapper .comment-form .comment_input {
            width: 100%;
            float: left;
            margin-top: 30px;
        }

            .comment_wrapper .comment-form .comment_input .rating {
                display: flex;
                align-items: center;
                -moz-column-gap: 10px;
                column-gap: 10px;
                margin-bottom: 30px;
            }

                .comment_wrapper .comment-form .comment_input .rating h3 {
                    font-size: 20px;
                }

            .comment_wrapper .comment-form .comment_input .form_input input, .comment_wrapper .comment-form .comment_input .form_input textarea {
                width: 100%;
                height: 45px;
                border: 1px solid #e8e8e8;
                color: #727272;
                padding-left: 20px;
                outline: none;
                margin-bottom: 20px;
            }

            .comment_wrapper .comment-form .comment_input .form_input textarea {
                height: 135px;
                padding-top: 15px;
            }

.blog-btn button {
    line-height: 30px;
}

/* ....................................
10. contact CSS 
.......................................*/
.main-form {
    padding: 50px;
    padding-left: 0;
    position: relative;
    z-index: 4;
    width: 100%;
    float: left;
}

    .main-form h4 {
        font-size: 20px;
        color: #191919;
        font-weight: bold;
        margin-bottom: 10px;
    }

    .main-form form {
        float: left;
        width: 100%;
    }

    .main-form .form-input {
        margin-top: 20px;
        width: 100%;
        position: relative;
    }

        .main-form .form-input input, .main-form .form-input textarea {
            width: 100%;
            height: 50px;
            border: 1px solid #efefef;
            padding-left: 30px;
            outline: none;
        }

            .main-form .form-input input:focus, .main-form .form-input textarea:focus {
                border-color: #fa2456;
            }

                .main-form .form-input input:focus + label, .main-form .form-input textarea:focus + label {
                    background: linear-gradient(to right, #fa2456, #fd735a);
                    -webkit-background-clip: text;
                    -webkit-text-fill-color: transparent;
                }

        .main-form .form-input textarea {
            height: 160px;
            padding-top: 20px;
        }

            .main-form .form-input textarea + label {
                top: 20px;
                transform: translateY(0);
            }

        .main-form .form-input label {
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: #c0c0c0;
        }

        .main-form .form-input button.main-btn {
            width: 100%;
        }

.contact-section {
    padding: 100px 0;
}

    .contact-section .w-100.float-start.position-relative {
        margin-top: 60px;
    }

    .contact-section .form-box {
        margin: 0 15px;
        background-color: #ffffff;
        box-shadow: 0 -12px 46px 12px rgba(182, 14, 14, 0.0509803922);
    }

    .contact-section .contact-detail {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 0;
        width: 100%;
    }

        .contact-section .contact-detail .contact-detail-box {
            background-color: #ffffff;
            background-image: url("../images/map-bg.png");
            background-size: cover;
            background-position: center;
            border: 1px solid #fa2456;
            padding: 60px;
        }

            .contact-section .contact-detail .contact-detail-box h4 {
                font-size: 20px;
                font-weight: bold;
                margin-bottom: 20px;
                color: #707070;
            }

            .contact-section .contact-detail .contact-detail-box .contact-detail-list .contact-detail-text {
                padding: 20px 0;
                border-top: 1px solid #d9d9d9;
                display: flex;
            }

                .contact-section .contact-detail .contact-detail-box .contact-detail-list .contact-detail-text:first-child {
                    border-top: none;
                }

                .contact-section .contact-detail .contact-detail-box .contact-detail-list .contact-detail-text p {
                    width: calc(100% - 80px);
                    float: left;
                    color: #707070;
                }

                    .contact-section .contact-detail .contact-detail-box .contact-detail-list .contact-detail-text p:first-child {
                        width: 80px;
                    }

/* ....................................
11. profile CSS 
.......................................*/
.main-profile {
    padding-top: 60px;
    padding-bottom: 30px;
}

    .main-profile .cover-img {
        width: 100%;
        float: left;
        height: 370px;
        position: relative;
        background-image: url("../images/cover-img.jpg");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

        .main-profile .cover-img ul.media-list2 {
            display: flex;
            -moz-column-gap: 7px;
            column-gap: 7px;
            position: absolute;
            bottom: 40px;
            right: 40px;
        }

        .main-profile .cover-img .edit-img {
            position: absolute;
            top: 40px;
            right: 0;
        }

            .main-profile .cover-img .edit-img label {
                display: inline-block;
                width: 75px;
                height: 50px;
                line-height: 50px;
                text-align: center;
                background-color: #ffffff;
                border-radius: 30px 0 0 30px;
                font-size: 16px;
                cursor: pointer;
            }

                .main-profile .cover-img .edit-img label i {
                    background: linear-gradient(to right, #fa2456, #fd735a);
                    -webkit-background-clip: text;
                    -webkit-text-fill-color: transparent;
                }

            .main-profile .cover-img .edit-img input {
                position: absolute;
                right: 100000%;
            }

    .main-profile .profile-content {
        width: 100%;
        float: left;
        background-color: #ffffff;
        box-shadow: 0 -12px 46px 12px rgba(182, 14, 14, 0.0509803922);
        border-radius: 0 0 1px 1px;
    }

        .main-profile .profile-content .profile-details {
            width: 100%;
            float: left;
            display: flex;
            align-items: center;
            border-bottom: 1px solid #f0f0f0;
        }

            .main-profile .profile-content .profile-details .left {
                float: left;
                width: 53%;
                padding: 0 50px 25px;
                display: flex;
                align-items: baseline;
                border-right: 1px solid #f0f0f0;
            }

            .main-profile .profile-content .profile-details .right {
                float: left;
                width: 47%;
                padding: 0 50px;
            }

                .main-profile .profile-content .profile-details .right ul {
                    display: flex;
                    align-items: center;
                    flex-wrap: wrap;
                    justify-content: space-between;
                    -moz-column-gap: 35px;
                    column-gap: 35px;
                    -moz-column-gap: 15px;
                    column-gap: 15px;
                }

                    .main-profile .profile-content .profile-details .right ul .main-btn {
                        width: 120px;
                    }

                    .main-profile .profile-content .profile-details .right ul li .h2 {
                        font-weight: bold;
                        font-size: 30px;
                        color: #393939;
                        font-family: "Poppins";
                    }

                    .main-profile .profile-content .profile-details .right ul li .menu {
                        color: #393939;
                    }

            .main-profile .profile-content .profile-details .profile-img {
                width: 180px;
                height: 180px;
                float: left;
                border-radius: 50%;
                padding: 6px;
                margin-right: 30px;
                background-color: #ffffff;
                margin-top: -43px;
                z-index: 1;
            }

                .main-profile .profile-content .profile-details .profile-img img {
                    border-radius: 50%;
                }

            .main-profile .profile-content .profile-details .profile-name {
                width: calc(100% - 210px);
                float: left;
            }

                .main-profile .profile-content .profile-details .profile-name h3 {
                    color: #1f1f1f;
                    font-size: 30px;
                    margin-bottom: 5px;
                }

                .main-profile .profile-content .profile-details .profile-name a {
                    display: inline-block;
                    margin-top: 5px;
                }

                    .main-profile .profile-content .profile-details .profile-name a i {
                        margin-right: 5px;
                        background: linear-gradient(to right, #fa2456, #fd735a);
                        -webkit-background-clip: text;
                        -webkit-text-fill-color: transparent;
                    }

                    .main-profile .profile-content .profile-details .profile-name a:hover {
                        color: #fa2456;
                    }

            .main-profile .profile-content .profile-details span {
                color: #838383;
            }

        .main-profile .profile-content .about-photo {
            width: 100%;
            float: left;
            padding: 30px 50px;
        }

            .main-profile .profile-content .about-photo h4 {
                color: #111111;
                font-size: 20px;
            }

            .main-profile .profile-content .about-photo ul {
                display: flex;
                flex-wrap: wrap;
                margin-top: 30px;
                -moz-column-gap: 30px;
                column-gap: 30px;
                row-gap: 30px;
            }

.tabbox {
    background-color: #ffffff;
    box-shadow: 0 -12px 46px 12px rgba(182, 14, 14, 0.0509803922);
}

    .tabbox .position-relative {
        padding: 0 40px;
        overflow-x: auto;
        background-color: #ffffff;
    }

        .tabbox .position-relative::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            min-width: 370px;
            width: 100%;
            height: 2px;
            z-index: 1;
            background-color: #f0f0f0;
        }

    .tabbox .nav {
        min-width: 350px;
    }

        .tabbox .nav .slider {
            position: absolute;
            height: 2px;
            bottom: 0px;
            left: 40px;
            width: 76.7344px;
            z-index: 9;
            background: linear-gradient(to right, #fa2456, #fd735a);
            transition: all 0.5s;
        }

        .tabbox .nav li a {
            padding: 18.5px 15px;
            display: inline-block;
            transition: all 0.5s;
        }

            .tabbox .nav li a.active, .tabbox .nav li a:hover {
                color: #fa2456;
            }

    .tabbox .tab-content {
        padding: 30px 0;
        max-height: 1121px;
        overflow-y: auto;
        /* Track */
        /* Handle */
    }

        .tabbox .tab-content::-webkit-scrollbar {
            width: 2px;
            background-color: #b6b5b5;
        }

        .tabbox .tab-content::-webkit-scrollbar-thumb {
            background: linear-gradient(to right, #fa2456, #fd735a);
        }

        .tabbox .tab-content .tab-pane:nth-child(2) {
            padding: 0 40px;
        }

        .tabbox .tab-content .tab-pane:nth-child(3) {
            padding: 0 30px;
        }

        .tabbox .tab-content .tab-pane:nth-child(4) {
            padding: 0 30px;
        }

        .tabbox .tab-content .tab-pane:nth-child(5) {
            padding: 0 30px;
        }

        .tabbox .tab-content .profile-tab {
            padding: 0 40px 30px;
        }

            .tabbox .tab-content .profile-tab h4 {
                color: #111111;
                font-size: 20px;
                margin-bottom: 20px;
                padding-right: 25px;
                font-weight: 500;
                font-family: "Poppins", sans-serif;
                position: relative;
            }

                .tabbox .tab-content .profile-tab h4 .edit-icon {
                    position: absolute;
                    right: 0px;
                    top: 50%;
                    transform: translateY(-50%);
                    font-size: 20px;
                    color: #000000;
                }

            .tabbox .tab-content .profile-tab .video-post {
                margin-top: 30px;
            }

                .tabbox .tab-content .profile-tab .video-post iframe {
                    width: 100%;
                    height: 310px;
                }

            .tabbox .tab-content .profile-tab + .profile-tab {
                border-top: 1px solid #f0f0f0;
                padding-top: 30px;
            }

            .tabbox .tab-content .profile-tab ul {
                width: 50%;
                float: left;
            }

                .tabbox .tab-content .profile-tab ul li {
                    color: #838383;
                    font-size: 18px;
                    padding: 5px 0;
                }

                    .tabbox .tab-content .profile-tab ul li p {
                        width: 50%;
                        float: right;
                        font-size: 18px;
                        color: #111111;
                    }

        .tabbox .tab-content .add-post {
            border: 1px solid #e9e9e9;
            margin-bottom: 30px;
        }

            .tabbox .tab-content .add-post .post-type-tab {
                display: flex;
                flex-wrap: wrap;
                border-bottom: 1px solid #e9e9e9;
            }

                .tabbox .tab-content .add-post .post-type-tab li a {
                    padding: 15px 22px;
                    display: inline-block;
                    color: #111111;
                }

                    .tabbox .tab-content .add-post .post-type-tab li a i {
                        margin-right: 10px;
                        background: linear-gradient(to right, #fa2456, #fd735a);
                        -webkit-background-clip: text;
                        -webkit-text-fill-color: transparent;
                    }

                    .tabbox .tab-content .add-post .post-type-tab li a.active {
                        background: linear-gradient(to right, #fa2456, #fd735a);
                        color: #ffffff;
                    }

                        .tabbox .tab-content .add-post .post-type-tab li a.active i {
                            -webkit-text-fill-color: #ffffff;
                        }

                .tabbox .tab-content .add-post .post-type-tab li + li a {
                    border-left: 1px solid #e9e9e9;
                }

            .tabbox .tab-content .add-post .post-type {
                padding: 25px 30px;
            }

                .tabbox .tab-content .add-post .post-type .text {
                    display: flex;
                    flex-wrap: wrap;
                    align-items: center;
                }

                    .tabbox .tab-content .add-post .post-type .text .profile-img {
                        width: 56px;
                        float: left;
                    }

                    .tabbox .tab-content .add-post .post-type .text textarea {
                        width: calc(100% - 56px - 95px);
                        border: none;
                        outline: none;
                        padding: 20px 20px 0 20px;
                        resize: none;
                    }

                    .tabbox .tab-content .add-post .post-type .text .main-btn {
                        width: 95px;
                        float: left;
                    }

        .tabbox .tab-content .posts-box {
            border: 1px solid #e9e9e9;
            padding: 30px;
            margin-bottom: 30px;
        }

            .tabbox .tab-content .posts-box .profile-details {
                display: flex;
                flex-wrap: wrap;
                align-items: center;
                margin-bottom: 15px;
            }

                .tabbox .tab-content .posts-box .profile-details .profile-img {
                    width: 56px;
                    float: left;
                    margin-right: 20px;
                }

                .tabbox .tab-content .posts-box .profile-details .profile-name {
                    width: calc(100% - 76px - 10px);
                    float: left;
                }

                    .tabbox .tab-content .posts-box .profile-details .profile-name h5 {
                        font-size: 20px;
                        color: #111111;
                        font-family: "Poppins", sans-serif;
                    }

                    .tabbox .tab-content .posts-box .profile-details .profile-name span {
                        color: #393939;
                        opacity: 50%;
                        margin-top: 2px;
                        display: inline-block;
                    }

                .tabbox .tab-content .posts-box .profile-details .options {
                    width: 10px;
                    float: right;
                }

                    .tabbox .tab-content .posts-box .profile-details .options i {
                        color: #838383;
                    }

            .tabbox .tab-content .posts-box .post-caption {
                margin-bottom: 15px;
            }

            .tabbox .tab-content .posts-box .post-img {
                text-align: center;
                margin-bottom: 20px;
            }

                .tabbox .tab-content .posts-box .post-img img {
                    border: 1px solid #e2e2e2;
                    width: 100%;
                }

            .tabbox .tab-content .posts-box .like-comment-options {
                display: flex;
                justify-content: space-between;
            }

                .tabbox .tab-content .posts-box .like-comment-options li a .iocn {
                    background: linear-gradient(to right, #fa2456, #fd735a);
                    -webkit-background-clip: text;
                    -webkit-text-fill-color: transparent;
                    margin-right: 5px;
                    display: inline-block;
                }

                .tabbox .tab-content .posts-box .like-comment-options li a .text {
                    color: #838383;
                    transition: all 0.5s;
                }

                .tabbox .tab-content .posts-box .like-comment-options li a + a {
                    margin-left: 15px;
                }

                .tabbox .tab-content .posts-box .like-comment-options li a:hover .text {
                    color: #fa2456;
                }

            .tabbox .tab-content .posts-box .like-comment-count {
                margin-top: 15px;
                display: flex;
                justify-content: space-between;
            }

                .tabbox .tab-content .posts-box .like-comment-count li a {
                    color: #111111;
                }

                .tabbox .tab-content .posts-box .like-comment-count li:last-child a {
                    color: #838383;
                }

        .tabbox .tab-content .friends-box {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            margin-bottom: 30px;
            padding: 30px;
            box-shadow: 0 -12px 46px 12px rgba(0, 0, 0, 0.0509803922);
        }

            .tabbox .tab-content .friends-box .friends-img {
                width: 144px;
                float: left;
                margin-right: 25px;
            }

            .tabbox .tab-content .friends-box .friend-name {
                width: calc(100% - 170px - 160px);
                float: left;
            }

            .tabbox .tab-content .friends-box .main-btn {
                width: 160px;
                float: right;
            }

.main-my-profile {
    padding: 100px 0;
}

    .main-my-profile .profile-box {
        background: #ffffff;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        box-shadow: 0 -12px 34px 3px rgba(0, 0, 0, 0.0784313725);
    }

        .main-my-profile .profile-box .profile-box-1 {
            width: 50%;
        }

        .main-my-profile .profile-box .profile-name {
            padding: 50px 30px 50px;
            border-bottom: 1px solid #e2e2e2;
        }

            .main-my-profile .profile-box .profile-name h3 {
                font-size: 32px;
                color: rgba(0, 0, 0, 0.8);
                margin-bottom: 10px;
            }

            .main-my-profile .profile-box .profile-name .font-color-pink {
                font-size: 20px;
                color: #fa2456;
                margin-top: 0px;
            }

            .main-my-profile .profile-box .profile-name span {
                color: #797979;
                margin-top: 5px;
                display: inline-block;
            }

        .main-my-profile .profile-box .profile-content {
            max-width: 494px;
            padding: 60px 30px;
            margin: 0 auto;
        }

            .main-my-profile .profile-box .profile-content .media-list {
                margin-top: 60px;
            }

                .main-my-profile .profile-box .profile-content .media-list li {
                    position: relative;
                }

                    .main-my-profile .profile-box .profile-content .media-list li::after {
                        content: attr(data-tooltip);
                        position: absolute;
                        top: -37px;
                        left: 50%;
                        transform: translate(-50%, -50px);
                        padding: 6px 10px;
                        border: 1px solid #d5d5d5;
                        border-radius: 5px;
                        background-color: #ffffff;
                        box-shadow: 0 20px 46px 12px rgba(182, 14, 14, 0.0509803922);
                        opacity: 0;
                        visibility: hidden;
                        transition: all 0.5s;
                    }

                    .main-my-profile .profile-box .profile-content .media-list li:hover::after {
                        top: -37px;
                        transform: translate(-50%, 0px);
                        opacity: 1;
                        visibility: visible;
                    }

                    .main-my-profile .profile-box .profile-content .media-list li a {
                        width: 65px;
                        height: 65px;
                        line-height: 65px;
                        font-size: 24px;
                        color: #fa2456;
                        background-color: transparent;
                        border: 1px solid #e2e2e2;
                    }

                        .main-my-profile .profile-box .profile-content .media-list li a:hover {
                            color: #ffffff;
                            border-color: transparent;
                        }

            .main-my-profile .profile-box .profile-content .btn-list {
                display: flex;
                -moz-column-gap: 30px;
                column-gap: 30px;
                justify-content: center;
                margin-top: 60px;
            }

                .main-my-profile .profile-box .profile-content .btn-list li a {
                    width: 165px;
                }

    .main-my-profile .match-slider .owl-nav button {
        width: 35px;
        height: 60px;
        background-color: #ffffff;
        font-size: 44px;
        color: #fa2456;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        overflow: hidden;
        z-index: 2;
        box-shadow: 0 -12px 46px 12px rgba(182, 14, 14, 0.1019607843);
        transition: all 0.5s;
    }

        .main-my-profile .match-slider .owl-nav button span {
            padding-bottom: 5px;
            display: inline-block;
        }

        .main-my-profile .match-slider .owl-nav button::after {
            content: "";
            position: absolute;
            width: 101%;
            height: 101%;
            left: -101%;
            top: 0;
            background: linear-gradient(to right, #fa2456, #fd735a);
            z-index: -1;
            transition: all 0.5s;
        }

        .main-my-profile .match-slider .owl-nav button.owl-prev {
            border-radius: 35px 0 0 35px;
            left: -35px;
            padding-left: 5px;
        }

            .main-my-profile .match-slider .owl-nav button.owl-prev span {
                padding-left: 5px;
            }

            .main-my-profile .match-slider .owl-nav button.owl-prev::after {
                left: auto;
                right: -101%;
                border-radius: 35px 0 0 35px;
            }

        .main-my-profile .match-slider .owl-nav button.owl-next {
            border-radius: 0 35px 35px 0;
            right: -35px;
        }

            .main-my-profile .match-slider .owl-nav button.owl-next span {
                padding-right: 5px;
            }

            .main-my-profile .match-slider .owl-nav button.owl-next::after {
                border-radius: 0 35px 35px 0;
            }

        .main-my-profile .match-slider .owl-nav button:hover {
            color: #ffffff;
        }

            .main-my-profile .match-slider .owl-nav button:hover.owl-prev::after {
                right: 0;
                left: auto;
            }

            .main-my-profile .match-slider .owl-nav button:hover::after {
                left: 0;
            }

.my-profile .heading h2 {
    font-size: 28px;
    line-height: 30px;
}

.my-profile .friends-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 30px;
    padding: 30px;
    box-shadow: 0 -12px 46px 12px rgba(0, 0, 0, 0.0509803922);
}

    .my-profile .friends-box .friends-img {
        width: 144px;
        float: left;
        margin-right: 25px;
    }

    .my-profile .friends-box .friend-name {
        width: calc(100% - 170px - 160px);
        float: left;
    }

    .my-profile .friends-box .main-btn {
        width: 160px;
        float: right;
    }

.my-profile .request-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 15px;
}

    .my-profile .request-btn .custom-button {
        margin-left: 0;
    }

.my-profile .input-info-box {
    background-color: #ffffff;
    box-shadow: 0 -12px 46px 12px rgba(182, 14, 14, 0.0509803922);
    padding: 25px 30px 30px;
}

    .my-profile .input-info-box .header {
        font-size: 20px;
        opacity: 80%;
        font-weight: 500;
        line-height: 30px;
        margin-bottom: 20px;
    }

    .my-profile .input-info-box .content a:hover {
        color: #fa2456;
    }

    .my-profile .input-info-box .content div div:last-child .my-input-box {
        margin-bottom: 0;
    }

    .my-profile .input-info-box .content .my-input-box {
        margin-bottom: 30px;
    }

        .my-profile .input-info-box .content .my-input-box label {
            font-size: 14px;
            color: #111111;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .my-profile .input-info-box .content .my-input-box input {
            width: 100%;
            height: 50px;
            padding: 0px 20px;
            outline: none;
            border: 1px solid rgba(0, 0, 0, 0.1);
        }

        .my-profile .input-info-box .content .my-input-box textarea {
            width: 100%;
            height: 120px;
            padding: 10px 20px;
            outline: none;
            border: 1px solid rgba(0, 0, 0, 0.1);
        }

        .my-profile .input-info-box .content .my-input-box .custum-select .dropdown {
            float: none;
        }

    .my-profile .input-info-box .content .my-notification-box {
        background: #ffe0e7;
        padding: 20px;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
    }

        .my-profile .input-info-box .content .my-notification-box .left {
            flex: 1;
        }

            .my-profile .input-info-box .content .my-notification-box .left .top {
                display: flex;
                align-items: center;
            }

                .my-profile .input-info-box .content .my-notification-box .left .top .icon {
                    width: 40px;
                    height: 40px;
                    background: #ffffff;
                    line-height: 40px;
                    border-radius: 50%;
                    text-align: center;
                    margin-right: 20px;
                    font-size: 16px;
                    box-shadow: 0 -12px 46px 12px rgba(182, 14, 14, 0.0509803922);
                }

                    .my-profile .input-info-box .content .my-notification-box .left .top .icon i {
                        background: linear-gradient(to right, #fa2456, #fd735a);
                        -webkit-background-clip: text;
                        -webkit-text-fill-color: transparent;
                    }

                .my-profile .input-info-box .content .my-notification-box .left .top h5 {
                    font-size: 18px;
                    font-weight: 600;
                    margin-bottom: 0px;
                }

            .my-profile .input-info-box .content .my-notification-box .left .bottom {
                margin-top: 10px;
                font-size: 16px;
                color: #737171;
            }

        .my-profile .input-info-box .content .my-notification-box.end-box {
            margin-bottom: 0;
        }

.gallery {
    display: flex;
    flex-wrap: wrap;
    margin: -1rem -1rem;
}

    .gallery .gallery-item {
        flex: 1 0 24rem;
        margin: 1rem;
        box-shadow: 0.3rem 0.4rem 0.4rem rgba(0, 0, 0, 0.4);
        overflow: hidden;
    }

        .gallery .gallery-item .gallery-image {
            display: block;
            width: 100%;
            height: 100%;
            -o-object-fit: cover;
            object-fit: cover;
            transition: transform 400ms ease-out;
        }

            .gallery .gallery-item .gallery-image:hover {
                transform: scale(1.15);
            }

@supports (display: grid) {
    .gallery {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(20%, 1fr));
        grid-gap: 2rem;
    }

    .gallery,
    .gallery-item {
        margin: 0;
    }
}

.main-profile .profile-content .profile-details .right ul.dropdown-menu {
    display: none;
}

    .main-profile .profile-content .profile-details .right ul.dropdown-menu.show {
        display: block;
    }

    .main-profile .profile-content .profile-details .right ul.dropdown-menu .dropdown-item.active, .main-profile .profile-content .profile-details .right ul.dropdown-menu .dropdown-item:active, .main-profile .profile-content .profile-details .right ul.dropdown-menu .custum-select .dropdown-item.dropdown.open, .custum-select .main-profile .profile-content .profile-details .right ul.dropdown-menu .dropdown-item.dropdown.open, .main-profile .profile-content .profile-details .right ul.dropdown-menu .dropdown-item:hover, .main-profile .profile-content .profile-details .right ul.dropdown-menu .dropdown-item:focus {
        color: #fff;
        text-decoration: none;
        background-color: #fa2456;
        background-image: linear-gradient(to right, #fa2456, #fd735a, #fa2456, #fd735a);
    }

.main-profile .profile-content .profile-details .right ul.dropdown-menu {
    border: 0;
    border-radius: 8px;
    text-align: left;
    background-color: #ffffff;
    box-shadow: 0 -12px 46px 12px rgba(182, 14, 14, 0.05);
    transition: all 300ms ease;
}

.searchDropClose {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    display: none;
}

    .searchDropClose.open {
        display: block;
    }

.post-type-tab .nav-link:focus, .post-type-tab .nav-link:hover {
    border-color: transparent;
}

.post-type-tab .nav-item.show .nav-link, .post-type-tab .nav-link.active {
    border-color: transparent;
}

.post-type-tab .nav-link {
    border: 1px solid transparent;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.jquery-uploader-select-card:hover {
    border-color: #fa3257;
    cursor: pointer;
}

.add-post .tab-content .tab-pane .main-btn {
    width: 150px;
}

/* ....................................
12. chatbox CSS 
.......................................*/
.main-chat-box {
    padding: 50px 0;
}

    .main-chat-box .chat-box {
        background-color: #ffffff;
    }

        .main-chat-box .chat-box .top-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border: 1px solid #ebecf9;
            padding: 20px 40px;
        }

            .main-chat-box .chat-box .top-bar > div {
                display: flex;
                flex-wrap: wrap;
                align-items: center;
                -moz-column-gap: 20px;
                column-gap: 20px;
            }

                .main-chat-box .chat-box .top-bar > div a {
                    color: #000000;
                    font-size: 20px;
                    opacity: 80%;
                    transition: all 0.5s;
                }

                    .main-chat-box .chat-box .top-bar > div a:hover, .main-chat-box .chat-box .top-bar > div a.active {
                        background: linear-gradient(to right, #fa2456, #fd735a);
                        -webkit-background-clip: text;
                        -webkit-text-fill-color: transparent;
                    }

                .main-chat-box .chat-box .top-bar > div .chat-search {
                    position: relative;
                }

                    .main-chat-box .chat-box .top-bar > div .chat-search input {
                        width: 280px;
                        height: 35px;
                        padding-left: 40px;
                        border: 1px solid #ebecf9;
                        border-radius: 35px;
                        outline: none;
                    }

                        .main-chat-box .chat-box .top-bar > div .chat-search input::-moz-placeholder {
                            color: #ebecf9;
                        }

                        .main-chat-box .chat-box .top-bar > div .chat-search input::placeholder {
                            color: #ebecf9;
                        }

                    .main-chat-box .chat-box .top-bar > div .chat-search label {
                        position: absolute;
                        left: 15px;
                        top: 50%;
                        transform: translateY(-50%);
                        color: #ebecf9;
                    }

        .main-chat-box .chat-box .main-chat {
            display: flex;
            flex-wrap: wrap;
        }

            .main-chat-box .chat-box .main-chat .chat-tab {
                width: 190px;
                float: left;
                text-align: center;
                box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.1019607843);
            }

                .main-chat-box .chat-box .main-chat .chat-tab ul li a {
                    padding: 20px;
                    display: inline-block;
                    width: 100%;
                    background-color: #f9f9f9;
                    transition: all 0.5s;
                }

                    .main-chat-box .chat-box .main-chat .chat-tab ul li a .profile-name {
                        font-size: 18px;
                        color: #1f2135;
                        font-weight: 600;
                        margin-top: 15px;
                        transition: all 0.5s;
                    }

                    .main-chat-box .chat-box .main-chat .chat-tab ul li a.active, .main-chat-box .chat-box .main-chat .chat-tab ul li a:hover {
                        transition: all 0.5s;
                        background: linear-gradient(to right, #fa2456, #fd735a);
                    }

                        .main-chat-box .chat-box .main-chat .chat-tab ul li a.active .profile-name, .main-chat-box .chat-box .main-chat .chat-tab ul li a:hover .profile-name {
                            color: #ffffff;
                        }

            .main-chat-box .chat-box .main-chat .msger {
                width: calc(100% - 190px);
                float: left;
                display: flex;
                flex-flow: column wrap;
                justify-content: space-between;
                height: 612px;
            }

                .main-chat-box .chat-box .main-chat .msger .msger-chat {
                    width: 100%;
                    border-right: 1px solid #ebecf9;
                    flex: 1;
                    overflow-y: auto;
                    padding: 10px;
                }

                    .main-chat-box .chat-box .main-chat .msger .msger-chat::-webkit-scrollbar {
                        width: 2px;
                    }

                    .main-chat-box .chat-box .main-chat .msger .msger-chat::-webkit-scrollbar-track {
                        background: #f9f9f9;
                    }

                    .main-chat-box .chat-box .main-chat .msger .msger-chat::-webkit-scrollbar-thumb {
                        background: #fa2456;
                    }

                    .main-chat-box .chat-box .main-chat .msger .msger-chat .msg {
                        display: flex;
                        align-items: flex-start;
                        margin-bottom: 10px;
                        position: relative;
                        padding-top: 30px;
                    }

                        .main-chat-box .chat-box .main-chat .msger .msger-chat .msg:last-of-type {
                            margin-bottom: 0;
                        }

                        .main-chat-box .chat-box .main-chat .msger .msger-chat .msg .msg-info-time {
                            position: absolute;
                            top: 0;
                            left: 50%;
                            transform: translateX(-50%);
                        }

                        .main-chat-box .chat-box .main-chat .msger .msger-chat .msg .msg-img {
                            width: 60px;
                            float: left;
                            min-width: 60px;
                            height: 60px;
                            margin-right: 10px;
                        }

                        .main-chat-box .chat-box .main-chat .msger .msger-chat .msg .msg-bubble {
                            max-width: 450px;
                            float: left;
                            padding: 10px 20px;
                            border-radius: 35px;
                            background: #c7cae1;
                            margin-top: 30px;
                        }

                        .main-chat-box .chat-box .main-chat .msger .msger-chat .msg.left-msg .msg-bubble {
                            border-top-left-radius: 0;
                        }

                        .main-chat-box .chat-box .main-chat .msger .msger-chat .msg.right-msg {
                            flex-direction: row-reverse;
                        }

                            .main-chat-box .chat-box .main-chat .msger .msger-chat .msg.right-msg .msg-img {
                                margin: 0 0 0 10px;
                            }

                            .main-chat-box .chat-box .main-chat .msger .msger-chat .msg.right-msg .msg-bubble {
                                background: linear-gradient(to right, #fa2456, #fd735a);
                                color: #fff;
                                border-top-right-radius: 0;
                            }

                .main-chat-box .chat-box .main-chat .msger .msger-inputarea {
                    width: 100%;
                    padding: 10px 30px;
                    display: flex;
                    align-items: center;
                    border: 1px solid #ebecf9;
                }

                    .main-chat-box .chat-box .main-chat .msger .msger-inputarea span {
                        display: inline-block;
                        width: 24px;
                        float: left;
                        margin-right: 20px;
                    }

                    .main-chat-box .chat-box .main-chat .msger .msger-inputarea i {
                        font-size: 24px;
                        color: #c7cae1;
                        transition: all 0.5s;
                    }

                        .main-chat-box .chat-box .main-chat .msger .msger-inputarea i:hover {
                            color: #fa2456;
                        }

                    .main-chat-box .chat-box .main-chat .msger .msger-inputarea input {
                        width: calc(100% - 44px - 44px);
                        height: 35px;
                        float: left;
                        border: 1px solid #ebecf9;
                        border-radius: 35px;
                        outline: none;
                        padding-left: 20px;
                    }

                    .main-chat-box .chat-box .main-chat .msger .msger-inputarea button {
                        width: 24px;
                        float: left;
                        padding: 0;
                        margin: 0;
                        border: none;
                        outline: none;
                        background-color: transparent;
                        margin-left: 20px;
                    }

/* ....................................
13. login CSS 
.......................................*/
.main-singin-box {
    width: 100%;
    float: left;
    position: relative;
    overflow: hidden;
}

    .main-singin-box::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 135px;
        background-image: url(../images/shadow-img.png);
        background-repeat: no-repeat;
        z-index: -1;
    }

    .main-singin-box .container {
        display: flex;
        align-items: center;
        height: 100%;
    }

    .main-singin-box .singin-box {
        width: 100%;
        float: left;
        background: #ffffff;
        box-shadow: 0 -12px 46px 12px rgba(182, 14, 14, 0.0509803922);
        display: flex;
        flex-wrap: wrap;
    }

        .main-singin-box .singin-box > div {
            width: 50%;
            float: left;
        }

        .main-singin-box .singin-box .singin-left {
            background-image: url(../images/jantar.jpg);
            background-position: center;
            position: relative;
            background-repeat: no-repeat;
            background-size: cover;
        }

            .main-singin-box .singin-box .singin-left .logo {
                width: 100%;
                max-width: 175px;
                min-width: 175px;
                margin: 0 auto;
                height: 165px;
                line-height: 140px;
                text-align: center;
                background-image: linear-gradient(to right, #fa2456, #fd735a);
                border-radius: 0px 0px 50% 50%;
                position: relative;
            }

                .main-singin-box .singin-box .singin-left .logo img {
                    width: 70px;
                }

            .main-singin-box .singin-box .singin-left .login-btns {
                text-align: center;
                display: flex;
                flex-direction: column;
                row-gap: 30px;
                position: absolute;
                bottom: 85px;
                width: 100%;
            }

                .main-singin-box .singin-box .singin-left .login-btns li a {
                    display: inline-block;
                    width: 270px;
                    height: 50px;
                    line-height: 50px;
                    border-radius: 35px;
                    color: #ffffff;
                    font-family: "Poppins", sans-serif;
                }

                    .main-singin-box .singin-box .singin-left .login-btns li a.btn-fb {
                        background-color: #3c5a96;
                    }

                    .main-singin-box .singin-box .singin-left .login-btns li a.btn-g {
                        background-color: #db4c3e;
                    }

            .main-singin-box .singin-box .singin-left .tag {
                display: inline-block;
                position: absolute;
                right: 0;
                top: 100px;
                padding: 10px 20px;
                background-color: #ffffff;
                color: #fa2456;
                border-radius: 35px 0 0 35px;
            }

        .main-singin-box .singin-box .singin-right .main-form {
            padding: 86px 60px;
            text-align: center;
            min-height: 674px;
            display: flex;
            justify-content: center;
            flex-direction: column;
        }

            .main-singin-box .singin-box .singin-right .main-form h4 {
                font-size: 24px;
                font-weight: 400;
                color: rgba(0, 0, 0, 0.8);
            }

            .main-singin-box .singin-box .singin-right .main-form .form-input label {
                color: #fa2456;
            }

            .main-singin-box .singin-box .singin-right .main-form .form-input-checkbox {
                margin-top: 30px;
                margin-bottom: 30px;
                display: flex;
                flex-wrap: wrap;
                align-items: center;
                justify-content: center;
                -moz-column-gap: 10px;
                column-gap: 10px;
                row-gap: 10px;
            }

                .main-singin-box .singin-box .singin-right .main-form .form-input-checkbox input {
                    width: 20px;
                    height: 20px;
                }

                .main-singin-box .singin-box .singin-right .main-form .form-input-checkbox label {
                    color: #797979;
                    font-size: 14px;
                }

                .main-singin-box .singin-box .singin-right .main-form .form-input-checkbox a {
                    color: #fa2456;
                    text-decoration: underline;
                }

            .main-singin-box .singin-box .singin-right .main-form p {
                float: left;
                width: 100%;
                margin-top: 30px;
            }

                .main-singin-box .singin-box .singin-right .main-form p a {
                    transition: all 0.5s;
                }

                    .main-singin-box .singin-box .singin-right .main-form p a:hover {
                        color: #fa2456;
                    }

    .main-singin-box .leftside .air-balloon {
        left: 0;
        right: auto;
        bottom: 0;
    }

        .main-singin-box .leftside .air-balloon.two {
            left: 5%;
            right: auto;
        }

        .main-singin-box .leftside .air-balloon.foure {
            left: 5%;
            right: auto;
        }

    .main-singin-box .air-balloon {
        position: absolute;
        right: 0%;
        bottom: 0;
        transform: translateY(280px);
        animation: message_move 8s linear infinite;
    }

        .main-singin-box .air-balloon.one {
            animation-delay: 1s;
        }

        .main-singin-box .air-balloon.two {
            animation-delay: 3s;
            right: 5%;
        }

        .main-singin-box .air-balloon.three {
            animation-delay: 5s;
        }

        .main-singin-box .air-balloon.foure {
            animation-delay: 7s;
            right: 5%;
        }

/* ....................................
14. shop CSS 
.......................................*/
.shop-page .search-result .main-members-section .members-box .members-img .age {
    padding: 10px 15px 10px 20px;
}

.shop-page .search-result .main-members-section .members-box .members-img .price {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(to right, #fa2456, #fd735a);
    display: block;
    color: #fff;
    font-weight: 700;
    font-size: 24px;
    line-height: 60px;
    text-align: center;
    right: 10px;
    position: absolute;
    bottom: -30px;
    z-index: 9;
}

.shop-page .search-result .main-members-section .members-box .members-text {
    padding: 30px 0;
}

    .shop-page .search-result .main-members-section .members-box .members-text .review-area {
        display: flex;
        justify-content: center;
        align-items: center;
        -moz-column-gap: 10px;
        column-gap: 10px;
        font-size: 14px;
        margin: 10px 0;
    }

        .shop-page .search-result .main-members-section .members-box .members-text .review-area .stars i, .center-heading .stars i {
            font-size: 12px;
            color: gold;
        }

.center-heading .stars i {
    font-size: 16px;
    color: gold;
}

.shop-page .search-result .main-members-section .members-box .members-text .buynow-btn {
    width: 115px;
    height: 35px;
    line-height: 35px;
    transition: all 0.5s;
}

.shop-page .search-result .main-members-section .members-box:hover .members-text .buynow-btn {
    background-image: none;
    background-color: #ffffff;
    color: #111;
}

.bz_single_product_main_wrapper {
    padding: 60px 0px;
}

    .bz_single_product_main_wrapper .product__carousel {
        display: block;
        max-width: 700px;
        margin: 0 auto;
    }

        .bz_single_product_main_wrapper .product__carousel .gallery-top {
            border-radius: 3px;
            margin-bottom: 5px;
        }

            .bz_single_product_main_wrapper .product__carousel .gallery-top .swiper-slide {
                position: relative;
                overflow: hidden;
            }

                .bz_single_product_main_wrapper .product__carousel .gallery-top .swiper-slide a {
                    position: relative;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    width: 100%;
                    height: 100%;
                }

                    .bz_single_product_main_wrapper .product__carousel .gallery-top .swiper-slide a img {
                        width: 100%;
                        height: 100%;
                        -o-object-fit: contain;
                        object-fit: contain;
                    }

                .bz_single_product_main_wrapper .product__carousel .gallery-top .swiper-slide .easyzoom-flyout img {
                    min-width: 100%;
                    min-height: 100%;
                }

        .bz_single_product_main_wrapper .product__carousel .swiper-button-next.swiper-button-white,
        .bz_single_product_main_wrapper .product__carousel .swiper-button-prev.swiper-button-white {
            color: #ff3720;
        }

        .bz_single_product_main_wrapper .product__carousel .gallery-thumbs .swiper-slide {
            position: relative;
            transition: border 0.15s linear;
            border: 1px solid transparent;
            border-radius: 3px;
            cursor: pointer;
            overflow: hidden;
            height: calc(100% - 10px);
        }

            .bz_single_product_main_wrapper .product__carousel .gallery-thumbs .swiper-slide.swiper-slide-thumb-active {
                border-color: #000;
            }

            .bz_single_product_main_wrapper .product__carousel .gallery-thumbs .swiper-slide img {
                position: absolute;
                left: 50%;
                top: 50%;
                transform: translate(-50%, -50%);
                max-width: 100%;
            }

    .bz_single_product_main_wrapper .b_product_sell_details_wrapper .bz_product_heading h3 {
        font-size: 26px;
    }

        .bz_single_product_main_wrapper .b_product_sell_details_wrapper .bz_product_heading h3 span {
            font-size: 16px;
            color: #797979;
        }

    .bz_single_product_main_wrapper .b_product_sell_details_wrapper .bz_product_heading .review {
        padding-top: 12px;
        padding-bottom: 18px;
    }

        .bz_single_product_main_wrapper .b_product_sell_details_wrapper .bz_product_heading .review li {
            display: inline-block;
            padding-right: 8px;
        }

            .bz_single_product_main_wrapper .b_product_sell_details_wrapper .bz_product_heading .review li a {
                color: #797979;
                font-size: 14px;
            }

                .bz_single_product_main_wrapper .b_product_sell_details_wrapper .bz_product_heading .review li a:hover {
                    color: red;
                }

            .bz_single_product_main_wrapper .b_product_sell_details_wrapper .bz_product_heading .review li .star li {
                padding-right: 0px;
            }

                .bz_single_product_main_wrapper .b_product_sell_details_wrapper .bz_product_heading .review li .star li a {
                    color: #fa2456;
                }

                .bz_single_product_main_wrapper .b_product_sell_details_wrapper .bz_product_heading .review li .star li + li {
                    border-left: 0;
                    padding-left: 0;
                }

            .bz_single_product_main_wrapper .b_product_sell_details_wrapper .bz_product_heading .review li + li {
                padding-left: 8px;
                border-left: 1px solid #ccc;
            }

    .bz_single_product_main_wrapper .b_product_sell_details_wrapper .bz_product_heading p {
        padding-top: 15px;
        line-height: 30px;
    }

    .bz_single_product_main_wrapper .b_product_sell_details_wrapper .color_code {
        padding-top: 18px;
    }

        .bz_single_product_main_wrapper .b_product_sell_details_wrapper .color_code .color_change {
            display: inline-block;
            padding-left: 10px;
            vertical-align: sub;
        }

            .bz_single_product_main_wrapper .b_product_sell_details_wrapper .color_code .color_change li {
                display: inline-block;
            }

                .bz_single_product_main_wrapper .b_product_sell_details_wrapper .color_code .color_change li + li {
                    margin-left: 6px;
                }

            .bz_single_product_main_wrapper .b_product_sell_details_wrapper .color_code .color_change .black-co a {
                width: 20px;
                height: 20px;
                border-radius: 50%;
                background-color: #111;
                display: inline-block;
            }

            .bz_single_product_main_wrapper .b_product_sell_details_wrapper .color_code .color_change .grey-co a {
                width: 20px;
                height: 20px;
                border-radius: 50%;
                background-color: #ccc;
                display: inline-block;
            }

            .bz_single_product_main_wrapper .b_product_sell_details_wrapper .color_code .color_change .pink-co a {
                width: 20px;
                height: 20px;
                border-radius: 50%;
                background-color: #e4b1ad;
                display: inline-block;
            }

        .bz_single_product_main_wrapper .b_product_sell_details_wrapper .color_code p {
            padding-top: 12px;
        }

            .bz_single_product_main_wrapper .b_product_sell_details_wrapper .color_code p span {
                display: inline-block;
                padding-left: 12px;
                font-size: 14px;
            }

    .bz_single_product_main_wrapper .b_product_sell_details_wrapper .number_pluse {
        margin-top: 30px;
    }

        .bz_single_product_main_wrapper .b_product_sell_details_wrapper .number_pluse .main-btn {
            margin-left: 23px;
        }

    .bz_single_product_main_wrapper .b_product_sell_details_wrapper .share_icon {
        margin-top: 30px;
    }

        .bz_single_product_main_wrapper .b_product_sell_details_wrapper .share_icon p {
            display: inline-block;
            float: left;
            padding-right: 18px;
            padding-top: 4px;
        }

        .bz_single_product_main_wrapper .b_product_sell_details_wrapper .share_icon ul {
            justify-content: flex-start;
        }

.bz_single_product_accordian_main_wrapper {
    padding-bottom: 60px;
}

    .bz_single_product_accordian_main_wrapper .checkout_form .checkout_accord {
        border: none;
        background: transparent;
    }

        .bz_single_product_accordian_main_wrapper .checkout_form .checkout_accord .accord_header {
            background: transparent;
            padding: 12px 0px;
            border-bottom: 1px solid #fa2456;
        }

            .bz_single_product_accordian_main_wrapper .checkout_form .checkout_accord .accord_header button {
                width: 100%;
                text-align: left;
                padding: 0px;
                font-size: 20px;
                color: #fa2456;
                padding: 0px;
                box-shadow: none;
                text-decoration: none;
            }

                .bz_single_product_accordian_main_wrapper .checkout_form .checkout_accord .accord_header button span {
                    padding-right: 12px;
                }

        .bz_single_product_accordian_main_wrapper .checkout_form .checkout_accord .card-body {
            padding: 0;
        }

            .bz_single_product_accordian_main_wrapper .checkout_form .checkout_accord .card-body .content_single_product {
                padding-top: 22px;
            }

                .bz_single_product_accordian_main_wrapper .checkout_form .checkout_accord .card-body .content_single_product p {
                    line-height: 30px;
                }

                .bz_single_product_accordian_main_wrapper .checkout_form .checkout_accord .card-body .content_single_product .nots {
                    padding-top: 15px;
                }

                    .bz_single_product_accordian_main_wrapper .checkout_form .checkout_accord .card-body .content_single_product .nots li {
                        font-family: "Lato", sans-serif;
                        padding-bottom: 10px;
                    }

                        .bz_single_product_accordian_main_wrapper .checkout_form .checkout_accord .card-body .content_single_product .nots li span {
                            display: inline-block;
                            padding-right: 9px;
                            color: #fa2456;
                        }

                .bz_single_product_accordian_main_wrapper .checkout_form .checkout_accord .card-body .content_single_product h4 {
                    font-family: "Lato", sans-serif;
                    font-size: 20px;
                }

                .bz_single_product_accordian_main_wrapper .checkout_form .checkout_accord .card-body .content_single_product .form-group {
                    padding: 5px 0;
                }

            .bz_single_product_accordian_main_wrapper .checkout_form .checkout_accord .card-body .product_headphone {
                float: right;
            }

            .bz_single_product_accordian_main_wrapper .checkout_form .checkout_accord .card-body .img_box {
                width: 100%;
                float: left;
                text-align: center;
                padding: 50px 0px;
            }

                .bz_single_product_accordian_main_wrapper .checkout_form .checkout_accord .card-body .img_box .product_icon a {
                    display: inline-block;
                    border: 1px solid #fa2456;
                    padding: 30px 30px;
                    font-size: 36px;
                    width: 100px;
                    color: #fa2456;
                    border-radius: 50%;
                }

                    .bz_single_product_accordian_main_wrapper .checkout_form .checkout_accord .card-body .img_box .product_icon a:hover {
                        border: 1px solid #fa2456;
                        background-color: #fa2456;
                        color: #ffffff;
                    }

                .bz_single_product_accordian_main_wrapper .checkout_form .checkout_accord .card-body .img_box .product_icon p {
                    padding-top: 15px;
                    color: #fa2456;
                    text-transform: uppercase;
                }

                .bz_single_product_accordian_main_wrapper .checkout_form .checkout_accord .card-body .img_box .text_product {
                    padding-top: 15px;
                }

                    .bz_single_product_accordian_main_wrapper .checkout_form .checkout_accord .card-body .img_box .text_product p {
                        line-height: 25px;
                    }

            .bz_single_product_accordian_main_wrapper .checkout_form .checkout_accord .card-body .full_details {
                padding-bottom: 18px;
            }

            .bz_single_product_accordian_main_wrapper .checkout_form .checkout_accord .card-body .post_product {
                padding: 30px 0px;
                border-bottom: 1px solid #ccc;
            }

                .bz_single_product_accordian_main_wrapper .checkout_form .checkout_accord .card-body .post_product .post_img {
                    width: 128px;
                    float: left;
                }

                .bz_single_product_accordian_main_wrapper .checkout_form .checkout_accord .card-body .post_product .post_details {
                    padding-top: 14px;
                }

                    .bz_single_product_accordian_main_wrapper .checkout_form .checkout_accord .card-body .post_product .post_details h5 {
                        font-size: 18px;
                    }

                        .bz_single_product_accordian_main_wrapper .checkout_form .checkout_accord .card-body .post_product .post_details h5 span {
                            display: inline-block;
                            color: #797979;
                            padding-left: 12px;
                            font-size: 16px;
                        }

                    .bz_single_product_accordian_main_wrapper .checkout_form .checkout_accord .card-body .post_product .post_details p {
                        padding-top: 12px;
                    }

                    .bz_single_product_accordian_main_wrapper .checkout_form .checkout_accord .card-body .post_product .post_details .star {
                        float: right;
                    }

                        .bz_single_product_accordian_main_wrapper .checkout_form .checkout_accord .card-body .post_product .post_details .star li {
                            display: inline-block;
                            color: #fa2456;
                        }

            .bz_single_product_accordian_main_wrapper .checkout_form .checkout_accord .card-body .bz_contact_main_wrapper h4 {
                padding: 24px 0px;
            }

            .bz_single_product_accordian_main_wrapper .checkout_form .checkout_accord .card-body .bz_contact_main_wrapper form {
                background-color: #edf6ff;
                padding: 33px 50px 50px 50px;
            }

                .bz_single_product_accordian_main_wrapper .checkout_form .checkout_accord .card-body .bz_contact_main_wrapper form h3 {
                    font-size: 14px;
                    float: left;
                }

                .bz_single_product_accordian_main_wrapper .checkout_form .checkout_accord .card-body .bz_contact_main_wrapper form .rating {
                    width: -moz-fit-content;
                    width: fit-content;
                }

                .bz_single_product_accordian_main_wrapper .checkout_form .checkout_accord .card-body .bz_contact_main_wrapper form textarea {
                    width: 100%;
                    border-radius: 8px;
                    border: 1px solid #ccc;
                    padding: 12px;
                }

                .bz_single_product_accordian_main_wrapper .checkout_form .checkout_accord .card-body .bz_contact_main_wrapper form input {
                    width: 100%;
                    border-radius: 30px;
                    border: 1px solid #ccc;
                    padding: 12px;
                }

.bz_product_grid_content_main_wrapper {
    padding: 60px 0;
}

    .bz_product_grid_content_main_wrapper .bz_cart_main_wrapper table {
        overflow: hidden;
        min-width: 696px;
        border-radius: 20px;
        margin: 0;
        box-shadow: 0 0px 46px 12px rgba(182, 14, 14, 0.0509803922);
    }

        .bz_product_grid_content_main_wrapper .bz_cart_main_wrapper table thead {
            border-radius: 10px 10px 0 0;
            background: linear-gradient(to right, #fa2456, #fd735a);
        }

            .bz_product_grid_content_main_wrapper .bz_cart_main_wrapper table thead tr th {
                padding: 10px 15px;
                font-weight: 600;
                color: #ffffff;
                text-transform: uppercase;
            }

        .bz_product_grid_content_main_wrapper .bz_cart_main_wrapper table tbody tr {
            border: none;
        }

            .bz_product_grid_content_main_wrapper .bz_cart_main_wrapper table tbody tr td {
                color: #111;
                vertical-align: middle;
                padding: 15px;
            }

                .bz_product_grid_content_main_wrapper .bz_cart_main_wrapper table tbody tr td a {
                    font-size: 24px;
                    margin-right: 10px;
                }

                .bz_product_grid_content_main_wrapper .bz_cart_main_wrapper table tbody tr td .number_pluse {
                    padding: 15px 0px 26px;
                }

                .bz_product_grid_content_main_wrapper .bz_cart_main_wrapper table tbody tr td .name {
                    font-size: 16px;
                    margin: 0 0 0 20px;
                }

            .bz_product_grid_content_main_wrapper .bz_cart_main_wrapper table tbody tr:nth-child(2n+1) {
                background-color: #ffffff;
            }

            .bz_product_grid_content_main_wrapper .bz_cart_main_wrapper table tbody tr:nth-child(2n+2) {
                background-color: #f9f9f9;
            }

    .bz_product_grid_content_main_wrapper .bz_cart_main_wrapper .cart_coupan {
        width: 100%;
        float: left;
        padding-top: 30px;
    }

        .bz_product_grid_content_main_wrapper .bz_cart_main_wrapper .cart_coupan input {
            height: 50px;
            padding: 6px 12px;
            width: 35%;
            background-color: #eaeaea;
            border: 1px solid #eaeaea;
            float: left;
            border-top-left-radius: 30px;
            border-bottom-left-radius: 30px;
        }

        .bz_product_grid_content_main_wrapper .bz_cart_main_wrapper .cart_coupan button {
            width: calc(35% - 80px);
            height: 50px;
            float: left;
            border-radius: 0 30px 30px 0;
        }

        .bz_product_grid_content_main_wrapper .bz_cart_main_wrapper .cart_coupan .update_btn {
            float: right;
        }

    .bz_product_grid_content_main_wrapper .your_order {
        padding: 30px;
        border-radius: 30px;
        background-color: #ffffff;
        box-shadow: 0 -12px 46px 12px rgba(182, 14, 14, 0.0509803922);
    }

        .bz_product_grid_content_main_wrapper .your_order h3 {
            font-size: 22px;
            font-weight: 500;
            padding-bottom: 15px;
        }

        .bz_product_grid_content_main_wrapper .your_order .order_details p {
            padding-bottom: 15px;
        }

            .bz_product_grid_content_main_wrapper .your_order .order_details p span {
                float: right;
            }

        .bz_product_grid_content_main_wrapper .your_order .order_rate {
            padding-top: 15px;
        }

            .bz_product_grid_content_main_wrapper .your_order .order_rate h3 {
                padding: 18px 0px;
                border-top: 1px solid #dedede;
                border-bottom: 1px solid #dedede;
                font-size: 18px;
            }

                .bz_product_grid_content_main_wrapper .your_order .order_rate h3 span {
                    float: right;
                    font-weight: 600;
                }

        .bz_product_grid_content_main_wrapper .your_order .main-btn {
            width: 100%;
            margin-top: 20px;
        }

.an_checkout_form_wrapper {
    width: 100%;
    float: left;
    padding: 60px 0;
}

    .an_checkout_form_wrapper .an_checkout_form_row {
        width: 100%;
        float: left;
    }

        .an_checkout_form_wrapper .an_checkout_form_row .an_information_box {
            width: 100%;
            float: left;
        }

            .an_checkout_form_wrapper .an_checkout_form_row .an_information_box .heading h2 {
                font-size: 28px;
                line-height: 29px;
            }

            .an_checkout_form_wrapper .an_checkout_form_row .an_information_box form {
                width: 100%;
                float: left;
                background: #ffffff;
                padding: 30px;
                margin-bottom: 30px;
                box-shadow: 0 -12px 46px 12px rgba(182, 14, 14, 0.0509803922);
                border-radius: 5px;
            }

                .an_checkout_form_wrapper .an_checkout_form_row .an_information_box form .col-lg-6.col-md-6.col-12 {
                    margin-top: 15px;
                }

                .an_checkout_form_wrapper .an_checkout_form_row .an_information_box form > label {
                    margin-top: 15px;
                }

                .an_checkout_form_wrapper .an_checkout_form_row .an_information_box form label {
                    color: #111111;
                    font-size: 16px;
                    margin-bottom: 10px;
                }

                    .an_checkout_form_wrapper .an_checkout_form_row .an_information_box form label:first-child {
                        margin-top: 0;
                    }

                .an_checkout_form_wrapper .an_checkout_form_row .an_information_box form input {
                    width: 100%;
                    border: solid 1px #e2e2e2;
                    height: 50px;
                    padding-left: 20px;
                    padding-right: 20px;
                    outline: none;
                }

                    .an_checkout_form_wrapper .an_checkout_form_row .an_information_box form input[type=radio] {
                        width: auto;
                        height: auto;
                    }

                .an_checkout_form_wrapper .an_checkout_form_row .an_information_box form ul li {
                    padding: 10px 0;
                }

                    .an_checkout_form_wrapper .an_checkout_form_row .an_information_box form ul li:first-child {
                        padding-top: 0;
                    }

                    .an_checkout_form_wrapper .an_checkout_form_row .an_information_box form ul li:last-child {
                        padding-bottom: 0;
                    }

                    .an_checkout_form_wrapper .an_checkout_form_row .an_information_box form ul li label {
                        margin-bottom: 0;
                    }

                .an_checkout_form_wrapper .an_checkout_form_row .an_information_box form .payment_card {
                    width: 100%;
                    float: left;
                    margin-top: 15px;
                    margin-bottom: -15px;
                }

                    .an_checkout_form_wrapper .an_checkout_form_row .an_information_box form .payment_card ul li {
                        display: inline-block;
                        padding: 0 !important;
                        margin-right: 15px;
                    }

                        .an_checkout_form_wrapper .an_checkout_form_row .an_information_box form .payment_card ul li a {
                            float: left;
                        }

                            .an_checkout_form_wrapper .an_checkout_form_row .an_information_box form .payment_card ul li a svg {
                                width: 55px;
                                height: 55px;
                                fill: #c9c9c9;
                                transition: all 0.5s;
                            }

                                .an_checkout_form_wrapper .an_checkout_form_row .an_information_box form .payment_card ul li a svg:hover {
                                    fill: #111111;
                                }

                .an_checkout_form_wrapper .an_checkout_form_row .an_information_box form.pay_ment ul {
                    display: flex;
                    flex-direction: column;
                }

                    .an_checkout_form_wrapper .an_checkout_form_row .an_information_box form.pay_ment ul li p {
                        width: auto;
                        float: left;
                        text-align: left;
                    }

                    .an_checkout_form_wrapper .an_checkout_form_row .an_information_box form.pay_ment ul li span {
                        width: auto;
                        float: right;
                        text-align: right;
                    }

                    .an_checkout_form_wrapper .an_checkout_form_row .an_information_box form.pay_ment ul li:first-child span, .an_checkout_form_wrapper .an_checkout_form_row .an_information_box form.pay_ment ul li:first-child p, .an_checkout_form_wrapper .an_checkout_form_row .an_information_box form.pay_ment ul li:last-child span, .an_checkout_form_wrapper .an_checkout_form_row .an_information_box form.pay_ment ul li:last-child p {
                        color: #111111;
                        font-size: 17px;
                    }

                    .an_checkout_form_wrapper .an_checkout_form_row .an_information_box form.pay_ment ul li:last-child {
                        border-top: 1px solid #dddddd;
                        margin-top: 30px;
                        padding-top: 20px;
                    }

.end_form form label {
    color: #133e59;
}

.an_show {
    width: 100%;
    float: left;
    padding-bottom: 10px;
}

    .an_show a {
        font-size: 16px;
        color: #111111;
        text-decoration: underline;
        transition: all 0.5s;
    }

        .an_show a:hover {
            text-decoration: none;
            transition: all 0.5s;
        }

.hidden-menu h2 {
    font-weight: bold;
    padding: 15px 0;
}

.hidden-menu p {
    padding: 5px 0;
}

.hidden-menu h4 {
    font-weight: bold;
    padding: 10px 0;
}

.end_form h2 {
    font-size: 26px;
    padding: 15px 0;
}

    .end_form h2 a:hover {
        color: #fa2456;
    }

/* ....................................
15. shortcode CSS 
.......................................*/
a {
    text-decoration: none;
    color: #111111;
}

p {
    color: #808080;
}

.padd-100 {
    padding: 100px 0;
}

ul {
    padding: 0px;
    list-style-type: none;
}

.page-header {
    padding: 30px 0;
    background-color: #fafafa;
}

    .page-header .heading h4 {
        font-size: 24px;
        color: #111111;
    }

/*===================================== ACCORDION PAGE START ================================*/
/*============================ first accordion ==============================*/
.accor-heading {
    margin-bottom: 30px;
}

    .accor-heading h3 {
        font-size: 24px;
        text-align: center;
    }

.accordion1-main-wrapper .accordion-button span {
    display: inline-block;
    margin-right: 20px;
}

.accordion1-main-wrapper .accordion-button:focus {
    border: none;
    box-shadow: none;
}

.accordion1-main-wrapper .accordion-button:not(.collapsed) {
    color: #e12454;
    background-color: #ffffff;
    box-shadow: none;
}

.accordion1-main-wrapper .accordion-button:after {
    background-image: none;
}

.accordion1-main-wrapper .accordion-item {
    border: none;
}

    .accordion1-main-wrapper .accordion-item .accordion-body {
        margin: 1rem 1.25rem;
        padding: 0 35px;
        border-left: 2px solid #e12454;
    }

/*============================ second accordion ==============================*/
.accordion2-wrapper {
    background-color: #232323;
}

    .accordion2-wrapper .accor-heading h3 {
        color: #ffffff;
    }

    .accordion2-wrapper .accordion-button span {
        display: inline-block;
        margin-right: 20px;
    }

    .accordion2-wrapper .accordion-button:focus {
        border: none;
        box-shadow: none;
    }

    .accordion2-wrapper .accordion-button:not(.collapsed) {
        color: #e12454;
        background-color: #ffffff;
        box-shadow: none;
    }

    .accordion2-wrapper .accordion-button:after {
        background-image: none;
    }

    .accordion2-wrapper .accordion-item {
        border: none;
        margin-top: 20px;
    }

        .accordion2-wrapper .accordion-item .accordion-header button {
            position: relative;
        }

            .accordion2-wrapper .accordion-item .accordion-header button:before {
                content: "";
                text-align: center;
                background: #232323;
                font-size: 14px;
                width: 15px;
                height: 1px;
                line-height: 24px;
                display: block;
                position: absolute;
                right: 13px;
            }

            .accordion2-wrapper .accordion-item .accordion-header button:after {
                content: "";
                text-align: center;
                background: #232323;
                font-size: 14px;
                width: 1px;
                height: 15px;
                line-height: 24px;
                display: block;
            }

            .accordion2-wrapper .accordion-item .accordion-header button:not(.collapsed):after {
                display: none;
            }

/*============================ Third accordion ==============================*/
.accordion3-wrapper {
    background-color: #f7f7f7;
}

    .accordion3-wrapper .accordion-button:focus {
        border: none;
        box-shadow: none;
    }

    .accordion3-wrapper .accordion-button:not(.collapsed) {
        color: #e12454;
        background-color: #ffffff;
        box-shadow: none;
    }

    .accordion3-wrapper .accordion-button:after {
        background-image: none;
    }

    .accordion3-wrapper .accordion-item {
        border: none;
        margin-top: 20px;
        background-color: #ffffff;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.0784313725);
    }

        .accordion3-wrapper .accordion-item .accordion-header button {
            position: relative;
        }

            .accordion3-wrapper .accordion-item .accordion-header button:after {
                content: "\f105";
                font-family: "Font Awesome 5 Free";
                font-weight: 900;
                text-align: center;
                color: #111111;
                font-size: 14px;
                display: block;
            }

            .accordion3-wrapper .accordion-item .accordion-header button:not(.collapsed):after {
                transform: rotate(90deg);
            }

/*============================ Fourth accordion ==============================*/
.accordion4-wrapper .accordion-button:focus {
    border: none;
    box-shadow: none;
}

.accordion4-wrapper .accordion-button:not(.collapsed) {
    color: #e12454;
    background-color: #ffffff;
    box-shadow: none;
}

.accordion4-wrapper .accordion-button:after {
    background-image: none;
}

.accordion4-wrapper .accordion-item {
    border: none;
    margin-top: 20px;
    background-color: #ffffff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.0784313725);
}

    .accordion4-wrapper .accordion-item .accordion-header button {
        position: relative;
    }

        .accordion4-wrapper .accordion-item .accordion-header button:before {
            content: "+";
            text-align: center;
            font-size: 20px;
            line-height: 24px;
            display: block;
            position: absolute;
            right: 23px;
            top: 13px;
            z-index: 9;
            color: #111111;
        }

        .accordion4-wrapper .accordion-item .accordion-header button:after {
            content: "";
            text-align: center;
            background: #f7f7f7;
            width: 20px;
            height: 20px;
            line-height: 24px;
            display: block;
        }

        .accordion4-wrapper .accordion-item .accordion-header button:not(.collapsed):after {
            background: #e12454;
        }

        .accordion4-wrapper .accordion-item .accordion-header button:not(.collapsed):before {
            content: "-";
            right: 26px;
            color: #ffffff;
            font-size: 24px;
        }

/*============================ Five accordion ==============================*/
.accordion5-wrapper {
    background: linear-gradient(to right, #fa2456, #fd735a);
}

    .accordion5-wrapper .accor-heading h3 {
        color: #ffffff;
    }

    .accordion5-wrapper .accordion-button {
        background-color: transparent;
    }

        .accordion5-wrapper .accordion-button:focus {
            border: none;
            box-shadow: none;
        }

        .accordion5-wrapper .accordion-button:not(.collapsed) {
            color: #ffffff;
            background-color: transparent;
            box-shadow: none;
        }

        .accordion5-wrapper .accordion-button:after {
            background-image: none;
        }

    .accordion5-wrapper .accordion-item {
        border: none;
        background-color: transparent;
    }

        .accordion5-wrapper .accordion-item .accordion-header button {
            position: relative;
            color: #ffffff;
            border-bottom: 1px solid #851d37;
            transition: all 0.5s;
        }

            .accordion5-wrapper .accordion-item .accordion-header button:before {
                content: "+";
                text-align: center;
                font-size: 20px;
                line-height: 24px;
                display: block;
                position: absolute;
                right: 23px;
                top: 10px;
                z-index: 9;
                color: #ffffff;
            }

            .accordion5-wrapper .accordion-item .accordion-header button:not(.collapsed) {
                border-bottom: none;
                background: linear-gradient(to right, #cf0937, #a73420);
            }

                .accordion5-wrapper .accordion-item .accordion-header button:not(.collapsed):before {
                    content: "-";
                    right: 25px;
                    font-size: 24px;
                }

        .accordion5-wrapper .accordion-item .accordion-body {
            background: linear-gradient(to right, #cf0937, #a73420);
        }

            .accordion5-wrapper .accordion-item .accordion-body p {
                color: #ffffff;
            }

/*=================================== ACCORDION PAGE END ===============================*/
/*======================BUTTON PAGE START ==============================*/
.section-heading {
    margin-bottom: 50px;
}

    .section-heading h4 {
        font-size: 24px;
        text-align: center;
    }

.button1-wrapper {
    text-align: center;
}

    .button1-wrapper .btn1 {
        display: inline-block;
        width: auto;
        text-transform: uppercase;
        border: 2px solid #e12454;
        background-color: #e12454;
        color: #ffffff;
        margin: 0 6px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.5s;
    }

        .button1-wrapper .btn1:hover {
            background-color: #ffffff;
            color: #e12454;
        }

        .button1-wrapper .btn1.xl-btn {
            padding: 16px 40px;
        }

        .button1-wrapper .btn1.lg-btn {
            padding: 12px 32px;
        }

        .button1-wrapper .btn1.md-btn {
            padding: 10px 26px;
        }

        .button1-wrapper .btn1.sm-btn {
            padding: 8px 22px;
        }

        .button1-wrapper .btn1.xs-btn {
            padding: 6px 16px;
        }

/* second button section */
.button2-wrapper {
    text-align: center;
    background-color: #f7f7f7;
}

    .button2-wrapper .btn2 {
        display: inline-block;
        width: auto;
        text-transform: uppercase;
        border: 2px solid #232323;
        background-color: #232323;
        color: #ffffff;
        margin: 0 6px;
        font-weight: 600;
        padding: 12px 32px;
        text-decoration: none;
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;
        -ms-transition: all 0.5s;
        -moz-transition: all 0.5s;
    }

        .button2-wrapper .btn2:hover {
            background-color: #ffffff;
            color: #232323;
        }

        .button2-wrapper .btn2.radius1-btn {
            border-radius: 10px;
        }

        .button2-wrapper .btn2.radius2-btn {
            border-radius: 5px;
        }

        .button2-wrapper .btn2.rounded-btn {
            border-radius: 50px;
        }

/* third button section */
.button3-wrapper {
    text-align: center;
    background-image: linear-gradient(to top right, #80063F, #FC035A, #FFBF00);
}

    .button3-wrapper .btn3 {
        display: inline-block;
        width: auto;
        text-transform: uppercase;
        border: 2px solid #e12454;
        background-color: #e12454;
        color: #ffffff;
        margin: 0 6px;
        font-weight: 600;
        padding: 12px 32px;
        text-decoration: none;
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;
        -ms-transition: all 0.5s;
        -moz-transition: all 0.5s;
    }

        .button3-wrapper .btn3:hover {
            background-color: transparent;
            color: #ffffff;
        }

        .button3-wrapper .btn3.gray-btn {
            background-color: #333333;
            border: 2px solid #333333;
            color: #ffffff;
        }

            .button3-wrapper .btn3.gray-btn:hover {
                background-color: transparent;
                color: #333333;
                border: 2px solid #333333;
            }

        .button3-wrapper .btn3.black-btn {
            background-color: #111111;
            border: 2px solid #111111;
            color: #ffffff;
        }

            .button3-wrapper .btn3.black-btn:hover {
                background-color: transparent;
                color: #232323;
                border: 2px solid #111111;
            }

        .button3-wrapper .btn3.white-btn {
            background-color: #ffffff;
            border: 2px solid #ffffff;
            color: #232323;
        }

            .button3-wrapper .btn3.white-btn:hover {
                background-color: transparent;
                color: #ffffff;
                border: 2px solid #ffffff;
            }

/* fourth button section */
.button4-wrapper {
    text-align: center;
}

    .button4-wrapper .btn4 {
        display: inline-block;
        width: auto;
        text-transform: uppercase;
        border: 2px solid #e12454;
        background-color: transparent;
        color: #111111;
        margin: 0 6px;
        font-weight: 600;
        padding: 12px 32px;
        text-decoration: none;
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;
        -ms-transition: all 0.5s;
        -moz-transition: all 0.5s;
    }

        .button4-wrapper .btn4:hover {
            background-color: #e12454;
            color: #ffffff;
        }

        .button4-wrapper .btn4.light-border {
            border-color: #dbdbdb;
            border-radius: 10px;
        }

            .button4-wrapper .btn4.light-border:hover {
                background-color: #232323;
                color: #ffffff;
                border-color: #232323;
            }

        .button4-wrapper .btn4.black-border {
            border-color: #111111;
            border-radius: 50px;
        }

            .button4-wrapper .btn4.black-border:hover {
                background-color: #111111;
                color: #ffffff;
            }

/*fifth button section*/
.button5-wrapper {
    text-align: center;
    background-color: #232323;
}

    .button5-wrapper .section-heading h4 {
        color: #ffffff;
    }

    .button5-wrapper .btn5 {
        display: inline-block;
        width: auto;
        text-transform: uppercase;
        color: #ffffff;
        margin: 0 6px;
        font-weight: 600;
        font-size: 14px;
        padding: 12px 32px;
        text-decoration: none;
        transition: all 0.5s;
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;
        -ms-transition: all 0.5s;
        -moz-transition: all 0.5s;
    }

        .button5-wrapper .btn5.gradient1 {
            background-image: linear-gradient(to right, #e42564, #fa6259, #e42564);
            color: #fff;
            background-size: 200% auto;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

            .button5-wrapper .btn5.gradient1:hover {
                background-position: right center;
            }

        .button5-wrapper .btn5.gradient2 {
            background-image: linear-gradient(to right, #662D8C, #ED1E79, #662D8C);
            color: #fff;
            background-size: 200% auto;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

            .button5-wrapper .btn5.gradient2:hover {
                background-position: right center;
            }

        .button5-wrapper .btn5.gradient3 {
            background-image: linear-gradient(to right, #EA8D8D, #A890FE, #EA8D8D);
            color: #fff;
            background-size: 200% auto;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

            .button5-wrapper .btn5.gradient3:hover {
                background-position: right center;
            }

        .button5-wrapper .btn5.gradient4 {
            background-image: linear-gradient(to right, #C33764, #1D2671, #C33764);
            color: #fff;
            background-size: 200% auto;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

            .button5-wrapper .btn5.gradient4:hover {
                background-position: right center;
            }

        .button5-wrapper .btn5.gradient5 {
            background-image: linear-gradient(to right, #764BA2, #667EEA, #764BA2);
            color: #fff;
            background-size: 200% auto;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

            .button5-wrapper .btn5.gradient5:hover {
                background-position: right center;
            }

/*six button section*/
.button6-wrapper {
    text-align: center;
}

    .button6-wrapper .btn6 {
        display: inline-block;
        width: auto;
        text-transform: uppercase;
        color: #ffffff;
        margin: 0 6px;
        font-weight: 600;
        border: 2px solid #e12454;
        font-size: 14px;
        padding: 12px 32px;
        text-decoration: none;
        transition: all 0.5s;
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;
        -ms-transition: all 0.5s;
        -moz-transition: all 0.5s;
    }

        .button6-wrapper .btn6 span {
            margin: 0 5px;
            color: #ffffff;
            transition: all 0.5s;
            -webkit-transition: all 0.5s;
            -o-transition: all 0.5s;
            -ms-transition: all 0.5s;
            -moz-transition: all 0.5s;
        }

        .button6-wrapper .btn6.blog1 {
            background-color: #e12454;
        }

            .button6-wrapper .btn6.blog1:hover {
                background-color: transparent;
                color: #e12454;
            }

                .button6-wrapper .btn6.blog1:hover span {
                    color: #e12454;
                }

        .button6-wrapper .btn6.checkout {
            background-color: #232323;
            border-color: #232323;
        }

            .button6-wrapper .btn6.checkout:hover {
                background-color: transparent;
                color: #232323;
            }

                .button6-wrapper .btn6.checkout:hover span {
                    color: #232323;
                }

        .button6-wrapper .btn6.instagram {
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
            background-size: 140% auto;
            border: none;
        }

            .button6-wrapper .btn6.instagram:hover {
                background-position: right center;
            }

        .button6-wrapper .btn6.explore {
            background-color: transparent;
            border-color: #232323;
            color: #232323;
        }

            .button6-wrapper .btn6.explore span {
                color: #232323;
            }

            .button6-wrapper .btn6.explore:hover {
                background-color: #232323;
                color: #ffffff;
            }

                .button6-wrapper .btn6.explore:hover span {
                    color: #ffffff;
                }

/*seven button section*/
.button7-wrapper {
    text-align: center;
    background-color: #f7f7f7;
}

.button8-wrapper {
    text-align: center;
    background-color: #232323;
}

    .button8-wrapper .section-heading h4 {
        color: #ffffff;
    }

    .button8-wrapper .btn8 {
        background: none;
        border: 1px solid #fff;
        border-radius: 5px;
        color: #fff;
        display: inline-block;
        font-weight: 600;
        padding: 12px 32px;
        position: relative;
        z-index: 9;
        text-transform: uppercase;
        text-decoration: none;
        margin: 0 10px;
    }

        .button8-wrapper .btn8:hover {
            border-color: #e12454;
        }

        .button8-wrapper .btn8:after {
            transition: all 0.3s;
        }

        .button8-wrapper .btn8:after, .button8-wrapper .btn8:before {
            background: #e12454;
            content: "";
            position: absolute;
            z-index: -1;
        }

        .button8-wrapper .btn8.slide-1:after {
            height: 0;
            left: 0;
            top: 0;
            width: 100%;
        }

        .button8-wrapper .btn8.slide-1:hover:after {
            height: 100%;
        }

        .button8-wrapper .btn8.slide-2:after {
            height: 0;
            left: 0;
            bottom: 0;
            width: 100%;
        }

        .button8-wrapper .btn8.slide-2:hover:after {
            height: 100%;
        }

        .button8-wrapper .btn8.slide-3:after {
            height: 100%;
            left: 0;
            top: 0;
            width: 0;
        }

        .button8-wrapper .btn8.slide-3:hover:after {
            width: 100%;
        }

        .button8-wrapper .btn8.slide-4:after {
            height: 100%;
            right: 0;
            top: 0;
            width: 0;
        }

        .button8-wrapper .btn8.slide-4:hover:after {
            width: 100%;
        }

        .button8-wrapper .btn8.slide-5:after {
            height: 0;
            left: 50%;
            top: 50%;
            width: 0;
        }

        .button8-wrapper .btn8.slide-5:hover:after {
            height: 100%;
            left: 0;
            top: 0;
            width: 100%;
        }

        .button8-wrapper .btn8.slide-6:before {
            height: 100%;
            left: 0;
            top: 0;
            width: 100%;
        }

        .button8-wrapper .btn8.slide-6:after {
            background: #232323;
            height: 100%;
            left: 0;
            top: 0;
            width: 100%;
        }

        .button8-wrapper .btn8.slide-6:hover:after {
            height: 0;
            left: 50%;
            top: 50%;
            width: 0;
        }

        .button8-wrapper .btn8.slide-7 {
            overflow: hidden;
            color: #ffffff;
        }

            .button8-wrapper .btn8.slide-7:after {
                height: 100%;
                left: -45%;
                top: 0;
                transform: skew(50deg);
                transition-duration: 0.6s;
                transform-origin: top left;
                width: 0;
            }

            .button8-wrapper .btn8.slide-7:hover:after {
                height: 100%;
                width: 145%;
            }

    .button8-wrapper .extra-btns {
        margin-top: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

/* Nine button section */
.button9-wrapper {
    text-align: center;
}

    .button9-wrapper .expan-rouded-btn {
        display: inline-block;
        text-transform: uppercase;
        color: #232323;
        margin: 0 6px;
        font-weight: 600;
        font-size: 14px;
        padding: 15px 28px 15px;
        text-decoration: none;
        position: relative;
        z-index: 1;
        transition: all 0.5s;
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;
        -ms-transition: all 0.5s;
        -moz-transition: all 0.5s;
    }

        .button9-wrapper .expan-rouded-btn span {
            position: absolute;
            top: 0;
            left: 0;
            width: 50px;
            height: 100%;
            z-index: -1;
            border-radius: 50px;
            transition-duration: 0.3s;
            background-color: #e12454;
        }

        .button9-wrapper .expan-rouded-btn:hover {
            color: #ffffff;
        }

            .button9-wrapper .expan-rouded-btn:hover span {
                width: 100%;
            }

        .button9-wrapper .expan-rouded-btn.squre span {
            border-radius: 5px !important;
            width: 90px;
        }

        .button9-wrapper .expan-rouded-btn.squre:hover {
            color: #ffffff;
        }

            .button9-wrapper .expan-rouded-btn.squre:hover span {
                width: 100%;
            }

/*Ten button section*/
.button10-wrapper {
    text-align: center;
    background-color: #232323;
}

    .button10-wrapper .section-heading h4 {
        color: #ffffff;
    }

    .button10-wrapper a {
        margin: 0 10px;
    }

        .button10-wrapper a:hover {
            opacity: 0.7;
        }

    .button10-wrapper .text-gradient {
        padding: 7px 0 2px;
        position: relative;
        border: 0;
        background: linear-gradient(to right, #b783ff, #b783ff, #fa7cc1, #ff85a6, #ff9393);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

        .button10-wrapper .text-gradient span {
            position: absolute;
            bottom: 0;
            left: 0;
            height: 2px;
            width: 100%;
            background: linear-gradient(to right, #b783ff, #b783ff, #fa7cc1, #ff85a6, #ff9393);
        }

    .button10-wrapper .text-undeline {
        font-size: 16px;
        border-bottom: 2px solid #ffffff;
        text-decoration: none;
        color: #ffffff;
        font-weight: 600;
        text-transform: uppercase;
    }

    .button10-wrapper .text-thin-underline {
        font-size: 16px;
        border-bottom: 1px solid #ffffff;
        text-decoration: none;
        color: #ffffff;
        font-weight: 400;
        text-transform: uppercase;
    }

/*Eleven button section */
.button11-wrapper {
    text-align: center;
    background-color: #f7f7f7;
}

    .button11-wrapper .btn11 {
        display: inline-block;
        width: auto;
        text-transform: uppercase;
        color: #111111;
        margin: 0 6px;
        font-weight: 600;
        padding: 12px 32px;
        text-decoration: none;
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;
        -ms-transition: all 0.5s;
        -moz-transition: all 0.5s;
    }

        .button11-wrapper .btn11:hover {
            box-shadow: 0 8px 30px -5px rgba(0, 0, 0, 0.2);
            transform: translate3d(0, -3px, 0);
        }

        .button11-wrapper .btn11.shadow-rounded {
            background-color: #ffffff;
            border-radius: 50px;
        }

        .button11-wrapper .btn11.shadow-squre {
            background-color: #232323;
            color: #ffffff;
        }

/*Eleven button section*/
.button12-wrapper {
    text-align: center;
}

    .button12-wrapper .flat-shadow-btn {
        display: inline-block;
        width: auto;
        text-transform: uppercase;
        border: 1px solid #232323;
        box-shadow: 2px 2px 0 #232323;
        color: #111111;
        margin: 0 6px;
        font-weight: 600;
        padding: 12px 32px;
        text-decoration: none;
        transition: all 0.5s;
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;
        -ms-transition: all 0.5s;
        -moz-transition: all 0.5s;
    }

        .button12-wrapper .flat-shadow-btn:hover {
            background-color: #232323;
            color: #ffffff;
            box-shadow: none;
        }

/*RESPONSIVE CSS*/
/*--width 1199 --*/
@media (max-width: 1199px) {
    .btn-sizes a {
        font-size: 14px;
    }
}
/*--width 991 --*/
@media (max-width: 991px) {
    .btn-sizes a {
        display: block !important;
        width: -moz-max-content !important;
        width: max-content !important;
        margin: 15px auto !important;
        text-align: center !important;
    }

    .btn-sizes .extra-btns {
        display: block !important;
        margin: 15px auto !important;
    }
}
/*======================BUTTON PAGE END =======================*/
/*=====================================CLIENT PAGE START ===============================*/
.client1-wrapper {
    background-color: #f7f7f7;
    text-align: center;
}

    .client1-wrapper a {
        display: block;
        text-align: center;
        padding: 40px 0;
        opacity: 0.5;
        transition: all 0.5s;
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;
        -ms-transition: all 0.5s;
        -moz-transition: all 0.5s;
    }

        .client1-wrapper a:hover {
            background-color: #ffffff;
            opacity: 1;
        }

.client2-wrapper {
    text-align: center;
}

    .client2-wrapper a {
        display: inline-block;
    }

        .client2-wrapper a img {
            width: 100%;
            filter: grayscale(1);
            transition: all 0.5s;
            -webkit-transition: all 0.5s;
            -o-transition: all 0.5s;
            -ms-transition: all 0.5s;
            -moz-transition: all 0.5s;
        }

            .client2-wrapper a img:hover {
                filter: grayscale(0);
            }

.client3-wrapper {
    background-color: #f7f7f7;
    text-align: center;
}

    .client3-wrapper .hover-box {
        text-align: center;
        display: inline-block;
        width: 100%;
        height: 100%;
        padding: 25px;
        position: relative;
        z-index: 0;
        transition: all 0.5s;
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;
        -ms-transition: all 0.5s;
        -moz-transition: all 0.5s;
    }

        .client3-wrapper .hover-box a {
            display: inline-block;
        }

        .client3-wrapper .hover-box .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            opacity: 0;
            transform: scale(0.8);
            background-color: #ffffff;
            transition-duration: 0.3s;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.0784313725);
            transition: all 0.3s ease-in-out;
            -moz-transition: all 0.3s ease-in-out;
            -webkit-transition: all 0.3s ease-in-out;
        }

        .client3-wrapper .hover-box:hover .overlay {
            opacity: 1;
            transform: scale(1);
        }

.client4-wrapper {
    text-align: center;
}

    .client4-wrapper .client-carousel .owl-carousel .owl-nav {
        display: block;
    }

        .client4-wrapper .client-carousel .owl-carousel .owl-nav button {
            height: 40px;
            width: 40px;
            background: #0a58ca;
            color: #fff;
            font-size: 14px;
            margin-top: 30px;
            border-radius: 50px;
        }

    .client4-wrapper .client-carousel .owl-carousel .item img {
        width: auto;
    }

/*=================================== CLIENT PAGE END ===============================*/
/*======================== Google Map section ===================*/
.g-map1-section .h-500px {
    height: 500px;
}

/*=========================== TAB PAGE START ====================*/
/*------ tab-one ------*/
.tab-one-wrapper .tab-one .nav-tabs {
    border: none;
}

    .tab-one-wrapper .tab-one .nav-tabs .nav-item {
        padding: 0px 25px;
    }

        .tab-one-wrapper .tab-one .nav-tabs .nav-item .nav-link {
            display: block;
            position: relative;
            text-transform: uppercase;
            color: rgba(128, 128, 128, 0.7490196078);
        }

            .tab-one-wrapper .tab-one .nav-tabs .nav-item .nav-link.active {
                border: none;
                border-bottom: 2px solid #232323;
                color: #232323;
            }

            .tab-one-wrapper .tab-one .nav-tabs .nav-item .nav-link:hover {
                border: none;
                color: #232323;
            }

                .tab-one-wrapper .tab-one .nav-tabs .nav-item .nav-link:hover::before {
                    transform: scale3d(1, 1, 1);
                    transform-origin: 100% 50%;
                }

            .tab-one-wrapper .tab-one .nav-tabs .nav-item .nav-link::before {
                content: "";
                width: 100%;
                height: 2px;
                position: absolute;
                left: 0;
                bottom: 0;
                transition: 0.5s transform ease;
                transform: scale3d(0, 1, 1);
                background: #232323;
                transform-origin: 0 50%;
            }

.tab-one-wrapper .tab-content .tab-one-home {
    margin: 60px 0 0 0;
}

    .tab-one-wrapper .tab-content .tab-one-home .tab-one-content h4 {
        color: #e12454;
        text-transform: uppercase;
        font-size: 20px;
    }

    .tab-one-wrapper .tab-content .tab-one-home .tab-one-content h1 {
        font-weight: bold;
        font-size: 32px;
    }

    .tab-one-wrapper .tab-content .tab-one-home .tab-one-content p {
        color: rgba(128, 128, 128, 0.8509803922);
        padding: 20px 0 0 0;
    }

    .tab-one-wrapper .tab-content .tab-one-home .tab-one-content a {
        border: 2px solid #232323;
        padding: 10px 30px;
        font-weight: 500;
        background-color: #232323;
        color: #ffffff;
        text-transform: uppercase;
        margin-top: 20px;
        display: inline-block;
        transition: all 0.5s;
    }

        .tab-one-wrapper .tab-content .tab-one-home .tab-one-content a:hover {
            background-color: transparent;
            color: #232323;
        }

    .tab-one-wrapper .tab-content .tab-one-home .tab-one-img img {
        width: 100%;
    }

/*-------- tab-two ------*/
.tab-two-wrapper {
    background-color: #f7f7f7;
}

    .tab-two-wrapper .nav-pills .nav-item {
        padding: 0 25px;
    }

        .tab-two-wrapper .nav-pills .nav-item .nav-link {
            font-size: 18px;
            color: #808080;
        }

            .tab-two-wrapper .nav-pills .nav-item .nav-link i {
                display: block;
                margin-bottom: 10px;
                transform: translateY(0);
                transition: all 0.5s;
            }

            .tab-two-wrapper .nav-pills .nav-item .nav-link.active {
                background-color: transparent;
                color: #e12454;
            }

            .tab-two-wrapper .nav-pills .nav-item .nav-link:hover {
                color: #e12454;
            }

                .tab-two-wrapper .nav-pills .nav-item .nav-link:hover i {
                    transform: translateY(-5px);
                }

    .tab-two-wrapper .tab-content .tab-two-head {
        margin-top: 60px;
    }

        .tab-two-wrapper .tab-content .tab-two-head .tab-two-img img {
            width: 100%;
        }

        .tab-two-wrapper .tab-content .tab-two-head .tab-two-head-wrapper {
            padding-left: 35px;
        }

            .tab-two-wrapper .tab-content .tab-two-head .tab-two-head-wrapper h2 {
                font-size: 30px;
                line-height: 40px;
                margin-bottom: 10px;
            }

            .tab-two-wrapper .tab-content .tab-two-head .tab-two-head-wrapper a {
                border-bottom: 1px solid #232323;
                padding-bottom: 3px;
                text-transform: uppercase;
                font-weight: 500;
            }

                .tab-two-wrapper .tab-content .tab-two-head .tab-two-head-wrapper a:hover {
                    color: #232323;
                }

        .tab-two-wrapper .tab-content .tab-two-head .tab-two-content h6 {
            line-height: 26px;
            font-size: 20px;
        }

        .tab-two-wrapper .tab-content .tab-two-head .tab-two-content p {
            padding: 12px 0 0 0;
        }

/*------ tab-two-end -----*/
/*------- tab-three-start ------*/
.tab-three-wrapper .nav-pills .nav-item {
    padding: 0 30px;
}

    .tab-three-wrapper .nav-pills .nav-item .nav-link {
        background-color: transparent;
        padding: 10px 35px;
        color: gray;
    }

        .tab-three-wrapper .nav-pills .nav-item .nav-link.active {
            background: #ffffff;
            box-shadow: 0 0 15px 0 rgba(23, 23, 23, 0.0784313725);
            border-radius: 20px;
            color: #232323;
        }

        .tab-three-wrapper .nav-pills .nav-item .nav-link:hover {
            color: #232323;
        }

.tab-three-wrapper .tab-content .tab-three-accordion {
    background-color: #ffffff;
    padding: 30px 0;
}

.tab-three-wrapper .tab-content .tab-accordion .accordion-item .accordion-header button {
    background-color: #232323;
    color: #ffffff;
}

    .tab-three-wrapper .tab-content .tab-accordion .accordion-item .accordion-header button::after {
        color: #ffffff;
    }

.tab-three-wrapper .tab-content .tab-accordion .accordion-item .accordion-body {
    background-color: #232323;
}

/*-------- tab-four-start --------*/
/*------- tab-five-start ---------*/
.tab-five-wrapper .nav-pills {
    border-top: 1px solid rgba(128, 128, 128, 0.5098039216);
    border-bottom: 1px solid rgba(128, 128, 128, 0.5098039216);
    padding: 20px 0 0;
}

    .tab-five-wrapper .nav-pills .nav-item .nav-link {
        background-color: transparent;
        color: #232323;
        position: relative;
        border-bottom: 3px solid transparent;
        padding-bottom: 20px;
        border-radius: 0px;
    }

        .tab-five-wrapper .nav-pills .nav-item .nav-link:hover {
            opacity: 1;
            border-bottom: 3px solid #ff7a56;
            color: #ff7a56;
        }

        .tab-five-wrapper .nav-pills .nav-item .nav-link.active {
            border-bottom: 3px solid #ff7a56;
            color: #ff7a56;
        }

.tab-five-wrapper .tab-content .tab-five-head {
    display: flex;
    align-items: center;
    margin-top: 60px;
}

.tab-five-wrapper .tab-content .tab-five-content {
    margin-left: 100px;
}

    .tab-five-wrapper .tab-content .tab-five-content h2 {
        padding-bottom: 50px;
        font-size: 32px;
    }

    .tab-five-wrapper .tab-content .tab-five-content .tab-five-strategic {
        display: flex;
    }

        .tab-five-wrapper .tab-content .tab-five-content .tab-five-strategic .tab-icon i {
            font-size: 30px;
            color: #ff7a56;
        }

    .tab-five-wrapper .tab-content .tab-five-content .straregic-two {
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .tab-five-wrapper .tab-content .tab-five-content .strategic-content {
        margin-left: 25px;
    }

        .tab-five-wrapper .tab-content .tab-five-content .strategic-content p {
            max-width: 350px;
        }

    .tab-five-wrapper .tab-content .tab-five-content a {
        border-bottom: 2px solid #232323;
        text-transform: uppercase;
        font-weight: 600;
        transition: all 0.5s;
    }

        .tab-five-wrapper .tab-content .tab-five-content a:hover {
            color: rgba(128, 128, 128, 0.7607843137);
        }

@media (max-width: 991px) {
    .tab-five-wrapper .tab-content .tab-five-head {
        display: block;
    }

    .tab-five-wrapper .tab-content .tab-five-content {
        margin-left: 0px;
        margin-top: 30px;
    }
}
/*==================== FORM PAGE START ====================*/
/*--------- form-one-start ---------*/
.form-control {
    padding: 12px 10px;
}

    .form-control:focus {
        box-shadow: none;
    }

.form-btn {
    background-image: linear-gradient(to right, #662D8C, #ED1E79, #662D8C);
    color: #fff;
    background-size: 200% auto;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: inline-block;
    width: auto;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 6px;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 32px;
    text-decoration: none;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    border: none;
}

    .form-btn.btn-two {
        background-image: linear-gradient(to right, #7c5236, #3e5810, #6e5432);
        width: 100%;
    }

    .form-btn.send-btn {
        float: right;
        margin-top: 20px;
    }

    .form-btn.float-btn {
        background-image: linear-gradient(to right, #e42564, #fa6259, #e42564);
        margin-top: 20px;
    }

    .form-btn:hover {
        background-position: right center;
    }

.form-one-wrapper .form-one form input {
    padding: 12px 10px;
}

.form-one-wrapper .form-one form textarea {
    height: 110px;
}

.form-one-wrapper .form-one .form-control:focus {
    border: 1px solid #86b7fe;
}

/*--------- form-two-start ---------*/
.form-two-wrapper {
    background-image: url("../images/form/bg-two.jpg");
    background-size: cover;
    position: relative;
}

    .form-two-wrapper .form-two form {
        background-color: #ffffff;
        padding: 40px 30px;
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.0784313725);
    }

    .form-two-wrapper .form-two .form-control:focus {
        border: 1px solid #86b7fe;
    }

/*------- form-three-start --------*/
.form-three-wrapper .form-three form textarea {
    height: 195px;
}

.form-three-wrapper .form-three .form-control:focus {
    border: 1px solid #86b7fe;
}

/*----- form-four-start ------*/
.form-four-wrapper {
    background-color: #1f232c;
}

    .form-four-wrapper .section-heading h4 {
        color: #ffffff;
    }

    .form-four-wrapper .form-four form input {
        background: transparent;
        border-bottom: 1px solid rgba(128, 128, 128, 0.5294117647);
        border-top: none;
        border-left: none;
        border-right: none;
        border-radius: 0px;
        color: #ffffff;
        padding: 20px 10px;
    }

        .form-four-wrapper .form-four form input::-moz-placeholder {
            color: gray;
        }

        .form-four-wrapper .form-four form input::placeholder {
            color: gray;
        }

    .form-four-wrapper .form-four form .form-check-input:focus {
        box-shadow: none;
    }

    .form-four-wrapper .form-four form .check-btn {
        font-size: 14px;
        color: gray;
        margin-left: 8px;
    }

    .form-four-wrapper .form-four form textarea {
        background: transparent;
        border-bottom: 1px solid rgba(128, 128, 128, 0.5294117647);
        border-top: none;
        border-left: none;
        border-right: none;
        border-radius: 0px;
        color: #ffffff;
    }

    .form-four-wrapper .form-four .form-control:focus {
        border: 1px solid #86b7fe;
    }

.form-five .form-control:focus {
    border: 1px solid #86b7fe;
}

/*========================== FORM PAGE END ====================*/
/*===================== COUNTER PAGE START ==================*/
/*------- counter-one-start -------*/
.counter-one-wrapper .counter-one {
    text-align: center;
}

    .counter-one-wrapper .counter-one .our-progress {
        margin-top: 20px;
    }

        .counter-one-wrapper .counter-one .our-progress .chart-one {
            position: relative;
            margin-bottom: 15px;
        }

        .counter-one-wrapper .counter-one .our-progress h4 {
            font-size: 24px;
            line-height: 35px;
        }

.counter-one-wrapper .percent {
    position: absolute;
    top: 38%;
    left: 0;
    right: 0;
    margin: 0px auto;
    font-size: 30px;
    line-height: 30px;
    font-weight: 400;
    color: #111111;
    letter-spacing: 3px;
}

    .counter-one-wrapper .percent::after {
        content: "%";
        font-size: 18px;
        position: absolute;
        margin-top: -5px;
    }

/*------ counter-two-start -------*/
.counter-two-wrapper {
    background-color: #f9f9f9;
}

    .counter-two-wrapper .counter-two {
        text-align: center;
    }

        .counter-two-wrapper .counter-two .our-progress {
            margin-top: 20px;
        }

            .counter-two-wrapper .counter-two .our-progress .chart-two-one, .counter-two-wrapper .counter-two .our-progress .chart-two-two, .counter-two-wrapper .counter-two .our-progress .chart-two-three, .counter-two-wrapper .counter-two .our-progress .chart-two-four {
                position: relative;
                margin-bottom: 15px;
            }

            .counter-two-wrapper .counter-two .our-progress h4 {
                font-size: 24px;
                line-height: 35px;
            }

    .counter-two-wrapper .percent-one {
        position: absolute;
        top: 25%;
        left: 0;
        right: 0;
        margin: 0px auto;
        height: 80px;
        width: 80px;
        background-color: #e12454;
        border-radius: 50%;
        font-size: 24px;
        line-height: 80px;
        font-weight: 600;
        color: #fff;
        letter-spacing: 3px;
    }

        .counter-two-wrapper .percent-one::after {
            content: "%";
            font-size: 18px;
            position: absolute;
            color: #fff;
        }

        .counter-two-wrapper .percent-one.percent-two {
            background-color: #7197b3;
        }

        .counter-two-wrapper .percent-one.percent-three {
            background-color: #73ca8d;
        }

        .counter-two-wrapper .percent-one.percent-four {
            background-color: #ea6a38;
        }

/*------ counter-three-start -------*/
.counter-three-wrapper {
    background-color: #1f232c;
}

    .counter-three-wrapper .section-heading h4 {
        color: #ffffff;
    }

    .counter-three-wrapper .counter-three .our-progress {
        margin-top: 20px;
        text-align: center;
    }

        .counter-three-wrapper .counter-three .our-progress .chart-three h2 {
            font-size: 42px;
            color: #ffffff;
            display: inline-block;
        }

        .counter-three-wrapper .counter-three .our-progress .chart-three .count-plus {
            color: #e12454;
            font-size: 25px;
            font-weight: 700;
            margin-left: 5px;
            position: relative;
            top: -20px;
        }

        .counter-three-wrapper .counter-three .our-progress .chart-three .counter-head {
            clear: both;
        }

            .counter-three-wrapper .counter-three .our-progress .chart-three .counter-head p {
                font-size: 20px;
                text-transform: uppercase;
            }

/*------ counter-four-start -------*/
.counter-four-wrapper .counter-four {
    text-align: center;
}

    .counter-four-wrapper .counter-four .our-progress-one {
        margin-top: 20px;
        background-color: #e12454;
        border-radius: 5px;
    }

        .counter-four-wrapper .counter-four .our-progress-one h2 {
            font-size: 18px;
            line-height: 24px;
            padding-top: 30px;
        }

            .counter-four-wrapper .counter-four .our-progress-one h2 a {
                color: #ffffff;
            }

        .counter-four-wrapper .counter-four .our-progress-one .chart-four-1st, .counter-four-wrapper .counter-four .our-progress-one .chart-four-2nd, .counter-four-wrapper .counter-four .our-progress-one .chart-four-3rd, .counter-four-wrapper .counter-four .our-progress-one .chart-four-4th {
            position: relative;
            padding: 32px 0;
        }

        .counter-four-wrapper .counter-four .our-progress-one.our-progress-two {
            margin-top: 20px;
            background-color: #7197b3;
        }

        .counter-four-wrapper .counter-four .our-progress-one.our-progress-three {
            margin-top: 20px;
            background-color: #73ca8d;
        }

        .counter-four-wrapper .counter-four .our-progress-one.our-progress-four {
            margin-top: 20px;
            background-color: #ea6a38;
        }

.counter-four-wrapper .percent {
    position: absolute;
    top: 42%;
    left: 0;
    right: 0;
    margin: 0px auto;
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 3px;
}

    .counter-four-wrapper .percent::after {
        content: "%";
        font-size: 18px;
        position: absolute;
        color: #fff;
    }

/*===================== COUNTER PAGE END ==================*/
/*================= COUNT-DOWN PAGE START ================*/
/*-------- countdown-first-start --------*/
.count-one-wrapper #countdown-one {
    text-align: center;
    background: #222;
    background-image: -o-linear-gradient(top, #222, #333, #333, #222);
    border: 1px solid #111;
    border-radius: 5px;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.6);
    margin: auto;
    padding: 40px 0;
    position: relative;
}

    .count-one-wrapper #countdown-one::before {
        content: "";
        width: 8px;
        height: 65px;
        background: #444;
        background-image: -o-linear-gradient(top, #555, #444, #444, #555);
        border: 1px solid #111;
        border-top-left-radius: 6px;
        border-bottom-left-radius: 6px;
        display: block;
        position: absolute;
        top: 60px;
        left: -9px;
    }

    .count-one-wrapper #countdown-one::after {
        content: "";
        width: 8px;
        height: 65px;
        background: #444;
        background-image: -o-linear-gradient(top, #555, #444, #444, #555);
        border: 1px solid #111;
        border-top-right-radius: 6px;
        border-bottom-right-radius: 6px;
        display: block;
        position: absolute;
        top: 60px;
        right: -9px;
    }

    .count-one-wrapper #countdown-one #tiles span {
        width: 92px;
        max-width: 92px;
        font-size: 30px;
        font-weight: bold;
        text-align: center;
        color: #111111;
        background-color: #ddd;
        background-image: -o-linear-gradient(top, #bbb, #eee);
        border-top: 1px solid #fff;
        border-radius: 3px;
        box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.7);
        margin: 0 7px;
        padding: 18px 0;
        display: inline-block;
        position: relative;
    }

        .count-one-wrapper #countdown-one #tiles span::before {
            content: "";
            width: 100%;
            height: 13px;
            background: #111;
            display: block;
            padding: 0 3px;
            position: absolute;
            top: 41%;
            left: -3px;
            z-index: -1;
        }

        .count-one-wrapper #countdown-one #tiles span::after {
            content: "";
            width: 100%;
            height: 1px;
            background: #eee;
            border-top: 1px solid #333;
            display: block;
            position: absolute;
            top: 48%;
            left: 0;
        }

    .count-one-wrapper #countdown-one .labels {
        text-align: center;
        margin-top: 12px;
    }

        .count-one-wrapper #countdown-one .labels li {
            width: 102px;
            font: bold 15px "Droid Sans", Arial, sans-serif;
            color: #f47321;
            text-shadow: 1px 1px 0px #000;
            text-align: center;
            text-transform: uppercase;
            display: inline-block;
        }

/*---- count-down-two-start -----*/
.count-two-wrapper {
    text-align: center;
    background-color: #232323;
}

    .count-two-wrapper .section-heading h4 {
        color: #ffffff;
    }

    .count-two-wrapper div {
        display: inline-block;
        line-height: 1;
        padding: 20px;
        font-size: 40px;
    }

    .count-two-wrapper span {
        display: block;
        font-size: 20px;
        color: white;
    }

#days {
    font-size: 100px;
    color: #db4844;
}

#hours {
    font-size: 100px;
    color: #f07c22;
}

#minutes {
    font-size: 100px;
    color: #f6da74;
}

#seconds {
    font-size: 50px;
    color: #abcd58;
}

/*================= PRICING PAGE START ================*/
/*-------- pricing-first-start --------*/
.price-btn {
    border: 2px solid #262b35;
    padding: 8px 22px;
    border-radius: 4px;
    margin-top: 15px;
    display: inline-block;
    text-transform: uppercase;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
}

    .price-btn:hover {
        color: #ffffff;
        background-color: #262b35;
    }

    .price-btn.price-gradient {
        background-image: linear-gradient(to right, #ec606c, #eb7242, #ec606c);
        color: #fff;
        background-size: 200% auto;
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        border: none;
    }

        .price-btn.price-gradient:hover {
            background-position: right center;
        }

.pricing-one-wrapper .pricing-one .pricing-table {
    text-align: center;
    padding: 65px;
}

    .pricing-one-wrapper .pricing-one .pricing-table .pricing-head h5 {
        color: #374162;
        font-size: 20px;
        text-transform: uppercase;
        font-weight: 500;
        line-height: 28px;
        margin-bottom: 0px;
    }

    .pricing-one-wrapper .pricing-one .pricing-table .pricing-head span {
        font-size: 13px;
        text-transform: uppercase;
        color: gray;
    }

    .pricing-one-wrapper .pricing-one .pricing-table .pricing-head h2 {
        margin-top: 40px;
        color: #374162;
    }

    .pricing-one-wrapper .pricing-one .pricing-table .pricing-menu {
        padding: 30px 0;
    }

        .pricing-one-wrapper .pricing-one .pricing-table .pricing-menu ul li {
            color: gray;
            padding: 10px 0;
            border-bottom: 1px solid rgba(128, 128, 128, 0.4196078431);
        }

            .pricing-one-wrapper .pricing-one .pricing-table .pricing-menu ul li span {
                color: #111111;
                font-weight: bold;
            }

            .pricing-one-wrapper .pricing-one .pricing-table .pricing-menu ul li:last-child {
                border-bottom: none;
            }

.pricing-one-wrapper .pricing-one.pricing-two {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.0784313725);
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

/*-------- pricing-two-start --------*/
.box-two {
    padding-right: 0px;
}

.box-two-left {
    padding-left: 0px;
}

.pricing-two-wrapper .pricing-two .pricing-table-two {
    border: 1px solid #e4e4e4;
    border-radius: 6px;
    text-align: center;
}

    .pricing-two-wrapper .pricing-two .pricing-table-two .price-two-head {
        background-color: #f7f7f7;
        padding: 12px;
    }

        .pricing-two-wrapper .pricing-two .pricing-table-two .price-two-head h6 {
            text-transform: uppercase;
            font-size: 13px;
            margin-bottom: 0px;
        }

    .pricing-two-wrapper .pricing-two .pricing-table-two .pricing-body {
        padding: 40px 0;
    }

        .pricing-two-wrapper .pricing-two .pricing-table-two .pricing-body .price-icon i {
            font-size: 35px;
            color: #e12454;
            margin-bottom: 20px;
        }

        .pricing-two-wrapper .pricing-two .pricing-table-two .pricing-body .pricing-menu {
            padding: 30px 0;
        }

            .pricing-two-wrapper .pricing-two .pricing-table-two .pricing-body .pricing-menu ul li {
                color: gray;
                padding: 15px 0;
                border-bottom: 1px solid rgba(128, 128, 128, 0.4196078431);
            }

                .pricing-two-wrapper .pricing-two .pricing-table-two .pricing-body .pricing-menu ul li span {
                    color: #111111;
                    font-weight: bold;
                }

                .pricing-two-wrapper .pricing-two .pricing-table-two .pricing-body .pricing-menu ul li:last-child {
                    border-bottom: none;
                }

    .pricing-two-wrapper .pricing-two .pricing-table-two.box-two-shadow {
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.0784313725);
        transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -webkit-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
    }

/*-------- pricing-three-start --------*/
.pricing-three-wrapper .pricing-three .pricing-table-three {
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.0784313725);
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    text-align: center;
    border-radius: 5px;
    padding: 60px;
}

    .pricing-three-wrapper .pricing-three .pricing-table-three .price-three-head span {
        font-size: 14px;
        line-height: 20px;
        color: #828282;
        margin-bottom: 10px;
    }

    .pricing-three-wrapper .pricing-three .pricing-table-three .price-three-head h6 {
        text-transform: uppercase;
        font-size: 18px;
        margin: 12px 0 25px 0;
    }

    .pricing-three-wrapper .pricing-three .pricing-table-three .price-three-head h2 {
        font-size: 36px;
        color: #0b4ebd;
    }

    .pricing-three-wrapper .pricing-three .pricing-table-three .price-three-head strong {
        text-transform: uppercase;
        font-weight: 500;
    }

    .pricing-three-wrapper .pricing-three .pricing-table-three .pricing-body-three {
        padding: 30px 0;
    }

        .pricing-three-wrapper .pricing-three .pricing-table-three .pricing-body-three ul li {
            color: #828282;
            padding: 20px 0;
            border-bottom: 1px solid rgba(130, 130, 130, 0.4901960784);
        }

            .pricing-three-wrapper .pricing-three .pricing-table-three .pricing-body-three ul li:last-child {
                border-bottom: none;
            }

    .pricing-three-wrapper .pricing-three .pricing-table-three .price-btn-three {
        background-color: #232323;
        color: #ffffff;
        padding: 10px 40px;
        text-transform: uppercase;
        border: 2px solid #232323;
        border-radius: 0px;
        transition: all 0.5s;
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;
        -ms-transition: all 0.5s;
        -moz-transition: all 0.5s;
    }

        .pricing-three-wrapper .pricing-three .pricing-table-three .price-btn-three:hover {
            background-color: transparent;
            color: #232323;
        }

        .pricing-three-wrapper .pricing-three .pricing-table-three .price-btn-three.btn-clr {
            background-color: #ffffff;
            border: 2px solid #ffffff;
            color: #232323;
        }

            .pricing-three-wrapper .pricing-three .pricing-table-three .price-btn-three.btn-clr:hover {
                color: #ffffff;
                background-color: transparent;
            }

    .pricing-three-wrapper .pricing-three .pricing-table-three.price-bg {
        padding-top: 70px;
        padding-bottom: 70px;
        background: linear-gradient(90deg, rgb(2, 0, 36) 0%, rgb(18, 64, 139) 62%, rgb(66, 133, 244) 100%);
    }

        .pricing-three-wrapper .pricing-three .pricing-table-three.price-bg h6 {
            color: #ffffff;
        }

        .pricing-three-wrapper .pricing-three .pricing-table-three.price-bg h2 {
            color: #ffffff;
        }

        .pricing-three-wrapper .pricing-three .pricing-table-three.price-bg strong {
            color: #ffffff;
        }

        .pricing-three-wrapper .pricing-three .pricing-table-three.price-bg .pricing-body-three {
            padding: 30px 0;
        }

            .pricing-three-wrapper .pricing-three .pricing-table-three.price-bg .pricing-body-three ul li {
                color: #ffffff;
            }

/*-/================= TESTIMONIAL PAGE START ================*/
/*-------- testimonial-first-start --------*/
.testimonial-one-wrapper {
    background-color: #f7f7f7;
}

    .testimonial-one-wrapper .testimonial-one {
        background-color: #ffffff;
    }

        .testimonial-one-wrapper .testimonial-one:hover {
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.0705882353);
            transition: all 0.3s ease-in-out;
            -moz-transition: all 0.3s ease-in-out;
            -webkit-transition: all 0.3s ease-in-out;
            -ms-transition: all 0.3s ease-in-out;
            -o-transition: all 0.3s ease-in-out;
        }

        .testimonial-one-wrapper .testimonial-one .test-img img {
            width: 100%;
        }

        .testimonial-one-wrapper .testimonial-one .test-content {
            text-align: center;
            position: relative;
            padding: 45px 20px;
        }

            .testimonial-one-wrapper .testimonial-one .test-content h6 {
                font-size: 22px;
                line-height: 40px;
            }

            .testimonial-one-wrapper .testimonial-one .test-content .test-icon {
                height: 75px;
                width: 75px;
                line-height: 71px;
                overflow: hidden;
                box-shadow: 0 0 25px rgba(0, 0, 0, 0.0509803922);
                position: absolute;
                top: 0;
                left: 50%;
                background: white;
                border-radius: 50%;
                transform: translate(-50%, -50%) scale(1);
                -webkit-transform: translate(-50%, -50%) scale(1);
                -moz-transform: translate(-50%, -50%) scale(1);
                -ms-transform: translate(-50%, -50%) scale(1);
                transition: all 0.3s ease-in-out;
            }

                .testimonial-one-wrapper .testimonial-one .test-content .test-icon i {
                    background: linear-gradient(to right, #b783ff, #b783ff, #fa7cc1, #ff85a6, #ff9393);
                    -webkit-background-clip: text;
                    -webkit-text-fill-color: transparent;
                    font-size: 25px;
                }

            .testimonial-one-wrapper .testimonial-one .test-content span {
                color: rgba(128, 128, 128, 0.7607843137);
                font-weight: 500;
            }

/*------------ testimonial-two -----------*/
.testimonial-two-wrapper {
    /*background-color: #232323;*/
}

    .testimonial-two-wrapper .section-heading h4 {
        color: #ffffff;
    }

    .testimonial-two-wrapper .slider-test .owl-carousel .item .slider-wrapper .slider-content {
        padding: 20px;
        position: relative;
        background-color: #ffffff;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.0784313725);
        transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -webkit-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
    }

        .testimonial-two-wrapper .slider-test .owl-carousel .item .slider-wrapper .slider-content::before {
            content: "";
            display: block;
            position: absolute;
            border-style: solid;
            height: 0;
            width: 0;
            border-color: #ffffff transparent transparent;
            border-width: 27px 10px 0;
            border-left-color: transparent !important;
            border-right-color: transparent !important;
            bottom: -19px;
            left: 50px;
            z-index: 1;
            transform: rotate(27deg);
        }

        .testimonial-two-wrapper .slider-test .owl-carousel .item .slider-wrapper .slider-content:hover {
            transform: translate3d(0, -3px, 0);
        }

    .testimonial-two-wrapper .slider-test .owl-carousel .item .slider-wrapper .slider-img {
        display: flex;
        margin-top: 30px;
        align-items: center;
    }

        .testimonial-two-wrapper .slider-test .owl-carousel .item .slider-wrapper .slider-img img {
            width: 80px;
        }

        .testimonial-two-wrapper .slider-test .owl-carousel .item .slider-wrapper .slider-img .slider-head {
            margin-left: 22px;
        }

            .testimonial-two-wrapper .slider-test .owl-carousel .item .slider-wrapper .slider-img .slider-head h6 {
                color: #ffffff;
                margin-bottom: 2px;
                font-size: 22px;
            }

            .testimonial-two-wrapper .slider-test .owl-carousel .item .slider-wrapper .slider-img .slider-head span {
                color: rgba(128, 128, 128, 0.8509803922);
            }

    .testimonial-two-wrapper .slider-test .owl-carousel .owl-dots {
        text-align: center;
        margin-top: 15px;
    }

        .testimonial-two-wrapper .slider-test .owl-carousel .owl-dots .owl-dot {
            background-color: #ffffff;
            padding: 5px !important;
            margin: 5px;
            border-radius: 50%;
        }

    .testimonial-two-wrapper .slider-test .owl-carousel .owl-nav {
        margin-top: 10px;
        text-align: center;
    }

        .testimonial-two-wrapper .slider-test .owl-carousel .owl-nav .owl-prev {
            position: absolute;
            left: -52px;
            top: 220px;
        }

        .testimonial-two-wrapper .slider-test .owl-carousel .owl-nav .owl-next {
            position: absolute;
            right: -52px;
            top: 220px;
        }

/*--------- testimonial-three-start ---------*/
.testimonial-three-wrapper {
    background-color: #dbdbdb;
}

    .testimonial-three-wrapper .slider-two-wrapper {
        background-color: #f7f7f7;
        position: relative;
        padding: 45px;
        transition-duration: 0.5s;
    }

        .testimonial-three-wrapper .slider-two-wrapper:hover {
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.0705882353);
            background: #ffffff;
        }

            .testimonial-three-wrapper .slider-two-wrapper:hover .slider-quote {
                transform: translateY(-50%) rotateY(-180deg) rotateX(-180deg);
            }

        .testimonial-three-wrapper .slider-two-wrapper .slider-quote {
            position: absolute;
            top: 0;
            transform: translateY(-50%) rotateY(0) rotateX(0);
            transition: all 0.5s;
            -webkit-transition: all 0.5s;
            -o-transition: all 0.5s;
            -ms-transition: all 0.5s;
            -moz-transition: all 0.5s;
        }

            .testimonial-three-wrapper .slider-two-wrapper .slider-quote i {
                font-size: 35px;
                color: #1a5cc9;
            }

        .testimonial-three-wrapper .slider-two-wrapper .slider-two-content {
            border-bottom: 1px solid rgba(128, 128, 128, 0.4117647059);
            padding-bottom: 20px;
            display: inline-block;
        }

        .testimonial-three-wrapper .slider-two-wrapper .slider-author {
            display: flex;
            align-items: center;
            margin-top: 20px;
        }

            .testimonial-three-wrapper .slider-two-wrapper .slider-author img {
                width: 50px;
            }

            .testimonial-three-wrapper .slider-two-wrapper .slider-author .author-name {
                margin-left: 15px;
            }

                .testimonial-three-wrapper .slider-two-wrapper .slider-author .author-name h6 {
                    margin-bottom: 0px;
                    font-size: 22px;
                }

                .testimonial-three-wrapper .slider-two-wrapper .slider-author .author-name span {
                    color: #999999;
                    font-size: 14px;
                    font-weight: 500;
                }

/*------- testimonial-four-start -------*/
.testimonial-four-wrapper .test-bg {
    background-image: url("../images/testimonial/image_bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 100px 0;
    width: 100%;
}

    .testimonial-four-wrapper .test-bg .test-bg-overlay {
        position: absolute;
        top: 0%;
        left: 0%;
        right: 0%;
        bottom: 0%;
        background: #121517;
        opacity: 0.7;
    }

.testimonial-four-wrapper .forth-slider .owl-carousel .owl-item img {
    width: 158px;
}

.testimonial-four-wrapper .forth-slider .owl-carousel .owl-item .testimonial-slider .slider-img-wrapper {
    float: left;
    width: 15%;
}

.testimonial-four-wrapper .forth-slider .owl-carousel .owl-item .testimonial-slider .test-content {
    float: left;
    width: 85%;
    padding-left: 30px;
    padding-top: 45px;
}

    .testimonial-four-wrapper .forth-slider .owl-carousel .owl-item .testimonial-slider .test-content p {
        color: #ffffff;
        font-style: italic;
    }

    .testimonial-four-wrapper .forth-slider .owl-carousel .owl-item .testimonial-slider .test-content h3 {
        color: #ffffff;
        font-size: 22px;
    }

    .testimonial-four-wrapper .forth-slider .owl-carousel .owl-item .testimonial-slider .test-content span {
        color: #3f80ea;
    }

.testimonial-four-wrapper .forth-slider .owl-carousel .owl-dots {
    text-align: center;
}

.testimonial-four-wrapper .forth-slider .owl-carousel button.owl-dot span {
    width: 10px;
    height: 10px;
    background: #676b6e;
    border-radius: 50px;
    margin: 10px;
    transition: all 0.5s;
}

    .testimonial-four-wrapper .forth-slider .owl-carousel button.owl-dot span:hover {
        background: #e12454;
        width: 12px;
        height: 12px;
        transition: all 0.5s;
    }

.testimonial-four-wrapper .forth-slider .owl-carousel button.owl-dot.active span {
    background: #e12454;
    width: 12px;
    height: 12px;
    transition: all 0.5s;
}

/*------- testimonial-five-start -------*/
.testimonial-five-wrapper .testimonial-five .owl-carousel .item .test-five-wrapper {
    text-align: center;
}

    .testimonial-five-wrapper .testimonial-five .owl-carousel .item .test-five-wrapper h4 {
        font-size: 22px;
    }

    .testimonial-five-wrapper .testimonial-five .owl-carousel .item .test-five-wrapper .test-five-icon {
        margin-bottom: 20px;
    }

        .testimonial-five-wrapper .testimonial-five .owl-carousel .item .test-five-wrapper .test-five-icon i {
            color: #e12454;
            font-size: 40px;
        }

    .testimonial-five-wrapper .testimonial-five .owl-carousel .item .test-five-wrapper p {
        max-width: 925px;
        font-style: italic;
        margin: 0 auto;
        display: block;
        padding: 10px 0;
    }

    .testimonial-five-wrapper .testimonial-five .owl-carousel .item .test-five-wrapper h6 {
        margin: 10px 0;
        font-size: 20px;
        color: #e12454;
    }

.testimonial-five-wrapper .testimonial-five .owl-carousel .owl-nav {
    display: block;
    margin-top: 10px;
    text-align: center;
}

    .testimonial-five-wrapper .testimonial-five .owl-carousel .owl-nav .owl-prev, .testimonial-five-wrapper .testimonial-five .owl-carousel .owl-nav .owl-next {
        background: #f7f7f7;
        color: #999999;
        transition: all 0.5s;
        position: absolute;
        top: 220px;
    }

    .testimonial-five-wrapper .testimonial-five .owl-carousel .owl-nav .owl-prev {
        left: -52px;
    }

    .testimonial-five-wrapper .testimonial-five .owl-carousel .owl-nav .owl-next {
        right: -52px;
    }

/*--width 991 --*/
@media (max-width: 991px) {
    .tab-two-wrapper .tab-content .tab-two-head .tab-two-head-wrapper {
        padding: 20px 0;
    }

    .tab-one-wrapper .tab-content .tab-one-home .tab-one-content h4 {
        margin-top: 20px;
    }

    .testimonial-three-wrapper .slider-two-wrapper {
        margin: 30px 0;
    }
}

@media (max-width: 767px) {
    .tab-one-wrapper .tab-one .nav-tabs .nav-item {
        padding: 0px 5px;
    }

    .tab-two-wrapper .nav-pills .nav-item {
        padding: 0 3px;
    }

    .tab-three-wrapper .nav-pills .nav-item {
        padding: 0 3px;
    }
}

@media (max-width: 580px) {
    .tab-one-wrapper .tab-one .nav {
        display: block;
    }

    .tab-one-wrapper .tab-one .nav-tabs .nav-item .nav-link {
        margin: 0 auto;
    }

    .tab-two-wrapper .nav {
        display: block;
    }

    .tab-two-wrapper .nav-pills .nav-item .nav-link {
        margin: 0 auto;
    }

    .tab-two-wrapper .tab-content .tab-two-head .tab-two-head-wrapper h2 {
        font-size: 24px;
    }

    .tab-three-wrapper .nav {
        display: block;
    }

    .tab-three-wrapper .nav-pills .nav-item .nav-link {
        margin: 10px auto;
    }

    .tab-five-wrapper .nav {
        display: block;
    }

    .tab-five-wrapper .nav-pills .nav-item .nav-link {
        margin: 8px auto;
        padding-bottom: 10px;
    }

    .tab-five-wrapper .tab-content .tab-five-img img {
        width: 100%;
    }
}
/*--------- ALERT PAGE START ---------*/
.al-section-1 .alert-section-1 {
    margin-top: 40px;
}

    .al-section-1 .alert-section-1 .alert-icon {
        font-size: 18px;
        margin-right: 15px;
        color: #797979;
    }

    .al-section-1 .alert-section-1 .envelope-color {
        color: #797979;
    }

    .al-section-1 .alert-section-1 .triangle-color {
        color: #eb768c;
    }

    .al-section-1 .alert-section-1 .umbrella-color {
        color: #31aae2;
    }

    .al-section-1 .alert-section-1 .bell-color {
        color: #f0c440;
    }

    .al-section-1 .alert-section-1 .check-color {
        color: #73c8b7;
    }

    .al-section-1 .alert-section-1 .bullhorn-color {
        color: #5581c4;
    }

    .al-section-1 .alert-section-1 p {
        font-size: 20px;
    }

/*--------section-top-padding------*/
.al-section-2 {
    background-color: #f9f9f9;
}

    .al-section-2 span i {
        padding: 24px;
    }

    .al-section-2 .alert-img {
        float: left;
        padding: 0px 25px;
    }

        .al-section-2 .alert-img span {
            display: inline-block;
            width: 70px;
            height: 70px;
        }

    .al-section-2 .alert-content {
        margin-left: 115px;
    }

        .al-section-2 .alert-content h4 {
            font-size: 24px;
            line-height: 35px;
        }

    .al-section-2 .alert-light {
        padding: 30px;
        margin-top: 40px;
    }

    .al-section-2 .envelope-color {
        background-color: #797979;
        color: #fff;
        border-radius: 40px;
    }

    .al-section-2 .triangle-color {
        background-color: #eb768c;
        color: #fff;
        border-radius: 40px;
    }

    .al-section-2 .umbrella-color {
        background-color: #31aae2;
        color: #fff;
        border-radius: 40px;
    }

    .al-section-2 .bell-color {
        background-color: #f0c440;
        color: #fff;
        border-radius: 40px;
    }

    .al-section-2 .check-color {
        background-color: #73c8b7;
        color: #fff;
        border-radius: 40px;
    }

    .al-section-2 .bullhorn-color {
        background-color: #5581c4;
        color: #fff;
        border-radius: 40px;
    }

/*--------section-top-padding------*/
.al-section-3 span i {
    padding: 21px;
    color: #fff;
}

.al-section-3 .alert-img {
    float: left;
    padding: 0px 25px;
}

    .al-section-3 .alert-img span {
        display: inline-block;
        width: 70px;
        height: 70px;
        border: 3px solid #fff;
        border-radius: 40px;
        line-height: 70px;
        text-align: center;
    }

.al-section-3 .alert-light {
    padding: 30px;
    margin-top: 40px;
}

.al-section-3 .envelope-color {
    background-color: #797979;
    color: #fff;
}

.al-section-3 .triangle-color {
    background-color: #eb768c;
    color: #fff;
}

.al-section-3 .umbrella-color {
    background-color: #31aae2;
    color: #fff;
}

.al-section-3 .bell-color {
    background-color: #f0c440;
    color: #fff;
}

.al-section-3 .check-color {
    background-color: #73c8b7;
    color: #fff;
}

.al-section-3 .bullhorn-color {
    background-color: #5581c4;
    color: #fff;
}

.al-section-3 .alert-content {
    margin-left: 115px;
}

    .al-section-3 .alert-content p {
        color: #ffffff;
    }

    .al-section-3 .alert-content h4 {
        color: #fff;
        font-size: 24px;
        line-height: 35px;
    }

.al-section-3 .btn-close {
    background: none;
    opacity: 1;
}

    .al-section-3 .btn-close:focus {
        box-shadow: none;
    }

.al-section-3 span.cancle-icon {
    position: absolute;
    right: 0px;
    top: 0;
}

/*----alert section-4----*/
.al-section-4 {
    background-color: #f9f9f9;
}

    .al-section-4 .alert-box {
        background-color: #fff;
        margin-top: 30px;
    }

    .al-section-4 .alert {
        padding: 0px;
    }

    .al-section-4 .alert-icon {
        display: inline-block;
        height: 100%;
        border-right: 1px solid #e9e9e9;
        padding: 40px;
    }

        .al-section-4 .alert-icon i {
            font-size: 30px;
        }

    .al-section-4 .alert-text {
        padding-left: 30px;
        font-size: 16px;
        font-family: "Poppins";
    }

    .al-section-4 .btn-close {
        padding: 1rem;
    }

    .al-section-4 .envelope-color {
        color: #696868;
    }

    .al-section-4 .triangle-color {
        color: #eb768c;
    }

    .al-section-4 .umbrella-color {
        color: #31aae2;
    }

    .al-section-4 .bell-color {
        color: #f0c440;
    }

    .al-section-4 .check-color {
        color: #73c8b7;
    }

    .al-section-4 .bullhorn-color {
        color: #5581c4;
    }

/*----alert section-5----*/
.al-section-5 .alert-img {
    float: left;
    padding: 0px 25px;
}

.al-section-5 .alert {
    padding: 40px;
}

.al-section-5 .alert-content p {
    color: #fff;
}

.al-section-5 .alert-content h4 {
    font-size: 24px;
    line-height: 35px;
    color: #ffffff;
}

.al-section-5 .envelope-color {
    background-color: #797979;
    color: #fff;
    position: relative;
}

.al-section-5 .triangle-color {
    background-color: #eb768c;
    color: #fff;
}

.al-section-5 .umbrella-color {
    background-color: #31aae2;
    color: #fff;
}

.al-section-5 .bell-color {
    background-color: #f0c440;
    color: #fff;
}

.al-section-5 .check-color {
    background-color: #73c8b7;
    color: #fff;
}

.al-section-5 .bullhorn-color {
    background-color: #5581c4;
    color: #fff;
}

.al-section-5 .alert-icon {
    display: inline-block;
    height: 100%;
    padding: 15px;
}

.al-section-5 .alert-dismissible .btn-close {
    background: none !important;
}

.al-section-5 i {
    font-size: 30px;
}

.al-section-5 span i {
    font-size: 36px;
    color: #fff;
}

.al-section-5 span.cancle-icon {
    position: absolute;
    right: 40px;
    top: 40px;
}

@media (max-width: 767px) {
    .al-section-5 .alert-icon {
        text-align: center;
        width: 100%;
        padding-bottom: 20px;
    }

    .al-section-5 .alert-text {
        text-align: center;
        display: block;
    }

    .al-section-5 .alert-img {
        float: none;
    }

    .al-section-5 .alert-content {
        text-align: center;
    }

    .al-section-5 span.cancle-icon {
        top: 20px;
        right: 20px;
    }
}

@media (max-width: 580px) {
    .al-section-4 .alert-icon {
        text-align: center;
        width: 100%;
        padding-bottom: 20px;
    }

    .al-section-4 .alert-text {
        text-align: center;
        display: block;
    }
}

@media (max-width: 480px) {
    .al-section-2 .alert-img {
        float: none;
        text-align: center;
        margin-bottom: 20px;
    }

    .al-section-2 .alert-content {
        margin-left: 0px;
        text-align: center;
    }

    .al-section-3 .alert-img {
        float: none;
        text-align: center;
        margin-bottom: 20px;
    }

    .al-section-3 .alert-content {
        margin-left: 0px;
        text-align: center;
    }
}
/*--------- text-box-start ----------*/
.team-one-wrapper {
    padding-bottom: 150px;
}

    .team-one-wrapper .team-slider-wrapper .owl-carousel .item .slider-content .image-wrapper {
        position: relative;
        width: auto;
        display: inline-block;
    }

        .team-one-wrapper .team-slider-wrapper .owl-carousel .item .slider-content .image-wrapper .image-wrapper-overlay {
            position: absolute;
            top: 200px;
            bottom: 200px;
            left: 0;
            right: 0;
            opacity: 0;
            transition: 0.2s ease;
            transition: all 0.5s;
        }

            .team-one-wrapper .team-slider-wrapper .owl-carousel .item .slider-content .image-wrapper .image-wrapper-overlay .content-wrapper {
                font-size: 20px;
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                -ms-transform: translate(-50%, -50%);
                transition: all 0.5s;
                text-align: center;
            }

                .team-one-wrapper .team-slider-wrapper .owl-carousel .item .slider-content .image-wrapper .image-wrapper-overlay .content-wrapper h4 {
                    color: #ffffff;
                    padding-bottom: 5px;
                    font-size: 22px;
                }

                .team-one-wrapper .team-slider-wrapper .owl-carousel .item .slider-content .image-wrapper .image-wrapper-overlay .content-wrapper h5 {
                    color: #ffffff;
                    padding-bottom: 15px;
                    font-size: 18px;
                }

                .team-one-wrapper .team-slider-wrapper .owl-carousel .item .slider-content .image-wrapper .image-wrapper-overlay .content-wrapper .social-icon {
                    display: inline-block;
                }

                    .team-one-wrapper .team-slider-wrapper .owl-carousel .item .slider-content .image-wrapper .image-wrapper-overlay .content-wrapper .social-icon li {
                        float: left;
                        margin-left: 4px;
                    }

                        .team-one-wrapper .team-slider-wrapper .owl-carousel .item .slider-content .image-wrapper .image-wrapper-overlay .content-wrapper .social-icon li:first-child {
                            margin-left: 0px;
                        }

                        .team-one-wrapper .team-slider-wrapper .owl-carousel .item .slider-content .image-wrapper .image-wrapper-overlay .content-wrapper .social-icon li a {
                            float: left;
                            color: #ffffff;
                            font-size: 14px;
                            border: 1px solid #999999;
                            border-radius: 50%;
                            height: 35px;
                            width: 35px;
                            text-align: center;
                            line-height: 34px;
                            transition: all 0.5s;
                        }

                            .team-one-wrapper .team-slider-wrapper .owl-carousel .item .slider-content .image-wrapper .image-wrapper-overlay .content-wrapper .social-icon li a:hover {
                                border: 1px solid #e12454;
                                background: #e12454;
                                transition: all 0.5s;
                            }

    .team-one-wrapper .team-slider-wrapper .owl-carousel .item .slider-content:hover .image-wrapper-overlay {
        background-color: rgba(0, 0, 0, 0.8);
        opacity: 1;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        transition: all 0.5s;
        overflow: hidden;
    }

    .team-one-wrapper .team-slider-wrapper .owl-carousel .owl-nav .owl-prev {
        color: #999999;
        font-size: 30px;
        height: 50px;
        display: inline-block;
        width: 50px;
        background: #fff;
        border-radius: 50%;
        border: 1px solid #999999;
        position: absolute;
        left: 33%;
        bottom: -96px;
        z-index: 100;
        transition: all 0.5s;
    }

    .team-one-wrapper .team-slider-wrapper .owl-carousel .owl-nav .owl-next {
        color: #999999;
        font-size: 30px;
        height: 50px;
        display: inline-block;
        width: 50px;
        background: #fff;
        border-radius: 50%;
        border: 1px solid #999999;
        position: absolute;
        left: 61%;
        bottom: -96px;
        z-index: 100;
        transition: all 0.5s;
    }

    .team-one-wrapper .team-slider-wrapper .owl-theme .owl-dots {
        position: absolute;
        left: 50%;
        transform: translateY(-50%);
        margin: 0px auto;
        bottom: -95px;
    }

        .team-one-wrapper .team-slider-wrapper .owl-theme .owl-dots .owl-dot {
            background: #cccccc;
            border: none;
            margin-left: 8px;
            padding: 5px !important;
            border-radius: 50px;
            transition: all 0.5s;
        }

            .team-one-wrapper .team-slider-wrapper .owl-theme .owl-dots .owl-dot span {
                width: 5px;
                height: 5px;
                background: #cccccc;
                transition: all 0.5s;
            }

            .team-one-wrapper .team-slider-wrapper .owl-theme .owl-dots .owl-dot:hover, .team-one-wrapper .team-slider-wrapper .owl-theme .owl-dots .owl-dot.active {
                background: #e12454;
            }

                .team-one-wrapper .team-slider-wrapper .owl-theme .owl-dots .owl-dot:hover span, .team-one-wrapper .team-slider-wrapper .owl-theme .owl-dots .owl-dot.active span {
                    background: #e12454;
                    width: 8px;
                    height: 8px;
                    transition: all 0.5s;
                }

.team-two-wrapper {
    background-color: #f9f9f9;
}

    .team-two-wrapper .slider-two-wrapper .owl-carousel .item .slider-two-content .image-two-wrapper {
        position: relative;
    }

        .team-two-wrapper .slider-two-wrapper .owl-carousel .item .slider-two-content .image-two-wrapper .overlay-two-wrapper {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s;
            background-image: linear-gradient(to top right, #80063F, #FC035A, #FFBF00);
        }

    .team-two-wrapper .slider-two-wrapper .owl-carousel .item .slider-two-content .team-two-content {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s, visibility 0.3s;
    }

        .team-two-wrapper .slider-two-wrapper .owl-carousel .item .slider-two-content .team-two-content .team-title, .team-two-wrapper .slider-two-wrapper .owl-carousel .item .slider-two-content .team-two-content .team-sub-title, .team-two-wrapper .slider-two-wrapper .owl-carousel .item .slider-two-content .team-two-content .social-icon-two {
            color: #ffffff;
            transform: translateY(15px);
            opacity: 0;
            transition: transform 0.85s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.85s cubic-bezier(0.19, 1, 0.22, 1);
        }

        .team-two-wrapper .slider-two-wrapper .owl-carousel .item .slider-two-content .team-two-content .social-icon-two {
            position: absolute;
            bottom: 30px;
        }

            .team-two-wrapper .slider-two-wrapper .owl-carousel .item .slider-two-content .team-two-content .social-icon-two a {
                margin: 0 10px;
                color: #ffffff;
            }

                .team-two-wrapper .slider-two-wrapper .owl-carousel .item .slider-two-content .team-two-content .social-icon-two a:first-child {
                    margin: 0px;
                }

                .team-two-wrapper .slider-two-wrapper .owl-carousel .item .slider-two-content .team-two-content .social-icon-two a:last-child {
                    margin: 0px;
                }

    .team-two-wrapper .slider-two-wrapper .owl-carousel .item .slider-two-content:hover .image-two-wrapper .overlay-two-wrapper {
        opacity: 1;
        visibility: visible;
    }

    .team-two-wrapper .slider-two-wrapper .owl-carousel .item .slider-two-content:hover .team-two-content {
        opacity: 1;
    }

        .team-two-wrapper .slider-two-wrapper .owl-carousel .item .slider-two-content:hover .team-two-content .team-title, .team-two-wrapper .slider-two-wrapper .owl-carousel .item .slider-two-content:hover .team-two-content .team-sub-title, .team-two-wrapper .slider-two-wrapper .owl-carousel .item .slider-two-content:hover .team-two-content .social-icon-two {
            opacity: 1;
            transform: translateY(0);
            visibility: visible;
            display: block;
        }

.team-three-wrapper .row {
    row-gap: 55px;
}

.team-three-wrapper .team-three-wrapper .team-three-img {
    position: relative;
    transition: all ease-in-out 0.3s;
    -moz-transition: all ease-in-out 0.3s;
    -webkit-transition: all ease-in-out 0.3s;
    -ms-transition: all ease-in-out 0.3s;
    overflow: hidden;
}

    .team-three-wrapper .team-three-wrapper .team-three-img img {
        display: block;
        margin: auto;
    }

    .team-three-wrapper .team-three-wrapper .team-three-img .team-three-overlay {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        position: absolute;
        height: 100%;
        width: 100%;
        left: 0;
        top: 100%;
        transition-duration: 0.3s;
        -moz-transition-duration: 0.3s;
        -webkit-transition-duration: 0.3s;
        -ms-transition-duration: 0.3s;
        transition-timing-function: ease-in-out;
        -moz-transition-timing-function: ease-in-out;
        -webkit-transition-timing-function: ease-in-out;
        -ms-transition-timing-function: ease-in-out;
        background-image: linear-gradient(to right top, rgba(0, 57, 227, 0.8), rgba(65, 50, 224, 0.8), rgba(94, 40, 221, 0.8), rgba(116, 27, 217, 0.8), rgba(134, 0, 212, 0.8));
        overflow: hidden;
        visibility: hidden;
        color: #ffffff;
    }

        .team-three-wrapper .team-three-wrapper .team-three-img .team-three-overlay span {
            text-transform: uppercase;
            font-weight: 500;
        }

        .team-three-wrapper .team-three-wrapper .team-three-img .team-three-overlay .social-icon-three {
            position: absolute;
            bottom: 40px;
        }

            .team-three-wrapper .team-three-wrapper .team-three-img .team-three-overlay .social-icon-three a {
                margin: 0 10px;
            }

                .team-three-wrapper .team-three-wrapper .team-three-img .team-three-overlay .social-icon-three a i {
                    color: #ffffff;
                }

                .team-three-wrapper .team-three-wrapper .team-three-img .team-three-overlay .social-icon-three a:first-child {
                    margin-left: 0px;
                }

.team-three-wrapper .team-three-wrapper:hover .team-three-img .team-three-overlay {
    top: 0;
    visibility: visible;
}

.team-four-wrapper {
    background-color: #f7f7f7;
}

    .team-four-wrapper .owl-carousel .item .four-content {
        text-align: center;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.0784313725);
        transition: all 0.3s ease-in-out;
        display: inline-block;
        -moz-transition: all 0.3s ease-in-out;
        -webkit-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
    }

        .team-four-wrapper .owl-carousel .item .four-content .team-four-img {
            position: relative;
            overflow: hidden;
        }

            .team-four-wrapper .owl-carousel .item .four-content .team-four-img img {
                transform: scale(1);
                transition: all 0.5s ease-in-out;
                -moz-transition: all 0.5s ease-in-out;
                -webkit-transition: all 0.5s ease-in-out;
                -ms-transition: all 0.5s ease-in-out;
            }

        .team-four-wrapper .owl-carousel .item .four-content .team-four-content {
            background-color: #ffffff;
            padding: 40px 0;
            display: inline-block;
        }

            .team-four-wrapper .owl-carousel .item .four-content .team-four-content h6 {
                text-transform: uppercase;
            }

            .team-four-wrapper .owl-carousel .item .four-content .team-four-content span {
                margin-bottom: 20px;
                line-height: 22px;
                color: #828282;
            }

            .team-four-wrapper .owl-carousel .item .four-content .team-four-content .social-icon-four {
                margin: 12px 0 0;
            }

                .team-four-wrapper .owl-carousel .item .four-content .team-four-content .social-icon-four a {
                    margin: 0 10px;
                }

                    .team-four-wrapper .owl-carousel .item .four-content .team-four-content .social-icon-four a:first-child {
                        margin-left: 0px;
                    }

                    .team-four-wrapper .owl-carousel .item .four-content .team-four-content .social-icon-four a:last-child {
                        margin-right: 0px;
                    }

        .team-four-wrapper .owl-carousel .item .four-content:hover .team-four-img img {
            transform: scale(1.1);
            transition: all 0.5s ease-in-out;
            -moz-transition: all 0.5s ease-in-out;
            -webkit-transition: all 0.5s ease-in-out;
            -ms-transition: all 0.5s ease-in-out;
        }

    .team-four-wrapper .owl-theme .owl-dots {
        position: absolute;
        left: 50%;
        transform: translateY(-50%);
        margin: 0px auto;
        bottom: -95px;
    }

        .team-four-wrapper .owl-theme .owl-dots .owl-dot {
            background: #cccccc;
            border: none;
            margin-left: 8px;
            padding: 5px !important;
            border-radius: 50px;
            transition: all 0.5s;
        }

            .team-four-wrapper .owl-theme .owl-dots .owl-dot span {
                width: 5px;
                height: 5px;
                background: #cccccc;
                transition: all 0.5s;
            }

            .team-four-wrapper .owl-theme .owl-dots .owl-dot:hover span, .team-four-wrapper .owl-theme .owl-dots .owl-dot.active span {
                background: #e12454;
                width: 8px;
                height: 8px;
                transition: all 0.5s;
            }

/*--------- social icons css start ---------*/
.icon1-main-wrapper .social-icons ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

    .icon1-main-wrapper .social-icons ul li {
        padding: 25px;
    }

        .icon1-main-wrapper .social-icons ul li a {
            font-size: 22px;
            transition: all 0.5s;
            -webkit-transition: all 0.5s;
            -o-transition: all 0.5s;
            -ms-transition: all 0.5s;
            -moz-transition: all 0.5s;
        }

            .icon1-main-wrapper .social-icons ul li a:hover {
                color: #0038e3;
            }

.icon2-main-wrapper {
    background-color: #e9e9e9;
}

    .icon2-main-wrapper .social-icons ul {
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .icon2-main-wrapper .social-icons ul li {
            padding: 25px;
        }

            .icon2-main-wrapper .social-icons ul li a {
                font-size: 22px;
                display: inline-block;
                transition: all 0.5s;
                -webkit-transition: all 0.5s;
                -o-transition: all 0.5s;
                -ms-transition: all 0.5s;
                -moz-transition: all 0.5s;
            }

                .icon2-main-wrapper .social-icons ul li a.facebook:hover {
                    color: #3b5998;
                    transform: translateY(-10px);
                }

                .icon2-main-wrapper .social-icons ul li a.twitter:hover {
                    color: #00aced;
                    transform: translateY(-10px);
                }

                .icon2-main-wrapper .social-icons ul li a.google:hover {
                    color: #dc4a38;
                    transform: translateY(-10px);
                }

                .icon2-main-wrapper .social-icons ul li a.dribbble:hover {
                    color: #ea4c89;
                    transform: translateY(-10px);
                }

                .icon2-main-wrapper .social-icons ul li a.linkedin:hover {
                    color: #0077b5;
                    transform: translateY(-10px);
                }

                .icon2-main-wrapper .social-icons ul li a.instagram:hover {
                    color: #fe1f49;
                    transform: translateY(-10px);
                }

                .icon2-main-wrapper .social-icons ul li a.behance:hover {
                    color: #1769ff;
                    transform: translateY(-10px);
                }

.icon3-main-wrapper .social-icons ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

    .icon3-main-wrapper .social-icons ul li {
        padding: 25px;
    }

        .icon3-main-wrapper .social-icons ul li a {
            font-size: 22px;
            display: inline-block;
            height: 50px;
            width: 50px;
            transition: all 0.5s;
            -webkit-transition: all 0.5s;
            -o-transition: all 0.5s;
            -ms-transition: all 0.5s;
            -moz-transition: all 0.5s;
            color: #ffffff;
            text-align: center;
            line-height: 50px;
        }

            .icon3-main-wrapper .social-icons ul li a:hover {
                border-radius: 50px;
            }

            .icon3-main-wrapper .social-icons ul li a.facebook {
                background-color: #3b5998;
            }

            .icon3-main-wrapper .social-icons ul li a.twitter {
                background-color: #00aced;
            }

            .icon3-main-wrapper .social-icons ul li a.google {
                background-color: #dc4a38;
            }

            .icon3-main-wrapper .social-icons ul li a.dribbble {
                background-color: #ea4c89;
            }

            .icon3-main-wrapper .social-icons ul li a.linkedin {
                background-color: #0077b5;
            }

            .icon3-main-wrapper .social-icons ul li a.instagram {
                background-color: #fe1f49;
            }

            .icon3-main-wrapper .social-icons ul li a.behance {
                background-color: #1769ff;
            }

.icon4-main-wrapper {
    background-color: #e9e9e9;
}

    .icon4-main-wrapper .social-icons ul {
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .icon4-main-wrapper .social-icons ul li {
            padding: 25px;
        }

            .icon4-main-wrapper .social-icons ul li a {
                font-size: 22px;
                display: inline-block;
                height: 50px;
                width: 50px;
                border-radius: 50px;
                transition: all 0.5s;
                -webkit-transition: all 0.5s;
                -o-transition: all 0.5s;
                -ms-transition: all 0.5s;
                -moz-transition: all 0.5s;
                color: #ffffff;
                text-align: center;
                line-height: 50px;
            }

                .icon4-main-wrapper .social-icons ul li a:hover {
                    background-color: #ffffff !important;
                    box-shadow: 0 0 30px rgba(23, 23, 23, 0.2509803922);
                    transform: translate3d(0, -5px, 0);
                }

                .icon4-main-wrapper .social-icons ul li a.facebook {
                    background-color: #3b5998;
                }

                    .icon4-main-wrapper .social-icons ul li a.facebook:hover {
                        color: #3b5998;
                    }

                .icon4-main-wrapper .social-icons ul li a.twitter {
                    background-color: #00aced;
                }

                    .icon4-main-wrapper .social-icons ul li a.twitter:hover {
                        color: #00aced;
                    }

                .icon4-main-wrapper .social-icons ul li a.google {
                    background-color: #dc4a38;
                }

                    .icon4-main-wrapper .social-icons ul li a.google:hover {
                        color: #dc4a38;
                    }

                .icon4-main-wrapper .social-icons ul li a.dribbble {
                    background-color: #ea4c89;
                }

                    .icon4-main-wrapper .social-icons ul li a.dribbble:hover {
                        color: #ea4c89;
                    }

                .icon4-main-wrapper .social-icons ul li a.linkedin {
                    background-color: #0077b5;
                }

                    .icon4-main-wrapper .social-icons ul li a.linkedin:hover {
                        color: #0077b5;
                    }

                .icon4-main-wrapper .social-icons ul li a.instagram {
                    background-color: #fe1f49;
                }

                    .icon4-main-wrapper .social-icons ul li a.instagram:hover {
                        color: #fe1f49;
                    }

                .icon4-main-wrapper .social-icons ul li a.behance {
                    background-color: #1769ff;
                }

                    .icon4-main-wrapper .social-icons ul li a.behance:hover {
                        color: #1769ff;
                    }

.icon5-main-wrapper .social-icons ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

    .icon5-main-wrapper .social-icons ul li {
        padding: 25px;
    }

        .icon5-main-wrapper .social-icons ul li a {
            font-size: 22px;
            display: inline-block;
            height: 50px;
            width: 50px;
            border-radius: 50px;
            transition: all 0.5s;
            -webkit-transition: all 0.5s;
            -o-transition: all 0.5s;
            -ms-transition: all 0.5s;
            -moz-transition: all 0.5s;
            color: #111111;
            text-align: center;
            line-height: 50px;
            position: relative;
        }

            .icon5-main-wrapper .social-icons ul li a span {
                border-radius: 0;
                display: block;
                height: 0;
                left: 50%;
                margin: 0;
                position: absolute;
                top: 50%;
                transition: all 0.5s;
                -webkit-transition: all 0.3s;
                -moz-transition: all 0.3s;
                -ms-transition: all 0.3s;
                -o-transition: all 0.3s;
                width: 0;
                z-index: -1;
            }

            .icon5-main-wrapper .social-icons ul li a:hover {
                color: #ffffff !important;
            }

                .icon5-main-wrapper .social-icons ul li a:hover span {
                    width: 100%;
                    height: 100%;
                    border-radius: 100%;
                    top: 0;
                    left: 0;
                }

            .icon5-main-wrapper .social-icons ul li a.facebook span {
                background-color: #3b5998;
            }

            .icon5-main-wrapper .social-icons ul li a.twitter span {
                background-color: #00aced;
            }

            .icon5-main-wrapper .social-icons ul li a.google span {
                background-color: #dc4a38;
            }

            .icon5-main-wrapper .social-icons ul li a.dribbble span {
                background-color: #ea4c89;
            }

            .icon5-main-wrapper .social-icons ul li a.linkedin span {
                background-color: #0077b5;
            }

            .icon5-main-wrapper .social-icons ul li a.instagram span {
                background-color: #fe1f49;
            }

            .icon5-main-wrapper .social-icons ul li a.behance span {
                background-color: #1769ff;
            }

.icon6-main-wrapper {
    background-color: #e9e9e9;
}

    .icon6-main-wrapper .social-icons ul {
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .icon6-main-wrapper .social-icons ul li {
            padding: 25px;
        }

            .icon6-main-wrapper .social-icons ul li a {
                display: inline-block;
                height: auto;
                width: auto;
                padding: 0 24px;
                position: relative;
                overflow: hidden;
                color: #ffffff;
                transition: all 0.5s;
                -webkit-transition: all 0.5s;
                -o-transition: all 0.5s;
                -ms-transition: all 0.5s;
                -moz-transition: all 0.5s;
            }

                .icon6-main-wrapper .social-icons ul li a span {
                    line-height: inherit;
                    font-weight: 500;
                    top: 0;
                    position: relative;
                    transition: 350ms cubic-bezier(0.175, 0.885, 0.32, 1.275) all;
                }

                    .icon6-main-wrapper .social-icons ul li a span.brand-icon {
                        position: absolute;
                        height: 100%;
                        width: 100%;
                        left: 0;
                        top: 100%;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        transition-duration: 0.3s;
                    }

                .icon6-main-wrapper .social-icons ul li a.facebook {
                    color: #3b5998;
                }

                .icon6-main-wrapper .social-icons ul li a.dribbble {
                    color: #ea4c89;
                }

                .icon6-main-wrapper .social-icons ul li a.behance {
                    color: #1769ff;
                }

                .icon6-main-wrapper .social-icons ul li a.instagram {
                    color: #fe1f49;
                }

                .icon6-main-wrapper .social-icons ul li a:hover .brand-label {
                    top: -50px;
                    transition: 350ms cubic-bezier(0.175, 0.885, 0.32, 1.275) all;
                }

                .icon6-main-wrapper .social-icons ul li a:hover .brand-icon {
                    top: 0;
                    transition-duration: 0.3s;
                }

.icon7-main-wrapper {
    background-color: #111111;
}

    .icon7-main-wrapper .accor-heading h3 {
        color: #ffffff;
    }

    .icon7-main-wrapper .social-icons ul {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 20px;
    }

        .icon7-main-wrapper .social-icons ul li {
            padding-right: 25px;
        }

            .icon7-main-wrapper .social-icons ul li a {
                width: 40px;
                height: 40px;
                text-align: center;
                font-size: 18px;
                line-height: 40px;
                display: block;
                border-radius: 50%;
                position: relative;
                overflow: hidden;
                border: 1px solid #ffffff;
                z-index: 1;
                color: #ffffff;
            }

                .icon7-main-wrapper .social-icons ul li a i {
                    padding-right: 0px;
                    position: relative;
                    color: #ffffff;
                    transition: 0.5s;
                    z-index: 3;
                }

                .icon7-main-wrapper .social-icons ul li a::before {
                    content: "";
                    position: absolute;
                    top: 100%;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    background: #3b5998;
                    transition: all 0.5s;
                    -webkit-transition: all 0.5s;
                    -o-transition: all 0.5s;
                    -ms-transition: all 0.5s;
                    -moz-transition: all 0.5s;
                    z-index: 2;
                }

                .icon7-main-wrapper .social-icons ul li a:hover {
                    border-color: #3b5998;
                }

                    .icon7-main-wrapper .social-icons ul li a:hover i {
                        color: #ffffff;
                        transform: rotateY(360deg);
                    }

                    .icon7-main-wrapper .social-icons ul li a:hover::before {
                        top: 0;
                    }

/* responsive of shortcode */
@media (max-width: 767px) {
    .icon1-main-wrapper .social-icons ul li, .icon2-main-wrapper .social-icons ul li, .icon3-main-wrapper .social-icons ul li, .icon4-main-wrapper .social-icons ul li, .icon5-main-wrapper .social-icons ul li, .icon7-main-wrapper .social-icons ul li {
        padding: 12px;
    }

    .icon6-main-wrapper .social-icons ul li {
        padding: 5px;
    }
}

@media (max-width: 580px) {
    .icon1-main-wrapper .social-icons ul, .icon2-main-wrapper .social-icons ul, .icon3-main-wrapper .social-icons ul, .icon4-main-wrapper .social-icons ul, .icon5-main-wrapper .social-icons ul, .icon7-main-wrapper .social-icons ul {
        display: block;
        -moz-column-count: 3;
        column-count: 3;
        -moz-column-gap: 10px;
        column-gap: 10px;
        max-width: 280px;
        text-align: center;
        margin: 0 auto;
    }

        .icon1-main-wrapper .social-icons ul li, .icon2-main-wrapper .social-icons ul li, .icon3-main-wrapper .social-icons ul li, .icon4-main-wrapper .social-icons ul li, .icon5-main-wrapper .social-icons ul li, .icon7-main-wrapper .social-icons ul li {
            display: inline-block;
        }

    .icon6-main-wrapper .social-icons ul {
        display: block;
        -moz-column-count: 3;
        column-count: 3;
        -moz-column-gap: 10px;
        column-gap: 10px;
        max-width: 280px;
        text-align: center;
        margin: 0 auto;
    }

        .icon6-main-wrapper .social-icons ul li {
            display: inline-block;
            padding: 15px;
        }
}
/*-------- gallery section -----------*/
.gallery1-wrapper .img-gallery-wrapper ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .gallery1-wrapper .img-gallery-wrapper ul li {
        padding: 10px;
    }

        .gallery1-wrapper .img-gallery-wrapper ul li.portfolio_img_wrapper {
            text-align: center;
        }

            .gallery1-wrapper .img-gallery-wrapper ul li.portfolio_img_wrapper .portfolio_img {
                position: relative;
                overflow: hidden;
            }

                .gallery1-wrapper .img-gallery-wrapper ul li.portfolio_img_wrapper .portfolio_img img {
                    opacity: 1;
                    transition: all 0.3s ease-in-out;
                    -moz-transition: all 0.3s ease-in-out;
                    -webkit-transition: all 0.3s ease-in-out;
                    -ms-transition: all 0.3s ease-in-out;
                }

                .gallery1-wrapper .img-gallery-wrapper ul li.portfolio_img_wrapper .portfolio_img .img-responsive {
                    width: 100%;
                }

                .gallery1-wrapper .img-gallery-wrapper ul li.portfolio_img_wrapper .portfolio_img .portfolio_img_overlay {
                    background-image: linear-gradient(to top right, #80063F, #FC035A, #FFBF00);
                    height: 100%;
                    left: 0px;
                    opacity: 0;
                    position: absolute;
                    text-align: center;
                    top: 0px;
                    transform: translateX(-15px) translateY(-15px);
                    transition: all 0.3s ease 0s;
                    visibility: hidden;
                    width: 100%;
                    transition: 0.2s ease;
                    transition: all 0.5s;
                }

                    .gallery1-wrapper .img-gallery-wrapper ul li.portfolio_img_wrapper .portfolio_img .portfolio_img_overlay .portfolio_img_text {
                        opacity: 0;
                        position: absolute;
                        top: 50%;
                        transform: translateY(-50%);
                        transition: all 0.3s ease 0s;
                        visibility: hidden;
                        width: 100%;
                    }

            .gallery1-wrapper .img-gallery-wrapper ul li.portfolio_img_wrapper:hover .portfolio_img_overlay {
                transform: translateX(0) translateY(0);
                visibility: visible;
                opacity: 1;
            }

                .gallery1-wrapper .img-gallery-wrapper ul li.portfolio_img_wrapper:hover .portfolio_img_overlay .portfolio_img_text {
                    visibility: visible;
                    opacity: 1;
                }

            .gallery1-wrapper .img-gallery-wrapper ul li.portfolio_img_wrapper:hover .portfolio_img img {
                transform: scale(1.1, 1.1);
                -moz-transform: scale(1.1, 1.1);
                -webkit-transform: scale(1.1, 1.1);
                -ms-transform: scale(1.1, 1.1);
                opacity: 0.15;
            }

/*------------------- gallery section -----------*/
.gallery1-wrapper .img-gallery-wrapper ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .gallery1-wrapper .img-gallery-wrapper ul li {
        padding: 10px;
    }

        .gallery1-wrapper .img-gallery-wrapper ul li.portfolio_img_wrapper {
            text-align: center;
        }

            .gallery1-wrapper .img-gallery-wrapper ul li.portfolio_img_wrapper .portfolio_img {
                position: relative;
                overflow: hidden;
            }

                .gallery1-wrapper .img-gallery-wrapper ul li.portfolio_img_wrapper .portfolio_img img {
                    opacity: 1;
                    transition: all 0.3s ease-in-out;
                    -moz-transition: all 0.3s ease-in-out;
                    -webkit-transition: all 0.3s ease-in-out;
                    -ms-transition: all 0.3s ease-in-out;
                }

                .gallery1-wrapper .img-gallery-wrapper ul li.portfolio_img_wrapper .portfolio_img .img-responsive {
                    width: 100%;
                }

                .gallery1-wrapper .img-gallery-wrapper ul li.portfolio_img_wrapper .portfolio_img .portfolio_img_overlay {
                    background: rgb(131, 58, 180);
                    background: linear-gradient(90deg, rgba(131, 58, 180, 0.7791491597) 0%, rgba(253, 29, 29, 0.5634628852) 46%, rgba(252, 176, 69, 0.8239670868) 100%);
                    height: 100%;
                    left: 0px;
                    opacity: 0;
                    position: absolute;
                    text-align: center;
                    top: 0px;
                    transform: translateX(-15px) translateY(-15px);
                    transition: all 0.3s ease 0s;
                    visibility: hidden;
                    width: 100%;
                    transition: 0.2s ease;
                    transition: all 0.5s;
                }

                    .gallery1-wrapper .img-gallery-wrapper ul li.portfolio_img_wrapper .portfolio_img .portfolio_img_overlay .portfolio_img_text {
                        opacity: 0;
                        position: absolute;
                        top: 50%;
                        transform: translateY(-50%);
                        transition: all 0.3s ease 0s;
                        visibility: hidden;
                        width: 100%;
                    }

            .gallery1-wrapper .img-gallery-wrapper ul li.portfolio_img_wrapper:hover .portfolio_img_overlay {
                transform: translateX(0) translateY(0);
                visibility: visible;
                opacity: 1;
            }

                .gallery1-wrapper .img-gallery-wrapper ul li.portfolio_img_wrapper:hover .portfolio_img_overlay .portfolio_img_text {
                    visibility: visible;
                    opacity: 1;
                }

            .gallery1-wrapper .img-gallery-wrapper ul li.portfolio_img_wrapper:hover .portfolio_img img {
                transform: scale(1.1, 1.1);
                -moz-transform: scale(1.1, 1.1);
                -webkit-transform: scale(1.1, 1.1);
                -ms-transform: scale(1.1, 1.1);
                opacity: 0.15;
            }

/* gallery second start  */
/* section_1 css */
.gallery2-wrapper {
    background-color: #e9e9e9;
}

    .gallery2-wrapper .portfolio_img img {
        width: 100%;
    }

    .gallery2-wrapper .portfolio_img_wrapper {
        text-align: center;
    }

    .gallery2-wrapper .portfolio_img {
        display: inline-block;
        position: relative;
        margin-bottom: 30px;
    }

    .gallery2-wrapper .portfolio_img_overlay {
        background: rgba(255, 255, 255, 0.8) none repeat scroll 0 0;
        box-shadow: 0 0px 30px rgba(0, 0, 0, 0.1);
        height: calc(100% - 60px);
        left: 30px;
        opacity: 0;
        position: absolute;
        text-align: center;
        top: 30px;
        transform: translateX(-15px) translateY(-15px);
        transition: all 0.3s ease 0s;
        visibility: hidden;
        width: calc(100% - 60px);
        transition: 0.2s ease;
        transition: all 0.5s;
    }

    .gallery2-wrapper .portfolio_img_wrapper:hover .portfolio_img_overlay {
        transform: translateX(0) translateY(0);
        visibility: visible;
        opacity: 1;
    }

    .gallery2-wrapper .portfolio_img_text {
        opacity: 0;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        transition: all 0.3s ease 0s;
        visibility: hidden;
        width: 100%;
    }

    .gallery2-wrapper .portfolio_img_wrapper:hover .portfolio_img_text {
        visibility: visible;
        opacity: 1;
    }

    .gallery2-wrapper .portfolio_img_text a {
        padding: 10px;
        font-size: 12px;
        border: 1px solid #e12454;
        color: #e12454;
    }

        .gallery2-wrapper .portfolio_img_text a:hover {
            background: #e12454;
            color: #fff;
        }

/* section_1 css end*/
.gallery3-wrapper .img-gallery-wrapper ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .gallery3-wrapper .img-gallery-wrapper ul li {
        padding: 10px;
    }

        .gallery3-wrapper .img-gallery-wrapper ul li.portfolio_img_wrapper {
            text-align: center;
        }

            .gallery3-wrapper .img-gallery-wrapper ul li.portfolio_img_wrapper .portfolio_img {
                position: relative;
                overflow: hidden;
            }

                .gallery3-wrapper .img-gallery-wrapper ul li.portfolio_img_wrapper .portfolio_img img {
                    opacity: 1;
                    transition: all 0.3s ease-in-out;
                    -moz-transition: all 0.3s ease-in-out;
                    -webkit-transition: all 0.3s ease-in-out;
                    -ms-transition: all 0.3s ease-in-out;
                }

                .gallery3-wrapper .img-gallery-wrapper ul li.portfolio_img_wrapper .portfolio_img .img-responsive {
                    width: 100%;
                }

                .gallery3-wrapper .img-gallery-wrapper ul li.portfolio_img_wrapper .portfolio_img .portfolio_img_overlay {
                    background-image: linear-gradient(to top right, #80063F, #FC035A, #FFBF00);
                    height: 100%;
                    left: 0px;
                    opacity: 0;
                    position: absolute;
                    text-align: center;
                    top: 0px;
                    transform: translateX(-15px) translateY(-15px);
                    transition: all 0.3s ease 0s;
                    visibility: hidden;
                    width: 100%;
                    transition: 0.2s ease;
                    transition: all 0.5s;
                }

                    .gallery3-wrapper .img-gallery-wrapper ul li.portfolio_img_wrapper .portfolio_img .portfolio_img_overlay .portfolio_img_text {
                        opacity: 0;
                        position: absolute;
                        top: 50%;
                        transform: translateY(-50%);
                        transition: all 0.3s ease 0s;
                        visibility: hidden;
                        width: 100%;
                    }

            .gallery3-wrapper .img-gallery-wrapper ul li.portfolio_img_wrapper:hover .portfolio_img_overlay {
                transform: translateX(0) translateY(0);
                visibility: visible;
                opacity: 1;
            }

                .gallery3-wrapper .img-gallery-wrapper ul li.portfolio_img_wrapper:hover .portfolio_img_overlay .portfolio_img_text {
                    visibility: visible;
                    opacity: 1;
                }

            .gallery3-wrapper .img-gallery-wrapper ul li.portfolio_img_wrapper:hover .portfolio_img img {
                transform: scale(1.1, 1.1);
                -moz-transform: scale(1.1, 1.1);
                -webkit-transform: scale(1.1, 1.1);
                -ms-transform: scale(1.1, 1.1);
                opacity: 0.15;
            }

.gallery3-wrapper .section4_portfolio_slider {
    float: left;
    width: 100%;
}

    .gallery3-wrapper .section4_portfolio_slider .owl-theme .owl-dots {
        position: absolute;
        left: 0;
        right: 0;
        margin: 0px auto;
        bottom: -56px;
    }

        .gallery3-wrapper .section4_portfolio_slider .owl-theme .owl-dots .owl-dot {
            margin-left: 3px;
            transition: all 0.5s;
        }

            .gallery3-wrapper .section4_portfolio_slider .owl-theme .owl-dots .owl-dot span {
                width: 10px;
                height: 10px;
                background: #cccccc;
                transition: all 0.5s;
            }

            .gallery3-wrapper .section4_portfolio_slider .owl-theme .owl-dots .owl-dot.active span, .gallery3-wrapper .section4_portfolio_slider .owl-theme .owl-dots .owl-dot:hover span {
                background: #e12454;
                width: 10px;
                height: 10px;
                transition: all 0.5s;
            }

            .gallery3-wrapper .section4_portfolio_slider .owl-theme .owl-dots .owl-dot.active, .gallery3-wrapper .section4_portfolio_slider .owl-theme .owl-dots .owl-dot:hover {
                transition: all 0.5s;
            }

    .gallery3-wrapper .section4_portfolio_slider .owl-theme .owl-nav {
        display: none;
    }

.gallery3-wrapper .portfolio_image_wrapper {
    float: left;
    width: 100%;
    text-align: center;
}

.gallery3-wrapper .portfolio_image {
    position: relative;
    width: auto;
    display: inline-block;
}

.gallery3-wrapper .portfolio_image_overlay {
    position: absolute;
    top: 400px;
    left: 300px;
    right: 400px;
    opacity: 0;
    transition: 0.2s ease;
    transition: all 0.5s;
}

.gallery3-wrapper .portfolio_image_wrapper:hover .portfolio_image_overlay {
    background-color: #e12454;
    opacity: 0.9;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: all 0.5s;
    overflow: hidden;
}

.gallery3-wrapper .portfolio_img_icon {
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transition: all 0.5s;
}

/* section_4 css end*/
/* section_6 css start*/
.gallery4-wrapper {
    background-color: #e9e9e9;
}

    .gallery4-wrapper .tab_image, .gallery4-wrapper .tab_image_text {
        float: left;
        width: 100%;
    }

    .gallery4-wrapper .tab_image_wrapper {
        float: left;
        width: 100%;
        margin-bottom: 30px;
        transition: all 0.5s;
    }

    .gallery4-wrapper .section6_nav_tabs {
        float: left;
        width: 100%;
        text-align: center;
    }

        .gallery4-wrapper .section6_nav_tabs .nav_tabs {
            display: inline-block;
            padding-bottom: 50px;
        }

        .gallery4-wrapper .section6_nav_tabs .nav-pills > li + li {
            margin-left: 30px;
        }

        .gallery4-wrapper .section6_nav_tabs .nav-pills > li > a {
            border: 1px solid #fff;
            color: #999999;
            text-transform: uppercase;
        }

        .gallery4-wrapper .section6_nav_tabs .nav > li > a:focus,
        .gallery4-wrapper .section6_nav_tabs .nav > li > a:hover {
            text-decoration: none;
            color: #e12454;
            border: 1px solid #e12454;
            border-radius: 35px;
            background: #fff;
        }

        .gallery4-wrapper .section6_nav_tabs .nav-pills > li a.active,
        .gallery4-wrapper .section6_nav_tabs .nav-pills > li a.active > :focus,
        .gallery4-wrapper .section6_nav_tabs .nav-pills > li a.active > :hover {
            color: #e12454;
            border: 1px solid #e12454;
            border-radius: 35px;
            background: #fff;
        }

    .gallery4-wrapper .tab_image_text {
        border: 1px solid #e1e1e1;
        padding: 30px;
        border-top: none;
    }

    .gallery4-wrapper .project_category {
        float: left;
    }

    .gallery4-wrapper .project_likes {
        float: right;
    }

    .gallery4-wrapper .project_category h4 a {
        color: #999999;
        font-size: 14px;
    }

    .gallery4-wrapper .project_title h4 {
        font-size: 18px;
        font-weight: bold;
        text-align: left;
    }

        .gallery4-wrapper .project_title h4 a {
            color: #111111;
        }

    .gallery4-wrapper .project_title {
        padding-bottom: 20px;
    }

    .gallery4-wrapper .project_likes a i {
        color: #e12454;
    }

    .gallery4-wrapper .tab_image_wrapper:hover .tab_image_text {
        border: 1px solid #e12454;
        background: #e12454;
        border-top: none;
        transition: all 0.5s;
    }

    .gallery4-wrapper .tab_image_wrapper:hover .project_title h4 a {
        color: #fff;
        transition: all 0.5s;
    }

    .gallery4-wrapper .tab_image_wrapper:hover .project_category h4 a {
        color: #fff;
        transition: all 0.5s;
    }

    .gallery4-wrapper .tab_image_wrapper:hover .project_likes a {
        color: #fff;
        transition: all 0.5s;
    }

        .gallery4-wrapper .tab_image_wrapper:hover .project_likes a i {
            color: #fff;
            transition: all 0.5s;
        }

    .gallery4-wrapper .tab_image figure {
        display: block;
        margin: 0;
        overflow: hidden;
    }

        .gallery4-wrapper .tab_image figure img {
            width: 100%;
            display: block;
            transition: all 0.3s;
        }

    .gallery4-wrapper .tab_image:hover figure img {
        transform: scale(1.1, 1.1);
    }

/* section_6 css end*/
/* media query css for mobile */
@media (max-width: 991px) {
    .gallery1-wrapper .img-gallery-wrapper ul {
        display: block;
        -moz-column-count: 2;
        column-count: 2;
        -moz-column-gap: 10px;
        column-gap: 10px;
    }
}

@media (max-width: 480px) {
    .gallery1-wrapper .img-gallery-wrapper ul {
        -moz-column-count: 1;
        column-count: 1;
    }

    .nav-link {
        padding: 10px 14px;
    }
}

@media (max-width: 767px) {
    .tab_img {
        float: left;
        width: auto;
        position: relative;
    }

    .right {
        float: none;
    }

    .section3_img1, .section3_img3, .section3_img4 {
        float: left;
        width: 100%;
    }

    .section3_img2 {
        float: left;
        width: 100%;
        position: relative;
    }

    .nav-pills > li {
        margin-left: 30px;
    }

        .nav-pills > li + li {
            margin-left: 30px;
            margin-bottom: 20px;
        }

    .section6_nav_tabs .nav-pills > li {
        margin: 10px 0;
    }

        .section6_nav_tabs .nav-pills > li + li {
            margin-left: 5px;
        }

    .section5_portfolio_slider .owl-carousel .owl-nav .owl-prev {
        left: 0;
    }

    .section5_portfolio_slider .owl-carousel .owl-nav .owl-next {
        right: 0;
        left: auto;
    }

    .gallery4-wrapper .section6_nav_tabs .nav_tabs .nav {
        display: block;
    }

    .gallery4-wrapper .section6_nav_tabs .nav-pills > li + li {
        margin-left: 0px;
    }
}
/*===========================pricing table css start=============================*/
.p-top-padding {
    padding-top: 40px;
}

.p-bottom-padding {
    padding-bottom: 40px;
}

/*---pricing page first section ----*/
.pt-section-1 .p-box-1 {
    height: 660px;
    margin-top: 20px;
    box-shadow: 0px 0px 5px #e9e9e9;
    text-align: center;
    border: 1px solid transparent;
    transition: all 0.7s;
}

    .pt-section-1 .p-box-1 h4 {
        font-size: 16px;
        padding-bottom: 20px;
    }

    .pt-section-1 .p-box-1 .text-1 {
        margin: 20px 0px;
        padding: 15px 0px;
        background-color: #fafafa;
        color: #797979;
        font-size: 16px;
    }

    .pt-section-1 .p-box-1 .heading-1 {
        height: 75px;
        line-height: 75px;
        background-color: #fafafa;
        color: #fa2456;
        text-transform: capitalize;
    }

    .pt-section-1 .p-box-1 .btn-1 {
        width: 230px;
        height: 40px;
        border-radius: 30px;
        color: #fa2456;
        border: 1px solid #fa2456;
        background: #fff;
        transition: all 0.7s;
    }

    .pt-section-1 .p-box-1:hover .btn-1 {
        background-color: #fa2456;
        color: #fff;
    }

    .pt-section-1 .p-box-1.box-border {
        transition: color 0.25s;
        position: relative;
    }

        .pt-section-1 .p-box-1.box-border:before, .pt-section-1 .p-box-1.box-border:after {
            border: 0 solid transparent;
            box-sizing: border-box;
            content: "";
            position: absolute;
            width: 0;
            height: 0;
            bottom: 0;
            right: 0;
        }

        .pt-section-1 .p-box-1.box-border:before {
            border-bottom-width: 1px;
            border-left-width: 1px;
        }

        .pt-section-1 .p-box-1.box-border:after {
            border-top-width: 1px;
            border-right-width: 1px;
        }

        .pt-section-1 .p-box-1.box-border:hover:before, .pt-section-1 .p-box-1.box-border:hover:after {
            border-color: #e12454;
            transition: border-color 0s, width 0.25s, height 0.25s;
            width: 100%;
            height: 100%;
        }

        .pt-section-1 .p-box-1.box-border:hover:before {
            transition-delay: 0s, 0s, 0.25s;
        }

        .pt-section-1 .p-box-1.box-border:hover:after {
            transition-delay: 0s, 0.25s, 0s;
        }

/*----------Animation Css over--------*/
.pt-section-2 {
    background-color: #e9e9e9;
}

    .pt-section-2 .p-box-2 {
        margin-top: 20px;
        height: 610px;
        border: 1px solid #e9e9e9;
        background-color: #fff;
        text-align: center;
        position: relative;
        z-index: 1;
        transition: all 0.7s;
    }

        .pt-section-2 .p-box-2 h4 {
            font-size: 16px;
            padding-bottom: 20px;
            position: relative;
        }

            .pt-section-2 .p-box-2 h4:after {
                content: "";
                border: 1px dashed #797979;
                width: 80px;
                height: 1px;
                position: absolute;
                left: 0px;
                right: 0px;
                margin: 0 auto;
                top: 77px;
            }

        .pt-section-2 .p-box-2 .heading-2 {
            transition: none;
            font-size: 28px;
            margin-top: 10px;
        }

        .pt-section-2 .p-box-2 .text-2 {
            color: #797979;
            font-size: 16px;
            margin-top: 10px;
        }

        .pt-section-2 .p-box-2 h3 .small {
            font-size: 16px;
            color: #797979;
        }

        .pt-section-2 .p-box-2 .btn-2 {
            width: 210px;
            height: 40px;
            border-radius: 30px;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: bold;
            color: #285592;
            border: 1px solid #285595;
            background: #fff;
            margin-top: 30px;
            transition: all 0.7s;
        }

        .pt-section-2 .p-box-2:before {
            content: "";
            position: absolute;
            color: #fff;
            background: #42a5f5;
            z-index: -1;
            bottom: 0;
            right: 0;
            width: 100%;
            height: 0;
            transition: 0.5s width ease-in-out, 0.5s height ease-in-out;
        }

        .pt-section-2 .p-box-2:hover {
            box-shadow: 0px 0px 15px 7px #e9e9e9;
        }

            .pt-section-2 .p-box-2:hover h4 a {
                color: #fff;
            }

                .pt-section-2 .p-box-2:hover h4 a:after {
                    border-color: #fff;
                }

            .pt-section-2 .p-box-2:hover .text-2 {
                color: #fff;
            }

            .pt-section-2 .p-box-2:hover .small {
                color: #fff;
            }

            .pt-section-2 .p-box-2:hover:before {
                width: 100%;
                height: 100%;
            }

/*------------------- 3rd style -------------------*/
.pt-section-3 {
    text-align: center;
}

    .pt-section-3 .p-box-3 .p-promo {
        background: #0F1012;
        color: #f9f9f9;
        border: 2px solid transparent;
        transition: all 0.7s;
    }

    .pt-section-3 .p-box-3 .deal {
        padding: 10px 0 0 0;
    }

        .pt-section-3 .p-box-3 .deal span {
            display: block;
            text-align: center;
            transition: all 0.7s;
        }

            .pt-section-3 .p-box-3 .deal span:first-of-type {
                font-size: 23px;
            }

            .pt-section-3 .p-box-3 .deal span:last-of-type {
                font-size: 13px;
            }

    .pt-section-3 .p-box-3 .price {
        font-weight: bold;
        transition: all 0.7s;
        display: block;
        background: #292b2e;
        margin: 15px 0 10px 0;
        text-align: center;
        font-size: 23px;
        padding: 17px 0 17px 0;
    }

    .pt-section-3 .p-box-3 ul {
        display: block;
        margin: 20px 0 10px 0;
        padding: 0;
        list-style-type: none;
        text-align: center;
        color: #999999;
    }

        .pt-section-3 .p-box-3 ul li {
            display: block;
            margin: 10px 0 0 0;
            line-height: 35px;
        }

    .pt-section-3 .p-box-3:hover span {
        color: #64AAA4;
    }

    .pt-section-3 .p-box-3 .btn-5 {
        border: none;
        border-radius: 40px;
        background: #292b2e;
        color: #f9f9f9;
        padding: 10px 37px;
        transition: all 0.7s;
    }

        .pt-section-3 .p-box-3 .btn-5:hover {
            background: #64AAA4;
        }

.pt-section-4 {
    background-color: #e9e9e9;
}

    .pt-section-4 .p-box-4 {
        margin-top: 20px;
        text-align: center;
        background-color: #fff;
        box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.1215686275);
        padding-bottom: 40px;
    }

        .pt-section-4 .p-box-4 .p-box-4-1 {
            height: 165px;
            padding: 40px;
            margin-bottom: 30px;
            background-color: #edecfc;
            transition: all 0.7s;
        }

            .pt-section-4 .p-box-4 .p-box-4-1 h2 {
                transition: none;
                font-size: 26px;
            }

            .pt-section-4 .p-box-4 .p-box-4-1 h3 {
                box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.1215686275);
                background-color: #fff;
                height: 90px;
                margin-top: 24px;
                padding: 30px 52px;
                font-weight: 700;
                font-size: 26px;
            }

                .pt-section-4 .p-box-4 .p-box-4-1 h3 span {
                    font-size: 14px;
                }

        .pt-section-4 .p-box-4 .list-6 {
            padding: 20px;
            margin: 0;
        }

            .pt-section-4 .p-box-4 .list-6 li {
                line-height: 35px;
            }

        .pt-section-4 .p-box-4 .btn-6 {
            padding: 10px 50px;
            background-color: #fff;
            border: 1px solid #797979;
            border-radius: 5px;
            transition: all 0.7s;
        }

        .pt-section-4 .p-box-4:hover .p-box-4-1 {
            background-color: #4e49de;
            color: #fff;
        }

            .pt-section-4 .p-box-4:hover .p-box-4-1 h2 {
                color: #ffffff;
            }

            .pt-section-4 .p-box-4:hover .p-box-4-1 h3 {
                color: #111111;
            }

        .pt-section-4 .p-box-4:hover .btn-6 {
            background-color: #4e49de;
            color: #fff;
        }

/*------------------- fifth table css -----*/
.pt-section-5 .p-box-5 {
    margin-top: 20px;
    background-color: #444444;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    transition: all 0.7s;
}

    .pt-section-5 .p-box-5 .heading-5 {
        text-align: center;
        color: #fff;
        padding: 30px;
    }

        .pt-section-5 .p-box-5 .heading-5 a {
            color: #ffffff;
            font-size: 22px;
        }

        .pt-section-5 .p-box-5 .heading-5 h2 {
            font-size: 36px;
            color: #fff;
        }

        .pt-section-5 .p-box-5 .heading-5 h3 {
            font-size: 26px;
            margin-top: 10px;
            color: #fff;
        }

    .pt-section-5 .p-box-5 .content-5 {
        background-color: #222222;
        color: #fff;
        text-align: center;
        padding: 40px;
        border-radius: 15px;
    }

    .pt-section-5 .p-box-5 ul {
        padding: 0;
    }

        .pt-section-5 .p-box-5 ul li {
            line-height: 35px;
        }

    .pt-section-5 .p-box-5 .btn-5 {
        padding: 7px 50px;
        margin-top: 20px;
        border: none;
        background: #797979;
        color: #fff;
        transition: all 0.7s;
    }

    .pt-section-5 .p-box-5:hover {
        background-color: #12d8fa;
    }

        .pt-section-5 .p-box-5:hover .btn-5 {
            background-color: #12d8fa;
        }

@media (max-width: 991px) {
    .container {
        max-width: 900px;
    }

    .pt-section-4 .p-box-4-1 h3 {
        padding: 30px 20px;
    }
}
/*------------ icon page css start ----------*/
.ic-section-1 .icon-1 {
    height: 80px;
    width: 80px;
    border-right: 1px solid #e9e9e9;
    border-bottom: 1px solid #e9e9e9;
    border-bottom-right-radius: 63px;
    line-height: 73px;
    text-align: center;
    transition: all 0.7s;
    color: #fff;
    background: linear-gradient(to right, #fa2456, #fd735a);
}

.ic-section-1 .box {
    border: 1px solid #e9e9e9;
    margin-top: 30px;
    padding-bottom: 30px;
    transition: all 0.5s;
}

    .ic-section-1 .box p {
        padding: 0;
        padding-right: 20px;
    }

        .ic-section-1 .box p.left_shift {
            padding-left: 20px;
            padding-top: 10px;
        }

    .ic-section-1 .box h4 {
        padding-left: 20px;
        padding-top: 10px;
        font-size: 24px;
    }

        .ic-section-1 .box h4 a {
            color: #e12454;
        }

.ic-section-1 .box-border {
    transition: color 0.25s;
    position: relative;
}

    .ic-section-1 .box-border:after, .ic-section-1 .box-border:after {
        border: 0 solid transparent;
        box-sizing: border-box;
        content: "";
        position: absolute;
        width: 0;
        height: 0;
        bottom: 0;
        right: 0;
    }

    .ic-section-1 .box-border:after {
        border-bottom-width: 1px;
        border-left-width: 1px;
    }

    .ic-section-1 .box-border:after {
        border-top-width: 1px;
        border-right-width: 1px;
    }

    .ic-section-1 .box-border:hover:after, .ic-section-1 .box-border:hover:after {
        border-color: #e12454;
        transition: border-color 0s, width 0.25s, height 0.25s;
        width: 100%;
        height: 100%;
    }

    .ic-section-1 .box-border:hover:before {
        transition-delay: 0s, 0s, 0.25s;
    }

    .ic-section-1 .box-border:hover:after {
        transition-delay: 0s, 0.25s, 0s;
    }

.ic-section-2 {
    background-color: #f9f9f9;
}

    .ic-section-2 .icon-box-two {
        color: #ffffff;
        position: relative;
        z-index: 1;
        text-align: center;
        border: 1px solid #e9e9e9;
        background-color: #fff;
        transition: all 0.7s;
    }

        .ic-section-2 .icon-box-two::before {
            content: "";
            position: absolute;
            color: #fff;
            background: linear-gradient(to right, #fa2456, #fd735a);
            z-index: -1;
            transition: 0.5s width ease-in-out, 0.5s height ease-in-out;
            bottom: 0;
            right: 0;
            width: 100%;
            height: 0;
        }

        .ic-section-2 .icon-box-two span {
            padding-bottom: 15px;
            display: block;
        }

            .ic-section-2 .icon-box-two span i {
                margin-top: 50px;
                border: 1px solid #e12454;
                border-radius: 40px;
                background: linear-gradient(to right, #fa2456, #fd735a);
                color: #fff;
                width: 70px;
                height: 70px;
                line-height: 70px;
            }

        .ic-section-2 .icon-box-two h4 {
            padding-top: 10px;
            font-size: 24px;
        }

            .ic-section-2 .icon-box-two h4 a:hover {
                color: #ffffff;
            }

        .ic-section-2 .icon-box-two p {
            padding-top: 10px;
            padding-bottom: 30px;
        }

        .ic-section-2 .icon-box-two:hover {
            border-color: #e12454;
            box-shadow: 0px 0px 10px #797979;
        }

            .ic-section-2 .icon-box-two:hover::before {
                width: 100%;
                height: 100%;
            }

            .ic-section-2 .icon-box-two:hover span {
                color: #ffffff;
            }

                .ic-section-2 .icon-box-two:hover span i {
                    background: #ffffff;
                    color: #e12454;
                }

            .ic-section-2 .icon-box-two:hover h4 a {
                color: #ffffff;
            }

            .ic-section-2 .icon-box-two:hover p {
                color: #ffffff;
            }

.ic-section-3 .icon-box-three {
    padding-bottom: 40px;
    text-align: center;
    border: 1px solid #e9e9e9;
    transition: all 0.7s;
}

    .ic-section-3 .icon-box-three span {
        background-color: #797979;
        height: 90px;
        transition: all 0.5s;
        padding-bottom: 15px;
        color: #fff;
        position: relative;
        z-index: 1;
        display: block;
    }

        .ic-section-3 .icon-box-three span::before {
            content: "";
            position: absolute;
            color: #fff;
            background: linear-gradient(to right, #fa2456, #fd735a);
            z-index: -1;
            transition: 0.5s width ease-in-out, 0.5s height ease-in-out;
            top: 0;
            left: 0;
            width: 0;
            height: 0;
        }

        .ic-section-3 .icon-box-three span i {
            margin-top: 50px;
            border: 1px solid, #e12454;
            border-radius: 40px;
            background-color: #fff;
            color: #797979;
            width: 70px;
            height: 70px;
            line-height: 70px;
        }

    .ic-section-3 .icon-box-three h4 {
        padding: 35px 0px 17px 0px;
        font-size: 24px;
    }

    .ic-section-3 .icon-box-three p {
        padding-bottom: 15px;
    }

    .ic-section-3 .icon-box-three:hover span::before {
        width: 100%;
        height: 100%;
    }

.ic-section-4 {
    background-color: #f9f9f9;
}

    .ic-section-4 .icon-box-four {
        text-align: center;
        border: 1px solid #e9e9e9;
        transition: all 0.7s;
        color: #fff;
        position: relative;
        z-index: 1;
        padding-bottom: 40px;
    }

        .ic-section-4 .icon-box-four::before {
            content: "";
            position: absolute;
            color: #fff;
            background: linear-gradient(to right, #fa2456, #fd735a);
            z-index: -1;
            transition: 0.7s width ease-in-out, 0.7s height ease-in-out;
            top: 0;
            left: 0;
            width: 0;
            height: 0;
        }

        .ic-section-4 .icon-box-four span {
            transition: all 0.7s;
        }

            .ic-section-4 .icon-box-four span i {
                background: linear-gradient(to right, #fa2456, #fd735a);
                color: #fff;
                margin-top: 50px;
                border: 1px solid, #e12454;
                border-radius: 40px;
                width: 70px;
                height: 70px;
                line-height: 70px;
                transition: all 0.7s;
            }

        .ic-section-4 .icon-box-four h4 {
            padding-bottom: 10px;
            padding-top: 20px;
            font-size: 24px;
        }

            .ic-section-4 .icon-box-four h4 a:hover {
                color: #ffffff;
            }

        .ic-section-4 .icon-box-four p {
            transition: all 0.7s;
            padding-bottom: 30px;
            padding-left: 20px;
            padding-right: 20px;
        }

        .ic-section-4 .icon-box-four:hover {
            background-color: #e12454;
        }

            .ic-section-4 .icon-box-four:hover::before {
                width: 100%;
                height: 100%;
            }

            .ic-section-4 .icon-box-four:hover span i {
                background: #ffffff;
                color: #e12454;
            }

            .ic-section-4 .icon-box-four:hover p {
                color: #ffffff;
            }

            .ic-section-4 .icon-box-four:hover h4 a {
                color: #ffffff;
            }

            .ic-section-4 .icon-box-four:hover p {
                color: #ffffff;
            }

.ic-section-5 .icon-box-five {
    text-align: center;
    border: 1px solid #e9e9e9;
    padding-bottom: 30px;
    transition: all 0.7s;
}

    .ic-section-5 .icon-box-five::before, .ic-section-5 .icon-box-five::after {
        border: 0 solid transparent;
        box-sizing: border-box;
        content: "";
        position: absolute;
        width: 0;
        height: 0;
        bottom: 0;
        right: 0;
        border-bottom-width: 1px;
        border-left-width: 1px;
    }

    .ic-section-5 .icon-box-five span {
        position: relative;
        display: inline-block;
        width: 165px;
        height: 2px;
        color: #f74539;
        padding-bottom: 20px;
    }

        .ic-section-5 .icon-box-five span i {
            margin-top: 50px;
            border: 1px solid, #e12454;
            border-radius: 40px;
            background: linear-gradient(to right, #fa2456, #fd735a);
            color: #fff;
            width: 70px;
            height: 70px;
            line-height: 70px;
        }

        .ic-section-5 .icon-box-five span::after {
            content: "";
            height: 50px;
            width: 1px;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            margin: auto;
            background-color: #e9e9e9;
            transition: all 0.5s;
        }

    .ic-section-5 .icon-box-five h4 {
        padding-top: 40px;
        padding-bottom: 10px;
        font-size: 24px;
    }

    .ic-section-5 .icon-box-five p {
        padding-left: 20px;
        padding-right: 20px;
    }

    .ic-section-5 .icon-box-five:hover {
        border-bottom-color: #e12454;
    }

        .ic-section-5 .icon-box-five:hover::before, .ic-section-5 .icon-box-five:hover::after {
            border-color: #e12454;
            transition: border-color 0s, width 0.25s, height 0.25s;
            width: 100%;
            height: 100%;
            transition-delay: 0s, 0s, 0.25s;
        }

        .ic-section-5 .icon-box-five:hover span::after {
            background-color: #e12454;
        }

        .ic-section-5 .icon-box-five:hover h4 a {
            color: #e12454;
        }

@media (max-width: 991px) {
    .ic-section-2 .icon-box-two {
        margin: 12px 0;
    }

    .ic-section-3 .icon-box-three {
        margin: 12px 0;
    }

    .ic-section-4 .icon-box-four {
        margin: 12px 0;
    }

    .ic-section-5 .icon-box-five {
        margin: 12px 0;
    }

    .ic-section-2 {
        padding-top: 0px;
    }

    .ic-section-3 {
        padding-top: 0px;
    }

    .ic-section-4 {
        padding-top: 0px;
    }

    .ic-section-5 {
        padding-top: 0px;
    }
}

.list-main-wrapper-one {
    background-color: #fafafa;
}

    .list-main-wrapper-one .list-one-wrapper {
        margin-top: 25px;
    }

        .list-main-wrapper-one .list-one-wrapper ul {
            transition-duration: 0.4s;
            -webkit-transition-duration: 0.4s;
            -moz-transition-duration: 0.4s;
            -ms-transition-duration: 0.4s;
        }

            .list-main-wrapper-one .list-one-wrapper ul li {
                position: relative;
                padding: 12px 25px 14px 50px;
                z-index: 1;
                transition: all 0.3s ease-in-out;
                -moz-transition: all 0.3s ease-in-out;
                -webkit-transition: all 0.3s ease-in-out;
                -ms-transition: all 0.3s ease-in-out;
                -o-transition: all 0.3s ease-in-out;
            }

                .list-main-wrapper-one .list-one-wrapper ul li .list-one-bg {
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    opacity: 0;
                    z-index: -1;
                    box-shadow: 0 0 15px rgba(0, 0, 0, 0.0784313725);
                    transition: all 0.3s ease-in-out;
                    -moz-transition: all 0.3s ease-in-out;
                    -webkit-transition: all 0.3s ease-in-out;
                    -ms-transition: all 0.3s ease-in-out;
                    -o-transition: all 0.3s ease-in-out;
                    border-radius: 5px;
                }

                .list-main-wrapper-one .list-one-wrapper ul li i {
                    position: absolute;
                    top: 21px;
                    left: 25px;
                    font-size: 14px;
                    opacity: 0.7;
                    color: #757575;
                }

                .list-main-wrapper-one .list-one-wrapper ul li:hover {
                    padding: 12px 25px 14px 50px;
                }

                    .list-main-wrapper-one .list-one-wrapper ul li:hover .list-one-bg {
                        opacity: 1;
                    }

                    .list-main-wrapper-one .list-one-wrapper ul li:hover i {
                        left: 25px;
                        opacity: 1;
                    }

/*--list-two--*/
.list-main-wrapper-two .list-two-wrapper {
    margin-top: 25px;
}

    .list-main-wrapper-two .list-two-wrapper ul li {
        color: #828282;
        margin-bottom: 20px;
    }

        .list-main-wrapper-two .list-two-wrapper ul li i {
            margin-right: 10px;
            line-height: 30px;
            color: #0038e3;
            font-size: 18px;
            position: relative;
        }

/*--  list-three */
.list-main-wrapper-three {
    background-color: #fafafa;
}

    .list-main-wrapper-three .list-three-wrapper {
        margin-top: 25px;
    }

        .list-main-wrapper-three .list-three-wrapper ul li {
            border-bottom: 1px solid #e4e4e4;
            padding-bottom: 15px;
            padding-top: 15px;
        }

            .list-main-wrapper-three .list-three-wrapper ul li:first-child {
                padding-top: 0px;
            }

            .list-main-wrapper-three .list-three-wrapper ul li i {
                margin-right: 10px;
                background: linear-gradient(to right, #556fff, #556fff, #e05fc4, #f767a6, #ff798e);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                font-size: 18px;
            }

/*--  list-four --*/
.list-main-wrapper-four {
    background-color: #f7f7f7;
}

    .list-main-wrapper-four .list-four-wrapper ul li {
        padding: 10px 20px;
        margin-bottom: 20px;
        background-color: #ffffff;
    }

        .list-main-wrapper-four .list-four-wrapper ul li i {
            color: #0038e3;
            margin-right: 15px;
        }

        .list-main-wrapper-four .list-four-wrapper ul li:hover {
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.1490196078);
            transition: all 0.3s ease-in-out;
            -moz-transition: all 0.3s ease-in-out;
            -webkit-transition: all 0.3s ease-in-out;
            -ms-transition: all 0.3s ease-in-out;
            -o-transition: all 0.3s ease-in-out;
        }

.list-main-wrapper-five .list-five-wrapper ul li {
    display: flex;
    align-items: center;
    padding: 28px 0;
    border-color: rgba(0, 0, 0, 0.1) !important;
    border-bottom: 1px solid #dee2e6 !important;
}

    .list-main-wrapper-five .list-five-wrapper ul li .list-content {
        width: 90%;
    }

        .list-main-wrapper-five .list-five-wrapper ul li .list-content .list-head {
            font-weight: 700;
            line-height: 28px;
        }

            .list-main-wrapper-five .list-five-wrapper ul li .list-content .list-head .label-new {
                background-color: #0aa5d6;
                display: inline-block;
                vertical-align: middle;
                padding: 2px 9px;
                font-size: 10px;
                line-height: 15px;
                color: #fff;
                text-transform: uppercase;
                margin-left: 10px;
                border-radius: 1px;
            }

        .list-main-wrapper-five .list-five-wrapper ul li .list-content p {
            font-weight: 500x;
        }

    .list-main-wrapper-five .list-five-wrapper ul li .list-price {
        font-weight: 700;
    }

@media (max-width: 767px) {
    .list-main-wrapper-one .list-one-wrapper {
        display: flex;
        justify-content: center;
    }

    .list-main-wrapper-two .list-two-wrapper {
        display: flex;
        justify-content: center;
    }

    .list-main-wrapper-three .list-three-wrapper {
        display: flex;
        justify-content: center;
    }

    .list-four-wrapper {
        display: flex;
        justify-content: center;
    }
}

@font-face {
    font-family: 'Fave';
    src: local('Fave Script Bold Pro'), local('Fave-Script-Bold-Pro'), url('Fave-ScriptBoldPro.woff2') format('woff2'), url('Fave-ScriptBoldPro.woff') format('woff'), url('Fave-ScriptBoldPro.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}