﻿@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Fira+Sans:300,400,500,600,700|Muli:300,400,500,600,700&display=swap");
/*
///// CSS Index \\
1. Reset CSS Start
2. General CSS
3. 
---------------------------
*/
/*! HTML5 Boilerplate v7.0.1 | MIT License | https://html5boilerplate.com/ */
/* main.css 1.0.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */
/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
html {
    color: #222;
    font-size: 1em;
    line-height: 1.4;
}

    /*html *::first-letter {
        text-transform: uppercase;
    }*/

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */
::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */
hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */
audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */
fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */
textarea {
    resize: vertical;
}

/* ==========================================================================
   Browser Upgrade Prompt
   ========================================================================== */
.browserupgrade {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
/* ==========================================================================
   Helper classes
   ========================================================================== */
/*
 * Hide visually and from screen readers
 */
.hidden {
    display: none !important;
}

/*
* Hide only visually, but have it available for screen readers:
* https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
*
* 1. For long content, line feeds are not interpreted as spaces and small width
*    causes content to wrap 1 word per line:
*    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
*/
.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    white-space: nowrap;
    /* 1 */
}

@font-face {
    font-family: SansArabiclight;
    src: url(../webfonts/TheSans-Plain.otf);
}

@font-face {
    font-family: SansArabicbold;
    src: url(../webfonts/TheSans-Bold.otf);
}
/*
* Extends the .visuallyhidden class to allow the element
* to be focusable when navigated to via the keyboard:
* https://www.drupal.org/node/897638
*/
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
    white-space: inherit;
}

/*
* Hide visually and from screen readers, but maintain layout
*/
.invisible {
    visibility: hidden;
}

/*
* Clearfix: contain floats
*
* For modern browsers
* 1. The space content is one way to avoid an Opera bug when the
*    `contenteditable` attribute is included anywhere else in the document.
*    Otherwise it causes space to appear at the top and bottom of elements
*    that receive the `clearfix` class.
* 2. The use of `table` rather than `block` is only necessary if using
*    `:before` to contain the top-margins of child elements.
*/
.clearfix:before,
.clearfix:after {
    content: " ";
    /* 1 */
    display: table;
    /* 2 */
}

.clearfix:after {
    clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */
@media only screen and (min-width: 35em) {
    /* Style adjustments for viewports that meet the condition */
}

@media print, (-webkit-min-device-pixel-ratio: 1.25), (-o-min-device-pixel-ratio: 5/4), (min-resolution: 1.25dppx), (min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}
/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */
@media print {
    *,
    *:before,
    *:after {
        background: transparent !important;
        color: #000 !important;
        /* Black prints faster */
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

        a[href]:after {
            content: " (" attr(href) ")";
        }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }

    pre {
        white-space: pre-wrap !important;
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    /*
   * Printing Tables:
   * http://css-discuss.incutio.com/wiki/Printing_Tables
   */
    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
    line-height: 1.15;
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
    margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
    display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    /* 1 */
    height: 0;
    /* 1 */
    overflow: visible;
    /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
    font-family: monospace, monospace;
    /* 1 */
    font-size: 1em;
    /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
    background-color: transparent;
    color: #29a631;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
    border-bottom: none;
    /* 1 */
    text-decoration: underline;
    /* 2 */
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
    /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
    font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
    font-family: monospace, monospace;
    /* 1 */
    font-size: 1em;
    /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
    font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
    border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    /* 1 */
    font-size: 100%;
    /* 1 */
    line-height: 1.15;
    /* 1 */
    margin: 0;
    /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
    /* 1 */
    overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
    /* 1 */
    text-transform: uppercase;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
    -webkit-appearance: button;
}

    /**
 * Remove the inner border and padding in Firefox.
 */
    button::-moz-focus-inner,
    [type=button]::-moz-focus-inner,
    [type=reset]::-moz-focus-inner,
    [type=submit]::-moz-focus-inner {
        border-style: none;
        padding: 0;
    }

    /**
 * Restore the focus styles unset by the previous rule.
 */
    button:-moz-focusring,
    [type=button]:-moz-focusring,
    [type=reset]:-moz-focusring,
    [type=submit]:-moz-focusring {
        outline: 1px dotted ButtonText;
    }

/**
 * Correct the padding in Firefox.
 */
fieldset {
    padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    /* 1 */
    color: inherit;
    /* 2 */
    display: table;
    /* 1 */
    max-width: 100%;
    /* 1 */
    padding: 0;
    /* 3 */
    white-space: normal;
    /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
    vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
    overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    /* 1 */
    padding: 0;
    /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
    height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
    -webkit-appearance: textfield;
    /* 1 */
    outline-offset: -2px;
    /* 2 */
}

    /**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
    [type=search]::-webkit-search-decoration {
        -webkit-appearance: none;
    }

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
    -webkit-appearance: button;
    /* 1 */
    font: inherit;
    /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
    display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
    display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
    display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
    display: none;
}

.nice-select.open .list {
    display: block !important;
    width: 100%;
    border: 1px solid #29a631;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    padding: 0;
    margin: 0;
    font-size: 18px;
    line-height: 28px;
    color: #333333;
    line-height: 28px;
    overflow-x: hidden;
    font-family: "SansArabiclight", sans-serif!important;
    background: #fafbff;
    text-transform: uppercase;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
    color: #333333;
    font-family: "SansArabicbold", sans-serif;
    text-transform: uppercase;
}

    h1 a,
    h2 a,
    h3 a,
    h4 a,
    h5 a,
    h6 a {
        color: #333333;
    }

        h1 a:hover,
        h2 a:hover,
        h3 a:hover,
        h4 a:hover,
        h5 a:hover,
        h6 a:hover {
            color: #29a631;
        }

h1 {
    font-size: 50px;
}

h2 {
    font-size: 30px;
    margin-top: -9px;
}

h3 {
    font-size: 24px;
    margin-top: -7px;
}

h4 {
    font-size: 22px;
    margin-top: -7px;
}

h5 {
    font-size: 20px;
    margin-top: -6px;
    font-weight: 600;
}

h6 {
    font-size: 18px;
    margin-top: -5px;
    font-weight: 600;
}

@media (min-width: 576px) {
    h1 {
        font-size: 80px;
    }

    h2 {
        font-size:44px;
        line-height: 60px;
        margin-top: -13px;
    }

    h3 {
        font-size: 36px;
        margin-top: -10px;
    }

    h4 {
        font-size: 30px;
/*        margin-top: -10px;
*/    }

    h5 {
        font-size: 22px;
        margin-top: -8px;
    }

    h6 {
        font-size: 15px;
        margin-top: -5px;
    }
}

a {
    color: #29a631;
    display: inline-block;
    -webkit-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

    a:hover {
        text-decoration: none;
        color: inherit;
    }

ul {
    margin: 0;
    padding: 0;
}

    ul li {
        list-style: none;
        padding: 5px 0;
    }

select,
input,
textarea,
button {
    width: 100%;
    background-color: #ffffff;
    border: 1px solid #29a631;
    outline: none;
    border-radius: 4px;
}

textarea {
    height: 200px;
    resize: none;
    padding: 10px;
}

input,
button,
select {
    height: 50px;
    color: #333333;
}

label,
button,
select {
    cursor: pointer;
}

input {
    background: transparent;
    border: 1px solid #29a631;
    padding-left: 10px;
    padding-right: 10px;
}

    input:focus {
        border: 1px solid #3cba44;
    }

    input[type=submit] {
        cursor: pointer;
        background-color: #9aace5;
        color: #ffffff;
        font-weight: 700;
        padding: 0;
    }

.bg_img {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.scrollToTop {
    width: 45px;
    height: 45px;
    line-height: 45px;
    padding: 0;
    color: #ffffff;
    z-index: 999;
    bottom: 30px;
    right: 30px;
    position: fixed;
    border-radius: 5px;
    -webkit-transform: translateY(150px);
    -ms-transform: translateY(150px);
    transform: translateY(150px);
    background: #29a631;
    text-align: center;
}

    .scrollToTop:hover {
        color: #ffffff;
    }

    .scrollToTop.active {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
        animation: bounceInDown 2s;
        -webkit-animation: bounceInDown 2s;
        -moz-animation: bounceInDown 2s;
    }

    .scrollToTop img {
        width: 100%;
    }

.video-button {
    color: #ffffff;
    border: none;
    text-align: center;
}

    .video-button:hover {
        color: #ffffff;
    }

    .video-button i {
        line-height: 70px;
        font-size: 36px;
        margin-left: 8px;
        color: #ffffff;
    }

.video-button {
    width: 70px;
    height: 70px;
    z-index: 1;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: #29a631;
}

    .video-button a {
        display: block;
        position: relative;
        z-index: 1;
    }

        .video-button a img {
            width: 100%;
        }

        .video-button a i {
            line-height: 75px;
            font-size: 36px;
            margin-left: 8px;
        }

    .video-button::before, .video-button::after {
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        border-radius: 74px;
        background-color: #29a631;
        z-index: -10;
    }

    .video-button::before {
        z-index: -10;
        -webkit-animation: inner-ripple 2000ms linear infinite;
        animation: inner-ripple 2000ms linear infinite;
    }

    .video-button::after {
        z-index: -10;
        -webkit-animation: outer-ripple 2000ms linear infinite;
        animation: outer-ripple 2000ms linear infinite;
    }

@keyframes outer-ripple {
    0% {
        transform: scale(1);
        filter: alpha(opacity=50);
        opacity: 0.5;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        -webkit-filter: alpha(opacity=50);
    }

    80% {
        transform: scale(1.5);
        filter: alpha(opacity=0);
        opacity: 0;
        -webkit-transform: scale(1.5);
        -moz-transform: scale(1.5);
        -ms-transform: scale(1.5);
        -o-transform: scale(1.5);
    }

    100% {
        transform: scale(2.5);
        filter: alpha(opacity=0);
        opacity: 0;
        -webkit-transform: scale(2.5);
        -moz-transform: scale(2.5);
        -ms-transform: scale(2.5);
        -o-transform: scale(2.5);
    }
}

@-webkit-keyframes outer-ripple {
    0% {
        transform: scale(1);
        filter: alpha(opacity=50);
        opacity: 0.5;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
    }

    80% {
        transform: scale(2.5);
        filter: alpha(opacity=0);
        opacity: 0;
        -webkit-transform: scale(2.5);
        -moz-transform: scale(2.5);
        -ms-transform: scale(2.5);
        -o-transform: scale(2.5);
    }

    100% {
        transform: scale(3.5);
        filter: alpha(opacity=0);
        opacity: 0;
        -webkit-transform: scale(3.5);
        -moz-transform: scale(3.5);
        -ms-transform: scale(3.5);
        -o-transform: scale(3.5);
    }
}
/* inner ripple */
@keyframes inner-ripple {
    0% {
        transform: scale(1);
        filter: alpha(opacity=50);
        opacity: 0.5;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
    }

    30% {
        transform: scale(1);
        filter: alpha(opacity=50);
        opacity: 0.5;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
    }

    100% {
        transform: scale(1.5);
        filter: alpha(opacity=0);
        opacity: 0;
        -webkit-transform: scale(1.5);
        -moz-transform: scale(1.5);
        -ms-transform: scale(1.5);
        -o-transform: scale(1.5);
    }
}

@-webkit-keyframes inner-ripple {
    0% {
        transform: scale(1);
        filter: alpha(opacity=50);
        opacity: 0.5;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
    }

    30% {
        transform: scale(1);
        filter: alpha(opacity=50);
        opacity: 0.5;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
    }

    100% {
        transform: scale(1.5);
        filter: alpha(opacity=0);
        opacity: 0;
        -webkit-transform: scale(1.5);
        -moz-transform: scale(1.5);
        -ms-transform: scale(1.5);
        -o-transform: scale(1.5);
    }
}

@keyframes pulseOne {
    0% {
        box-shadow: 0 0 0 0 rgba(86, 80, 206, 0.851), 0 0 0 0 rgba(86, 80, 206, 0.851);
        -webkit-box-shadow: 0 0 0 0 rgba(86, 80, 206, 0.851), 0 0 0 0 rgba(86, 80, 206, 0.851);
        -moz-box-shadow: 0 0 0 0 rgba(86, 80, 206, 0.851), 0 0 0 0 rgba(86, 80, 206, 0.851);
    }

    40% {
        box-shadow: 0 0 0 20px rgba(86, 80, 206, 0), 0 0 0 0 rgba(86, 80, 206, 0.851);
        -webkit-box-shadow: 0 0 0 20px rgba(86, 80, 206, 0), 0 0 0 0 rgba(86, 80, 206, 0.851);
        -moz-box-shadow: 0 0 0 20px rgba(86, 80, 206, 0), 0 0 0 0 rgba(86, 80, 206, 0.851);
    }

    80% {
        box-shadow: 0 0 0 20px rgba(86, 80, 206, 0), 0 0 0 20px rgba(86, 80, 206, 0);
        -webkit-box-shadow: 0 0 0 20px rgba(86, 80, 206, 0), 0 0 0 20px rgba(86, 80, 206, 0);
        -moz-box-shadow: 0 0 0 20px rgba(86, 80, 206, 0), 0 0 0 20px rgba(86, 80, 206, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(86, 80, 206, 0), 0 0 0 0 rgba(86, 80, 206, 0);
        -webkit-box-shadow: 0 0 0 0 rgba(86, 80, 206, 0), 0 0 0 0 rgba(86, 80, 206, 0);
        -moz-box-shadow: 0 0 0 0 rgba(86, 80, 206, 0), 0 0 0 0 rgba(86, 80, 206, 0);
    }
}

@-webkit-keyframes pulseOne {
    0% {
        box-shadow: 0 0 0 0 rgba(86, 80, 206, 0.851), 0 0 0 0 rgba(86, 80, 206, 0.851);
        -webkit-box-shadow: 0 0 0 0 rgba(86, 80, 206, 0.851), 0 0 0 0 rgba(86, 80, 206, 0.851);
        -moz-box-shadow: 0 0 0 0 rgba(86, 80, 206, 0.851), 0 0 0 0 rgba(86, 80, 206, 0.851);
    }

    40% {
        box-shadow: 0 0 0 20px rgba(86, 80, 206, 0), 0 0 0 0 rgba(86, 80, 206, 0.851);
        -webkit-box-shadow: 0 0 0 20px rgba(86, 80, 206, 0), 0 0 0 0 rgba(86, 80, 206, 0.851);
        -moz-box-shadow: 0 0 0 20px rgba(86, 80, 206, 0), 0 0 0 0 rgba(86, 80, 206, 0.851);
    }

    80% {
        box-shadow: 0 0 0 20px rgba(86, 80, 206, 0), 0 0 0 20px rgba(86, 80, 206, 0);
        -webkit-box-shadow: 0 0 0 20px rgba(86, 80, 206, 0), 0 0 0 20px rgba(86, 80, 206, 0);
        -moz-box-shadow: 0 0 0 20px rgba(86, 80, 206, 0), 0 0 0 20px rgba(86, 80, 206, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(86, 80, 206, 0), 0 0 0 0 rgba(86, 80, 206, 0);
        -webkit-box-shadow: 0 0 0 0 rgba(86, 80, 206, 0), 0 0 0 0 rgba(86, 80, 206, 0);
        -moz-box-shadow: 0 0 0 0 rgba(86, 80, 206, 0), 0 0 0 0 rgba(86, 80, 206, 0);
    }
}

@keyframes rotate {
    0% {
        -webkit-transform: translate(-50%, -50%) rotate(0deg);
        -ms-transform: translate(-50%, -50%) rotate(0deg);
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        -webkit-transform: translate(-50%, -50%) rotate(360deg);
        -ms-transform: translate(-50%, -50%) rotate(360deg);
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@-webkit-keyframes rotate {
    0% {
        -webkit-transform: translate(-50%, -50%) rotate(0deg);
        -ms-transform: translate(-50%, -50%) rotate(0deg);
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        -webkit-transform: translate(-50%, -50%) rotate(360deg);
        -ms-transform: translate(-50%, -50%) rotate(360deg);
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes rotate2 {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes rotate2 {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rev-rotate {
    0% {
        -webkit-transform: translate(-50%, -50%) rotate(0deg);
        -ms-transform: translate(-50%, -50%) rotate(0deg);
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        -webkit-transform: translate(-50%, -50%) rotate(-360deg);
        -ms-transform: translate(-50%, -50%) rotate(-360deg);
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}

@-webkit-keyframes rev-rotate {
    0% {
        -webkit-transform: translate(-50%, -50%) rotate(0deg);
        -ms-transform: translate(-50%, -50%) rotate(0deg);
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        -webkit-transform: translate(-50%, -50%) rotate(-360deg);
        -ms-transform: translate(-50%, -50%) rotate(-360deg);
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}

.custom-button {
    background-image: -o-linear-gradient(284deg, #f22876 0%, #942dd9 100%);
    /* background-image: linear-gradient(166deg, #f22876 0%, #942dd9 100%); */
    /* -webkit-box-shadow: 0.872px 9.962px 20px 0px rgba(12, 78, 165, 0.3); */
    /* box-shadow: 0.872px 9.962px 20px 0px rgba(12, 78, 165, 0.3); */
    padding: 11px 35px;
    font-weight: 600;
    color: #ffffff;
    border-radius: 50px;
    display: inline-block;
    border: 0px;
    cursor: pointer;
    width: auto;
    height: auto;
    background: #29a631;
}

    .custom-button:hover {
        color: #fff;
        -webkit-box-shadow: 1px 10px 20px 0px rgba(12, 78, 165, 0.43);
        /* box-shadow: 1px 10px 20px 0px rgba(12, 78, 165, 0.43); */
    }

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background: #fafbff;
    overflow: hidden;
}

    .preloader .preloader-inner {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

        .preloader .preloader-inner .preloader-icon {
            width: 72px;
            height: 72px;
            display: inline-block;
            padding: 0px;
        }

            .preloader .preloader-inner .preloader-icon span {
                position: absolute;
                display: inline-block;
                width: 72px;
                height: 72px;
                border-radius: 100%;
                background: #29a631;
                -webkit-animation: preloader-fx 1.6s linear infinite;
                animation: preloader-fx 1.6s linear infinite;
            }

                .preloader .preloader-inner .preloader-icon span:last-child {
                    animation-delay: -0.8s;
                    -webkit-animation-delay: -0.8s;
                }

@keyframes preloader-fx {
    0% {
        -webkit-transform: scale(0, 0);
        transform: scale(0, 0);
        opacity: 0.5;
    }

    100% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
        opacity: 0;
    }
}

@-webkit-keyframes preloader-fx {
    0% {
        -webkit-transform: scale(0, 0);
        opacity: 0.5;
    }

    100% {
        -webkit-transform: scale(1, 1);
        opacity: 0;
    }
}

.log-reg .log-reg-inner .main-content .form-group .option label::before, .single-blog.post-details .right .post-header blockquote::before, .modal.filter-p .join-now-box .single-option .option label::before, .side-shape::after, .side-shape::before, .widget-1.widget-check .form-group label::before, .widget-1.widget-check .add-check-area a i::after, .widget-1.widget-check .add-check-area a i::before, .banner-section .join-now-box .single-option .option label::before {
    position: absolute;
    content: "";
}

.log-reg .log-reg-inner .main-content .form-group .option, .grid-button, .filter-main .right .item, .filter-main .right, .filter-main, .comment-area li, .blog-author, .single-blog.post-details .right .social-icons, .single-blog.post-details .right .tags-area .tags, .single-blog.post-details .right .tags-area, .modal.filter-p .join-now-box .single-option .option, .section-404, .widget-post .slider-nav, .widget-post .widget-slider .item .content .meta-post, .widget-categories ul li a, .widget-tags ul, .proceed-area .subtitle, .booking-summery ul li .info, .booking-summery ul li .subtitle, .widget-1.widget-tags ul, .widget-1.widget-check .form-group, .widget-1 .widget-header, .widget-1.widget-facility ul li a, .banner-section .join-now-box .single-option .option, .header-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.faq-item .faq-title .right-icon::after, .faq-item .faq-title .right-icon::before {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute;
    content: "";
}

.padding-top {
    padding-top: 80px;
}

.padding-bottom {
    padding-bottom: 80px;
}

@media (min-width: 992px) {
    .padding-top {
        padding-top: 120px;
    }

    .padding-bottom {
        padding-bottom: 120px;
    }
}

.mb-30-none {
    margin-bottom: -30px !important;
}

.tab-item {
    display: none;
}

    .tab-item.active {
        display: block;
    }

.tab-menu li {
    cursor: pointer;
}

.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-50 {
    margin-top: 50px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb--50 {
    margin-bottom: -50px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb--40 {
    margin-bottom: -40px;
}

.pt-10 {
    padding-top: 10px;
}

.pt-20 {
    padding-top: 20px;
}

.pt-50 {
    padding-top: 50px;
}

.pb-10 {
    padding-bottom: 10px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-50 {
    padding-bottom: 50px;
}

.c-thumb {
    overflow: hidden;
}

    .c-thumb a {
        display: block;
    }

    .c-thumb img {
        width: 100%;
        -webkit-transition: all ease 0.3s;
        -o-transition: all ease 0.3s;
        transition: all ease 0.3s;
    }

.bg-one {
    background-color: #032055;
}

.bg-two {
    background-color: #fafbff;
}

.bg-three {
    background-color: #0a1e5e;
}

.bg-four {
    background-color: #001539;
}

.bg-five {
    background-color: #01173f;
}

.color-theme {
    color: #5650ce;
}

.mb--20 {
    margin-bottom: -20px;
}

.section-header {
    text-align: center;
    margin-bottom: 57px;
}

    .section-header.white-color .sub-title {
        color: #fff;
    }

    .section-header.white-color .title {
        color: #fff;
    }

    .section-header.white-color .text {
        color: #fff;
    }

    .section-header .sub-title {
        color: #000;
        display: block;
        font-size: 31px;
        line-height: 34px;
        margin-bottom: 24px;
        font-weight: 600;
    }

        .section-header .sub-title.extra-padding {
            margin-bottom: 30px;
        }

    .section-header .title {
        font-size: 25px;
        line-height: 60px;
        font-weight: 700;
        margin-bottom: 11px;
        display: block;
        color: #292929;
    }

        .section-header .title.extra-padding {
            margin-bottom: 21px;
        }

    .section-header .text {
        display: inline-block;
        color: #333333;
    }

.bg-six {
    background-color: #011c57;
}

@-webkit-keyframes scaleAni {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes scaleAni {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-webkit-keyframes upDown {
    0% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }

    50% {
        -webkit-transform: translateY(15px);
        transform: translateY(15px);
    }

    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

@keyframes upDown {
    0% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }

    50% {
        -webkit-transform: translateY(15px);
        transform: translateY(15px);
    }

    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

@-webkit-keyframes leftRight {
    0% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }

    50% {
        -webkit-transform: translateX(-15px);
        transform: translateX(-15px);
    }

    100% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
}

@keyframes leftRight {
    0% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }

    50% {
        -webkit-transform: translateX(-15px);
        transform: translateX(-15px);
    }

    100% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
}

.footer-section {
    padding: 120px 0px 0;
    position: relative;
    /*! background: #29a631; */
    overflow: hidden;
    /*! background: linear-gradient(166deg, #29a631 40%, #942dd9 100%); */
    /* background-color: #942dd9 !important; */
    background: linear-gradient(166deg, #cf2b8f 40%, #da2f95 100%);
}

    .footer-section .shape1 {
        position: absolute;
        top: 0px;
        left: 0px;
        bottom: 0;
    }

    .footer-section .shape2 {
        position: absolute;
        bottom: 0;
        left: 0px;
        -webkit-animation: scaleAni 3s linear infinite;
        animation: scaleAni 3s linear infinite;
        width: 25%;
    }

        .footer-section .shape2:before {
            position:;
            background: #000;
            top: 0;
            right: 0;
            width: 100%;
        }

    .footer-section .shape3 {
        position: absolute;
        bottom: 20%;
        right: 0px;
        -webkit-animation: upDown 3s linear infinite;
        animation: upDown 3s linear infinite;
        width: 15%;
    }

    .footer-section .newslater-section .newslater-wrapper {
        text-align: center;
    }

        .footer-section .newslater-section .newslater-wrapper .icon {
            width: 140px;
            height: 140px;
            background-image: -o-linear-gradient(284deg, #f22876 0%, #942dd9 100%);
            background-image: linear-gradient(166deg, #f22876 0%, #942dd9 100%);
            border-radius: 50%;
            text-align: center;
            line-height: 140px;
            display: inline-block;
            margin-bottom: 30px;
            background: #29a631;
        }

        .footer-section .newslater-section .newslater-wrapper .text {
            color: #fff;
            display: block;
        }

        .footer-section .newslater-section .newslater-wrapper .newslater-form {
            margin-top: 55px;
            position: relative;
            display: none;
        }

            .footer-section .newslater-section .newslater-wrapper .newslater-form input {
                background: #fff;
                border-radius: 50px;
                border: 1px solid rgba(255, 255, 255, 0.3);
                padding: 0px 60px 0px 30px;
                color: #29a631;
            }

                .footer-section .newslater-section .newslater-wrapper .newslater-form input::-webkit-input-placeholder {
                    color: rgba(255, 255, 255, 0.4);
                }

                .footer-section .newslater-section .newslater-wrapper .newslater-form input::-moz-placeholder {
                    color: rgba(255, 255, 255, 0.4);
                }

                .footer-section .newslater-section .newslater-wrapper .newslater-form input:-ms-input-placeholder {
                    color: rgba(255, 255, 255, 0.4);
                }

                .footer-section .newslater-section .newslater-wrapper .newslater-form input::-ms-input-placeholder {
                    color: rgba(255, 255, 255, 0.4);
                }

                .footer-section .newslater-section .newslater-wrapper .newslater-form input::placeholder {
                    color: rgba(255, 255, 255, 0.4);
                }

            .footer-section .newslater-section .newslater-wrapper .newslater-form button {
                position: absolute;
                width: 44px;
                height: 44px;
                background-image: -o-linear-gradient(284deg, #f22876 0%, #942dd9 100%);
                background-image: linear-gradient(166deg, #f22876 0%, #942dd9 100%);
                color: #fff;
                font-size: 22px;
                line-height: 44px;
                border-radius: 50%;
                right: 3px;
                top: 3px;
                background-image: linear-gradient(166deg, #f22876 0%, #942dd9 100%);
                /* background-image: none; */
                border: none;
                border: 1px solid #29a631;
                background: #29a631;
            }

    .footer-section .footer-links .link-wrapper .f-l-title {
        color: #fff;
        text-transform: uppercase;
        font-size: 24px;
        margin-bottom: 9px;
    }

    .footer-section .footer-links .link-wrapper .f-solial-links li a {
        color: #ffffff;
        -webkit-transition: all ease 0.3s;
        -o-transition: all ease 0.3s;
        transition: all ease 0.3s;
    }

        .footer-section .footer-links .link-wrapper .f-solial-links li a i {
            margin-right: 5px;
            font-size: 16px;
        }

        .footer-section .footer-links .link-wrapper .f-solial-links li a:hover {
            color: #f359b5;
            padding-left: 10px;
        }

    .footer-section .hr {
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        display: block;
        margin: 80px 0px 122px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        display: block;
        margin: 80px 0px 122px;
        /* border-top: 0; */
        margin-bottom: 40px;
        margin-top: 20px;
    }

    .footer-section .copyright-wrapper .hr2 {
        /*   margin: 108px 0px 24px; */
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .footer-section .copyright-wrapper .copyr-text {
        color: #fff;
        text-align: center;
        /* padding-top: 24px; */
        padding-bottom: 15px;
    }

      /*  .footer-section .copyright-wrapper .copyr-text a {
            color: #29a631;
        }*/

    .footer-section .footer-social-links {
        display: block;
        text-align: right;
        margin-top: 30px;
    }

        .footer-section .footer-social-links li {
            margin-left: 14px;
            display: inline-block;
        }

            .footer-section .footer-social-links li:last-child {
                margin-right: 0px;
                margin-left: 0px;
            }

            .footer-section .footer-social-links li a {
                width: 50px;
                height: 50px;
                border-radius: 50%;
                background-image: -o-linear-gradient(284deg, #f22876 0%, #942dd9 100%);
                background-image: linear-gradient(166deg, #f22876 0%, #942dd9 100%);
                display: block;
                color: #fff;
                line-height: 50px;
                text-align: center;
                font-size: 20px;
                background:unset;
            }

.header-wrapper {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

  /*  .header-wrapper .logo {
        width: 170px;
    }*/

        .header-wrapper .logo a {
            display: inline-block;
        }

            .header-wrapper .logo a img {
                max-width: 100%;
                max-height: 80px;
            }

    .header-wrapper .menu li.separator {
        margin-right: 7px;
    }

    .header-wrapper .menu li .language-select {
        margin-left: 10px;
    }

    .header-wrapper .menu li a {
        padding: 5px 5px;
    }

@media (min-width: 992px) {
    .header-wrapper .menu {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

        .header-wrapper .menu li {
            padding: 5px 12px;
            position: relative;
        }

            .header-wrapper .menu li a {
                color: #e9eeff;
                font-size: 14px;
                font-weight: 700;
                text-transform: uppercase;
            }

            .header-wrapper .menu li .submenu {
                position: absolute;
                top: 100%;
                left: 6px;
                background: #ffffff;
                min-width: 240px;
                padding: 20px 0;
                -webkit-box-shadow: 0px 0px 11.7px 1.3px rgba(0, 0, 0, 0.08);
                box-shadow: 0px 0px 11.7px 1.3px rgba(0, 0, 0, 0.08);
                opacity: 0;
                visibility: hidden;
                -webkit-transition: all ease 0.3s;
                -o-transition: all ease 0.3s;
                transition: all ease 0.3s;
                -webkit-transform: translateY(15px);
                -ms-transform: translateY(15px);
                transform: translateY(15px);
            }

                .header-wrapper .menu li .submenu li {
                    padding: 0 20px;
                }

                    .header-wrapper .menu li .submenu li a {
                        text-transform: capitalize;
                        font-weight: 600;
                        display: -webkit-box;
                        display: -ms-flexbox;
                        display: flex;
                        color: #292929;
                    }

                        .header-wrapper .menu li .submenu li a:hover, .header-wrapper .menu li .submenu li a.active {
                            padding-left: 10px;
                            color: #29a631;
                        }

                .header-wrapper .menu li .submenu::before {
                    position: absolute;
                    content: "";
                    top: 0;
                    left: 15px;
                    -webkit-transform: translateY(-100%);
                    -ms-transform: translateY(-100%);
                    transform: translateY(-100%);
                    width: 0;
                    height: 0;
                    border: 10px solid #ffffff;
                    border-bottom-width: 15px;
                    border-right-color: transparent;
                    border-left-color: transparent;
                    border-top-color: transparent;
                }

                .header-wrapper .menu li .submenu li .submenu {
                    left: calc(100% + 20px);
                    top: 0;
                    -webkit-transform: translateX(10px);
                    -ms-transform: translateX(10px);
                    transform: translateX(10px);
                }

                    .header-wrapper .menu li .submenu li .submenu::before {
                        left: -2px;
                        top: 3px;
                        -webkit-transform: translateX(-100%) rotate(-90deg);
                        -ms-transform: translateX(-100%) rotate(-90deg);
                        transform: translateX(-100%) rotate(-90deg);
                    }

                .header-wrapper .menu li .submenu li:hover > .submenu {
                    -webkit-transform: translateX(0);
                    -ms-transform: translateX(0);
                    transform: translateX(0);
                }

            .header-wrapper .menu li:hover > .submenu {
                opacity: 1;
                visibility: visible;
                -webkit-transform: translateY(0);
                -ms-transform: translateY(0);
                transform: translateY(0);
                display: block !important;
            }

            .header-wrapper .menu li .nice-select {
                background: transparent;
                border: none;
                color: #ffffff;
                padding: 0px 25px 0px 0px;
            }

                .header-wrapper .menu li .nice-select::after {
                    border-bottom: 2px solid #fff;
                    border-right: 2px solid #fff;
                }

                .header-wrapper .menu li .nice-select .list li {
                    color: #222;
                    padding: 0px 10px;
                }

            .header-wrapper .menu li.separator span {
                color: #fff;
            }

            .header-wrapper .menu li .serch-icon {
                cursor: pointer;
                color: #fff;
            }

                .header-wrapper .menu li .serch-icon i {
                    color: #fff;
                    font-size: 16px;
                }

            .header-wrapper .menu li.user-profile .submenu {
                left: auto !important;
                right: 0px !important;
            }

                .header-wrapper .menu li.user-profile .submenu::before {
                    left: auto;
                    right: 15px;
                }

        .header-wrapper .menu > li > a {
            position: relative;
        }

            .header-wrapper .menu > li > a::before {
                width: calc(100% - 10px);
                height: 2px;
                background: #fff;
                top: calc(100% + 18px);
                position: absolute;
                content: "";
                -webkit-transform: scaleX(0);
                -ms-transform: scaleX(0);
                transform: scaleX(0);
                -webkit-transition: all ease 0.3s;
                -o-transition: all ease 0.3s;
                transition: all ease 0.3s;
                -webkit-transform-origin: left;
                -ms-transform-origin: left;
                transform-origin: left;
            }

            .header-wrapper .menu > li > a:hover::before, .header-wrapper .menu > li > a.active::before {
                -webkit-transform: scaleX(1);
                -ms-transform: scaleX(1);
                transform: scaleX(1);
            }

        .header-wrapper .menu > li.header-button a::before {
            display: none;
        }
}

.header-wrapper .menu li.header-button a {
    background-image: -webkit-linear-gradient(169deg, #5560ff 17%, #aa52a1 63%, #ff4343 100%);
    padding: 10px 49px;
    font-weight: 600;
    border-radius: 25px;
    display: inline-block;
}

    .header-wrapper .menu li.header-button a:hover {
        -webkit-box-shadow: 0px 10px 15px 0px rgba(59, 55, 188, 0.5);
        box-shadow: 0px 10px 15px 0px rgba(59, 55, 188, 0.5);
    }

.header-section {
    border-bottom: 1px solid rgba(255, 255, 255, 0.102);
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 99;
}

    .header-section.header-active {
        -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
        background: #f258b4;
        border: none;
        animation-name: fadeInDown;
        -webkit-animation-name: fadeInDown;
        -moz-animation-name: fadeInDown;
        animation-duration: 1s;
        -webkit-animation-duration: 1s;
        -moz-animation-duration: 1s;
    }

.header-bar {
    width: 30px;
    height: 25px;
    cursor: pointer;
    position: relative;
}

    .header-bar span {
        display: inline-block;
        height: 3px;
        width: 100%;
        -webkit-transition: all ease 0.3s;
        -o-transition: all ease 0.3s;
        transition: all ease 0.3s;
        background-color: #ffffff;
        position: absolute;
        left: 0;
    }

        .header-bar span:nth-child(2) {
            top: 52%;
            -webkit-transform: translateY(-65%);
            -ms-transform: translateY(-65%);
            transform: translateY(-65%);
        }

        .header-bar span:first-child {
            top: 0;
        }

        .header-bar span:last-child {
            bottom: 0;
        }

    .header-bar.active span:first-child {
        -webkit-transform: rotate(45deg) translate(6px, 13px);
        -ms-transform: rotate(45deg) translate(6px, 13px);
        transform: rotate(45deg) translate(6px, 13px);
    }

    .header-bar.active span:nth-child(2) {
        opacity: 0;
    }

    .header-bar.active span:last-child {
        -webkit-transform: rotate(-45deg) translate(3px, -9px);
        -ms-transform: rotate(-45deg) translate(3px, -9px);
        transform: rotate(-45deg) translate(3px, -9px);
    }

.tab-item {
    animation-name: fadeInUp;
    -webkit-animation-name: fadeInUp;
    -moz-animation-name: fadeInUp;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
}

.menu-item-has-children > a::after {
    content: "";
    font-weight: 600;
    font-family: "Font Awesome 5 Free";
    margin-left: 5px;
    margin-top: 3px;
}

.search-overlay {
    position: fixed;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.91);
    z-index: 999999;
    display: none;
}

    .search-overlay .close {
        position: absolute;
        top: 50px;
        right: 50px;
        color: #fff;
        border: 1px solid #fff;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        line-height: 40px;
        text-align: center;
        font-size: 15px;
        cursor: pointer;
    }

    .search-overlay form {
        width: 60%;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

        .search-overlay form input {
            background: none;
            border-top: 0px;
            border-left: 0px;
            border-right: 0px;
            border-radius: 0px;
            padding: 0px;
            height: 50px;
            font-size: 16px;
            color: #fff;
        }

            .search-overlay form input:focus {
                background: none;
            }

/*Banner-Section Starts Here*/
.banner-section {
    padding: 189px 0 120px;
    position: relative;
    background: url("../images/banner/hero-banner.png");
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

    .banner-section .img1 {
        position: absolute;
        right: 10%;
        -webkit-animation: leftRight 5s linear infinite;
        animation: leftRight 5s linear infinite;
    }

    .banner-section .img2 {
        position: absolute;
        right: 17%;
        bottom: 20%;
        -webkit-animation: upDown 5s linear infinite;
        animation: upDown 5s linear infinite;
    }

    .banner-section .main-title {
        font-size: 30px;
        line-height: 70px;
        font-weight: 700;
        text-transform: uppercase;
        color: #fff;
        text-align: center;
        margin-bottom: 15px;
    }

    .banner-section .join-now-box {
        background: #fff;
        padding: 23px 0px 60px;
        border-radius: 30px;
        -webkit-box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
        box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
    }

        .banner-section .join-now-box .single-option {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            padding: 22px 20px 15px;
        }

            .banner-section .join-now-box .single-option.last {
                border-bottom: 0px !important;
                padding: 29px 20px 28px;
            }

                .banner-section .join-now-box .single-option.last .title {
                    top: 4px;
                }

                .banner-section .join-now-box .single-option.last .select-bar {
                    width: 190px;
                    height: 40px !important;
                    line-height: 40px !important;
                }

            .banner-section .join-now-box .single-option.gender {
                padding: 17px 20px 17px;
            }

            .banner-section .join-now-box .single-option.age {
                padding: 21px 20px 20px;
            }

                .banner-section .join-now-box .single-option.age .select-bar {
                    width: 70px;
                }

            .banner-section .join-now-box .single-option .title {
                position: relative;
                font-size: 18px;
                line-height: 28px;
                font-weight: 700;
                margin-right: 20px;
                position: relative;
                top: 7px;
            }

            .banner-section .join-now-box .single-option .option {
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center;
            }

                .banner-section .join-now-box .single-option .option input {
                    display: inline-block;
                    width: 14px;
                    height: 14px;
                    border-radius: 50%;
                    opacity: 0;
                    z-index: -9;
                    text-align: center;
                }

                    .banner-section .join-now-box .single-option .option input:checked ~ label::before {
                        color: #5650ce;
                        content: "";
                        font-family: "Font Awesome 5 Free";
                        font-weight: 600;
                        font-size: 8px;
                        line-height: 13px;
                        text-align: center;
                    }

                .banner-section .join-now-box .single-option .option label {
                    display: inline-block;
                    margin: 0;
                    width: calc(100% - 14px);
                    padding-left: 10px;
                    position: relative;
                    font-size: 18px;
                    line-height: 28px;
                    font-weight: 400;
                    text-transform: uppercase;
                }

                    .banner-section .join-now-box .single-option .option label::before {
                        width: 14px;
                        height: 14px;
                        border-radius: 50%;
                        border: 1px solid #5650ce;
                        left: -14px;
                        text-align: center;
                        top: 7px;
                    }

                .banner-section .join-now-box .single-option .option .s-input .nice-select {
                    background: transparent;
                    border: none;
                    line-height: 26px;
                    border-radius: 50px;
                    padding: 0px 30px 0px 15px;
                    border: 1px solid rgba(0, 0, 0, 0.1);
                    height: auto;
                }

                    .banner-section .join-now-box .single-option .option .s-input .nice-select .list li {
                        color: #222;
                        padding: 0px 10px;
                        line-height: 20px;
                    }

        .banner-section .join-now-box .joun-button {
            text-align: center;
        }

            .banner-section .join-now-box .joun-button .custom-button {
                padding: 13px 45px;
            }

    .banner-section.home2 {
        background-image: url("../images/banner/hero-banner2.jpg") !important;
        padding: 169px 0 210px;
    }

        .banner-section.home2 .img3 {
            position: absolute;
            right: 5%;
            -webkit-animation: leftRight 4s linear infinite;
            animation: leftRight 4s linear infinite;
        }

.widget-1 {
    margin-bottom: 30px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}

@media (min-width: 576px) {
    .widget-1 {
        margin-bottom: 30px;
        padding:11px;
    }
}

.widget-1:last-child {
    margin-bottom: 0;
}

.widget-1 .subtitle {
    font-weight: bold;
    text-transform: uppercase;
    /*! margin-bottom: 22px; */
    font-size: 24px;
    line-height: 34px;
    padding-bottom: 15px;
}

.widget-categories .subtitle {
    background: #f258b4;
    color: #fff;
    line-height: 50px;
    padding-bottom: 0;
    text-align: center;
}

.widget-1 .widget-1-body {
    padding: 30px 30px 33px;
    border-radius: 4px;
}

.widget-1.widget-facility ul li {
    padding: 20px 0;
    border-bottom: 1px solid #1a2a47;
}

    .widget-1.widget-facility ul li a {
        color: #e9eeff;
    }

        .widget-1.widget-facility ul li a:hover {
            color: #5650ce;
        }

        .widget-1.widget-facility ul li a .img {
            width: 55px;
            padding-right: 20px;
        }

            .widget-1.widget-facility ul li a .img img {
                max-width: 100%;
            }

    .widget-1.widget-facility ul li:first-child {
        padding-top: 0;
    }

    .widget-1.widget-facility ul li:last-child {
        padding-bottom: 0;
        border: none;
    }

    .widget-1.widget-facility ul li i {
        color: #5650ce;
        font-size: 36px;
        width: 55px;
        line-height: 1;
    }

    .widget-1.widget-facility ul li .cate {
        font-weight: 600;
        font-size: 18px;
        -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
        display: block;
        width: calc(100% - 55px);
    }

.widget-1.widget-trending-search ul li {
    padding: 20px 0;
    border-bottom: 1px solid #1a2a47;
}

    .widget-1.widget-trending-search ul li:first-child {
        padding-top: 0;
    }

    .widget-1.widget-trending-search ul li:last-child {
        padding-bottom: 0;
        border: none;
    }

    .widget-1.widget-trending-search ul li .sub-title {
        margin-bottom: 18px;
    }

.widget-1.widget-banner .widget-1-body {
    border-radius: 0;
    padding: 0;
    border: none;
}

.widget-1.widget-banner a {
    display: block;
}

.widget-1.widget-banner img {
    width: 100%;
}

.widget-1.widget-range-slider .widget-1-body {
    padding-bottom: 30px;
}

.widget-1.widget-range-slider .subtitle {
    margin-bottom: 69px;
}

.widget-1 .widget-header {
    margin-bottom: 25px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

    .widget-1 .widget-header .clear-check {
        color: #f1481f;
    }

@media (min-width: 576px) {
    .widget-1 .widget-header {
        margin-bottom: 30px;
    }

        .widget-1 .widget-header .m-title {
            font-size: 28px;
            margin-top: -9px;
        }
}

.widget-1 .widget-header .m-title {
    font-weight: 600;
    text-transform: capitalize;
}

.widget-1.widget-check .widget-1-body {
    border: none;
}

.widget-1.widget-check .check-area {
    margin-bottom: -15px;
}

.widget-1.widget-check .add-check-area {
    margin-top: 39px;
    padding-top: 11px;
    border-top: 1px solid #1f2b72;
    margin-bottom: -9px;
}

    .widget-1.widget-check .add-check-area a {
        color: #333333;
        font-size: 14px;
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        font-weight: 500;
    }

        .widget-1.widget-check .add-check-area a i {
            width: 12px;
            height: 12px;
            position: relative;
            display: inline-block;
            margin-left: 10px;
            border-radius: 50%;
            border: 1px solid #333333;
        }

            .widget-1.widget-check .add-check-area a i::after, .widget-1.widget-check .add-check-area a i::before {
                width: 13px;
                height: 13px;
                background: #333333;
                -webkit-transform: translate(-50%, -50%);
                -ms-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%);
                top: 50%;
                left: 50%;
            }

            .widget-1.widget-check .add-check-area a i::after {
                width: 1px;
                height: 100%;
            }

            .widget-1.widget-check .add-check-area a i::before {
                height: 1px;
                width: 100%;
            }

.widget-1.widget-check .form-group {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 5px;
}

    .widget-1.widget-check .form-group input {
        width: 14px;
        height: 14px;
        opacity: 0;
        z-index: -9;
    }

        .widget-1.widget-check .form-group input:checked ~ label::before {
            color: #5650ce;
            content: "";
            font-family: "Font Awesome 5 Free";
            font-weight: 600;
            font-size: 8px;
            line-height: 1;
            line-height: 14px;
            text-align: center;
        }

    .widget-1.widget-check .form-group label {
        margin: 0;
        width: calc(100% - 14px);
        padding-left: 10px;
        position: relative;
        font-size: 14px;
        font-weight: 600;
    }

        .widget-1.widget-check .form-group label::before {
            width: 14px;
            height: 14px;
            border: 1px solid #5650ce;
            border-radius: 1px;
            left: -14px;
            top: 7px;
        }

.widget-1.widget-check.rating .form-group label .text {
    margin-right: 20px;
}

.widget-1.widget-check.rating .form-group label .rating i {
    font-size: 12px;
    margin-right: -3px;
    color: #f87115;
}

@media (min-width: 992px) {
    .widget-1.widget-tags {
        -webkit-transform: translateY(-40Px);
        -ms-transform: translateY(-40Px);
        transform: translateY(-40Px);
        margin-bottom: 0px;
    }
}

.widget-1.widget-tags ul {
    margin: -10px;
}

    .widget-1.widget-tags ul li {
        padding: 10px;
    }

        .widget-1.widget-tags ul li a {
            padding: 0 20px;
            font-size: 12px;
            border: 1px solid rgba(163, 177, 198, 0.2);
            border-radius: 15px;
            text-transform: uppercase;
            color: #becdff;
        }

.widget-1.widget-offer .offer-body {
    margin-bottom: -30px;
    overflow: hidden;
}

    .widget-1.widget-offer .offer-body .offer-item {
        border: 1px dashed #1f3253;
        border-radius: 10px;
        padding: 20px 20px 28px;
        margin-bottom: 30px;
    }

        .widget-1.widget-offer .offer-body .offer-item .thumb {
            margin-bottom: 33px;
        }

        .widget-1.widget-offer .offer-body .offer-item h6 {
            font-size: 16px;
            font-weight: 400;
            font-family: "Muli", sans-serif;
            margin-bottom: 17px;
        }

        .widget-1.widget-offer .offer-body .offer-item p {
            color: #9aace5;
            font-size: 13px;
            line-height: 18px;
            margin: 0;
        }

/*Booking Summery*/
.booking-summery {
    padding: 30px;
    border: 1px solid #11326f;
    border-bottom-style: dashed;
    padding-bottom: 10px;
    margin-top: 60px;
}

    .booking-summery .title {
        font-weight: 600;
        text-transform: uppercase;
    }

    .booking-summery .title {
        text-align: center;
        border-bottom: 1px dashed #11326f;
        padding-bottom: 23px;
        margin-bottom: 35px;
    }

    .booking-summery ul {
        border-bottom: 1px dashed #11326f;
    }

        .booking-summery ul li {
            padding: 0;
            margin-bottom: 30px;
        }

            .booking-summery ul li:first-child {
                margin-top: 30px;
            }

            .booking-summery ul li .subtitle {
                text-transform: uppercase;
                -webkit-box-pack: justify;
                -ms-flex-pack: justify;
                justify-content: space-between;
                margin-bottom: 7px;
            }

                .booking-summery ul li .subtitle:last-child {
                    margin-bottom: -5px !important;
                }

            .booking-summery ul li .info {
                -webkit-box-pack: justify;
                -ms-flex-pack: justify;
                justify-content: space-between;
                font-size: 14px;
                text-transform: uppercase;
                color: #9aace5;
            }

                .booking-summery ul li .info:last-child {
                    margin-bottom: -14px;
                }

        .booking-summery ul:last-child {
            border-bottom: none;
        }

@media (min-width: 576px) {
    .booking-summery .title {
        font-size: 28px;
        margin-top: -9px;
        margin-bottom: 40px;
    }
}

@media (min-width: 992px) {
    .booking-summery {
        margin-top: 0;
    }
}

.proceed-area {
    background: #05245c;
    padding: 30px;
}

    .proceed-area .subtitle {
        text-transform: uppercase;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin-bottom: 23px;
    }

.side-shape {
    position: relative;
}

    .side-shape::after, .side-shape::before {
        width: 48px;
        height: 48px;
        background-color: #fafbff;
        border-radius: 50%;
        top: -48px;
    }

    .side-shape::after {
        left: -56px;
    }

    .side-shape::before {
        right: -56px;
    }

.note {
    margin-top: 40px;
}

    .note .title {
        text-transform: uppercase;
        margin-bottom: 26px;
    }

/*Blog-Sedebar Starts Here*/
.widget {
    border-radius: 10px;
    background: #fff;
    padding: 30px;
    margin-bottom: 30px;
}

    .widget:last-child {
        margin-bottom: 0;
    }

    .widget .title {
        margin-bottom: 25px;
        font-size: 24px;
        text-transform: capitalize;
    }

.widget-tags {
    padding: 31px 30px 30px;
}

    .widget-tags ul {
        margin: -5px;
    }

        .widget-tags ul li {
            padding: 5px;
        }

            .widget-tags ul li a {
                font-size: 14px;
                text-transform: capitalize;
                color: #ffffff;
                padding: 6px 39px;
                border-radius: 20px;
                border: 1px solid rgba(0, 0, 0, 0.15);
                color: #333;
            }

                .widget-tags ul li a:hover, .widget-tags ul li a.active {
                    background-image: -o-linear-gradient(284deg, #f22876 0%, #942dd9 100%);
                    background-image: linear-gradient(166deg, #f22876 0%, #942dd9 100%);
                    color: #fff;
                }

/*.widget-categories {
    padding: 32px 30px 16px;
}*/

    .widget-categories ul {
        margin-top: -9px;
    }

        .widget-categories ul li {
            padding: 0;
            border-bottom: 1px dashed rgba(0, 0, 0, 0.155);
        }

            .widget-categories ul li:last-child {
                border-bottom: 0px;
            }

            .widget-categories ul li a {
                -webkit-box-pack: justify;
                -ms-flex-pack: justify;
                justify-content: space-between;
                color: #333333;
                padding: 6px 0;
                font-size: 16px;
            }

                .widget-categories ul li a:hover {
                    color: #5650ce;
                }

            .widget-categories ul li:first-child a {
                padding-top: 0;
            }

.widget-follow ul {
    margin: -5px;
}

    .widget-follow ul li {
        padding: 5px;
    }

        .widget-follow ul li a.active, .widget-follow ul li a:hover {
            border-color: #032055;
            background-image: -webkit-linear-gradient(169deg, #5560ff 17%, #aa52a1 63%, #ff4343 100%);
        }

.widget-search {
    padding: 32px 30px 30px;
}

    .widget-search .search-form {
        margin-top: -20px;
    }

    .widget-search input {
        font-size: 14px;
        border-radius: 0;
        padding-left: 0;
        border: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.15);
        margin-bottom: 30px;
    }

        .widget-search input::-webkit-input-placeholder {
            color: #29a631;
        }

        .widget-search input::-moz-placeholder {
            color: #29a631;
        }

        .widget-search input:-ms-input-placeholder {
            color: #29a631;
        }

        .widget-search input::-ms-input-placeholder {
            color: #29a631;
        }

        .widget-search input::placeholder {
            color: #29a631;
        }

    .widget-search button {
        width: auto;
        min-width: 130px;
        outline: none;
        color: #ffffff;
        height: 40px;
        border-radius: 20px;
        background-image: -o-linear-gradient(284deg, #f22876 0%, #942dd9 100%);
        background-image: linear-gradient(166deg, #f22876 0%, #942dd9 100%);
        border: 0px;
        background: #29a631;
        background-image: none !important;
    }

        .widget-search button i {
            margin-right: 5px;
        }

.widget-post {
    padding: 31px 30px 21px;
    position: relative;
}

    .widget-post .widget-slider .item .thumb {
        border-radius: 12px;
        overflow: hidden;
        margin-bottom: 25px;
    }

        .widget-post .widget-slider .item .thumb a {
            display: block;
        }

        .widget-post .widget-slider .item .thumb img {
            width: 100%;
        }

    .widget-post .widget-slider .item .content .p-title {
        margin-bottom: 7px;
        font-size: 18px;
    }

        .widget-post .widget-slider .item .content .p-title a {
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            display: -webkit-box;
            -o-text-overflow: ellipsis;
            text-overflow: ellipsis;
        }

    .widget-post .widget-slider .item .content .meta-post {
        font-size: 14px;
    }

        .widget-post .widget-slider .item .content .meta-post a {
            color: #333333;
        }

            .widget-post .widget-slider .item .content .meta-post a i {
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-image: -o-linear-gradient(284deg, #f22876 0%, #942dd9 100%);
                background-image: linear-gradient(166deg, #f22876 0%, #942dd9 100%);
                margin-right: 5px;
            }

    .widget-post .slider-nav {
        position: absolute;
        right: 30px;
        top: 30px;
        width: 50px;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

        .widget-post .slider-nav span {
            display: block;
            width: 20px;
            height: 20px;
            line-height: 20px;
            text-align: center;
            cursor: pointer;
            font-size: 10px;
            background-color: #fafbff;
            -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 18, 50, 0.2);
            box-shadow: 0px 2px 5px 0px rgba(0, 18, 50, 0.2);
            color: #333333;
            border-radius: 50%;
            -webkit-transition: all ease 0.3s;
            -o-transition: all ease 0.3s;
            transition: all ease 0.3s;
        }

            .widget-post .slider-nav span:hover, .widget-post .slider-nav span.active {
                color: #ffffff;
                background-image: -webkit-linear-gradient(169deg, #5560ff 17%, #aa52a1 63%, #ff4343 100%);
            }

.widget-newsletter .search-form {
    margin-top: -20px;
}

.widget-newsletter input {
    font-size: 14px;
    border-radius: 0;
    padding-left: 0;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    margin-bottom: 30px;
}

    .widget-newsletter input::-webkit-input-placeholder {
        color: #29a631;
    }

    .widget-newsletter input::-moz-placeholder {
        color: #29a631;
    }

    .widget-newsletter input:-ms-input-placeholder {
        color: #29a631;
    }

    .widget-newsletter input::-ms-input-placeholder {
        color: #29a631;
    }

    .widget-newsletter input::placeholder {
        color: #29a631;
    }

.widget-newsletter button {
    width: auto;
    min-width: 120px;
    outline: none;
    color: #ffffff;
    height: 40px;
    border-radius: 20px;
    background-image: -o-linear-gradient(284deg, #f22876 0%, #942dd9 100%);
    background-image: linear-gradient(166deg, #f22876 0%, #942dd9 100%);
    border: 0px;
}

    .widget-newsletter button i {
        margin-right: 5px;
    }

/* Feature-Section Starts Here*/
.single-feature {
    text-align: center;
    background-color: white;
    border-radius: 20px;
    padding: 30px 20px 25px;
    -webkit-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

    .single-feature .icon img {
        height: 90px;
        margin-bottom: 30px;
    }

    .single-feature h4 {
        font-size: 24px;
        line-height: 34px;
        font-weight: 600;
    }

    .single-feature:hover {
        -webkit-box-shadow: 0px 5px 30px 0px rgba(176, 171, 193, 0.4);
        box-shadow: 0px 5px 30px 0px rgba(176, 171, 193, 0.4);
    }

/* Start-Flirting Starts Here*/
.flirting-section {
    padding: 0px 0px 120px;
}

    .flirting-section.home2 {
        padding-top: 118px;
    }

    .flirting-section .content {
        text-align: left;
    }

        .flirting-section .content .section-header {
            text-align: left;
            margin-bottom: 59px;
        }

        .flirting-section .content .custom-button {
            margin-top: 0px;
            margin-top: -3px;
        }

    .flirting-section .img {
        text-align: center;
        padding: 0px 30px;
        position: relative;
    }

        .flirting-section .img img {
            width: 100%;
        }

        .flirting-section .img .bg-shape {
            position: absolute;
            top: -10%;
            left: 0%;
            z-index: -1;
            -webkit-animation: scaleAni 5s linear infinite;
            animation: scaleAni 5s linear infinite;
        }

/* How it work Section Starts Here*/
.how-it-work-section {
    padding: 118px 0px 120px;
    background: url(../images/h-it-w/bg-img.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

    .how-it-work-section .shape1 {
        position: absolute;
        top: 100px;
        right: 0px;
        -webkit-animation: scaleAni 4s linear infinite;
        animation: scaleAni 4s linear infinite;
    }

    .how-it-work-section .shape2 {
        position: absolute;
        right: 7%;
        top: 10%;
        -webkit-animation: upDown 3s linear infinite;
        animation: upDown 3s linear infinite;
    }

    .how-it-work-section .section-header {
        margin-bottom: 40px;
    }

.single-work-box {
    background: #fff;
    -webkit-box-shadow: 0.872px 9.962px 20px 0px rgba(12, 78, 165, 0.3);
    box-shadow: 0.872px 9.962px 20px 0px rgba(12, 78, 165, 0.3);
    padding: 40px 30px 40px;
    border-radius: 20px;
    text-align: center;
    -webkit-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

    .single-work-box .icon {
        position: relative;
        display: inline-block;
        margin-bottom: 34px;
    }

        .single-work-box .icon .number {
            position: absolute;
            right: 20px;
            bottom: 0px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            color: #fff;
            font-size: 28px;
            line-height: 60px;
            font-weight: 600;
            background-image: -o-linear-gradient(284deg, #f22876 0%, #942dd9 100%);
            background-image: linear-gradient(166deg, #f22876 0%, #942dd9 100%);
        }

    .single-work-box .title {
        font-size: 24px;
        line-height: 34px;
        font-weight: 700;
        margin-bottom: 25px;
    }

    .single-work-box:hover {
        -webkit-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
        transform: translateY(-5px);
    }

/* Statistics-Section Starts Here*/
.statistics-section {
    padding: 120px 0px 135px;
}

    .statistics-section .stat-item {
        text-align: center;
    }

        .statistics-section .stat-item .icon {
            display: inline-block;
            width: 260px;
            height: 260px;
            background: #e1e6ff;
            border-radius: 50%;
            text-align: center;
            line-height: 260px;
            margin-bottom: 28px;
        }

            .statistics-section .stat-item .icon img {
                height: 160px;
            }

    .statistics-section .stat-content .counter-item {
        font-size: 60px;
        line-height: 70px;
    }

    .statistics-section .stat-content .info {
        display: block;
        margin-top: 5px;
    }

/* join-now Starts Here*/
.join-now-section {
    padding: 123px 0px 120px;
    overflow: hidden;
    background: #5736cb;
    position: relative;
}

    .join-now-section .shape1 {
        position: absolute;
        top: 0px;
        left: 0px;
        width: 100%;
        height: auto;
        -webkit-animation: scaleAni 4s linear infinite;
        animation: scaleAni 4s linear infinite;
    }

    .join-now-section .shape2 {
        position: absolute;
        right: 10%;
        bottom: 0px;
        max-width: 550px;
    }

    .join-now-section .content .section-header {
        text-align: left;
        margin-bottom: 18px;
    }

/* Features Starts Here */
.feature-section {
    padding: 118px 0px 120px;
}

    .feature-section .section-header {
        margin-bottom: 39px;
    }

    .feature-section .main-content-area {
        position: relative;
    }

        .feature-section .main-content-area .left-image {
            position: absolute;
            left: 0px;
            width: 46%;
            height: 100%;
            background-color: #5650ce;
            background-image: url("../images/feature/left-img.jpg");
            background-repeat: no-repeat;
            background-size: cover;
            background-position: center;
            border-radius: 0px 30px 30px 0px;
        }

            .feature-section .main-content-area .left-image::before {
                position: absolute;
                content: "";
                width: 100%;
                height: 100%;
                left: 0px;
                height: 100%;
                background: rgba(86, 80, 206, 0.7);
                border-radius: 0px 30px 30px 0px;
            }

            .feature-section .main-content-area .left-image .offer {
                position: absolute;
                width: 240px;
                height: 240px;
                background-image: -o-linear-gradient(284deg, #f22876 0%, #942dd9 100%);
                background-image: linear-gradient(166deg, #f22876 0%, #942dd9 100%);
                border-radius: 50%;
                text-align: center;
                top: 50%;
                -webkit-transform: translateY(-50%);
                -ms-transform: translateY(-50%);
                transform: translateY(-50%);
                right: -120px;
            }

                .feature-section .main-content-area .left-image .offer::before {
                    position: absolute;
                    content: "";
                    width: 260px;
                    height: 260px;
                    left: -10px;
                    top: -10px;
                    background: rgba(222, 41, 139, 0.2);
                    border-radius: 50%;
                    z-index: -1;
                }

                .feature-section .main-content-area .left-image .offer .offer-inner-content {
                    margin-top: 26%;
                }

                    .feature-section .main-content-area .left-image .offer .offer-inner-content .fs {
                        font-size: 16px;
                        line-height: 26px;
                        text-transform: uppercase;
                        color: #fff;
                    }

                    .feature-section .main-content-area .left-image .offer .offer-inner-content h2 {
                        font-size: 50px;
                        line-height: 60px;
                        text-transform: uppercase;
                        color: #fff;
                        font-weight: 700;
                        display: block;
                        margin-top: 1px;
                        margin-bottom: 0px;
                    }

                    .feature-section .main-content-area .left-image .offer .offer-inner-content .ss {
                        font-size: 16px;
                        line-height: 26px;
                        text-transform: uppercase;
                        color: #fff;
                    }

        .feature-section .main-content-area .feature-lists {
            padding: 50px 0px 42px;
        }

            .feature-section .main-content-area .feature-lists .single-feature-list {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                margin-bottom: 30px;
            }

                .feature-section .main-content-area .feature-lists .single-feature-list:last-child {
                    margin-bottom: 0px;
                }

                    .feature-section .main-content-area .feature-lists .single-feature-list:last-child .content {
                        border-bottom: 0px;
                        padding-bottom: 0px;
                    }

                .feature-section .main-content-area .feature-lists .single-feature-list .icon {
                    width: 65px;
                    height: 65px;
                    line-height: 65px;
                    background: #faeffa;
                    text-align: center;
                    display: inline-block;
                    border-radius: 50%;
                    margin-right: 30px;
                    -webkit-transition: all ease 0.3s;
                    -o-transition: all ease 0.3s;
                    transition: all ease 0.3s;
                }

                    .feature-section .main-content-area .feature-lists .single-feature-list .icon img {
                        height: 40px;
                        display: inline-block;
                        position: relative;
                    }

                .feature-section .main-content-area .feature-lists .single-feature-list .content {
                    -webkit-box-flex: 1;
                    -ms-flex: 1;
                    flex: 1;
                    border-bottom: 1px solid #cecece;
                    padding-bottom: 24px;
                }

                    .feature-section .main-content-area .feature-lists .single-feature-list .content .title {
                        font-size: 24px;
                        line-height: 34px;
                        font-weight: 700;
                        margin-bottom: 10px;
                    }

                    .feature-section .main-content-area .feature-lists .single-feature-list .content p {
                        margin-bottom: 0px !important;
                        margin-top: 0px !important;
                    }

                .feature-section .main-content-area .feature-lists .single-feature-list:hover .icon {
                    -webkit-box-shadow: 0px 5px 10px 0px rgba(64, 36, 155, 0.4);
                    box-shadow: 0px 5px 10px 0px rgba(64, 36, 155, 0.4);
                }

/* latest-registered-section Starts Here */
.latest-registered-section {
    padding: 118px 0px 120px;
    background: #5736cb;
    position: relative;
    overflow: hidden;
}

    .latest-registered-section .shape {
        position: absolute;
        top: 20%;
        z-index: 0;
        -webkit-animation: upDown 3s linear infinite;
        animation: upDown 3s linear infinite;
    }

    .latest-registered-section::before {
        position: absolute;
        content: "";
        background: #e1e6ff;
        width: 50%;
        height: 100%;
        top: 0px;
        left: -100px;
        -webkit-transform: skewX(-20deg);
        -ms-transform: skewX(-20deg);
        transform: skewX(-20deg);
        z-index: 1;
    }

    .latest-registered-section::after {
        position: absolute;
        content: "";
        background: #e1e6ff;
        width: 50%;
        height: 100%;
        top: 0px;
        left: -300px;
        z-index: 1;
    }

    .latest-registered-section .content {
        padding-left: 40%;
        padding-right: 200px;
        position: relative;
        z-index: 3;
    }

        .latest-registered-section .content .section-header {
            text-align: left;
            margin-bottom: 36px;
        }

    .latest-registered-section .registered-slider .single-slider {
        text-align: center;
    }

        .latest-registered-section .registered-slider .single-slider .img {
            position: relative;
            margin-bottom: 30px;
        }

            .latest-registered-section .registered-slider .single-slider .img img {
                width: 120px;
                height: 120px;
                border-radius: 50%;
                display: inline-block;
                border: 5px solid #fff;
            }

        .latest-registered-section .registered-slider .single-slider .inner-content .name {
            font-size: 24px;
            line-height: 34px;
            font-weight: 600;
            color: #fff;
            text-transform: uppercase;
            margin-bottom: 15px;
        }

        .latest-registered-section .registered-slider .single-slider .inner-content p {
            color: #ff3366;
        }

    .latest-registered-section .single-slider {
        text-align: center;
    }

        .latest-registered-section .single-slider .img {
            position: relative;
            margin-bottom: 30px;
        }

            .latest-registered-section .single-slider .img img {
                width: 120px;
                height: 120px;
                border-radius: 50%;
                display: inline-block;
                border: 5px solid #fff;
            }

        .latest-registered-section .single-slider .inner-content .name {
            font-size: 24px;
            line-height: 34px;
            font-weight: 600;
            color: #fff;
            text-transform: uppercase;
            margin-bottom: 15px;
        }

        .latest-registered-section .single-slider .inner-content p {
            color: #ff3366;
        }

/* Success-Stories section Starts Here */
.sucess-stories-section {
    padding: 118px 0px 120px;
}

    .sucess-stories-section .section-header {
        margin-bottom: 40px;
    }

.single-story-box {
    background: #FFF;
    border-radius: 22PX;
    overflow: hidden;
    -webkit-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

    .single-story-box .img img {
        width: 100%;
    }

    .single-story-box .content {
        position: relative;
        padding: 83px 30px 24px;
    }

        .single-story-box .content .author {
            position: absolute;
            left: 50%;
            -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
            transform: translateX(-50%);
            top: -30px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            z-index: 9;
        }

            .single-story-box .content .author::before {
                position: absolute;
                content: "";
                width: 70px;
                height: 70px;
                top: -5px;
                left: -5px;
                border-radius: 50%;
                background-image: -o-linear-gradient(284deg, #f22876 0%, #942dd9 100%);
                background-image: linear-gradient(166deg, #f22876 0%, #942dd9 100%);
                z-index: -1;
                opacity: 0.5;
            }

            .single-story-box .content .author::after {
                position: absolute;
                content: "";
                width: 80px;
                height: 80px;
                top: -10px;
                left: -10px;
                border-radius: 50%;
                background-image: -o-linear-gradient(284deg, #f22876 0%, #942dd9 100%);
                background-image: linear-gradient(166deg, #f22876 0%, #942dd9 100%);
                z-index: -2;
                opacity: 0.5;
            }

            .single-story-box .content .author span {
                position: absolute;
                width: 100%;
                height: 100%;
                left: 0px;
                top: 0px;
            }

                .single-story-box .content .author span::before {
                    position: absolute;
                    content: "";
                    width: 90px;
                    height: 90px;
                    top: -15px;
                    left: -15px;
                    border-radius: 50%;
                    background-image: -o-linear-gradient(284deg, #f22876 0%, #942dd9 100%);
                    background-image: linear-gradient(166deg, #f22876 0%, #942dd9 100%);
                    z-index: -1;
                    opacity: 0.2;
                }

                .single-story-box .content .author span::after {
                    position: absolute;
                    content: "";
                    width: 100px;
                    height: 100px;
                    top: -20px;
                    left: -20px;
                    border-radius: 50%;
                    background-image: -o-linear-gradient(284deg, #f22876 0%, #942dd9 100%);
                    background-image: linear-gradient(166deg, #f22876 0%, #942dd9 100%);
                    z-index: -2;
                    opacity: 0.2;
                }

        .single-story-box .content .title {
            font-size: 24px;
            line-height: 34px;
            font-weight: 700;
            margin-bottom: 18px;
        }

        .single-story-box .content .date {
            margin-bottom: 0px;
        }

    .single-story-box .box-footer {
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 20px 30px 18px;
    }

        .single-story-box .box-footer .left .box-social-links li {
            display: inline-block;
            margin-right: 5px;
        }

            .single-story-box .box-footer .left .box-social-links li a {
                display: block;
                font-size: 16px;
            }

                .single-story-box .box-footer .left .box-social-links li a i {
                    -webkit-background-clip: text;
                    -webkit-text-fill-color: transparent;
                    background-image: -o-linear-gradient(284deg, #f22876 0%, #942dd9 100%);
                    background-image: linear-gradient(166deg, #f22876 0%, #942dd9 100%);
                    text-shadow: 0.927px 2.853px 10px rgba(18, 72, 142, 0.5);
                }

            .single-story-box .box-footer .left .box-social-links li:last-child {
                margin-right: 0px;
            }

        .single-story-box .box-footer .right a {
            color: #333333;
            font-size: 14px;
            -webkit-transition: all ease 0.3s;
            -o-transition: all ease 0.3s;
            transition: all ease 0.3s;
        }

            .single-story-box .box-footer .right a i {
                font-size: 13px;
                margin-left: 5px;
            }

            .single-story-box .box-footer .right a:hover {
                color: #eb1436;
            }

    .single-story-box:hover {
        -webkit-box-shadow: 0px 10px 50px 0px #b0a4e2;
        box-shadow: 0px 10px 50px 0px #b0a4e2;
    }

.registered-slider2 .one {
    -webkit-transform: scale(0.2);
    -ms-transform: scale(0.2);
    transform: scale(0.2);
}

.registered-slider2 .two {
    -webkit-transform: scale(0.5);
    -ms-transform: scale(0.5);
    transform: scale(0.5);
}

.registered-slider2 .three {
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
}

.registered-slider2 .four {
    -webkit-transform: scale(0.1);
    -ms-transform: scale(0.1);
    transform: scale(0.1);
}

/* Steps section Starts Here */
.steps-section .steps-section-inner {
    background: #fff;
    -webkit-box-shadow: 0px 10px 30px 0px rgba(38, 14, 116, 0.4);
    box-shadow: 0px 10px 30px 0px rgba(38, 14, 116, 0.4);
    border-radius: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 40px 60px 40px;
    margin-top: -100px;
}

    .steps-section .steps-section-inner .myCol1 {
        -webkit-box-flex: 30%;
        -ms-flex: 30%;
        flex: 30%;
        width: 30%;
        -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
        padding-right: 60px;
    }

        .steps-section .steps-section-inner .myCol1 .title {
            font-size: 28px;
            line-height: 38px;
            font-weight: 700;
            margin-bottom: 13px;
        }

    .steps-section .steps-section-inner .myCol2 {
        -webkit-box-flex: 50%;
        -ms-flex: 50%;
        flex: 50%;
        width: 50%;
        -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
        border-left: 1px solid #000;
        height: 100%;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        text-align: center;
        padding: 10px 0px 10px;
    }

        .steps-section .steps-section-inner .myCol2 .steps-list {
            display: inline-block;
            text-align: center;
            position: relative;
        }

            .steps-section .steps-section-inner .myCol2 .steps-list::before {
                position: absolute;
                content: "";
                width: 90%;
                left: 50%;
                -webkit-transform: translateX(-50%);
                -ms-transform: translateX(-50%);
                transform: translateX(-50%);
                top: 30px;
                height: 2px;
                background: #29a631;
            }

            .steps-section .steps-section-inner .myCol2 .steps-list li {
                display: inline-block;
                margin-right: 70px;
            }

                .steps-section .steps-section-inner .myCol2 .steps-list li:last-child {
                    margin-right: 0px;
                }

                .steps-section .steps-section-inner .myCol2 .steps-list li .number {
                    width: 50px;
                    height: 50px;
                    line-height: 50px;
                    border-radius: 50%;
                    background: #29a631;
                    position: relative;
                    color: #fff;
                    display: inline-block;
                    z-index: 9;
                    border-radius: 50%;
                }

                    .steps-section .steps-section-inner .myCol2 .steps-list li .number::before {
                        position: absolute;
                        content: "";
                        width: 60px;
                        height: 60px;
                        top: -5px;
                        left: -5px;
                        background: rgb(41 166 49 / 0.3);
                        z-index: -1;
                        border-radius: 50%;
                    }

                    .steps-section .steps-section-inner .myCol2 .steps-list li .number::after {
                        position: absolute;
                        content: "";
                        width: 70px;
                        height: 70px;
                        top: -10px;
                        left: -10px;
                        background: rgb(41 166 49 / 0.3);
                        z-index: -2;
                        border-radius: 50%;
                    }

                .steps-section .steps-section-inner .myCol2 .steps-list li .label {
                    display: block;
                    margin-top: 23px;
                    color: #333333;
                    font-weight: 700;
                    margin-bottom: 0px;
                }

    .steps-section .steps-section-inner .myCol3 {
        -webkit-box-flex: 20%;
        -ms-flex: 20%;
        flex: 20%;
        width: 20%;
        -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
        text-align: right;
    }

/* Steps section Starts Here */
.member-slider-section {
    background: #e1e6ff;
    padding: 120px 0px 110px;
}

    .member-slider-section .content .section-header {
        text-align: left;
        margin-bottom: 0px;
    }

    .member-slider-section .registered-slider .single-slider {
        text-align: center;
    }

        .member-slider-section .registered-slider .single-slider .img {
            position: relative;
            margin-bottom: 30px;
        }

            .member-slider-section .registered-slider .single-slider .img img {
                width: 120px;
                height: 120px;
                border-radius: 50%;
                display: inline-block;
                border: 5px solid #fff;
            }

        .member-slider-section .registered-slider .single-slider .inner-content .name {
            font-size: 24px;
            line-height: 34px;
            font-weight: 600;
            color: #fff;
            text-transform: uppercase;
            margin-bottom: 15px;
        }

        .member-slider-section .registered-slider .single-slider .inner-content p {
            color: #ff3366;
        }

    .member-slider-section .single-slider {
        text-align: center;
    }

        .member-slider-section .single-slider .img {
            position: relative;
            margin-bottom: 30px;
        }

            .member-slider-section .single-slider .img img {
                width: 120px;
                height: 120px;
                border-radius: 50%;
                display: inline-block;
                border: 5px solid #5650ce;
            }

        .member-slider-section .single-slider .inner-content .name {
            font-size: 24px;
            line-height: 34px;
            font-weight: 600;
            text-transform: uppercase;
            margin-bottom: 14px;
        }

        .member-slider-section .single-slider .inner-content p {
            margin-bottom: 0px;
        }

/* Community-Section Starts Here */
.community-section {
    padding: 118px 0px 120px;
}

    .community-section .section-header {
        margin-bottom: 40px;
    }

.single-community-box {
    background: #FFF;
    border-radius: 20PX;
    overflow: hidden;
    -webkit-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

    .single-community-box .img {
        overflow: hidden;
    }

        .single-community-box .img img {
            width: 100%;
            -webkit-transition: all linear 0.6s;
            -o-transition: all linear 0.6s;
            transition: all linear 0.6s;
        }

    .single-community-box .content {
        position: relative;
        padding: 23px 30px 25px;
    }

        .single-community-box .content .date {
            margin-bottom: 8px;
        }

        .single-community-box .content .title {
            font-size: 24px;
            line-height: 34px;
            font-weight: 700;
            margin-bottom: 18px;
            display: block;
            color: #333333;
        }

        .single-community-box .content .text {
            margin-bottom: 0px;
        }

    .single-community-box .box-footer {
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 30px 30px 30px;
    }

        .single-community-box .box-footer .left i {
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-image: -o-linear-gradient(284deg, #f22876 0%, #942dd9 100%);
            background-image: linear-gradient(166deg, #f22876 0%, #942dd9 100%);
            text-shadow: 0.927px 2.853px 10px rgba(18, 72, 142, 0.5);
        }

        .single-community-box .box-footer .right {
            background: #f6e9f9;
            padding: 5px 20px;
            border-radius: 50px;
        }

            .single-community-box .box-footer .right i {
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-image: -o-linear-gradient(284deg, #f22876 0%, #942dd9 100%);
                background-image: linear-gradient(166deg, #f22876 0%, #942dd9 100%);
                text-shadow: 0.927px 2.853px 10px rgba(18, 72, 142, 0.5);
                margin-right: 4px;
            }

    .single-community-box:hover {
        -webkit-box-shadow: 0px 10px 50px 0px #b0a4e2;
        box-shadow: 0px 10px 50px 0px #b0a4e2;
        -webkit-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
        transform: translateY(-5px);
    }

        .single-community-box:hover .img img {
            -webkit-transform: scale(1.1);
            -ms-transform: scale(1.1);
            transform: scale(1.1);
        }

/* home2 Statistics-Section Starts Here*/
.home2-statistics-section {
    padding: 120px 0px 135px;
    background: url("../images/statistics/h2-bg.jpg");
    background-size: cover;
    background-position: center;
}

    .home2-statistics-section .content .section-header .title {
        color: #fff;
    }

    .home2-statistics-section .content .section-header .sub-title {
        color: #ff3366;
    }

    .home2-statistics-section .stat-item {
        text-align: center;
    }

        .home2-statistics-section .stat-item .icon {
            display: inline-block;
            border-radius: 50%;
            text-align: center;
            margin-bottom: 28px;
        }

            .home2-statistics-section .stat-item .icon img {
                height: 100px;
            }

    .home2-statistics-section .stat-content .counter-item {
        font-size: 60px;
        line-height: 70px;
        color: #fff;
    }

    .home2-statistics-section .stat-content .info {
        color: #fff;
    }

/* Success-Stories section Starts Here */
.home2-sucess-stories-section {
    padding: 0px 0px 120px;
}

    .home2-sucess-stories-section .section-header {
        margin-bottom: 26px;
    }

    .home2-sucess-stories-section .top-content {
        background: url(../images/sucess/subg.jpg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        padding-top: 120px;
        padding-bottom: 250px;
    }

    .home2-sucess-stories-section .bottom-content {
        margin-top: -236px;
    }

/* Update-profile-Section */
.update-profile-section {
    padding: 0px 0px 120px;
}

    .update-profile-section .content .section-header {
        text-align: left;
    }

    .update-profile-section .img img {
        width: 100%;
    }

/*Breadcrumb-Section Stars Here*/
.breadcrumb-area {
    padding: 260px 0 117px;
}

    .breadcrumb-area .breadcrumb-list li, .breadcrumb-area .breadcrumb-list li a {
        text-transform: uppercase;
    }

    .breadcrumb-area .content .title {
        color: #fff;
        display: block;
        padding-bottom: 5px;
    }

        .breadcrumb-area .content .title.extra-padding {
            padding-bottom: 15px;
        }

    .breadcrumb-area .content .breadcrumb-list {
        background: transparent;
        display: block;
    }

        .breadcrumb-area .content .breadcrumb-list.extra-padding {
            padding-bottom: 5px;
        }

        .breadcrumb-area .content .breadcrumb-list li {
            display: inline-block;
        }

            .breadcrumb-area .content .breadcrumb-list li, .breadcrumb-area .content .breadcrumb-list li a {
                color: #fff;
                font-size: 18px;
            }

                .breadcrumb-area .content .breadcrumb-list li a {
                    display: -webkit-inline-box;
                    display: -ms-inline-flexbox;
                    display: inline-flex;
                    -webkit-box-align: center;
                    -ms-flex-align: center;
                    align-items: center;
                }

                    .breadcrumb-area .content .breadcrumb-list li a::after {
                        content: "";
                        font-weight: 600;
                        font-family: "Font Awesome 5 Free";
                        display: inline-block;
                        margin: 0 7px;
                    }

@media (max-width: 575px) {
    .breadcrumb-area .content .breadcrumb-list {
        padding: 0;
    }

        .breadcrumb-area .content .breadcrumb-list li, .breadcrumb-area .content .breadcrumb-list li a {
            font-size: 16px;
            padding: 0;
        }
}

.about-bc-area {
    padding: 290px 0 187px;
    background: url("../images/banner/bc-about.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-position: bottom;
}

.profile-bc-area {
    padding: 283px 0 187px;
    background: url("../images/banner/bc-profile.png");
    background-size: cover !important;
    width:100vw !important;
    background-position: center;
    background-repeat: no-repeat;
    background-position: bottom;
}

.community-bc {
    padding: 212px 0 203px;
    background: url("../images/banner/community-bc.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-position: bottom;
}

/* w-c-u Section Starts Here*/
.w-c-u-section {
    padding: 118px 0px 120px;
    background: #f3f6fd;
}

    .w-c-u-section .content .section-header {
        margin-bottom: 40px;
    }

    .w-c-u-section .shape1 {
        position: absolute;
        top: 100px;
        right: 0px;
        -webkit-animation: scaleAni 4s linear infinite;
        animation: scaleAni 4s linear infinite;
    }

.single-w-c-u-box {
    background: #fff;
    padding: 40px 30px 20px;
    border-radius: 10px;
    text-align: center;
    -webkit-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

    .single-w-c-u-box .icon {
        position: relative;
        display: inline-block;
        margin-bottom: 32px;
    }

        .single-w-c-u-box .icon .number {
            position: absolute;
            right: 20px;
            bottom: 0px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            color: #fff;
            font-size: 28px;
            line-height: 60px;
            font-weight: 600;
            background-image: -o-linear-gradient(284deg, #f22876 0%, #942dd9 100%);
            background-image: linear-gradient(166deg, #f22876 0%, #942dd9 100%);
        }

    .single-w-c-u-box .title {
        font-size: 24px;
        line-height: 34px;
        font-weight: 700;
        margin-bottom: 19px;
    }

    .single-w-c-u-box:hover {
        -webkit-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
        transform: translateY(-5px);
        -webkit-box-shadow: 0.872px 9.962px 20px 0px rgba(12, 78, 165, 0.1);
        box-shadow: 0.872px 9.962px 20px 0px rgba(12, 78, 165, 0.1);
    }

/* Contact-Section Starts Here*/
.contact-section {
    position: relative;
    padding: 118px 0px 120px;
}

    .contact-section .section-header {
        margin-bottom: 30px;
    }

    .contact-section .img-left {
        position: absolute;
        top: 35%;
        left: 0px;
    }

    .contact-section .img-right {
        /* position: absolute; */
        right: 0px;
        /* top: 30%; */
        width: 100%;
    }

    .contact-section .contact-form-wrapper .single-input {
        position: relative;
        margin-bottom: 30px;
    }

        .contact-section .contact-form-wrapper .single-input i {
            position: absolute;
            top: 50%;
            -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            transform: translateY(-50%);
            background-image: -o-linear-gradient(284deg, #f22876 0%, #942dd9 100%);
            background-image: linear-gradient(166deg, #f22876 0%, #942dd9 100%);
            width: 30px;
            height: 30px;
            text-align: center;
            line-height: 30px;
            border-radius: 50%;
            color: #fff;
            font-size: 14px;
        }

        .contact-section .contact-form-wrapper .single-input input {
            /* border-left: 0px; */
            /* border-right: 0px; */
            /* border-top: 0px; */
            /* border-radius: 0px; */
            /* padding: 0px 20px 0px 49px; */
            border-bottom: -2px solid rgba(0, 0, 0, 0.1);
            height: 50px;
        }

            .contact-section .contact-form-wrapper .single-input input::-webkit-input-placeholder {
                color: #8790ad;
                font-size: 16px;
            }

            .contact-section .contact-form-wrapper .single-input input::placeholder, .contact-section .contact-form-wrapper .single-input input::-webkit-placeholder {
                color: #8790ad;
                font-size: 16px;
            }

        .contact-section .contact-form-wrapper .single-input textarea {
            /* border-left: 0px; */
            /* border-right: 0px; */
            /* border-top: 0px; */
            /* border-radius: 0px; */
            padding: 0px;
            padding: 20px;
            height: 260px;
            background: none;
            margin-top: 6px;
            /* border-bottom: 1px solid rgba(0, 0, 0, 0.1); */
        }

            .contact-section .contact-form-wrapper .single-input textarea::-webkit-input-placeholder {
                color: #8790ad;
                font-size: 16px;
            }

            .contact-section .contact-form-wrapper .single-input textarea::placeholder, .contact-section .contact-form-wrapper .single-input textarea::-webkit-placeholder {
                color: #8790ad;
                font-size: 16px;
            }

    .contact-section .contact-form-wrapper .custom-button {
        text-transform: uppercase;
        margin: 0 auto;
        display: block;
    }

/*Four-Not-Four-Section Starts Here*/
.section-404 {
    padding: 120px 0px 120px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
}

    .section-404 .thumb-404 {
        max-width: 966px;
        margin: 0 auto 34px;
    }

        .section-404 .thumb-404 img {
            width: 100%;
        }

    .section-404 .title {
        font-weight: 600;
        text-transform: capitalize;
        margin-bottom: 40px;
    }

    .section-404 .custom-button {
        padding: 16px 45px;
        border-radius: 30px;
    }

        .section-404 .custom-button i {
            margin-left: 15px;
        }

@media (max-width: 575px) {
    .section-404 .title {
        margin-bottom: 25px;
    }

    .section-404 .thumb-404 {
        margin-bottom: 20px;
    }

    .section-404 .custom-button {
        padding: 10px 25px;
        font-size: 14px;
    }
}

/* Filter Modal Starts Here*/
.modal.filter-p .modal-header .modal-title {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-bottom: 0px;
}

.modal.filter-p .modal-header .close {
    width: 50px;
}

.modal.filter-p .join-now-box {
    background: #fff;
    padding-bottom: 14px;
    padding-top: 0px;
}

    .modal.filter-p .join-now-box .single-option {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        padding: 22px 20px 15px;
    }

        .modal.filter-p .join-now-box .single-option:first-child {
            padding-top: 0px;
        }

        .modal.filter-p .join-now-box .single-option.last {
            border-bottom: 0px !important;
            padding: 29px 20px 28px;
        }

            .modal.filter-p .join-now-box .single-option.last .title {
                top: 15px;
            }

            .modal.filter-p .join-now-box .single-option.last .select-bar {
                width: 190px;
                height: 40px !important;
                line-height: 40px !important;
            }

        .modal.filter-p .join-now-box .single-option.gender {
            padding: 17px 20px 17px;
        }

        .modal.filter-p .join-now-box .single-option.age {
            padding: 21px 20px 20px;
        }

            .modal.filter-p .join-now-box .single-option.age .select-bar {
                width: 70px;
            }

        .modal.filter-p .join-now-box .single-option .title {
            position: relative;
            font-size: 18px;
            line-height: 28px;
            font-weight: 700;
            margin-right: 20px;
            position: relative;
            top: 7px;
        }

        .modal.filter-p .join-now-box .single-option .option {
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
        }

            .modal.filter-p .join-now-box .single-option .option input {
                display: inline-block;
                width: 14px;
                height: 14px;
                border-radius: 50%;
                opacity: 0;
                z-index: -9;
                text-align: center;
            }

                .modal.filter-p .join-now-box .single-option .option input:checked ~ label::before {
                    color: #5650ce;
                    content: "";
                    font-family: "Font Awesome 5 Free";
                    font-weight: 600;
                    font-size: 8px;
                    line-height: 13px;
                    text-align: center;
                }

            .modal.filter-p .join-now-box .single-option .option label {
                display: inline-block;
                margin: 0;
                width: calc(100% - 14px);
                padding-left: 10px;
                position: relative;
                font-size: 18px;
                line-height: 28px;
                font-weight: 400;
                text-transform: uppercase;
            }

                .modal.filter-p .join-now-box .single-option .option label::before {
                    width: 14px;
                    height: 14px;
                    border-radius: 50%;
                    border: 1px solid #5650ce;
                    left: -14px;
                    text-align: center;
                    top: 7px;
                }

            .modal.filter-p .join-now-box .single-option .option .s-input .nice-select {
                background: transparent;
                border: none;
                line-height: 26px;
                border-radius: 50px;
                padding: 0px 30px 0px 15px;
                border: 1px solid rgba(0, 0, 0, 0.1);
                height: auto;
            }

                .modal.filter-p .join-now-box .single-option .option .s-input .nice-select .list li {
                    color: #222;
                    padding: 0px 10px;
                    line-height: 20px;
                }

    .modal.filter-p .join-now-box .joun-button {
        text-align: center;
    }

        .modal.filter-p .join-now-box .joun-button .custom-button {
            padding: 13px 45px;
        }

/*Blog-Section Starts Here*/
.single-blog.post-details {
    background-color: transparent;
}

    .single-blog.post-details .right {
        width: calc(100% - 95px);
        width: 100%;
    }

        .single-blog.post-details .right .post-header .m-title {
            margin-bottom: 23px;
        }

@media (min-width: 768px) {
    .single-blog.post-details .right .post-header .m-title {
        font-size: 36px;
    }
}

.single-blog.post-details .right .post-header .title {
    margin-bottom: 30px;
}

.single-blog.post-details .right .post-header p {
    margin-bottom: 38px;
}

.single-blog.post-details .right .post-header blockquote {
    padding: 30px;
    padding-right: 40px;
    background-color: #f3f5ff;
    font-size: 18px;
    line-height: 28px;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 20px;
    position: relative;
}

    .single-blog.post-details .right .post-header blockquote span {
        position: relative;
        z-index: 1;
    }

    .single-blog.post-details .right .post-header blockquote::before {
        bottom: 30px;
        left: 40px;
        width: 100px;
        height: 90px;
        background: url(../images/quotation.png) no-repeat center right;
        background-size: contain;
    }

.single-blog.post-details .right .tags-area {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 5px;
}

    .single-blog.post-details .right .tags-area .tags {
        margin-top: 25px;
    }

        .single-blog.post-details .right .tags-area .tags span {
            font-size: 18px;
            font-weight: 600;
            color: #333;
        }

        .single-blog.post-details .right .tags-area .tags a {
            color: #333333;
        }

            .single-blog.post-details .right .tags-area .tags a::after {
                content: ",";
            }

            .single-blog.post-details .right .tags-area .tags a:last-child::after {
                display: none;
            }

    .single-blog.post-details .right .tags-area .social-icons {
        margin-top: 13.5px;
    }

.single-blog.post-details .right .social-icons {
    margin: -7.5px;
}

    .single-blog.post-details .right .social-icons li {
        padding: 7.5px;
    }

        .single-blog.post-details .right .social-icons li a {
            width: 36px;
            height: 36px;
            line-height: 36px;
            text-align: center;
            border-radius: 50%;
            border: 1px solid rgba(0, 0, 0, 0.1);
            color: #a3a5ac;
            font-size: 14px;
        }

            .single-blog.post-details .right .social-icons li a.active {
                background-image: -o-linear-gradient(284deg, #f22876 0%, #942dd9 100%);
                background-image: linear-gradient(166deg, #f22876 0%, #942dd9 100%);
                color: #fff;
            }

.blog-author {
    padding: 30px;
    background-color: white;
    -webkit-box-shadow: 0px 10px 5px 0px rgba(119, 123, 146, 0.02);
    box-shadow: 0px 10px 5px 0px rgba(119, 123, 146, 0.02);
    border-radius: 10px;
}

    .blog-author .author-thumb {
        width: 94px;
        height: 94px;
        padding: 5px;
        border-radius: 50%;
        border: 1px solid rgba(0, 0, 0, 0.1);
    }

        .blog-author .author-thumb a {
            display: block;
            border-radius: 50%;
            overflow: hidden;
        }

            .blog-author .author-thumb a img {
                width: 100%;
            }

    .blog-author .author-content {
        width: calc(100% - 94px);
        padding-left: 30px;
    }

        .blog-author .author-content .title {
            margin: 0;
            text-transform: uppercase;
            margin-bottom: 18px;
        }

.blog-comment {
    margin-top: 40px;
}

@media (min-width: 768px) {
    .blog-comment {
        margin-top: 50px;
    }
}

@media (min-width: 992px) {
    .blog-comment {
        margin-top: 80px;
    }
}

.blog-comment > .title {
    text-transform: uppercase;
    padding-bottom: 15px;
    font-size: 22px;
}

@media (min-width: 576px) {
    .blog-comment > .title {
        font-size: 28px;
    }
}

.comment-area li {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 21px 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

    .comment-area li .blog-thumb {
        width: 65px;
        height: 65px;
        padding: 5px;
        border: 1px solid rgba(0, 0, 0, 0.15);
        border-radius: 50%;
    }

        .comment-area li .blog-thumb a {
            display: block;
            border-radius: 50%;
            overflow: hidden;
        }

            .comment-area li .blog-thumb a img {
                width: 100%;
            }

    .comment-area li .blog-thumb-info {
        width: 150px;
        padding-left: 30px;
    }

        .comment-area li .blog-thumb-info span {
            margin-bottom: 10px;
            display: block;
            color: #9aace5;
            font-size: 14px;
        }

        .comment-area li .blog-thumb-info .title {
            font-size: 16px;
            font-weight: 600;
            text-transform: uppercase;
        }

    .comment-area li .blog-content {
        width: calc(100% - 215px);
        padding-left: 30px;
    }

        .comment-area li .blog-content p {
            margin: 0 !important;
        }

/*Leave-Comment Starts*/
.leave-comment {
    margin-top: 20px;
}

@media (min-width: 768px) {
    .leave-comment {
        margin-top: 35px;
    }
}

@media (min-width: 992px) {
    .leave-comment {
        margin-top: 55px;
    }
}

.leave-comment .title {
    text-transform: uppercase;
    padding-bottom: 15px;
    font-size: 22px;
}

@media (min-width: 576px) {
    .leave-comment .title {
        font-size: 28px;
    }
}

.blog-form {
    margin-bottom: -30px;
}

    .blog-form .form-group {
        margin-bottom: 30px;
    }

        .blog-form .form-group input {
            outline: none;
            border: none;
            border-bottom: 1px solid #d5d6d9;
            -webkit-box-shadow: none;
            box-shadow: none;
            margin-bottom: 22px;
            background: none;
            padding: 0px 0px;
            border-radius: 0px;
            height: 50px;
        }

        .blog-form .form-group textarea {
            color: rgba(51, 51, 51, 0.6);
            outline: none;
            border: none;
            border-bottom: 1px solid #d5d6d9;
            -webkit-box-shadow: none;
            box-shadow: none;
            background: none;
            padding: 0px 0px;
            border-radius: 0px;
            height: 150px;
            margin-top: 36px;
        }

        .blog-form .form-group input:hover {
            border-bottom: 1px solid #f87115;
        }

        .blog-form .form-group textarea:hover {
            border-bottom: 1px solid #f87115;
        }

.blog-page.single-blog-page {
    padding-bottom: 90px;
}

/*  Profile Section Start */
.profile-section {
    /* padding: 120px 0px 120px; */
}

    .profile-section .left-profile-area .profile-about-box {
        border-radius: 10px;
        background-color: white;
        -webkit-box-shadow: 0px 10px 5px 0px rgba(119, 123, 146, 0.02);
        box-shadow: 0px 10px 5px 0px rgba(119, 123, 146, 0.02);
        -webkit-transition: all ease 0.3s;
        -o-transition: all ease 0.3s;
        transition: all ease 0.3s;
    }

        .profile-section .left-profile-area .profile-about-box .top-bg {
            height: 132px;
            background: url(../images/profile/profile-box-bg.png);
            background-repeat: no-repeat;
            background-position: bottom center;
            background-size: contain;
        }

        .profile-section .left-profile-area .profile-about-box .p-inner-content {
            position: relative;
            padding: 90px 30px 30px;
            text-align: center;
        }

            .profile-section .left-profile-area .profile-about-box .p-inner-content .profile-img {
                background: #fff;
                width: 120px;
                height: 120px;
                position: absolute;
                border-radius: 50%;
                left: 50%;
                -webkit-transform: translateX(-50%);
                -ms-transform: translateX(-50%);
                transform: translateX(-50%);
                top: -60px;
                z-index: 9;
            }

                .profile-section .left-profile-area .profile-about-box .p-inner-content .profile-img img {
                    width: 100%;
                    border-radius: unset;
                    height: 100%;
                }

                .profile-section .left-profile-area .profile-about-box .p-inner-content .profile-img::before {
                    position: absolute;
                    content: "";
                    width: 140px;
                    height: 140px;
                    background: rgba(255, 255, 255, 0.2);
                    top: -10px;
                    z-index: -1;
                    left: -10px;
                    border-radius: 50%;
                }

                .profile-section .left-profile-area .profile-about-box .p-inner-content .profile-img::after {
                    position: absolute;
                    content: "";
                    width: 160px;
                    height: 160px;
                    background: rgba(255, 255, 255, 0.2);
                    top: -20px;
                    z-index: -1;
                    left: -20px;
                    border-radius: 50%;
                }

                .profile-section .left-profile-area .profile-about-box .p-inner-content .profile-img .active-online {
                    position: absolute;
                    width: 20px;
                    height: 20px;
                    background: #1ce36f;
                    border: 3px solid #fff;
                    border-radius: 50%;
                    top: 9px;
                    left: 9px;
                }

            .profile-section .left-profile-area .profile-about-box .p-inner-content .name {
                font-size: 28px;
                line-height: 38px;
                margin-top:8px
            }

            .profile-section .left-profile-area .profile-about-box .p-inner-content .p-b-meta-one li {
                display: inline-block;
                margin-left: 30px;
            }

                .profile-section .left-profile-area .profile-about-box .p-inner-content .p-b-meta-one li:last-child {
                    margin-right: 0px;
                    position: relative;
                }

                    .profile-section .left-profile-area .profile-about-box .p-inner-content .p-b-meta-one li:last-child::before {
                        position: absolute;
                        content: "|";
                        right: -18px;
                        top: 2px;
                    }

                .profile-section .left-profile-area .profile-about-box .p-inner-content .p-b-meta-one li span i {
                    margin-left: 7px;
                    -webkit-background-clip: text;
                    -webkit-text-fill-color: transparent;
                    background-image: -o-linear-gradient(284deg, #f22876 0%, #942dd9 100%);
                    background-image: linear-gradient(166deg, #f22876 0%, #942dd9 100%);
                }

            .profile-section .left-profile-area .profile-about-box .p-inner-content .p-b-meta-two {
                margin-top: 20px;
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-pack: justify;
                -ms-flex-pack: justify;
                justify-content: space-between;
            }

                .profile-section .left-profile-area .profile-about-box .p-inner-content .p-b-meta-two .left {
                    font-weight: 600;
                    width: 100%;
                }

                    .profile-section .left-profile-area .profile-about-box .p-inner-content .p-b-meta-two .left .icon, .messagesarchivex .icon, .lastdateenter .icon {
                        width: 40px;
                        height: 40px;
                        border-radius: 50%;
                        background: #f7e9f8;
                        text-align: center;
                        line-height: 40px;
                        display: inline-block;
                        position: relative;
                        margin-left: 20px;
                    }

                        .profile-section .left-profile-area .profile-about-box .p-inner-content .p-b-meta-two .left .icon span, .messagesarchivex .icon span {
                            position: absolute;
                            top: -5px;
                            left: -8px;
                            background: #29a631;
                            height: 20px;
                            width: 20px;
                            color: #fff;
                            line-height: 20px;
                            font-size: 11px;
                            border-radius: 50%;
                        }

                        .profile-section .left-profile-area .profile-about-box .p-inner-content .p-b-meta-two .left .icon i, .messagesarchivex .icon i, .lastdateenter .icon i {
                            -webkit-background-clip: text;
                            -webkit-text-fill-color: transparent;
                            background-image: -o-linear-gradient(284deg, #f22876 0%, #942dd9 100%);
                            background-image: linear-gradient(166deg, #f22876 0%, #942dd9 100%);
                        }

                .profile-section .left-profile-area .profile-about-box .p-inner-content .p-b-meta-two .right a.custom-button {
                    display: inline-block;
                    font-weight: normal;
                    padding: 5px 15px;
                    background-image: -o-linear-gradient(141deg, #f664bc 0%, #fb7bbc 35%, #ff92bb 100%) !important;
                    background-image: linear-gradient(-51deg, #f664bc 0%, #fb7bbc 35%, #ff92bb 100%) !important;
                    -webkit-box-shadow: 0px 5px 20px 0px rgba(139, 122, 132, 0.5);
                    box-shadow: 0px 5px 20px 0px rgba(139, 122, 132, 0.5);
                }

    .profile-section .left-profile-area .profile-meta-box {
        border-radius: 10px;
        background-color: white;
        -webkit-box-shadow: 0px 10px 5px 0px rgba(119, 123, 146, 0.02);
        box-shadow: 0px 10px 5px 0px rgba(119, 123, 146, 0.02);
        margin-top: 30px;
        padding: 20px 20px 20px;
        -webkit-transition: all ease 0.3s;
        -o-transition: all ease 0.3s;
        transition: all ease 0.3s;
    }

        .profile-section .left-profile-area .profile-meta-box .p-m-b {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
            width: 100%;
        }

            .profile-section .left-profile-area .profile-meta-box .p-m-b li {
                -webkit-box-flex: 33.33%;
                -ms-flex: 33.33%;
                flex: 33.33%;
                width: 33.33%;
                text-align: center;
            }

                .profile-section .left-profile-area .profile-meta-box .p-m-b li a {
                    width: 60px;
                    height: 60px;
                    border-radius: 50%;
                    background: #f8e9f7;
                    line-height: 60px;
                    position: relative;
                }

                    .profile-section .left-profile-area .profile-meta-box .p-m-b li a i {
                        -webkit-background-clip: text;
                        -webkit-text-fill-color: transparent;
                        background-image: -o-linear-gradient(284deg, #f22876 0%, #942dd9 100%);
                        background-image: linear-gradient(166deg, #f22876 0%, #942dd9 100%);
                        font-size: 20px;
                    }

                    .profile-section .left-profile-area .profile-meta-box .p-m-b li a .number {
                        position: absolute;
                        width: 20px;
                        height: 20px;
                        line-height: 20px;
                        background-image: -o-linear-gradient(284deg, #f22876 0%, #942dd9 100%);
                        background-image: linear-gradient(166deg, #f22876 0%, #942dd9 100%);
                        border-radius: 50%;
                        font-size: 10px;
                        color: #fff;
                        z-index: 2;
                        top: 15%;
                        left: 15%;
                    }

    .profile-section .left-profile-area .profile-uplodate-photo {
        border-radius: 10px;
        background-color: white;
        -webkit-box-shadow: 0px 10px 5px 0px rgba(119, 123, 146, 0.02);
        box-shadow: 0px 10px 5px 0px rgba(119, 123, 146, 0.02);
        margin-top: 30px;
        padding: 35px 20px 10px;
        -webkit-transition: all ease 0.3s;
        -o-transition: all ease 0.3s;
        transition: all ease 0.3s;
    }

        .profile-section .left-profile-area .profile-uplodate-photo .p-u-p-header {
            font-size: 24px;
            font-weight: 600;
            display: block;
            padding: 0px 10px;
            margin-bottom: 25px;
        }

            .profile-section .left-profile-area .profile-uplodate-photo .p-u-p-header i {
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-image: -o-linear-gradient(284deg, #f22876 0%, #942dd9 100%);
                background-image: linear-gradient(166deg, #f22876 0%, #942dd9 100%);
                margin-right: 7px;
            }

        .profile-section .left-profile-area .profile-uplodate-photo .p-u-p-list {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        }

            .profile-section .left-profile-area .profile-uplodate-photo .p-u-p-list .my-col {
                width: 33.33%;
                -webkit-box-flex: 33.33%;
                -ms-flex: 33.33%;
                flex: 33.33%;
                padding-left: 10px;
                padding-right: 10px;
            }

                .profile-section .left-profile-area .profile-uplodate-photo .p-u-p-list .my-col .img {
                    position: relative;
                    margin-bottom: 20px;
                    border-radius: 15px;
                    overflow: hidden;
                }

                    .profile-section .left-profile-area .profile-uplodate-photo .p-u-p-list .my-col .img img {
                        width: 100%;
                    }

                    .profile-section .left-profile-area .profile-uplodate-photo .p-u-p-list .my-col .img .overlay {
                        position: absolute;
                        top: 0px;
                        left: 0px;
                        width: 100%;
                        height: 100%;
                        background-color: #5533ca;
                        opacity: 0;
                        -webkit-transform: scale(0.3);
                        -ms-transform: scale(0.3);
                        transform: scale(0.3);
                        -webkit-transition: all ease 0.3s;
                        -o-transition: all ease 0.3s;
                        transition: all ease 0.3s;
                    }

                        .profile-section .left-profile-area .profile-uplodate-photo .p-u-p-list .my-col .img .overlay a {
                            color: #fff;
                            position: absolute;
                            top: 50%;
                            left: 50%;
                            -webkit-transform: translate(-50%, -50%);
                            -ms-transform: translate(-50%, -50%);
                            transform: translate(-50%, -50%);
                            cursor: pointer;
                        }

                    .profile-section .left-profile-area .profile-uplodate-photo .p-u-p-list .my-col .img:hover .overlay {
                        -webkit-transform: scale(1);
                        -ms-transform: scale(1);
                        transform: scale(1);
                        opacity: 0.8;
                    }

    .profile-section .profile-main-content .top-menu {
        border-radius: 10px;
        background-color: white;
        -webkit-box-shadow: 0px 5px 30px 0px rgba(35, 57, 184, 0.2);
        box-shadow: 0px 5px 30px 0px rgba(35, 57, 184, 0.2);
        padding: 6px 10px 10px;
        display: block;
        text-align: center;
        margin-bottom: 1px;
    }

        .profile-section .profile-main-content .top-menu li {
            display: inline-block;
        }

            .profile-section .profile-main-content .top-menu li a {
                color: #333333;
                font-size: 16px;
                line-height: 26px;
                font-weight: 700;
                margin: 0px 12px;
                position: relative;
                -webkit-transition: all ease 0.3s;
                -o-transition: all ease 0.3s;
                transition: all ease 0.3s;
            }

                .profile-section .profile-main-content .top-menu li a .num {
                    position: absolute;
                    background-image: -o-linear-gradient(284deg, #f22876 0%, #942dd9 100%);
                    background-image: linear-gradient(166deg, #f22876 0%, #942dd9 100%);
                    border-radius: 30px;
                    padding: 3px 5px;
                    font-size: 10px;
                    line-height: 10px;
                    color: #fff;
                    top: -6px;
                    left: -17px;
                }

                .profile-section .profile-main-content .top-menu li a.active, .profile-section .profile-main-content .top-menu li a:hover {
                    color: #ac216c;
                }

    .profile-section .profile-main-content .top-menu-two {
        display: block;
        text-align: center;
    }

        .profile-section .profile-main-content .top-menu-two li {
            display: inline-block;
            margin: 2px 2px;
        }

            .profile-section .profile-main-content .top-menu-two li a {
                color: #333;
                font-weight: 600;
                font-size: 12px;
                line-height: 12px;
                text-transform: uppercase;
                padding: 5px 6px 3px;
                border: 1px solid rgba(0, 0, 0, 0.2);
                border-radius: 50px;
            }

                .profile-section .profile-main-content .top-menu-two li a.active, .profile-section .profile-main-content .top-menu-two li a:hover {
                    background-image: -o-linear-gradient(284deg, #f22876 0%, #942dd9 100%);
                    background-image: linear-gradient(166deg, #f22876 0%, #942dd9 100%);
                    color: #fff;
                }

            .profile-section .profile-main-content .top-menu-two li .nice-select {
                position: relative;
                min-width: 105px;
                display: inline-block;
                top: 12px;
                background: none;
                border-radius: 50px;
                border: 1px solid rgba(0, 0, 0, 0.2);
                cursor: pointer;
                font-size: 14px;
                height: 22px;
                padding: 0px;
                line-height: 20px;
                padding-left: 10px;
                padding-right: 15px;
            }

                .profile-section .profile-main-content .top-menu-two li .nice-select .current {
                    font-size: 12px;
                    text-transform: uppercase;
                    line-height: 12px;
                }

                .profile-section .profile-main-content .top-menu-two li .nice-select ul {
                    display: block;
                }

                    .profile-section .profile-main-content .top-menu-two li .nice-select ul li {
                        display: block;
                        padding: 0px 5px;
                        font-size: 12px;
                        text-transform: uppercase;
                        min-height: 30px !important;
                        line-height: 30px;
                    }

    .profile-section .profile-main-content .write-post-area {
        border-radius: 10px;
        background-color: white;
        padding: 30px 30px 29px;
        margin-top: 20px;
    }

        .profile-section .profile-main-content .write-post-area .write-area {
            position: relative;
        }

            .profile-section .profile-main-content .write-post-area .write-area img {
                position: absolute;
                width: 40px;
                height: 40px;
                border-radius: 50%;
                top: 0px;
                left: 0px;
            }

            .profile-section .profile-main-content .write-post-area .write-area textarea {
                padding-left: 60px;
                padding-top: 0px;
                padding-right: 0px;
                height: 100px;
                border-left: 0px;
                border-right: 0px;
                border-top: 1px;
                border-radius: 0px;
                border-bottom: 1px solid rgba(0, 0, 0, 0.2);
            }

        .profile-section .profile-main-content .write-post-area .submit-area {
            padding-top: 13px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: justify;
            -ms-flex-pack: justify;
            justify-content: space-between;
        }

            .profile-section .profile-main-content .write-post-area .submit-area .left a.upload-btn {
                display: inline-block;
                height: 30px;
                width: 60px;
                line-height: 30px;
                border-radius: 20px;
                background: #f7e9f8;
                display: inline-block;
                text-align: center;
                margin-right: 5px;
            }

                .profile-section .profile-main-content .write-post-area .submit-area .left a.upload-btn i {
                    -webkit-background-clip: text;
                    -webkit-text-fill-color: transparent;
                    background-image: -o-linear-gradient(284deg, #f22876 0%, #942dd9 100%);
                    background-image: linear-gradient(166deg, #f22876 0%, #942dd9 100%);
                }

            .profile-section .profile-main-content .write-post-area .submit-area .left .select-area {
                display: inline-block;
            }

                .profile-section .profile-main-content .write-post-area .submit-area .left .select-area .nice-select {
                    position: relative;
                    min-width: 105px;
                    display: inline-block;
                    top: 8px;
                    background: none;
                    border-radius: 50px;
                    border: 1px solid rgba(0, 0, 0, 0.2);
                    cursor: pointer;
                    font-size: 16px;
                    height: 30px;
                    padding: 0px;
                    line-height: 28px;
                    padding-left: 10px;
                    padding-right: 15px;
                }

                    .profile-section .profile-main-content .write-post-area .submit-area .left .select-area .nice-select .current {
                        font-size: 12px;
                        text-transform: uppercase;
                        line-height: 12px;
                    }

                    .profile-section .profile-main-content .write-post-area .submit-area .left .select-area .nice-select ul {
                        display: block;
                    }

                        .profile-section .profile-main-content .write-post-area .submit-area .left .select-area .nice-select ul li {
                            display: block;
                            padding: 0px 5px;
                            font-size: 16px;
                            min-height: 30px !important;
                            line-height: 30px;
                        }

            .profile-section .profile-main-content .write-post-area .submit-area .right .custom-button {
                height: 30px;
                line-height: 30px;
                padding: 0px 20px;
                margin-top: 8px;
            }

    .profile-section .profile-main-content .profile-single-post {
        border-radius: 10px;
        background-color: white;
        padding: 30px 30px 29px;
        margin-top: 30px;
    }

        .profile-section .profile-main-content .profile-single-post .p-s-p-header-area .img {
            display: inline-block;
            position: relative;
        }

            .profile-section .profile-main-content .profile-single-post .p-s-p-header-area .img .active-online {
                position: absolute;
                width: 15px;
                height: 15px;
                background: #1ce36f;
                border: 3px solid #fff;
                border-radius: 50%;
                bottom: -2px;
                right: -2px;
            }

            .profile-section .profile-main-content .profile-single-post .p-s-p-header-area .img img {
                width: 40px;
            }

        .profile-section .profile-main-content .profile-single-post .p-s-p-header-area .name {
            font-size: 18px;
            line-height: 28px;
            font-weight: 600;
            display: inline-block;
            margin-left: 15px;
            margin-right: 5px;
            margin-bottom: 0px;
            color: #29a631;
        }

        .profile-section .profile-main-content .profile-single-post .p-s-p-header-area .is-varify {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: #fce9f3;
            display: inline-block;
            text-align: center;
            line-height: 15px;
            position: relative;
            top: -2px;
        }

            .profile-section .profile-main-content .profile-single-post .p-s-p-header-area .is-varify i {
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-image: -o-linear-gradient(284deg, #f22876 0%, #942dd9 100%);
                background-image: linear-gradient(166deg, #f22876 0%, #942dd9 100%);
                font-size: 10px;
            }

        .profile-section .profile-main-content .profile-single-post .p-s-p-header-area .usewrname {
            margin-left: 10px;
            margin-right: 10px;
            font-size: 14px;
        }

        .profile-section .profile-main-content .profile-single-post .p-s-p-header-area .post-time {
            font-size: 14px;
        }

        .profile-section .profile-main-content .profile-single-post .p-s-p-content {
            padding-left: 60px;
/*            padding-top: 23px;
*/        }

            .profile-section .profile-main-content .profile-single-post .p-s-p-content img {
                width: 100%;
                margin-bottom: 4px;
            }

            .profile-section .profile-main-content .profile-single-post .p-s-p-content p {
                margin-bottom: 20px !important;
                display: block;
            }

        .profile-section .profile-main-content .profile-single-post .p-s-p-content-footer {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: justify;
            -ms-flex-pack: justify;
            justify-content: space-between;
            margin-top: 26px;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
            padding-top: 30px;
        }

            .profile-section .profile-main-content .profile-single-post .p-s-p-content-footer .left .comment {
                border: 1px solid rgba(0, 0, 0, 0.2);
                font-size: 14px;
                line-height: 30px;
                padding: 0 15px;
                height: 30px;
                border-radius: 50px;
                color: #333;
                margin-right: 14px;
            }

            .profile-section .profile-main-content .profile-single-post .p-s-p-content-footer .right .nice-select {
                margin-right: 19px;
                position: relative;
                min-width: 100px;
                display: inline-block;
                top: 0px;
                background: none;
                border-radius: 50px;
                border: 1px solid rgba(0, 0, 0, 0.2);
                cursor: pointer;
                font-size: 14px;
                height: 30px;
                padding: 0px;
                line-height: 30px;
                padding-left: 10px;
                padding-right: 15px;
            }

                .profile-section .profile-main-content .profile-single-post .p-s-p-content-footer .right .nice-select .current {
                    font-size: 12px;
                    text-transform: uppercase;
                    line-height: 12px;
                }

                .profile-section .profile-main-content .profile-single-post .p-s-p-content-footer .right .nice-select ul {
                    display: block;
                }

                    .profile-section .profile-main-content .profile-single-post .p-s-p-content-footer .right .nice-select ul li {
                        display: block;
                        padding: 0px 5px;
                        font-size: 12px;
                        text-transform: uppercase;
                        min-height: 30px !important;
                        line-height: 30px;
                    }

            .profile-section .profile-main-content .profile-single-post .p-s-p-content-footer .link {
                display: inline-block;
                height: 30px;
                width: 40px;
                line-height: 30px;
                border-radius: 10px;
                background: #f7e9f8;
                display: inline-block;
                text-align: center;
                margin-right: 5px;
            }

                .profile-section .profile-main-content .profile-single-post .p-s-p-content-footer .link i {
                    font-size: 15px;
                    -webkit-background-clip: text;
                    -webkit-text-fill-color: transparent;
                    background-image: -o-linear-gradient(284deg, #f22876 0%, #942dd9 100%);
                    background-image: linear-gradient(166deg, #f22876 0%, #942dd9 100%);
                }

    .profile-section .profile-main-content .load-more {
        border-radius: 50px;
        background-color: white;
        -webkit-box-shadow: 0px 10px 30px 0px rgba(61, 83, 209, 0.2);
        box-shadow: 0px 10px 30px 0px rgba(61, 83, 209, 0.2);
        display: block;
        color: #333;
        text-align: center;
        height: 40px;
        font-weight: 600;
        font-size: 16px;
        line-height: 40px;
        margin-top: 30px;
    }

        .profile-section .profile-main-content .load-more:hover {
            background-image: -o-linear-gradient(284deg, #f22876 0%, #942dd9 100%);
            background-image: linear-gradient(166deg, #f22876 0%, #942dd9 100%);
            color: #fff;
        }

    .profile-section .profile-main-content .info-box {
        background-color: white;
        margin-top: 30px;
        border-radius: 10px;
        padding: 30px 30px 22px;
        overflow: hidden;
    }

        .profile-section .profile-main-content .info-box .header {
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

        .profile-section .profile-main-content .info-box:last-child .header {
            margin-bottom: 10px
        }

        .profile-section .profile-main-content .info-box .header .title {
            font-size: 24px;
            line-height: 34px;
            font-weight: 600;
            padding-bottom: 10px;
        }

        .profile-section .profile-main-content .info-box .content .text {
            margin-bottom: 0px;
            font-size: 16px;
            line-height: 26px;
            padding: 20px 0px 3px;
            word-wrap: break-word;
        }

        .profile-section .profile-main-content .info-box .content .infolist li {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: justify;
            -ms-flex-pack: justify;
            justify-content: space-between;
            border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
            margin-bottom: 10px
        }

        .profile-section .profile-main-content .info-box.socialx .content .infolist li {
            float: right;
            width: 50px;
            height: 50px;
            line-height: 44px;
            background: #29a631;
            border-radius: 50%;
            text-align: center;
            margin-left: 10px;
        }

        .profile-section .profile-main-content .info-box.socialx .content .infolist li a {
            color: #fff;
            display: block;
            width: 100%;
            font-size: 26px;
            line-height: 42px;
        }

        .profile-section .profile-main-content .info-box.socialx .content .infolist li:last-child {
            border-bottom: 0px;
        }

        .profile-section .profile-main-content .info-box.socialx .content .infolist li span {
            font-size: 18px;
            line-height: 26px;
        }

    .profile-section .profile-main-content .profile-friends .single-friend {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-top: 30px;
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 15px;
        padding: 20px 20px 20px;
    }

        .profile-section .profile-main-content .profile-friends .single-friend img {
            max-width: 80px;
            margin-right: 20px;
        }

        .profile-section .profile-main-content .profile-friends .single-friend .content {
            -webkit-box-flex: 1;
            -ms-flex: 1;
            flex: 1;
            -ms-flex-item-align: center;
            -ms-grid-row-align: center;
            align-self: center;
            position: relative;
            padding-right: 150px;
        }

            .profile-section .profile-main-content .profile-friends .single-friend .content .name {
                font-size: 20px;
                line-height: 30px;
                font-weight: 700;
                color: #333333;
            }

                .profile-section .profile-main-content .profile-friends .single-friend .content .name .isvarify {
                    display: inline-block;
                }

                    .profile-section .profile-main-content .profile-friends .single-friend .content .name .isvarify i {
                        -webkit-background-clip: text;
                        -webkit-text-fill-color: transparent;
                        background-image: -o-linear-gradient(284deg, #f22876 0%, #942dd9 100%);
                        background-image: linear-gradient(166deg, #f22876 0%, #942dd9 100%);
                        font-size: 16px;
                        margin-left: 4px;
                    }

            .profile-section .profile-main-content .profile-friends .single-friend .content .date {
                font-size: 16px;
                line-height: 26px;
                margin-bottom: 0px;
            }

            .profile-section .profile-main-content .profile-friends .single-friend .content .connnect-btn {
                position: absolute;
                top: 50%;
                -webkit-transform: translateY(-50%);
                -ms-transform: translateY(-50%);
                transform: translateY(-50%);
                right: 0px;
                z-index: 1;
                -webkit-box-flex: 16px;
                -ms-flex: 16px;
                flex: 16px;
                color: #333;
                border: 1px solid rgba(0, 0, 0, 0.15);
                padding: 6px 20px;
                border-radius: 50px;
            }

                .profile-section .profile-main-content .profile-friends .single-friend .content .connnect-btn:hover {
                    background-image: -o-linear-gradient(284deg, #f22876 0%, #942dd9 100%);
                    background-image: linear-gradient(166deg, #f22876 0%, #942dd9 100%);
                    color: #fff;
                }

    .profile-section .profile-aside-area .other-profile {
        background-color: white;
        border-radius: 10px;
        padding: 30px 10px 20px;
    }

        .profile-section .profile-aside-area .other-profile .o-p-header .title {
            font-size: 24px;
            line-height: 34px;
            margin-bottom: 25px;
        }

        .profile-section .profile-aside-area .other-profile .p-u-p-list {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        }

            .profile-section .profile-aside-area .other-profile .p-u-p-list .my-col {
                width: 50%;
                -webkit-box-flex: 50%;
                -ms-flex: 50%;
                flex: 50%;
                padding-left: 10px;
                padding-right: 10px;
            }

                .profile-section .profile-aside-area .other-profile .p-u-p-list .my-col .img {
                    position: relative;
                    margin-bottom: 20px;
                    border-radius: 15px;
                }

                    .profile-section .profile-aside-area .other-profile .p-u-p-list .my-col .img img {
                        width: 100%;
                    }

                    .profile-section .profile-aside-area .other-profile .p-u-p-list .my-col .img a {
                        color: #fff;
                        position: absolute;
                        bottom: -10px;
                        right: 20px;
                        cursor: pointer;
                        background-image: -o-linear-gradient(284deg, #f22876 0%, #942dd9 100%);
                        background-image: linear-gradient(166deg, #f22876 0%, #942dd9 100%);
                        font-size: 10px;
                        width: 20px;
                        height: 20px;
                        display: inline-block;
                        line-height: 20px;
                        text-align: center;
                        border-radius: 50%;
                    }

                    .profile-section .profile-aside-area .other-profile .p-u-p-list .my-col .img:hover .overlay {
                        -webkit-transform: scale(1);
                        -ms-transform: scale(1);
                        transform: scale(1);
                        opacity: 0.8;
                    }

        .profile-section .profile-aside-area .other-profile .o-p-content {
            position: relative;
        }

            .profile-section .profile-aside-area .other-profile .o-p-content .p-u-p-list-slider .owl-nav .owl-prev,
            .profile-section .profile-aside-area .other-profile .o-p-content .p-u-p-list-slider .owl-nav .owl-next {
                position: absolute;
                top: -53px;
                background-color: white;
                -webkit-box-shadow: 0px 2px 5px 0px rgba(119, 123, 146, 0.2);
                box-shadow: 0px 2px 5px 0px rgba(119, 123, 146, 0.2);
                border-radius: 50%;
                width: 20px;
                height: 20px;
                font-size: 12px;
                line-height: 22px;
            }

                .profile-section .profile-aside-area .other-profile .o-p-content .p-u-p-list-slider .owl-nav .owl-prev:hover,
                .profile-section .profile-aside-area .other-profile .o-p-content .p-u-p-list-slider .owl-nav .owl-next:hover {
                    background-image: -o-linear-gradient(284deg, #f22876 0%, #942dd9 100%);
                    background-image: linear-gradient(166deg, #f22876 0%, #942dd9 100%);
                    color: #fff;
                }

                .profile-section .profile-aside-area .other-profile .o-p-content .p-u-p-list-slider .owl-nav .owl-prev:focus,
                .profile-section .profile-aside-area .other-profile .o-p-content .p-u-p-list-slider .owl-nav .owl-next:focus {
                    outline: 0px;
                }

            .profile-section .profile-aside-area .other-profile .o-p-content .p-u-p-list-slider .owl-nav .owl-next {
                right: 0px;
            }

            .profile-section .profile-aside-area .other-profile .o-p-content .p-u-p-list-slider .owl-nav .owl-prev {
                right: 30px;
            }

    .profile-section .profile-aside-area .chat-request {
        background-color: white;
        margin-top: 30px;
        border-radius: 10px;
    }

        .profile-section .profile-aside-area .chat-request .c-r-heading {
            padding: 28px 20px 0px;
        }

            .profile-section .profile-aside-area .chat-request .c-r-heading .title {
                font-size: 24px;
                line-height: 34px;
                margin-bottom: 20px;
            }

        .profile-section .profile-aside-area .chat-request .c-r-content {
            padding: 10px 20px 30px;
        }

            .profile-section .profile-aside-area .chat-request .c-r-content .single-c-r {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -ms-flex-item-align: center;
                -ms-grid-row-align: center;
                align-self: center;
                margin-bottom: 20px;
            }

                .profile-section .profile-aside-area .chat-request .c-r-content .single-c-r:last-child {
                    margin-bottom: 0px;
                }

                    .profile-section .profile-aside-area .chat-request .c-r-content .single-c-r:last-child .right {
                        border-bottom: 0px;
                    }

                .profile-section .profile-aside-area .chat-request .c-r-content .single-c-r .left {
                    margin-left: 20px;
                }

                .profile-section .profile-aside-area .chat-request .c-r-content .single-c-r .right {
                    -webkit-box-flex: 1;
                    -ms-flex: 1;
                    flex: 1;
                    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
                    padding-bottom: 12px;
                }

                    .profile-section .profile-aside-area .chat-request .c-r-content .single-c-r .right .title {
                        font-size: 20px;
                        line-height: 30px;
                        font-weight: 600;
                        display: block;
                    }

                    .profile-section .profile-aside-area .chat-request .c-r-content .single-c-r .right p {
                        margin-bottom: 0px;
                        font-size: 16px;
                    }

            .profile-section .profile-aside-area .chat-request .c-r-content .load-more {
                border: 1px solid rgba(0, 0, 0, 0.15);
                width: 120px;
                font-size: 16px;
                font-weight: 600;
                text-align: center;
                border-radius: 50px;
                color: #333;
                margin: 0 auto;
                display: block;
                margin-top: 10px;
            }

                .profile-section .profile-aside-area .chat-request .c-r-content .load-more:hover {
                    background-image: -o-linear-gradient(284deg, #f22876 0%, #942dd9 100%);
                    background-image: linear-gradient(166deg, #f22876 0%, #942dd9 100%);
                    color: #fff;
                }

/*  Avout Section Start */
.about-section {
    padding-top: 116px;
    padding-bottom: 116px;
}

    .about-section .content .section-header {
        margin-bottom: 0px !important;
    }

/*  Community Section Start */
.community-section.inner-page .top-filter {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 20px 0px 20px;
}

    .community-section.inner-page .top-filter .left a {
        background-color: #eef3fb;
        -webkit-box-shadow: 0px 5px 10px 0px rgba(143, 175, 202, 0.5);
        box-shadow: 0px 5px 10px 0px rgba(143, 175, 202, 0.5);
        padding: 6px 30px;
        border-radius: 50px;
        color: #333;
    }

        .community-section.inner-page .top-filter .left a i {
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-image: -o-linear-gradient(284deg, #f22876 0%, #942dd9 100%);
            background-image: linear-gradient(166deg, #f22876 0%, #942dd9 100%);
            margin-right: 4px;
        }

    .community-section.inner-page .top-filter .right .span {
        font-size: 16px;
        line-height: 26px;
        margin-right: 7px;
        position: relative;
        top: -8px;
    }

    .community-section.inner-page .top-filter .right .filter-right {
        display: inline-block;
    }

        .community-section.inner-page .top-filter .right .filter-right .nice-select {
            position: relative;
            min-width: 105px;
            display: inline-block;
            top: 4px;
            background: none;
            border-radius: 50px;
            background-color: #eef3fb;
            -webkit-box-shadow: 0px 5px 10px 0px rgba(143, 175, 202, 0.5);
            box-shadow: 0px 5px 10px 0px rgba(143, 175, 202, 0.5);
            cursor: pointer;
            font-size: 14px;
            height: 35px;
            padding: 0px;
            line-height: 35px;
            padding-left: 20px;
            padding-right: 30px;
        }

            .community-section.inner-page .top-filter .right .filter-right .nice-select .current {
                font-size: 12px;
                text-transform: uppercase;
                line-height: 12px;
            }

            .community-section.inner-page .top-filter .right .filter-right .nice-select ul {
                display: block;
            }

                .community-section.inner-page .top-filter .right .filter-right .nice-select ul li {
                    display: block;
                    padding: 0px 5px;
                    font-size: 12px;
                    text-transform: uppercase;
                    min-height: 30px !important;
                    line-height: 30px;
                }

.community-section.inner-page .single-community-box {
    margin-bottom: 30px;
    -webkit-box-shadow: 0px 5px 30px 0px rgba(86, 47, 218, 0.1);
    box-shadow: 0px 5px 30px 0px rgba(86, 47, 218, 0.1);
}

.community-section.inner-page .single-friend {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 0px;
    margin-bottom: 30px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    padding: 20px 20px 20px;
    -webkit-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

    .community-section.inner-page .single-friend img {
        max-width: 80px;
        margin-right: 20px;
    }

    .community-section.inner-page .single-friend .content {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
        position: relative;
        padding-right: 150px;
    }

        .community-section.inner-page .single-friend .content .name {
            font-size: 20px;
            line-height: 30px;
            font-weight: 700;
            color: #333333;
        }

            .community-section.inner-page .single-friend .content .name .isvarify {
                display: inline-block;
            }

                .community-section.inner-page .single-friend .content .name .isvarify i {
                    -webkit-background-clip: text;
                    -webkit-text-fill-color: transparent;
                    background-image: -o-linear-gradient(284deg, #f22876 0%, #942dd9 100%);
                    background-image: linear-gradient(166deg, #f22876 0%, #942dd9 100%);
                    font-size: 16px;
                    margin-left: 4px;
                }

        .community-section.inner-page .single-friend .content .date {
            font-size: 16px;
            line-height: 26px;
            margin-bottom: 0px;
        }

        .community-section.inner-page .single-friend .content .connnect-btn {
            position: absolute;
            top: 50%;
            -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            transform: translateY(-50%);
            right: 0px;
            z-index: 1;
            -webkit-box-flex: 16px;
            -ms-flex: 16px;
            flex: 16px;
            color: #333;
            border: 1px solid rgba(0, 0, 0, 0.15);
            padding: 6px 20px;
            border-radius: 50px;
        }

            .community-section.inner-page .single-friend .content .connnect-btn:hover {
                background-image: -o-linear-gradient(284deg, #f22876 0%, #942dd9 100%);
                background-image: linear-gradient(166deg, #f22876 0%, #942dd9 100%);
                color: #fff;
            }

    .community-section.inner-page .single-friend:hover {
        border-color: #5650ce;
    }

.pagination-area {
    font-size: 18px;
    margin: 0 -15px;
}

    .pagination-area a {
        color: #333;
        margin: 0 2px;
        background: #fff;
        -webkit-box-shadow: 0px 15px 30px 0px rgba(119, 123, 146, 0.2);
        box-shadow: 0px 15px 30px 0px rgba(119, 123, 146, 0.2);
        width: 50px;
        height: 50px;
        line-height: 50px;
        border-radius: 50%;
    }

        .pagination-area a i {
            font-size: 14px;
        }

        .pagination-area a:hover {
            color: #ffffff;
        }

        .pagination-area a.active, .pagination-area a:hover {
            background-image: -o-linear-gradient(284deg, #f22876 0%, #942dd9 100%);
            /* background-image: linear-gradient(166deg, #f22876 0%, #942dd9 100%); */
            color: #fff;
            background: #29a631;
        }

.single-community-menu {
    background: #4827bb;
}

    .single-community-menu .top-menu {
        margin-left: 30px;
        border-radius: 10px;
        padding: 6px 10px 10px;
        display: block;
        margin-bottom: 1px;
        padding-left: 25%;
        position: relative;
        z-index: 9;
    }

        .single-community-menu .top-menu li {
            display: inline-block;
        }

            .single-community-menu .top-menu li a {
                color: #fff;
                font-size: 16px;
                line-height: 26px;
                font-weight: 700;
                margin: 0px 12px;
                position: relative;
                -webkit-transition: all ease 0.3s;
                -o-transition: all ease 0.3s;
                transition: all ease 0.3s;
            }

                .single-community-menu .top-menu li a .num {
                    position: absolute;
                    background-image: -o-linear-gradient(284deg, #f22876 0%, #942dd9 100%);
                    background-image: linear-gradient(166deg, #f22876 0%, #942dd9 100%);
                    border-radius: 30px;
                    padding: 3px 5px;
                    font-size: 10px;
                    line-height: 10px;
                    color: #fff;
                    top: -6px;
                    right: -17px;
                }

                .single-community-menu .top-menu li a.active, .single-community-menu .top-menu li a:hover {
                    color: #ff3366;
                }

.profile-section.single-community {
    padding-top: 0px;
    margin-top: -150px;
}

    .profile-section.single-community .profile-main-content {
        margin-top: 200px;
        background: #f4f8fd;
        padding: 10px 30px 30px;
        border: 1px solid rgba(0, 0, 0, 0.06);
        border-radius: 20px;
    }

    .profile-section.single-community .profile-aside-area {
        margin-top: 200px;
    }

    .profile-section.single-community .c-group-info .profile-image img {
        width: 100%;
    }

    .profile-section.single-community .c-group-info .group-content {
        margin-top: 22px;
    }

        .profile-section.single-community .c-group-info .group-content .time {
            font-size: 16px;
            line-height: 26px;
        }

        .profile-section.single-community .c-group-info .group-content .title {
            font-size: 24px;
            line-height: 34px;
            font-weight: 600;
            margin-bottom: 18px;
        }

        .profile-section.single-community .c-group-info .group-content .text {
            font-size: 16px;
            line-height: 26px;
        }

        .profile-section.single-community .c-group-info .group-content .security {
            font-size: 14px;
            line-height: 24px;
            margin-top: 20px;
        }

            .profile-section.single-community .c-group-info .group-content .security i {
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-image: -o-linear-gradient(284deg, #f22876 0%, #942dd9 100%);
                background-image: linear-gradient(166deg, #f22876 0%, #942dd9 100%);
                margin-right: 5px;
            }

    .profile-section.single-community .c-group-info .admin-area {
        margin-top: 28px;
    }

        .profile-section.single-community .c-group-info .admin-area .title {
            font-size: 20px;
            line-height: 30px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .profile-section.single-community .c-group-info .admin-area a {
            display: inline-block;
        }

    .profile-section.single-community .profile-aside-area .serch-area {
        background: #fff;
        border-radius: 20px;
        background-color: white;
        -webkit-box-shadow: 0px 5px 20px 0px rgba(78, 64, 128, 0.1);
        box-shadow: 0px 5px 20px 0px rgba(78, 64, 128, 0.1);
        padding: 30px 20px;
    }

        .profile-section.single-community .profile-aside-area .serch-area form {
            position: relative;
        }

            .profile-section.single-community .profile-aside-area .serch-area form input {
                width: 100%;
                height: 40px;
                border: 1px solid rgba(0, 0, 0, 0.15);
                border-radius: 50px;
                padding: 0px 20px 0px 45px;
            }

            .profile-section.single-community .profile-aside-area .serch-area form button {
                position: absolute;
                border: 0px;
                position: absolute;
                left: 4px;
                top: 0px;
                background: none;
                width: 40px;
                height: 40px;
                border-radius: 50%;
                font-size: 14px;
                color: #777;
            }

    .profile-section.single-community .profile-aside-area .recent-member {
        background: #fff;
        border-radius: 20px;
        background-color: white;
        -webkit-box-shadow: 0px 5px 20px 0px rgba(78, 64, 128, 0.1);
        box-shadow: 0px 5px 20px 0px rgba(78, 64, 128, 0.1);
        padding: 30px 20px 24px;
        margin-top: 30px;
    }

        .profile-section.single-community .profile-aside-area .recent-member .title {
            font-size: 24px;
            line-height: 34px;
            font-weight: 600;
            display: block;
            border-bottom: 1px solid rgba(0, 0, 0, 0.15);
            padding-bottom: 9px;
            margin-bottom: 14px;
        }

        .profile-section.single-community .profile-aside-area .recent-member .member-list li {
            display: inline-block;
        }

    .profile-section.single-community .profile-aside-area .recent-photo {
        background: #fff;
        border-radius: 20px;
        background-color: white;
        -webkit-box-shadow: 0px 5px 20px 0px rgba(78, 64, 128, 0.1);
        box-shadow: 0px 5px 20px 0px rgba(78, 64, 128, 0.1);
        padding: 30px 0px 11px;
        margin-top: 30px;
    }

        .profile-section.single-community .profile-aside-area .recent-photo .title {
            font-size: 24px;
            line-height: 34px;
            font-weight: 600;
            display: block;
            border-bottom: 1px solid rgba(0, 0, 0, 0.15);
            padding: 0px 20px 9px;
            margin-bottom: 20px;
        }

        .profile-section.single-community .profile-aside-area .recent-photo .member-list {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
            padding: 0px 10px;
        }

            .profile-section.single-community .profile-aside-area .recent-photo .member-list li {
                width: 50%;
                -webkit-box-flex: 50%;
                -ms-flex: 50%;
                flex: 50%;
                padding-left: 10px;
                padding-right: 10px;
                padding-top: 0px;
                padding-bottom: 0px;
                display: inline-block;
                margin-bottom: 0px;
            }

                .profile-section.single-community .profile-aside-area .recent-photo .member-list li a {
                    margin-bottom: 20px;
                    display: block;
                }

                    .profile-section.single-community .profile-aside-area .recent-photo .member-list li a img {
                        width: 100%;
                    }

/*  membership-section Start */
.membership-section {
    padding: 118px 0px 118px;
    overflow: hidden;
}

    .membership-section .section-header {
        margin-bottom: 40px;
    }

    .membership-section .plan-info {
        text-align: center;
    }

        .membership-section .plan-info .icon {
            margin-bottom: 33px;
        }

            .membership-section .plan-info .icon img {
                height: 80px;
            }

        .membership-section .plan-info .title {
            font-size: 24px;
            line-height: 34px;
            font-weight: 600;
            margin-bottom: 18px;
        }

    .membership-section .pricing-plans {
        padding: 193px 0px 101px;
        overflow: hidden;
        background: #CE2A8B;
        position: relative;
        text-align: center;
    }

        .membership-section .pricing-plans .shape1 {
            position: absolute;
            top: 0px;
            left: 0px;
            width: 100%;
            height: auto;
            -webkit-animation: scaleAni 4s linear infinite;
            animation: scaleAni 4s linear infinite;
        }

        .membership-section .pricing-plans .contact-link {
            font-size: 24px;
            line-height: 34px;
            font-weight: 400;
            color: #fff;
        }

            .membership-section .pricing-plans .contact-link a {
                font-weight: 600;
                color: #29a631;
                text-decoration: underline;
            }

    .membership-section .m-s-top {
        padding-bottom: 96px;
    }

.pricing-plan-wrapper {
    margin-top: 0px;
    margin-bottom: -140px;
    position: relative;
    z-index: 9;
}

    .pricing-plan-wrapper .left-img {
        position: absolute;
        left: -120px;
        top: 0px;
    }

    .pricing-plan-wrapper .right-img {
        position: absolute;
        right: -260px;
        top: 0px;
    }

    .pricing-plan-wrapper .single-plan {
        background: #fff;
        padding: 32px 30px 40px;
        border-radius: 15px;
        text-align: center;
        -webkit-box-shadow: 0px -11px 30px 0px rgba(112, 90, 186, 0.2);
        box-shadow: 0px -11px 30px 0px rgba(112, 90, 186, 0.2);
        position: relative;
        overflow: hidden;
    }

        .pricing-plan-wrapper .single-plan .shape {
            position: absolute;
            left: 0px;
            bottom: 0px;
            width: 100%;
        }

        .pricing-plan-wrapper .single-plan .duration {
            text-transform: uppercase;
            font-weight: 700;
            border-bottom: 1px solid rgba(0, 0, 0, 0.15);
            padding-bottom: 13px;
            margin-bottom: 27px;
        }

        .pricing-plan-wrapper .single-plan .number {
            font-size: 50px;
            line-height: 60px;
            font-weight: 700;
            color: #CE2A8B;
        }

            .pricing-plan-wrapper .single-plan .number sup {
                font-size: 28px;
                line-height: 38px;
            }

        .pricing-plan-wrapper .single-plan .stamet {
            text-transform: uppercase;
            font-size: 16px;
            line-height: 26px;
        }

        .pricing-plan-wrapper .single-plan a.custom-button {
            margin-top: 6px;
            text-transform: uppercase;
            padding: 5px 25px;
            font-size: 16px;
        }

/*Faq-Section Starts Here*/
.faq-section {
    padding-bottom: 120px;
}

    .faq-section .section-header {
        margin-bottom: 40px;
    }

.faq-wrapper {
    max-width: 730px;
    margin: 0 auto;
    margin-bottom: -20px;
}

.faq-item {
    -webkit-box-shadow: 0px 5px 20px 0px rgba(119, 123, 146, 0.2);
    box-shadow: 0px 5px 20px 0px rgba(119, 123, 146, 0.2);
    padding: 15px 30px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
}

    .faq-item .faq-title {
        cursor: pointer;
        position: relative;
    }

        .faq-item .faq-title .title {
            margin: 0;
            font-size: 20px;
            font-weight: 700;
            width: calc(100% - 40px);
            max-width: 535px;
            line-height: 1.5;
        }

        .faq-item .faq-title .right-icon {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background-image: -o-linear-gradient(284deg, #f22876 0%, #942dd9 100%);
            background-image: linear-gradient(166deg, #f22876 0%, #942dd9 100%);
            position: absolute;
            right: 0;
            top: 0;
            background: #29a631;
        }

            .faq-item .faq-title .right-icon::after, .faq-item .faq-title .right-icon::before {
                background-color: #ffffff;
                -webkit-transition: all ease 0.3s;
                -o-transition: all ease 0.3s;
                transition: all ease 0.3s;
            }

            .faq-item .faq-title .right-icon::after {
                width: 20px;
                height: 2px;
            }

            .faq-item .faq-title .right-icon::before {
                width: 2px;
                height: 20px;
            }

    .faq-item .faq-content {
        padding-top: 30px;
        display: none;
    }

        .faq-item .faq-content p {
            margin-bottom: 37px;
        }

    .faq-item.open .faq-title .right-icon::before {
        -webkit-transform: translate(-50%, -50%) rotate(90deg);
        -ms-transform: translate(-50%, -50%) rotate(90deg);
        transform: translate(-50%, -50%) rotate(90deg);
    }

    .faq-item.active .faq-content {
        display: block;
    }

/*  Blog-Page */
.blog-page {
    padding: 120px 0px 120px;
}

    .blog-page .single-blog {
        border-radius: 20px;
        overflow: hidden;
        background: #fff;
        margin-bottom: 30px;
    }

        .blog-page .single-blog .img img {
            width: 100%;
        }

        .blog-page .single-blog .content {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            padding: 30px 30px 19px;
        }

            .blog-page .single-blog .content .avatar {
                margin-bottom: 24px;
            }

            .blog-page .single-blog .content .left {
                width: 40px;
                margin-right: 30px;
            }

                .blog-page .single-blog .content .left .meta-list {
                    text-align: center;
                }

                    .blog-page .single-blog .content .left .meta-list li {
                        margin-bottom: 12px;
                    }

                        .blog-page .single-blog .content .left .meta-list li:last-child {
                            margin-bottom: 0px;
                        }

                        .blog-page .single-blog .content .left .meta-list li a {
                            display: block;
                            width: 30px;
                            height: 30px;
                            background: #f8e9f7;
                            border-radius: 50%;
                            text-align: center;
                            line-height: 30px;
                            font-size: 16px;
                            margin: 0 auto;
                        }

                            .blog-page .single-blog .content .left .meta-list li a i {
                                -webkit-background-clip: text;
                                -webkit-text-fill-color: transparent;
                                background-image: -o-linear-gradient(284deg, #f22876 0%, #942dd9 100%);
                                background-image: linear-gradient(166deg, #f22876 0%, #942dd9 100%);
                            }

                        .blog-page .single-blog .content .left .meta-list li span {
                            font-weight: 600;
                        }

            .blog-page .single-blog .content .right {
                -webkit-box-flex: 1;
                -ms-flex: 1;
                flex: 1;
            }

                .blog-page .single-blog .content .right .date {
                    font-size: 16px;
                    line-height: 26px;
                }

                .blog-page .single-blog .content .right .title {
                    font-size: 28px;
                    line-height: 38px;
                    font-weight: 700;
                    margin-bottom: 13px;
                }

                .blog-page .single-blog .content .right .text {
                    margin-bottom: 0px;
                }

        .blog-page .single-blog .post-footer {
            border-top: 1px solid rgba(0, 0, 0, 0.1);
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: justify;
            -ms-flex-pack: justify;
            justify-content: space-between;
            padding: 30px 30px 14px;
        }

            .blog-page .single-blog .post-footer .left p {
                font-size: 14px;
                line-height: 34px;
            }

            .blog-page .single-blog .post-footer .right a {
                font-size: 14px;
                color: #333;
                border: 1px solid rgba(0, 0, 0, 0.15);
                padding: 2px 20px;
                border-radius: 50px;
            }

                .blog-page .single-blog .post-footer .right a:hover {
                    background-image: -o-linear-gradient(284deg, #f22876 0%, #942dd9 100%);
                    background-image: linear-gradient(166deg, #f22876 0%, #942dd9 100%);
                    color: #fff;
                }

/* Product widget section begin */
.product-details-section {
    padding: 120px 0px 120px;
}

.product-category {
    padding: 120px 0px 120px;
}

    .product-category .price-range-slider {
        text-align: center;
    }

        .product-category .price-range-slider .range-slider input {
            border: 0px;
        }

        .product-category .price-range-slider .value {
            position: absolute;
            top: -36px;
            left: 50%;
            margin: 0 0 0 -20px;
            text-align: center;
            display: block;
            font-weight: normal;
            font-family: Verdana, Arial, sans-serif;
            font-size: 14px;
            color: #fff;
            background-image: -o-linear-gradient(284deg, #f22876 0%, #942dd9 100%);
            /* background-image: linear-gradient(166deg, #f22876 0%, #942dd9 100%); */
            display: block;
            padding: 5px 8px;
            font-size: 12px;
            line-height: 12px;
            background: #29a631;
        }

            .product-category .price-range-slider .value:after {
                position: absolute;
                content: "";
                width: 0;
                height: 0;
                top: 100%;
                left: 50%;
                -webkit-transform: translateX(-50%);
                -ms-transform: translateX(-50%);
                transform: translateX(-50%);
                border-left: 5px solid transparent;
                border-right: 5px solid transparent;
                border-top: 7px solid #29a631;
            }

        .product-category .price-range-slider .price-range-both.value {
            width: 100px;
            margin: 0 0 0 -50px;
            top: -36px;
        }

        .product-category .price-range-slider .price-range-both {
            display: none;
        }

        .product-category .price-range-slider .value i {
            font-style: normal;
        }

        .product-category .price-range-slider div.ui-slider-range.ui-widget-header {
            background: #29a631;
        }

        .product-category .price-range-slider .ui-state-hover, .product-category .price-range-slider .ui-widget-content .ui-state-hover, .product-category .price-range-slider .ui-widget-header .ui-state-hover, .product-category .price-range-slider .ui-state-focus, .product-category .price-range-slider .ui-widget-content .ui-state-focus, .product-category .price-range-slider .ui-widget-header .ui-state-focus {
            background: #f22876 !important;
        }

        .product-category .price-range-slider .ui-state-default, .product-category .price-range-slider .ui-widget-content .ui-state-default, .product-category .price-range-slider .ui-widget-header .ui-state-default {
            background: #29a631 !important;
            border-radius: 50%;
            font-size: 14px;
            -webkit-box-shadow: 0 0 7px rgba(0, 0, 0, 0.2);
            box-shadow: 0 0 7px rgba(0, 0, 0, 0.2);
            border: 3px solid #fff;
        }

            .product-category .price-range-slider .ui-state-default:focus, .product-category .price-range-slider .ui-widget-content .ui-state-default:focus, .product-category .price-range-slider .ui-widget-header .ui-state-default:focus {
                outline: none;
            }

        .product-category .price-range-slider span.ui-slider-handle.ui-corner-all.ui-state-default:focus {
            outline: none;
        }

        .product-category .price-range-slider .ui-slider-horizontal {
            height: 3px;
            border: 0px;
            background: #d2d2d2;
        }

            .product-category .price-range-slider .ui-slider-horizontal .ui-slider-handle {
                top: -7px;
            }

        .product-category .price-range-slider .p-info {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: justify;
            -ms-flex-pack: justify;
            justify-content: space-between;
            margin-top: 20px;
            margin-bottom: 13px;
        }

            .product-category .price-range-slider .p-info .left {
                font-size: 14px;
                font-weight: 600;
                color: #777;
            }

            .product-category .price-range-slider .p-info .right {
                font-size: 14px;
                font-weight: 600;
                color: #333;
            }

        .product-category .price-range-slider .custom-button {
            padding: 3px 20px;
            font-size: 16px;
            font-weight: 600;
            text-transform: uppercase;
        }

.button-hover {
    position: relative;
}

.hover-effect {
    display: block;
    width: 200px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
    text-decoration: none;
    color: #56585a;
    text-align: center;
    position: relative;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    text-align: center;
}

    .hover-effect span {
        position: relative;
        z-index: 1;
        text-transform: uppercase;
    }

    .hover-effect:before {
        position: absolute;
        content: "";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        top: 0;
        left: 0;
        width: 40px;
        height: 40px;
        background-image: -o-linear-gradient(284deg, #f22876 0%, #942dd9 100%);
        background-image: linear-gradient(166deg, #f22876 0%, #942dd9 100%);
        -webkit-transition: all 0.4s;
        -o-transition: all 0.4s;
        transition: all 0.4s;
        border-radius: 50px;
        line-height: 40px;
        text-align: center;
        font-size: 20px;
        color: #fff;
        -webkit-box-shadow: 0px 3px 5px 0px rgba(162, 44, 202, 0.3);
        box-shadow: 0px 3px 5px 0px rgba(162, 44, 202, 0.3);
    }

    .hover-effect:hover {
        color: #fff;
        background-image: -o-linear-gradient(284deg, #f22876 0%, #942dd9 100%);
        background-image: linear-gradient(166deg, #f22876 0%, #942dd9 100%);
        border-radius: 50px;
        -webkit-box-shadow: 0px 3px 5px 0px rgba(162, 44, 202, 0.3);
        box-shadow: 0px 3px 5px 0px rgba(162, 44, 202, 0.3);
    }

        .hover-effect:hover:before {
            width: 100%;
            text-align: right;
            background: none;
            padding-right: 20px;
        }

        .hover-effect:hover span {
            left: -15px;
            color: #fff;
        }

.filter-area {
    border-radius: 5px;
    padding: 10px 38px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    margin-bottom: 30px;
    position: relative;
    background: #fff;
}

    .filter-area .search-box {
        position: absolute;
        width: 100%;
        left: 0px;
        top: 100%;
        z-index: 9;
        background: #fff;
        padding: 10px;
        border-radius: 4px;
        -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
        box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
        display: none;
    }

        .filter-area .search-box input {
            height: 40px;
            border: 1px solid rgba(0, 0, 0, 0.2);
            font-size: 16px;
        }

.filter-main {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

    .filter-main .right .item {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-right: 30px;
    }

        .filter-main .right .item span {
            margin-right: 20px;
        }

        .filter-main .right .item .select-bar {
            height: 40px;
            border: 1px solid rgba(0, 0, 0, 0.11);
            border-radius: 20px;
            padding: 0 20px;
            background: transparent;
        }

            .filter-main .right .item .select-bar .list {
                max-height: 150px;
                overflow-y: auto;
                background: #fafbff;
                border: 1px solid rgba(163, 177, 198, 0.151);
                color: #333333;
            }

                .filter-main .right .item .select-bar .list li:hover, .filter-main .right .item .select-bar .list li.focus, .filter-main .right .item .select-bar .list li.selected {
                    background: transparent;
                }

    .filter-main .right .serch-icon {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        text-align: center;
        line-height: 40px;
        color: #fff;
        font-size: 16px;
        background-image: -o-linear-gradient(284deg, #f22876 0%, #942dd9 100%);
        background-image: linear-gradient(166deg, #f22876 0%, #942dd9 100%);
        display: inline-block;
        cursor: pointer;
    }

    .filter-main .left {
        margin-bottom: 10px;
    }

.grid-button {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

    .grid-button li:last-child {
        margin-right: 0;
    }

    .grid-button li a {
        margin-right: 20px;
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 20px;
        width: 60px;
        height: 40px;
        line-height: 40px;
        text-align: center;
        cursor: pointer;
        padding: 0;
        font-size: 18px;
        color: #333333;
    }

        .grid-button li a.active {
            color: #ff3366;
        }

.single-product {
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    background: #fff;
    -webkit-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

    .single-product .img {
        position: relative;
        overflow: hidden;
    }

        .single-product .img img {
            -webkit-transition: all ease 0.3s;
            -o-transition: all ease 0.3s;
            transition: all ease 0.3s;
            width: 100%;
        }

        .single-product .img .sale {
            position: absolute;
            top: 30px;
            left: 0px;
            background: #5b3acc;
            font-size: 12px;
            line-height: 12px;
            color: #fff;
            text-transform: uppercase;
            padding: 6px 15px 4px;
            border-radius: 0px 50px 50px 0px;
        }

        .single-product .img .more-links {
            position: absolute;
            top: 30px;
            right: -50px;
            background-color: rgba(255, 255, 255, 0.9);
            -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
            box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
            border-radius: 5px;
            padding: 3px 10px;
            -webkit-transition: all ease 0.3s;
            -o-transition: all ease 0.3s;
            transition: all ease 0.3s;
        }

            .single-product .img .more-links li {
                border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            }

                .single-product .img .more-links li:last-child {
                    border-bottom: 0px;
                }

                .single-product .img .more-links li a {
                    display: block;
                }

                    .single-product .img .more-links li a i {
                        -webkit-background-clip: text;
                        -webkit-text-fill-color: transparent;
                        background-image: -o-linear-gradient(284deg, #f22876 0%, #942dd9 100%);
                        background-image: linear-gradient(166deg, #f22876 0%, #942dd9 100%);
                        font-size: 14px;
                    }

    .single-product .content {
        position: relative;
        padding: 62px 30px 30px;
    }

        .single-product .content .price {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-image: -o-linear-gradient(284deg, #f22876 0%, #942dd9 100%);
            background-image: linear-gradient(166deg, #f22876 0%, #942dd9 100%);
            display: block;
            color: #fff;
            font-weight: 700;
            font-size: 24px;
            line-height: 60px;
            text-align: center;
            right: 10px;
            position: absolute;
            top: -30px;
        }

        .single-product .content .title {
            font-size: 24px;
            line-height: 34px;
            display: block;
            font-weight: 600;
        }

        .single-product .content .review-area {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
        }

            .single-product .content .review-area .stars i {
                font-size: 12px;
                margin-right: -4px;
                color: #f87115;
            }

            .single-product .content .review-area .separator {
                font-size: 15px;
                margin: 0px 10px;
            }

            .single-product .content .review-area .review-content {
                font-size: 14px;
                position: relative;
                top: 2px;
            }

        .single-product .content .hover-effect {
            font-size: 16px;
            font-weight: 700;
            text-transform: uppercase;
            color: #56585a;
            margin-top: 24px;
        }

    .single-product:hover {
        border-color: #5b3acc;
    }

        .single-product:hover .img img {
            -webkit-transform: scale(1.1);
            -ms-transform: scale(1.1);
            transform: scale(1.1);
        }

        .single-product:hover .img .more-links {
            right: 20px;
        }

.single-product-list {
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    background: #fff;
    -webkit-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    transition: all ease 0.3s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
}

    .single-product-list .img {
        position: relative;
        overflow: hidden;
    }

        .single-product-list .img img {
            -webkit-transition: all ease 0.3s;
            -o-transition: all ease 0.3s;
            transition: all ease 0.3s;
            width: 100%;
        }

        .single-product-list .img .sale {
            position: absolute;
            top: 30px;
            left: 0px;
            background: #5b3acc;
            font-size: 12px;
            line-height: 12px;
            color: #fff;
            text-transform: uppercase;
            padding: 6px 15px 4px;
            border-radius: 0px 50px 50px 0px;
        }

        .single-product-list .img .more-links {
            position: absolute;
            top: 30px;
            right: -50px;
            background-color: rgba(255, 255, 255, 0.9);
            -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
            box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
            border-radius: 5px;
            padding: 3px 10px;
            -webkit-transition: all ease 0.3s;
            -o-transition: all ease 0.3s;
            transition: all ease 0.3s;
        }

            .single-product-list .img .more-links li {
                border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            }

                .single-product-list .img .more-links li:last-child {
                    border-bottom: 0px;
                }

                .single-product-list .img .more-links li a {
                    display: block;
                }

                    .single-product-list .img .more-links li a i {
                        -webkit-background-clip: text;
                        -webkit-text-fill-color: transparent;
                        background-image: -o-linear-gradient(284deg, #f22876 0%, #942dd9 100%);
                        background-image: linear-gradient(166deg, #f22876 0%, #942dd9 100%);
                        font-size: 14px;
                    }

    .single-product-list .content {
        position: relative;
        padding: 30px 30px 30px 60px;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }

        .single-product-list .content .content-inner {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            height: 100%;
        }

            .single-product-list .content .content-inner .left-content {
                -webkit-box-flex: 1;
                -ms-flex: 1;
                flex: 1;
                -ms-flex-item-align: center;
                -ms-grid-row-align: center;
                align-self: center;
            }

            .single-product-list .content .content-inner .right-content {
                width: 170px;
                padding: 0px 0px 0px 30px;
                text-align: center;
                border-left: 1px solid rgba(0, 0, 0, 0.2);
                height: 100%;
            }

            .single-product-list .content .content-inner .price {
                width: 60px;
                height: 60px;
                border-radius: 50%;
                background-image: -o-linear-gradient(284deg, #f22876 0%, #942dd9 100%);
                background-image: linear-gradient(166deg, #f22876 0%, #942dd9 100%);
                display: block;
                color: #fff;
                font-weight: 700;
                font-size: 24px;
                line-height: 60px;
                text-align: center;
                left: -30px;
                position: absolute;
                top: 30px;
            }

            .single-product-list .content .content-inner .title {
                font-size: 24px;
                line-height: 34px;
                display: block;
                font-weight: 600;
            }

            .single-product-list .content .content-inner .review-area {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
            }

                .single-product-list .content .content-inner .review-area .stars i {
                    font-size: 12px;
                    margin-right: -4px;
                    color: #f87115;
                }

                .single-product-list .content .content-inner .review-area .separator {
                    font-size: 15px;
                    margin: 0px 10px;
                }

                .single-product-list .content .content-inner .review-area .review-content {
                    font-size: 14px;
                    position: relative;
                    top: 2px;
                }

            .single-product-list .content .content-inner .add-wish-btn {
                display: block;
                color: #333;
                font-size: 16px;
                margin-top: 19px;
                margin-bottom: 0px;
            }

                .single-product-list .content .content-inner .add-wish-btn i {
                    color: #f87115;
                    margin-right: 4px;
                    font-size: 18px;
                }

            .single-product-list .content .content-inner .hover-effect {
                font-size: 16px;
                font-weight: 700;
                text-transform: uppercase;
                color: #56585a;
                margin-top: 24px;
                width: 140px;
            }

                .single-product-list .content .content-inner .hover-effect span {
                    padding-left: 40px;
                }

                .single-product-list .content .content-inner .hover-effect:hover span {
                    padding-left: 10px;
                }

                .single-product-list .content .content-inner .hover-effect:hover::before {
                    padding-right: 15px;
                }

            .single-product-list .content .content-inner .more-info {
                font-size: 14px;
                line-height: 24px;
                text-transform: uppercase;
                font-weight: 600;
                color: #333;
                margin-top: 24px;
                border-bottom: 1px solid #a5a5a5;
            }

                .single-product-list .content .content-inner .more-info:hover {
                    color: #a5a5a5;
                }

    .single-product-list:hover {
        border-color: #5b3acc;
    }

        .single-product-list:hover .img img {
            -webkit-transform: scale(1.1);
            -ms-transform: scale(1.1);
            transform: scale(1.1);
        }

        .single-product-list:hover .img .more-links {
            right: 40px;
        }

.single-product-list-2 {
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    background: #fff;
    -webkit-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    transition: all ease 0.3s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
}

    .single-product-list-2 .img {
        position: relative;
        overflow: hidden;
    }

        .single-product-list-2 .img img {
            -webkit-transition: all ease 0.3s;
            -o-transition: all ease 0.3s;
            transition: all ease 0.3s;
            width: 100%;
        }

        .single-product-list-2 .img .sale {
            position: absolute;
            top: 30px;
            left: 0px;
            background: #5b3acc;
            font-size: 12px;
            line-height: 12px;
            color: #fff;
            text-transform: uppercase;
            padding: 6px 15px 4px;
            border-radius: 0px 50px 50px 0px;
        }

        .single-product-list-2 .img .more-links {
            position: absolute;
            top: 30px;
            right: -50px;
            background-color: rgba(255, 255, 255, 0.9);
            -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
            box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
            border-radius: 5px;
            padding: 3px 10px;
            -webkit-transition: all ease 0.3s;
            -o-transition: all ease 0.3s;
            transition: all ease 0.3s;
        }

            .single-product-list-2 .img .more-links li {
                border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            }

                .single-product-list-2 .img .more-links li:last-child {
                    border-bottom: 0px;
                }

                .single-product-list-2 .img .more-links li a {
                    display: block;
                }

                    .single-product-list-2 .img .more-links li a i {
                        -webkit-background-clip: text;
                        -webkit-text-fill-color: transparent;
                        background-image: -o-linear-gradient(284deg, #f22876 0%, #942dd9 100%);
                        background-image: linear-gradient(166deg, #f22876 0%, #942dd9 100%);
                        font-size: 14px;
                    }

    .single-product-list-2 .content {
        position: relative;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
        padding: 30px 30px 30px 60px;
    }

        .single-product-list-2 .content .price {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-image: -o-linear-gradient(284deg, #f22876 0%, #942dd9 100%);
            background-image: linear-gradient(166deg, #f22876 0%, #942dd9 100%);
            display: block;
            color: #fff;
            font-weight: 700;
            font-size: 24px;
            line-height: 60px;
            text-align: center;
            left: -30px;
            position: absolute;
            top: 30px;
        }

        .single-product-list-2 .content .title {
            font-size: 24px;
            line-height: 34px;
            display: block;
            font-weight: 600;
        }

        .single-product-list-2 .content .review-area {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
        }

            .single-product-list-2 .content .review-area .stars i {
                font-size: 12px;
                margin-right: -4px;
                color: #f87115;
            }

            .single-product-list-2 .content .review-area .separator {
                font-size: 15px;
                margin: 0px 10px;
            }

            .single-product-list-2 .content .review-area .review-content {
                font-size: 14px;
                position: relative;
                top: 2px;
            }

        .single-product-list-2 .content .hover-effect {
            font-size: 16px;
            font-weight: 700;
            text-transform: uppercase;
            color: #56585a;
            margin-top: 24px;
            width: 140px;
        }

            .single-product-list-2 .content .hover-effect span {
                padding-left: 40px;
            }

            .single-product-list-2 .content .hover-effect:hover span {
                padding-left: 10px;
            }

            .single-product-list-2 .content .hover-effect:hover::before {
                padding-right: 15px;
            }

    .single-product-list-2:hover {
        border-color: #5b3acc;
    }

        .single-product-list-2:hover .img img {
            -webkit-transform: scale(1.1);
            -ms-transform: scale(1.1);
            transform: scale(1.1);
        }

        .single-product-list-2:hover .img .more-links {
            right: 20px;
        }

/*==========================================
   Product Details Page
===========================================*/
.all-slider.owl-carousel .owl-nav .owl-prev,
.all-slider.owl-carousel .owl-nav .owl-next {
    font-size: 14px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
    width: 25px;
    height: 25px;
    line-height: 24px;
    opacity: 1;
    color: #fff;
    background-image: -o-linear-gradient(284deg, #f22876 0%, #942dd9 100%);
    background-image: linear-gradient(166deg, #f22876 0%, #942dd9 100%);
    -webkit-box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.1);
    -webkit-transition: 0.3s ease-in;
    -o-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
}

.all-slider.owl-carousel .owl-nav .owl-prev {
    left: 0px;
}

.all-slider.owl-carousel .owl-nav .owl-next {
    right: 0px;
}

.product-details-section .overlay .right-area .product-info .product-stock {
    border-bottom: 1px solid #d9d9d9;
    padding-bottom: 18px;
}

    .product-details-section .overlay .right-area .product-info .product-stock .stock-box {
        display: inline-block;
    }

        .product-details-section .overlay .right-area .product-info .product-stock .stock-box .value-title {
            font-size: 16px;
            font-weight: 600;
            color: #737373;
            text-transform: uppercase;
            line-height: 2.5;
        }

        .product-details-section .overlay .right-area .product-info .product-stock .stock-box .value-content {
            font-size: 16px;
            color: #f87115;
            font-weight: 700;
            text-transform: uppercase;
            line-height: 2.667;
        }

    .product-details-section .overlay .right-area .product-info .product-stock .stock-icon {
        float: right;
        display: inline-block;
    }

        .product-details-section .overlay .right-area .product-info .product-stock .stock-icon a i {
            color: #f5f8ff;
            border-radius: 50%;
            background-color: #f87115;
            -webkit-box-shadow: 0px 5px 10px 0px rgba(14, 36, 58, 0.2);
            box-shadow: 0px 5px 10px 0px rgba(14, 36, 58, 0.2);
            -webkit-transition: all 0.3s;
            -o-transition: all 0.3s;
            transition: all 0.3s;
            width: 40px;
            height: 40px;
            text-align: center;
            line-height: 40px;
        }

        .product-details-section .overlay .right-area .product-info .product-stock .stock-icon a:hover i {
            background-color: #f5f8ff;
            color: #f87115;
            -webkit-transition: all 0.3s;
            -o-transition: all 0.3s;
            transition: all 0.3s;
        }

.product-details-section .overlay .right-area .product-info ul li .product-title {
    padding: 18px 0 8px;
    font-size: 28px;
    line-height: 38px;
}

.product-details-section .overlay .right-area .product-info ul li .review-block {
    margin: 0px 0 8px 0;
}

    .product-details-section .overlay .right-area .product-info ul li .review-block .star-review a {
        margin-right: -5px;
        font-size: 14px;
        line-height: 24px;
    }

    .product-details-section .overlay .right-area .product-info ul li .review-block .star-review .reviews {
        position: relative;
        margin-left: 32px;
        font-size: 14px;
        line-height: 24px;
        color: #333;
    }

        .product-details-section .overlay .right-area .product-info ul li .review-block .star-review .reviews:before {
            position: absolute;
            content: "";
            background: #5b7086;
            width: 2px;
            height: 15px;
            left: -15px;
            top: 5px;
        }

    .product-details-section .overlay .right-area .product-info ul li .review-block .star-review a i {
        color: #f87115;
        margin-right: -5px;
    }

.product-details-section .overlay .right-area .product-info .product-price p {
    font-size: 28px;
    line-height: 38px;
    color: #143250;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: -2px;
}

    .product-details-section .overlay .right-area .product-info .product-price p span {
        font-size: 36px;
        font-weight: 600;
    }

.product-details-section .overlay .right-area .product-info .offers {
    color: #143250;
    margin: 8px 0 15px;
}

    .product-details-section .overlay .right-area .product-info .offers li {
        padding: 0px;
    }

        .product-details-section .overlay .right-area .product-info .offers li p {
            font-size: 14px;
            line-height: 24px;
            margin-bottom: 0px;
        }

.product-details-section .overlay .right-area .product-info .product-color {
    color: #143250;
    margin: 8px 0 7px;
}

    .product-details-section .overlay .right-area .product-info .product-color .title {
        display: inline-block;
        font-size: 16px;
        font-weight: 400;
    }

    .product-details-section .overlay .right-area .product-info .product-color .color-list {
        font-weight: 600;
        display: inline-block;
    }

.product-details-section .overlay .right-area .product-info .item-list ul li {
    display: inline-block;
    margin-right: 2px;
    margin-top: -1px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    font-weight: 600;
    border-radius: 6px;
}

    .product-details-section .overlay .right-area .product-info .item-list ul li:hover {
        border: 1px solid #f87115;
        border-radius: 5px;
        -webkit-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
    }

.product-details-section .overlay .right-area .product-info .shiping-area {
    margin: 21px 0 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

    .product-details-section .overlay .right-area .product-info .shiping-area h4 {
        color: #143250;
        font-weight: 400;
        font-size: 14px;
        line-height: 24px;
        margin-top: 0px;
    }

.product-details-section .overlay .right-area .product-info .shiping-area {
    margin-top: 24px;
}

    .product-details-section .overlay .right-area .product-info .shiping-area .nice-select {
        background: transparent;
        border: none;
        line-height: 26px;
        border-radius: 50px;
        padding: 0px 30px 0px 15px;
        border: 0px;
        height: auto;
    }

        .product-details-section .overlay .right-area .product-info .shiping-area .nice-select .list li {
            color: #222;
            padding: 4px 10px;
            line-height: 20px;
            min-height: auto;
        }

    .product-details-section .overlay .right-area .product-info .shiping-area .s-drop {
        display: block;
        width: 100%;
    }

    .product-details-section .overlay .right-area .product-info .shiping-area ul li select {
        position: relative;
        font-weight: 400;
        background: transparent;
        color: #143250;
        outline: none;
        border: none;
        padding: 0;
        margin-left: 15px;
        font-size: 14px;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }

.product-details-section .overlay .right-area .product-info .refer-prize {
    margin: 26px 0 30px;
}

    .product-details-section .overlay .right-area .product-info .refer-prize ul li {
        border: 1px solid #dfe1e4;
        display: inline-block;
        border-radius: 25px;
        padding: 5px 25px;
        text-transform: uppercase;
        margin-right: 10px;
    }

.product-details-section .overlay .right-area .product-info .refer-price ul li a {
    color: #143250;
    font-size: 12px;
}

.product-details-section .qtySelector {
    width: 136px;
    height: 50px;
    margin: 0;
    background-color: #eaedfc;
    border-radius: 50px;
    display: inline-block;
}

    .product-details-section .qtySelector .decreaseQty {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        line-height: 50px;
        float: left;
        cursor: pointer;
        -webkit-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
    }

    .product-details-section .qtySelector i {
        color: #737373;
        font-size: 14px;
    }

        .product-details-section .qtySelector i:hover {
            background-image: -o-linear-gradient(284deg, #f22876 0%, #942dd9 100%);
            background-image: linear-gradient(166deg, #f22876 0%, #942dd9 100%);
            color: #fff;
            -webkit-transition: all 0.3s;
            -o-transition: all 0.3s;
            transition: all 0.3s;
        }

    .product-details-section .qtySelector .decreaseQty.clicked {
        font-size: 12px;
        padding: 12px 5px;
    }

    .product-details-section .qtySelector .increaseQty {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        line-height: 50px;
        float: right;
        cursor: pointer;
        -webkit-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
    }

    .product-details-section .qtySelector .qtyValue {
        border: none;
        padding: 5px;
        width: 35px;
        height: 100%;
        float: left;
        text-align: center;
        background-color: none;
        color: #737373;
    }

.product-details-section .input-counter {
    border-bottom: 1px solid #d9d9d9;
    border-top: 1px solid #d9d9d9;
    padding: 30px 0 30px;
    margin-top: 25px;
}

    .product-details-section .input-counter .add-cart-btn {
        margin-left: 30px;
    }

.product-details-section .product-single-share {
    margin-top: 26px;
}

    .product-details-section .product-single-share label {
        color: #143250;
        font-weight: 600;
        float: left;
        font-size: 14px;
        line-height: 24px;
        margin-right: 10px;
    }

    .product-details-section .product-single-share ul {
        position: relative;
        top: -8px;
    }

        .product-details-section .product-single-share ul li {
            float: left;
            margin: 0 10px;
        }

            .product-details-section .product-single-share ul li i {
                color: #99a2c7;
                -webkit-transition: all 0.3s;
                -o-transition: all 0.3s;
                transition: all 0.3s;
                font-size: 14px;
            }

            .product-details-section .product-single-share ul li a:hover i {
                color: #ff3366;
                -webkit-transition: all 0.3s;
                -o-transition: all 0.3s;
                transition: all 0.3s;
            }

            .product-details-section .product-single-share ul li a.active i {
                color: #ff3366;
                -webkit-transition: all 0.3s;
                -o-transition: all 0.3s;
                transition: all 0.3s;
            }

.product-details-section .nav-tabs .nav-link.active {
    color: white;
    background-image: -o-linear-gradient(284deg, #f22876 0%, #942dd9 100%);
    background-image: linear-gradient(166deg, #f22876 0%, #942dd9 100%);
}

.product-details-section .nav-tabs {
    border: 1px solid #dbdce4;
    border-radius: 5px;
    padding: 10px 0;
    margin-top: 40px;
    background: #fff;
}

    .product-details-section .nav-tabs li {
        margin: auto;
    }

        .product-details-section .nav-tabs li a {
            font-size: 14px;
            color: rgba(20, 50, 80, 0.902);
            border: 1px solid rgba(0, 0, 0, 0.2);
            border-radius: 50px;
            text-transform: uppercase;
        }

            .product-details-section .nav-tabs li a:hover {
                background-image: -o-linear-gradient(284deg, #f22876 0%, #942dd9 100%);
                background-image: linear-gradient(166deg, #f22876 0%, #942dd9 100%);
                color: #fff;
            }

.product-details-section .tab-content .tab-pane {
    border: 1px solid rgba(0, 0, 0, 0.2);
    margin-top: 30px;
    padding: 40px;
}

.product-details-section .tab-content .tab-content-wrapper ul li {
    font-size: 18px;
    color: #435b73;
    line-height: 1.667;
}

.product-details-section .tab-content .tab-pane .title {
    font-size: 24px;
    line-height: 34px;
}

.product-details-section .tab-content .tab-content-wrapper .top-content li {
    font-size: 18px;
    color: #435b73;
    line-height: 1.667;
}

.product-details-section .tab-content .tab-content-wrapper-second .top-content li {
    font-size: 18px;
    color: #143250;
    line-height: 1.667;
    font-weight: 500;
}

    .product-details-section .tab-content .tab-content-wrapper-second .top-content li span {
        font-weight: 400;
        font-size: 18px;
    }

.product-details-section .tab-content .tab-content-wrapper-second .mid-content li {
    font-size: 18px;
    color: #435b73;
    line-height: 1.667;
}

.product-details-section .tab-content .tab-content-wrapper-fifth .averages-review .rating {
    font-size: 24px;
    line-height: 34px;
    color: #333;
    font-weight: 700;
}

    .product-details-section .tab-content .tab-content-wrapper-fifth .averages-review .rating span {
        font-size: 60px;
        line-height: 70px;
        color: #a42cc8;
        font-weight: 900;
    }

.product-details-section .tab-content .tab-content-wrapper-fifth .averages-review {
    border: 1px solid #dee2e6;
    border-radius: 5px;
    padding: 26px 0 16px;
}

    .product-details-section .tab-content .tab-content-wrapper-fifth .averages-review .rating span {
        color: #a42cc8;
        font-size: 60px;
        font-weight: 700;
    }

    .product-details-section .tab-content .tab-content-wrapper-fifth .averages-review .review-block {
        margin: 11px 0 8px 0;
    }

        .product-details-section .tab-content .tab-content-wrapper-fifth .averages-review .review-block .star-review a i {
            color: #f87115;
            margin-right: -3px;
            font-size: 14px;
        }

    .product-details-section .tab-content .tab-content-wrapper-fifth .averages-review .star-review a.reviews {
        color: #333;
        margin-top: 6px;
        display: block;
    }

.product-details-section .tab-content .tab-content-wrapper-fifth ul {
    position: relative;
    display: -ms-grid;
    display: grid;
}

    .product-details-section .tab-content .tab-content-wrapper-fifth ul li {
        margin-bottom: 0px;
    }

    .product-details-section .tab-content .tab-content-wrapper-fifth ul .rating-point {
        position: absolute;
    }

        .product-details-section .tab-content .tab-content-wrapper-fifth ul .rating-point span {
            font-size: 18px;
            color: #435b73;
        }

    .product-details-section .tab-content .tab-content-wrapper-fifth ul .progress {
        position: absolute;
        width: 75%;
        height: 11px;
        margin-left: 15%;
        margin-top: 10px;
        border-radius: 50px;
        background: #fbbed6;
    }

    .product-details-section .tab-content .tab-content-wrapper-fifth ul .progress-bar.full {
        width: 100%;
        background: #f22876;
    }

    .product-details-section .tab-content .tab-content-wrapper-fifth ul .progress-bar.eighty {
        width: 80%;
        background: #f22876;
    }

    .product-details-section .tab-content .tab-content-wrapper-fifth ul .review-count {
        float: right;
        font-size: 18px;
    }

        .product-details-section .tab-content .tab-content-wrapper-fifth ul .review-count a {
            color: #333;
        }

.product-details-section .tab-content .tab-pane.fifth {
    border: none;
    margin: 0;
    padding: 0;
}

.product-details-section .tab-content .top-content-fifth {
    border: 1px solid #dbdce4;
    padding: 40px;
    background: #fff;
    margin-top: 30px;
    border-radius: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.product-details-section .tab-content .tab-content-wrapper-fifth .single-comment {
    border: 1px solid #d0d6dc;
    padding: 30px 30px 25px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
}

.product-details-section .tab-content .tab-content-wrapper-fifth .comment-single {
    position: relative;
}

    .product-details-section .tab-content .tab-content-wrapper-fifth .comment-single .avatar {
        position: absolute;
        left: 0px;
        top: 0px;
        margin-right: 30px;
    }

        .product-details-section .tab-content .tab-content-wrapper-fifth .comment-single .avatar img {
            border-radius: 50%;
            width: 80px;
            height: 80px;
            border: 2px solid #f22876;
        }

    .product-details-section .tab-content .tab-content-wrapper-fifth .comment-single .comnt-text {
        width: 100%;
        float: left;
        position: relative;
        padding-left: 110px;
    }

        .product-details-section .tab-content .tab-content-wrapper-fifth .comment-single .comnt-text .reply-icon {
            position: absolute;
            right: 0;
            top: 0;
        }

            .product-details-section .tab-content .tab-content-wrapper-fifth .comment-single .comnt-text .reply-icon a {
                color: #f87115 !important;
                text-transform: uppercase;
                font-weight: 600;
                display: inline-block;
                font-size: 14px;
            }

        .product-details-section .tab-content .tab-content-wrapper-fifth .comment-single .comnt-text .comnt-info h5 {
            font-weight: 600;
            margin: 0;
            display: inline-block;
            font-size: 20px;
            line-height: 30px;
        }

        .product-details-section .tab-content .tab-content-wrapper-fifth .comment-single .comnt-text .comnt-info .review-block {
            margin-left: 15px;
            display: inline-block;
        }

            .product-details-section .tab-content .tab-content-wrapper-fifth .comment-single .comnt-text .comnt-info .review-block .star-review {
                margin-bottom: 0px;
            }

                .product-details-section .tab-content .tab-content-wrapper-fifth .comment-single .comnt-text .comnt-info .review-block .star-review a i {
                    color: #f87115;
                    margin-right: -3px;
                    font-size: 12px;
                }

        .product-details-section .tab-content .tab-content-wrapper-fifth .comment-single .comnt-text .comnt-info .date-area {
            font-size: 14px;
            color: #62768a;
            margin: 8px 0 14px;
        }

        .product-details-section .tab-content .tab-content-wrapper-fifth .comment-single .comnt-text p {
            margin-bottom: 0px;
        }

.product-details-section .tab-content .tab-content-wrapper-fifth .comment-form {
    padding-top: 123px;
}

    .product-details-section .tab-content .tab-content-wrapper-fifth .comment-form h3 {
        font-size: 24px;
        line-height: 34px;
        padding-bottom: 63px;
    }

    .product-details-section .tab-content .tab-content-wrapper-fifth .comment-form .star-area h5 {
        display: inline-block;
        font-size: 18px;
        line-height: 28px;
        font-weight: 400;
    }

    .product-details-section .tab-content .tab-content-wrapper-fifth .comment-form .star-area .star-list {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
    }

    .product-details-section .tab-content .tab-content-wrapper-fifth .comment-form .star-area ul li {
        float: left;
        margin-right: 20px;
        padding-right: 20px;
        padding-top: 0px;
        padding-bottom: 0px;
        position: relative;
    }

        .product-details-section .tab-content .tab-content-wrapper-fifth .comment-form .star-area ul li::before {
            position: absolute;
            content: "";
            width: 1px;
            height: 15px;
            background: #aebed2;
            right: -6px;
            top: 50%;
            -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            transform: translateY(-50%);
        }

        .product-details-section .tab-content .tab-content-wrapper-fifth .comment-form .star-area ul li:last-child::before {
            display: none;
        }

    .product-details-section .tab-content .tab-content-wrapper-fifth .comment-form .star-area .star-review {
        margin-bottom: 0px;
    }

    .product-details-section .tab-content .tab-content-wrapper-fifth .comment-form .star-area ul li:nth-last-child(1) {
        border: none;
        margin: 0;
        padding: 0;
    }

    .product-details-section .tab-content .tab-content-wrapper-fifth .comment-form .star-area ul li .star i {
        color: #aebed2;
        font-size: 14px;
        -webkit-transition: 0.3s linear;
        -o-transition: 0.3s linear;
        transition: 0.3s linear;
        cursor: pointer;
    }

    .product-details-section .tab-content .tab-content-wrapper-fifth .comment-form .star-area ul li .star:hover i {
        color: #f87115;
    }

    .product-details-section .tab-content .tab-content-wrapper-fifth .comment-form input {
        outline: none;
        border: none;
        border-bottom: 1px solid #d5d6d9;
        -webkit-box-shadow: none;
        box-shadow: none;
        margin-bottom: 22px;
        background: none;
        padding: 0px 0px;
        border-radius: 0px;
        height: 50px;
    }

    .product-details-section .tab-content .tab-content-wrapper-fifth .comment-form textarea {
        font-size: 14px;
        color: rgba(51, 51, 51, 0.6);
        outline: none;
        border: none;
        border-bottom: 1px solid #d5d6d9;
        -webkit-box-shadow: none;
        box-shadow: none;
        background: none;
        padding: 0px 0px;
        border-radius: 0px;
        height: 150px;
        margin-top: 36px;
    }

    .product-details-section .tab-content .tab-content-wrapper-fifth .comment-form input:hover {
        border-bottom: 1px solid #f87115;
    }

    .product-details-section .tab-content .tab-content-wrapper-fifth .comment-form textarea:hover {
        border-bottom: 1px solid #f87115;
    }

.related-product-section {
    padding-top: 118px;
}

    .related-product-section .section-header {
        margin-bottom: 47px;
    }

.related-product-slider.owl-carousel .owl-nav .owl-prev,
.related-product-slider.owl-carousel .owl-nav .owl-next {
    font-size: 14px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
    width: 25px;
    height: 25px;
    line-height: 24px;
    opacity: 1;
    color: #fff;
    border-radius: 50%;
    background-image: -o-linear-gradient(284deg, #f22876 0%, #942dd9 100%);
    background-image: linear-gradient(166deg, #f22876 0%, #942dd9 100%);
    -webkit-box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.1);
    -webkit-transition: 0.3s ease-in;
    -o-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
}

.related-product-slider.owl-carousel .owl-nav .owl-prev {
    left: 0px;
}

.related-product-slider.owl-carousel .owl-nav .owl-next {
    right: 0px;
}

.related-product-slider .single-product {
    margin-bottom: 0px;
}

.spl-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

    .spl-wrapper .my-col {
        -webkit-box-flex: 100%;
        -ms-flex: 100%;
        flex: 100%;
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }

/*  Login & Registration  Section */
.log-reg {
    position: relative;
/*    height: 100vh;
*/    width: 100%;
    background: url(../images/logokh-o.png);
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center;
}

    .log-reg .top-menu-area .backto-home {
        color: #fff;
        padding: 15px 0px 15px;
        color: #29a631;
    }

        .log-reg .top-menu-area .backto-home i {
            margin-right: 5px;
        }

        .log-reg .top-menu-area .backto-home:hover {
            text-decoration: underline;
            color: #29a631;
        }

    .log-reg .top-menu-area .logo {
        display: block;
        text-align: right;
        padding: 15px 0px 15px;
    }

        .log-reg .top-menu-area .logo img {
            display: inline-block;
        }

    .log-reg .image {
        background: url(../images/reg.jpg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        height: 100vh;
        width: 43%;
        position: absolute;
        left: 0px;
        top: 0px;
        z-index: -1;
    }

        .log-reg .image.image-log {
            background: url(../images/log.jpg) !important;
        }

    .log-reg .log-reg-inner {
        padding-top: 30px;
        padding-bottom: 40px;
       /* height: calc(100vh - 72px);*/
        padding-right: 40px;
        overflow-y: auto;
    }

        .log-reg .log-reg-inner::-webkit-scrollbar-track {
            -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
            border-radius: 10px;
            background-color: #F5F5F5;
        }

        .log-reg .log-reg-inner::-webkit-scrollbar {
            width: 8px;
            background-color: #F5F5F5;
        }

        .log-reg .log-reg-inner::-webkit-scrollbar-thumb {
            border-radius: 10px;
            -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
            background-color: #00acea;
        }

        .log-reg .log-reg-inner .section-header {
            text-align: left;
        }

            .log-reg .log-reg-inner .section-header .title {
                text-transform: uppercase;
                color: #000;
            }

            .log-reg .log-reg-inner .section-header P {
                color: #000;
            }

            .log-reg .log-reg-inner .section-header.inloginp {
                text-align: center;
                margin-bottom: 30px;
                padding-top: 11px;
            }

                .log-reg .log-reg-inner .section-header.inloginp .title {
                    font-size: 28px;
                    line-height: 38px;
                    text-transform: uppercase;
                }

        .log-reg .log-reg-inner .main-content .content-title {
            font-size: 24px;
            line-height: 34px;
            color: #000;
            font-weight: 700;
            margin-bottom: 25px;
            text-transform: uppercase;
        }

        .log-reg .log-reg-inner .main-content .form-group label {
            font-size: 18px;
            line-height: 28px;
            color: #000000;
            font-weight: 600;
            text-transform: uppercase;
            color: #29a631;
        }

        .log-reg .log-reg-inner .main-content .form-group .my-form-control {
            border: 1px solid rgba(59, 54, 140, 0.1);
            background-color: #eaf2fc;
            padding: 0px 30px;
            /* -webkit-box-shadow: 1.948px 13.864px 6px 0px rgba(220, 234, 251, 0.3); */
            /* box-shadow: 1.948px 13.864px 6px 0px rgba(220, 234, 251, 0.3); */
            font-size: 15px;
            color: gray;
            /*            height: 60px;
*/
        }

            .log-reg .log-reg-inner .main-content .form-group .my-form-control::-webkit-input-placeholder {
                color: #000 !important;
            }

            .log-reg .log-reg-inner .main-content .form-group .my-form-control::-moz-placeholder {
                color: #000 !important;
            }

            .log-reg .log-reg-inner .main-content .form-group .my-form-control:-ms-input-placeholder {
                color: #000 !important;
            }

            .log-reg .log-reg-inner .main-content .form-group .my-form-control::-ms-input-placeholder {
                color: #000 !important;
            }

            .log-reg .log-reg-inner .main-content .form-group .my-form-control::placeholder {
                color: #000 !important;
            }

            .log-reg .log-reg-inner .main-content .form-group .my-form-control::-webkit-placeholder {
                color: #000 !important;
            }

        .log-reg .log-reg-inner .main-content .form-group .option {
            border: 1px solid rgba(59, 54, 140, 0.1);
            background-color: #eaf2fc;
            /* -webkit-box-shadow: 1.948px 13.864px 6px 0px rgba(220, 234, 251, 0.3); */
            /* box-shadow: 1.948px 13.864px 6px 0px rgba(220, 234, 251, 0.3); */
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            height: 60px;
            border-radius: 5px;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
        }

            .log-reg .log-reg-inner .main-content .form-group .option input {
                display: inline-block;
                width: 14px;
                height: 14px;
                border-radius: 50%;
                opacity: 0;
                z-index: -9;
                text-align: center;
            }

                .log-reg .log-reg-inner .main-content .form-group .option input:checked ~ label::before {
                    color: deeppink;
                    content: "";
                    font-family: "Font Awesome 5 Free";
                    font-weight: 600;
                    font-size: 8px;
                    line-height: 13px;
                    text-align: center;
                }

            .log-reg .log-reg-inner .main-content .form-group .option label {
                display: inline-block;
                margin: 0;
/*                width: calc(100% - 14px);
*/                padding-right: 10px;
                position: relative;
                font-size: 18px;
                line-height: 28px;
                font-weight: 400;
            }

                .log-reg .log-reg-inner .main-content .form-group .option label::before {
                    width: 14px;
                    height: 14px;
                    border-radius: 50%;
                    border: 1px solid #5650ce;
                    right: -14px;
                    text-align: center;
                    top: 7px;
                }

            .log-reg .log-reg-inner .main-content .form-group .option .s-input.nice-select-wraper {
                width: 100%;
                height: 100%;
            }

            .log-reg .log-reg-inner .main-content .form-group .option .s-input .nice-select {
                background: transparent;
                border: none;
                width: 100%;
                height: 100%;
                line-height: 60px;
            }

                .log-reg .log-reg-inner .main-content .form-group .option .s-input .nice-select .list li.option {
                    color: #222;
                    padding: 0px 10px;
                    line-height: 20px;
                    border: 0px;
                    height: auto;
                    -webkit-box-shadow: none;
                    box-shadow: none;
                    background: #fff;
                    text-align: right;
                    justify-content: normal;
                    padding-left: 18px;
                    padding-right: 30px;
                }

        .log-reg .log-reg-inner .main-content .custom-button {
            padding: 16px 40px;
            margin-top: 20px;
            margin: 0 auto;
            margin-top: 40px;
            display: block;
            margin-bottom:0px
        }

            .log-reg .log-reg-inner .main-content .custom-button:focus {
                outline: 0px;
            }

        .log-reg .log-reg-inner .main-content .f-pass {
            font-size: 16px;
        }

            .log-reg .log-reg-inner .main-content .f-pass a {
                color: deeppink;
                font-weight: 600;
            }

                .log-reg .log-reg-inner .main-content .f-pass a:hover {
                    text-decoration: underline;
                }

        .log-reg .log-reg-inner .main-content .or {
            margin-top: 40px;
            margin-bottom: 10px;
            font-size: 16px;
            font-weight: 700;
            color: deeppink;
            display: block;
            text-align: center;
            position: relative;
            width: 100%;
        }

            
        .main-content .or p {
                display: inline-block;
                background: #FAFBFF;
                margin-bottom: 0px;
                padding: 0px 15px;
            }

            .log-reg .log-reg-inner .main-content .or::before {
                position: absolute;
                content: "";
                height: 1px;
                width: 100%;
                background: #dddce7;
                left: 0px;
                top: 50%;
                -webkit-transform: translateY(-50%);
                -ms-transform: translateY(-50%);
                transform: translateY(-50%);
                z-index: -1;
            }

        .log-reg .log-reg-inner .main-content .or-content {
            display: block;
            text-align: center;
        }

            .log-reg .log-reg-inner .main-content .or-content p {
                color: #3b368c;
                font-size: 16px;
                line-height: 26px;
            }

            .log-reg .log-reg-inner .main-content .or-content .or-btn {
                margin-top: 3px;
                border: 1px solid rgba(59, 54, 140, 0.1);
                background-color: #eaf2fc;
                /* -webkit-box-shadow: 1.948px 13.864px 6px 0px rgba(220, 234, 251, 0.3); */
                /* box-shadow: 1.948px 13.864px 6px 0px rgba(220, 234, 251, 0.3); */
                padding: 10px 30px;
                border-radius: 50px;
                margin-bottom: 19px;
                -webkit-transition: all ease 0.3s;
                -o-transition: all ease 0.3s;
                transition: all ease 0.3s;
            }

                .log-reg .log-reg-inner .main-content .or-content .or-btn img {
                    margin-right: 8px;
                }

                .log-reg .log-reg-inner .main-content .or-content .or-btn:hover {
                    -webkit-box-shadow: 2px 13px 16px 0px rgba(59, 54, 140, 0.1);
                    box-shadow: 2px 13px 16px 0px rgba(59, 54, 140, 0.1);
                }

            .log-reg .log-reg-inner .main-content .or-content .or-signup {
                font-size: 16px;
            }

                .log-reg .log-reg-inner .main-content .or-content .or-signup a {
                    color: #3b368c;
                    font-weight: 600;
                }

                    .log-reg .log-reg-inner .main-content .or-content .or-signup a:hover {
                        text-decoration: underline;
                    }

        .log-reg .log-reg-inner .main-content.inloginp .button-wrapper {
            display: block;
            text-align: center;
        }

#email-confirm .modal-content {
    overflow: hidden;
    border-radius: 20px;
}

#email-confirm .modal-body {
    padding: 0px;
    overflow: hidden;
}

    #email-confirm .modal-body .top-img img {
        width: 100%;
    }

    #email-confirm .modal-body .main-content {
        padding: 30px;
        text-align: center;
    }

        #email-confirm .modal-body .main-content .title {
            font-size: 24px;
            line-height: 34px;
            font-weight: 600;
            color: #3b368c;
            margin-bottom: 15px;
        }

        #email-confirm .modal-body .main-content .send-again {
            font-size: 16px;
        }

            #email-confirm .modal-body .main-content .send-again a {
                color: #3b368c;
                font-weight: 600;
            }

                #email-confirm .modal-body .main-content .send-again a:hover {
                    text-decoration: underline;
                }

.widget-categories ul li a {
    font-size: 12px;
    font-weight: bold;
}

.widget-categories ul li.header a {
    font-weight: bold;
    font-size: 16px
}

.widget-categories h6.subtitle {
    margin-bottom: 20px;
    font-size: 20px;
    padding:10px
}

.widget-categories .table td, .widget-categories .table th {
    font-size: 16px;
    line-height: 18px;
    font-weight: bold;
}

.widget-categories .table th {
    font-size: 16px;
}

.homeprofile {
    padding-top: 0;
}

    .homeprofile .profile-main-content .profile-single-post:first-child {
        margin-top: 0;
    }

    .homeprofile .profile-main-content .profile-single-post {
        border: 1px solid #ddd;
        padding: 10px 30px 10px;
    }

        .homeprofile .profile-main-content .profile-single-post .p-s-p-content {
            padding-left: 0
        }

    .homeprofile .pagination-area {
        margin-top: 30px
    }

.widget-search {
    position: relative;
    padding: 0
}

    .widget-search input {
        border-radius: 50px;
        border: 1px solid rgba(255, 255, 255, 0.3);
        padding: 0px 60px 0px 30px;
        color: #fff;
        padding: 0px 30px 0px 60px;
        color: #29a631;
        border: 1px solid #29a631;
    }

    .widget-search button {
        position: absolute;
        width: 44px;
        height: 44px;
        background-image: -o-linear-gradient(284deg, #f22876 0%, #942dd9 100%);
        background-image: linear-gradient(166deg, #f22876 0%, #942dd9 100%);
        color: #fff;
        font-size: 22px;
        line-height: 44px;
        border-radius: 50%;
        right: 3px;
        top: 3px;
        left: 3px;
        right: auto;
        min-width: auto;
    }

        .widget-search button i {
            margin: 0
        }

.section-header .title {
    font-size: 28px;
}

.select2contain .option {
    border: none !important;
    background-color: transparent !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.select2contain .select2-selection__rendered {
    border: 1px solid rgba(59, 54, 140, 0.1);
    background-color: #eaf2fc;
    -webkit-box-shadow: 1.948px 13.864px 6px 0px rgba(220, 234, 251, 0.3);
    box-shadow: 1.948px 13.864px 6px 0px rgba(220, 234, 251, 0.3);
    height: 60px;
    border-radius: 5px;
    padding-top: 15px;
}

.select2contain .select2-container--default .select2-selection--single {
    border: none !important;
}

.select2-container .select2-selection--single {
    height: 50px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 13px;
}

.log-reg .log-reg-inner .main-content .form-group textarea.my-form-control {
    min-height: 180px;
    padding-top: 20px;
    resize: vertical;
}

.log-reg .log-reg-inner .main-content .form-group .check {
    justify-content: normal;
    padding-right: 20px;
}

    .log-reg .log-reg-inner .main-content .form-group .check label::before {
        border-radius: 2px
    }

.log-reg .log-reg-inner .main-content .form-group .option input:checked ~ label::before {
    line-height: 12px
}

.listhand li {
    font-size: 16px;
}

  /*  .listhand li:before {
        content: "\f0a5";
        font: normal normal normal 14px/1 FontAwesome;
        margin-left: 5px;
    }*/

.single-blog.post-details .right .post-header .m-title {
    font-size: 25px;
    margin-top:15px
}

.single-blog .sub-title {
    font-size: 22px;
    margin-top:15px
}

.single-blog.post-details .right .post-header blockquote {
    font-size: 16px;
    line-height: 34px;
}

.log-reg .top-menu-area .logo img {
    height: 60px;
    display: block;
    margin: auto;
    width: 97px;
}

.user-profile .fa {
    background: linear-gradient(166deg, #f22876 0%, #942dd9 100%);
    height: 40px;
    width: 40px;
    border-radius: 50%;
    line-height: 40px;
    text-align: center;
    background: #29a631;
}

.form-control.rounded, .form-control.form-control-rounded {
    border-radius: 20px;
}

.chat-sidebar-container .chat-topbar {
    height: 52px;
}

.box-shadow-1 {
    box-shadow: 0 1px 15px 1px rgba(0, 0, 0, 0.04), 0 1px 6px rgba(0, 0, 0, 0.04);
}

.o-hidden {
    overflow: hidden;
}

/*chat*/
#frame {
    width: 100%;
    min-width: 270px;
    height: 92vh;
    min-height: 300px;
    max-height: 720px;
    background: #e6eaea;
}

@media screen and (max-width: 360px) {
    #frame {
        width: 100%;
        height: 100vh;
    }
}

#frame #sidepanel {
    float: right;
    min-width: 280px;
    max-width: 340px;
    width: 40%;
    height: 100%;
    background: #29a631;
    color: #f5f5f5;
    overflow: hidden;
    position: relative;
}

@media screen and (max-width: 768px) {
    #frame #sidepanel {
        width: 58px;
        min-width: 58px;
    }

    }

#frame #sidepanel #profile {
    width: 80%;
    margin: 25px auto;
}

@media screen and (max-width: 768px) {
    #frame #sidepanel #profile {
        width: 100%;
        margin: 0 auto;
        padding: 5px 0 0 0;
        background: #32465a;
    }
    .single-blog .sub-title {
        font-size: 17px!important;
    }
}

#frame #sidepanel #profile.expanded .wrap {
    height: 210px;
    line-height: initial;
}

    #frame #sidepanel #profile.expanded .wrap p {
        margin-top: 20px;
    }

    #frame #sidepanel #profile.expanded .wrap i.expand-button {
        -moz-transform: scaleY(-1);
        -o-transform: scaleY(-1);
        -webkit-transform: scaleY(-1);
        transform: scaleY(-1);
        filter: FlipH;
        -ms-filter: "FlipH";
    }

#frame #sidepanel #profile .wrap {
    height: 60px;
    line-height: 60px;
    overflow: hidden;
    -moz-transition: 0.3s height ease;
    -o-transition: 0.3s height ease;
    -webkit-transition: 0.3s height ease;
    transition: 0.3s height ease;
}

@media screen and (max-width: 768px) {
    #frame #sidepanel #profile .wrap {
        height: 55px;
    }
}

#frame #sidepanel #profile .wrap img {
    width: 50px;
    border-radius: 50%;
    padding: 3px;
    border: 2px solid #e74c3c;
    height: auto;
    float: left;
    cursor: pointer;
    -moz-transition: 0.3s border ease;
    -o-transition: 0.3s border ease;
    -webkit-transition: 0.3s border ease;
    transition: 0.3s border ease;
}

@media screen and (max-width: 768px) {
    #frame #sidepanel #profile .wrap img {
        width: 40px;
        margin-left: 4px;
    }
}

#frame #sidepanel #profile .wrap img.online {
    border: 2px solid #2ecc71;
}

#frame #sidepanel #profile .wrap img.away {
    border: 2px solid #f1c40f;
}

#frame #sidepanel #profile .wrap img.busy {
    border: 2px solid #e74c3c;
}

#frame #sidepanel #profile .wrap img.offline {
    border: 2px solid #95a5a6;
}

#frame #sidepanel #profile .wrap p {
    float: right;
    margin-right: 15px;
}

@media screen and (max-width: 768px) {
    #frame #sidepanel #profile .wrap p {
        display: none;
    }
}

#frame #sidepanel #profile .wrap i.expand-button {
    float: right;
    margin-top: 23px;
    font-size: 0.8em;
    cursor: pointer;
    color: #435f7a;
}

@media screen and (max-width: 768px) {
    #frame #sidepanel #profile .wrap i.expand-button {
        display: none;
    }
}

#frame #sidepanel #profile .wrap #status-options {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    width: 150px;
    margin: 70px 0 0 0;
    border-radius: 6px;
    z-index: 99;
    line-height: initial;
    background: #435f7a;
    -moz-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
    -webkit-transition: 0.3s all ease;
    transition: 0.3s all ease;
}

@media screen and (max-width: 768px) {
    #frame #sidepanel #profile .wrap #status-options {
        width: 58px;
        margin-top: 57px;
    }
}

#frame #sidepanel #profile .wrap #status-options.active {
    opacity: 1;
    visibility: visible;
    margin: 75px 0 0 0;
}

@media screen and (max-width: 768px) {
    #frame #sidepanel #profile .wrap #status-options.active {
        margin-top: 62px;
    }
}

#frame #sidepanel #profile .wrap #status-options:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-right: 6px solid transparent;
    border-left: 6px solid transparent;
    border-bottom: 8px solid #435f7a;
    margin: -8px 24px 0 0;
}

@media screen and (max-width: 768px) {
    #frame #sidepanel #profile .wrap #status-options:before {
        margin-left: 23px;
    }
}

#frame #sidepanel #profile .wrap #status-options ul {
    overflow: hidden;
    border-radius: 6px;
}

    #frame #sidepanel #profile .wrap #status-options ul li {
        padding: 15px 18px 30px 0;
        display: block;
        cursor: pointer;
    }

@media screen and (max-width: 768px) {
    #frame #sidepanel #profile .wrap #status-options ul li {
        padding: 15px 0 35px 22px;
    }
}

#frame #sidepanel #profile .wrap #status-options ul li:hover {
    background: #496886;
}

#frame #sidepanel #profile .wrap #status-options ul li span.status-circle {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 5px 0 0 0;
}

@media screen and (max-width: 768px) {
    #frame #sidepanel #profile .wrap #status-options ul li span.status-circle {
        width: 14px;
        height: 14px;
    }
}

#frame #sidepanel #profile .wrap #status-options ul li span.status-circle:before {
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    margin: -3px 0 0 -3px;
    background: transparent;
    border-radius: 50%;
    z-index: 0;
}

@media screen and (max-width: 768px) {
    #frame #sidepanel #profile .wrap #status-options ul li span.status-circle:before {
        height: 18px;
        width: 18px;
    }
}

#frame #sidepanel #profile .wrap #status-options ul li p {
    padding-left: 12px;
}

@media screen and (max-width: 768px) {
    #frame #sidepanel #profile .wrap #status-options ul li p {
        display: none;
    }
}

#frame #sidepanel #profile .wrap #status-options ul li#status-online span.status-circle {
    background: #2ecc71;
}

#frame #sidepanel #profile .wrap #status-options ul li#status-online.active span.status-circle:before {
    border: 1px solid #2ecc71;
}

#frame #sidepanel #profile .wrap #status-options ul li#status-away span.status-circle {
    background: #f1c40f;
}

#frame #sidepanel #profile .wrap #status-options ul li#status-away.active span.status-circle:before {
    border: 1px solid #f1c40f;
}

#frame #sidepanel #profile .wrap #status-options ul li#status-busy span.status-circle {
    background: #e74c3c;
}

#frame #sidepanel #profile .wrap #status-options ul li#status-busy.active span.status-circle:before {
    border: 1px solid #e74c3c;
}

#frame #sidepanel #profile .wrap #status-options ul li#status-offline span.status-circle {
    background: #95a5a6;
}

#frame #sidepanel #profile .wrap #status-options ul li#status-offline.active span.status-circle:before {
    border: 1px solid #95a5a6;
}

#frame #sidepanel #profile .wrap #expanded {
    padding: 100px 0 0 0;
    display: block;
    line-height: initial !important;
}

    #frame #sidepanel #profile .wrap #expanded label {
        float: left;
        clear: both;
        margin: 0 8px 5px 0;
        padding: 5px 0;
    }

    #frame #sidepanel #profile .wrap #expanded input {
        border: none;
        margin-bottom: 6px;
        background: #32465a;
        border-radius: 3px;
        color: #f5f5f5;
        padding: 7px;
        width: calc(100% - 43px);
    }

        #frame #sidepanel #profile .wrap #expanded input:focus {
            outline: none;
            background: #435f7a;
        }

#frame #sidepanel #search {
    border-top: 1px solid #32465a;
    border-bottom: 1px solid #32465a;
    font-weight: 300;
}

@media screen and (max-width: 768px) {
    #frame #sidepanel #search {
        display: none;
    }
}

#frame #sidepanel #search label {
    position: absolute;
    margin: 10px 20px 0 0;
}

#frame #sidepanel #search input {
    font-family: "proxima-nova", "Source Sans Pro", sans-serif;
    padding: 10px 46px 10px 0;
    width: calc(100%);
    border: none;
    background: #32465a;
    color: #f5f5f5;
}

    #frame #sidepanel #search input:focus {
        outline: none;
        background: #435f7a;
    }

    #frame #sidepanel #search input::-webkit-input-placeholder {
        color: #f5f5f5;
    }

    #frame #sidepanel #search input::-moz-placeholder {
        color: #f5f5f5;
    }

    #frame #sidepanel #search input:-ms-input-placeholder {
        color: #f5f5f5;
    }

    #frame #sidepanel #search input:-moz-placeholder {
        color: #f5f5f5;
    }

#frame #sidepanel #contacts {
    height: calc(100% - 177px);
    overflow-y: scroll;
    overflow-x: hidden;
}

@media screen and (max-width: 768px) {
    #frame #sidepanel #contacts {
        height: calc(100% - 149px);
        overflow-y: scroll;
        overflow-x: hidden;
    }

        #frame #sidepanel #contacts::-webkit-scrollbar {
            display: none;
        }
}

#frame #sidepanel #contacts.expanded {
    height: calc(100% - 334px);
}

#frame #sidepanel #contacts::-webkit-scrollbar {
    width: 8px;
    background: #2c3e50;
}

#frame #sidepanel #contacts::-webkit-scrollbar-thumb {
    background-color: #243140;
}

#frame #sidepanel #contacts ul li.contact {
    position: relative;
    padding: 10px 0 15px 0;
    font-size: 0.9em;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    #frame #sidepanel #contacts ul li.contact {
        padding: 6px 0 46px 8px;
    }
}

#frame #sidepanel #contacts ul li.contact:hover {
    background: #32465a;
}

#frame #sidepanel #contacts ul li.contact.active {
    background: #32465a;
    border-right: 5px solid #435f7a;
}

    #frame #sidepanel #contacts ul li.contact.active span.contact-status {
        border: 2px solid #32465a !important;
    }

#frame #sidepanel #contacts ul li.contact .wrap {
    width: 88%;
    margin: 0 auto;
    position: relative;
}

@media screen and (max-width: 768px) {
    #frame #sidepanel #contacts ul li.contact .wrap {
        width: 100%;
    }
}

#frame #sidepanel #contacts ul li.contact .wrap span {
    position: absolute;
    right: 0;
    margin: -2px -2px 0 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #2c3e50;
    background: #95a5a6;
}

    #frame #sidepanel #contacts ul li.contact .wrap span.online {
        background: #2ecc71;
    }

    #frame #sidepanel #contacts ul li.contact .wrap span.away {
        background: #f1c40f;
    }

    #frame #sidepanel #contacts ul li.contact .wrap span.busy {
        background: #e74c3c;
    }

#frame #sidepanel #contacts ul li {
    color: #f258b4
}

    #frame #sidepanel #contacts ul li.contact .wrap img {
        width: 40px;
        border-radius: 50%;
        float: right;
        margin-left: 10px;
    }

@media screen and (max-width: 768px) {
    #frame #sidepanel #contacts ul li.contact .wrap img {
        margin-left: 0px;
    }
}

#frame #sidepanel #contacts ul li.contact .wrap .meta {
    padding: 5px 0 0 0;
}

@media screen and (max-width: 768px) {
    #frame #sidepanel #contacts ul li.contact .wrap .meta {
        display: none;
    }
}

#frame #sidepanel #contacts ul li.contact .wrap .meta .name {
    font-weight: 600;
}

#frame #sidepanel #contacts ul li.contact .wrap .meta .preview {
    margin: 5px 0 0 0;
    padding: 0 0 1px;
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    -moz-transition: 1s all ease;
    -o-transition: 1s all ease;
    -webkit-transition: 1s all ease;
    transition: 1s all ease;
}

    #frame #sidepanel #contacts ul li.contact .wrap .meta .preview span {
        position: initial;
        border-radius: initial;
        background: none;
        border: none;
        padding: 0 2px 0 0;
        margin: 0 0 0 1px;
        opacity: 0.5;
    }

#frame #sidepanel #bottom-bar {
    position: absolute;
    width: 100%;
    bottom: 0;
}

    #frame #sidepanel #bottom-bar button {
        float: left;
        border: none;
        width: 50%;
        padding: 10px 0;
        background: #32465a;
        color: #f5f5f5;
        cursor: pointer;
        font-size: 0.85em;
        font-family: "proxima-nova", "Source Sans Pro", sans-serif;
    }

@media screen and (max-width: 768px) {
    #frame #sidepanel #bottom-bar button {
        float: none;
        width: 100%;
        padding: 15px 0;
    }
}

#frame #sidepanel #bottom-bar button:focus {
    outline: none;
}

#frame #sidepanel #bottom-bar button:nth-child(1) {
    border-right: 1px solid #2c3e50;
}

@media screen and (max-width: 768px) {
    #frame #sidepanel #bottom-bar button:nth-child(1) {
        border-right: none;
        border-bottom: 1px solid #2c3e50;
    }
}

#frame #sidepanel #bottom-bar button:hover {
    background: #435f7a;
}

#frame #sidepanel #bottom-bar button i {
    margin-right: 3px;
    font-size: 1em;
}

@media screen and (max-width: 768px) {
    #frame #sidepanel #bottom-bar button i {
        font-size: 1.3em;
    }
}

@media screen and (max-width: 768px) {
    #frame #sidepanel #bottom-bar button span {
        display: none;
    }
}

#frame .content {
    float: left;
    width: 59%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

@media screen and (max-width: 768px) {
    #frame .content {
        width: calc(100% - 58px);
        min-width: 210px !important;
    }
}

@media screen and (min-width: 900px) {
    #frame .content {
        width: calc(100% - 340px);
    }
}

#frame .content .contact-profile {
    width: 100%;
    height: 60px;
    line-height: 60px;
    background: #f5f5f5;
}

    #frame .content .contact-profile img {
        width: 40px;
        border-radius: 50%;
        float: right;
        margin: 9px 12px 0 9px;
    }

    #frame .content .contact-profile p {
        float: right;
    }

    #frame .content .contact-profile .social-media {
        float: right;
    }

        #frame .content .contact-profile .social-media i {
            margin-left: 14px;
            cursor: pointer;
        }

            #frame .content .contact-profile .social-media i:nth-last-child(1) {
                margin-right: 20px;
            }

            #frame .content .contact-profile .social-media i:hover {
                color: #435f7a;
            }

#frame .content .messages {
    height: auto;
    min-height: calc(100% - 93px);
    max-height: calc(100% - 93px);
    overflow-y: scroll;
    overflow-x: hidden;
    width: 100%;
}

@media screen and (max-width: 735px) {
    #frame .content .messages {
        max-height: calc(100% - 105px);
    }
}

#frame .content .messages::-webkit-scrollbar {
    width: 8px;
    background: rgba(0, 0, 0, 0);
}

#frame .content .messages::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.3);
}

#frame .content .messages ul li {
    display: inline-block;
    clear: both;
    float: right;
    margin: 15px 15px 5px 15px;
    width: calc(100% - 25px);
    font-size: 0.9em;
}

    #frame .content .messages ul li:nth-last-child(1) {
        margin-bottom: 20px;
    }

    #frame .content .messages ul li.sent img {
        margin: 6px 0 0 8px;
    }

    #frame .content .messages ul li.sent p {
        background: #435f7a;
        color: #f5f5f5;
    }

    #frame .content .messages ul li.replies img {
        float: left;
        margin: 6px 8px 0 0;
    }

    #frame .content .messages ul li.replies p {
        background: #f5f5f5;
        float: left;
    }

    #frame .content .messages ul li img {
        width: 22px;
        border-radius: 50%;
        float: right;
    }

    #frame .content .messages ul li p {
        display: inline-block;
        padding: 10px 15px;
        border-radius: 20px;
        max-width: 205px;
        line-height: 130%;
    }

@media screen and (min-width: 768px) {
    #frame .content .messages ul li p {
        max-width: 300px;
    }
}

#frame .content .message-input {
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 1;
    background: #e6eaea;
}

    #frame .content .message-input .wrap {
        position: relative;
    }

        #frame .content .message-input .wrap input {
            font-family: "proxima-nova", "Source Sans Pro", sans-serif;
            float: right;
            border: none;
            width: calc(100% - 90px);
            padding: 11px 32px 10px 8px;
            font-size: 0.8em;
            color: #32465a;
        }

@media screen and (max-width: 768px) {
    #frame .content .message-input .wrap input {
        padding: 15px 32px 16px 8px;
    }
}

#frame .content .message-input .wrap input:focus {
    outline: none;
}

#frame .content .message-input .wrap .attachment {
    position: absolute;
    left: 60px;
    z-index: 4;
    margin-top: 10px;
    font-size: 1.1em;
    color: #435f7a;
    opacity: 0.5;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    #frame .content .message-input .wrap .attachment {
        margin-top: 17px;
        left: 65px;
    }
}

#frame .content .message-input .wrap .attachment:hover {
    opacity: 1;
}

#frame .content .message-input .wrap button {
    float: left;
    border: none;
    width: 50px;
    padding: 12px 0;
    cursor: pointer;
    background: #29a631;
    color: #f5f5f5;
}

@media screen and (max-width: 768px) {
    #frame .content .message-input .wrap button {
        padding: 16px 0;
    }
}

#frame .content .message-input .wrap button:hover {
    background: #435f7a;
}

#frame .content .message-input .wrap button:focus {
    outline: none;
}

.widget-categories .table td, .widget-categories .table th {
    text-align: center
}






.edit-profile input[type="file"],
.edit-profile input[type="text"],
.edit-profile input[type="password"],
.edit-profile input[type="datetime"],
.edit-profile input[type="datetime-local"],
.edit-profile input[type="date"],
.edit-profile input[type="month"],
.edit-profile input[type="time"],
.edit-profile input[type="week"],
.edit-profile input[type="number"],
.edit-profile input[type="email"],
.edit-profile input[type="url"],
.edit-profile input[type="search"],
.edit-profile input[type="tel"],
.edit-profileinput[type="color"],
.edit-profile .uneditable-input,
.edit-profile select,
.edit-profile textarea {
    width: 100%;
    border: 1px solid #D5D5D5;
    padding: 6px 6px 7px;
}

.etitprofile-titles {
    background: #f5f5f5;
    padding: 15px;
    border-radius: 10px 10px 0 0;
}

    .etitprofile-titles h3 {
        color: #29a631;
        font-size: 22px;
        margin: 0
    }

.editprofile-section {
    margin-bottom: 20px;
    padding-bottom: 10px
}

.editprofile-body {
    border: 1px solid #f5f5f5;
    padding-top: 15px;
    border-radius: 0 0 10px 10px;
}

.radio-info input[type=checkbox], .radio-info input[type=radio] {
    width: auto;
    height: auto;
    margin-left: 5px
}

.radio-info {
    margin-left: 20px;
}

.edit-profile textarea {
    height: 100px;
    resize: vertical
}

.choose-plan {
    background: #fff;
    padding: 32px 30px 40px;
    border-radius: 15px;
    text-align: center;
    -webkit-box-shadow: 0px -11px 30px 0px rgba(112, 90, 186, 0.2);
    box-shadow: 0px -11px 30px 0px rgba(112, 90, 186, 0.2);
    position: relative;
    overflow: hidden;
}

    .choose-plan .duration {
        text-transform: uppercase;
        font-weight: 700;
        border-bottom: 1px solid rgba(0, 0, 0, 0.15);
        padding-bottom: 13px;
        margin-bottom: 27px;
    }

.select2-container {
    width: 100% !important;
}

.choose-plan {
    padding-bottom: 80px
}

    .choose-plan .custom-button {
        margin: 0 auto;
        display: block;
        margin-top: 10px;
    }

    .choose-plan .shape {
        position: absolute;
        left: 0px;
        bottom: 0px;
        width: 100%;
    }

.textx {
    line-height: 40px;
    text-align: justify;
}

.customspan {
    color: #29a631
}

.bannertext {
    margin-top: 0px;
}

    .bannertext * {
        line-height: 70px;
        color: #fff;
        text-align: center;
    }

    .bannertext h6 {
        font-size: 23px;
        font-weight: 100
    }

    .bannertext h3 {
        font-size: 42px;
        color: #3fe64a;
    }

    .bannertext h4 {
        font-size: 34px;
    }

.footer-social-links {
    width: 230px;
    margin: 0 auto;
}

.maarofsec {
    text-align: center
}

    .maarofsec h6 {
        color: #fff;
        line-height:31px!important;
    }

.contact-form-wrapper .nice-select {
    border: solid 1px #29a631;
    margin-bottom: 25px;
    box-shadow: none;
}

.table-res {
    overflow-y: auto
}

.backlogox {
    background: url(../images/logokh-o.png) !important;
    background-size: 50% !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

.widget-1.userdata {
    border: none;
}

    .widget-1.userdata ul li {
        border-bottom: 1px solid #ddd;
        font-size: 16px;
    }

.profile-main-content .headx {
    padding: 20px 10px;
    background: #f258b4;
}

    .profile-main-content .headx h3 {
        font-size: 20px;
        color: #fff;
    }

.profile-main-content .inboxs .table thead tr th {
    text-align: center
}

.profile-main-content .inboxs .table tbody tr td {
    text-align: center
}

    .profile-main-content .inboxs .table tbody tr td:first-child {
        text-align: right
    }

    .profile-main-content .inboxs .table tbody tr td a {
        text-decoration: underline
    }

.chatxdiv {
    margin-bottom: 15px;
    border-bottom: 2px dashed;
    padding-bottom: 15px;
}

    .chatxdiv:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border: none
    }

.chatxbody {
    background: #f9c2e3;
    padding: 10px;
}

.customsp {
    color: #f258b4
}

.profile-single-post h6 a {
    color: #29a631
}

.recentx {
    text-align: center
}

.recentxhead {
    background: #f258b4;
    padding: 10px;
    overflow: hidden;
    color: #fff;
    border-radius: 10px;
    margin-bottom: 20px;
}

    .recentxhead .subtitle {
        float: right;
        color: #fff;
/*        line-height: 60px;
*/        margin-left: 10px;
    }

    .recentxhead .select2 {
        float: right;
        width: auto !important;
        min-width: 141px!important;
    }

.profiledatax {
    color: #29a631;
    font-weight: bold
}

.lastdateenter {
    margin-top: 20px;
    text-align: right;
}

    .lastdateenter span {
        color: #29a631;
        margin-left: 5px
    }

.messagesarchivex {
    margin-top: 20px;
    text-align: right;
}

.inboxs #members .fa-envelope-open {
    color: #333333
}
.membersbtnsearch {
    background: url('../images/serachb.jpg') no-repeat;
    width: 147px;
    border: 1px solid #ddd;
    height: 32px;
    padding-top: 4px;
}

@media (min-width: 1400px) {
    .header-wrapper .menu li a {
        font-size: 14px !important
    }

    .log-reg .log-reg-inner .main-content .form-group label {
        font-size: 17px;
    }
    .log-reg .log-reg-inner .main-content .f-pass {
        font-size: 15px;
    }
    .widget-1.widget-check .form-group label {
        font-size: 17px;
    }
    .single-blog.post-details .right {

        font-size: 16px;
    }
    }
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #4caf50d1;
    color: white;
}
.widget-1 .subtitle {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 26px;
}
.breadcrumb-area .content .breadcrumb-list li a {
    font-size: 20px
}
.fa-star:before {
    content: "\f005";
    color: #4caf50;
    margin-left: 5px;
}
.text-danger {
    color: #dc3545 !important;
    font-size: 15px!important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 49px !important;
    text-transform: uppercase !important;
    font-size: 15px !important;
    padding-right: 10px;
}
.select2-results__option[aria-selected] {
    cursor: pointer;
    font-size: 15px!important;
}
.custom-button{
    font-size:16px!important
}
.form-control {
    border: 1px solid rgba(59, 54, 140, 0.1) !important;
    background-color: #eaf2fc !important;
    padding: 0px 30px !important;
    height: 58px!important;
}
textarea.form-control {
    height: 200px!important;
    padding-top: 8px !important;
}
.custom-button {
    width: unset;
    padding: 11px 27px !important;
}
.header-wrapper .menu li a {
    color: #fff;
    font-size: 14px!important;
}
.form-control{
    color:gray!important
}
.widget-1-body {
/*    margin-top: 18px;
*/    margin-bottom: 34px;
    border: 1px solid #d2d2d2;
    padding: 18px;
}
.subtitle {
    margin-bottom: 13px;
    margin-top: 14px;
}
.side-search{
    margin-top:15px
}
.fast-search{
    margin-top:15px;
    margin-bottom:15px;
    font-size:26px;
 
}
.fast-search i{
    color:green
}


.infolist li span {
    font-size: 13px;
}
.active-online{
    display:none
}
.info-box {
    background-color: white;
    margin-top: 10px;
    border-radius: 10px;
    padding: 30px 30px 22px;
    overflow: hidden;
}

     .info-box .header {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
 .info-box:last-child .header {
        margin-bottom: 10px
    }
 .info-box .header .title {
        font-size: 17px;
        line-height: 34px;
        font-weight: 600;
        padding-bottom: 10px;
    }

 .info-box .content .text {
        margin-bottom: 0px;
        font-size: 16px;
        line-height: 26px;
        padding: 20px 0px 3px;
        word-wrap: break-word;
    }

     .info-box .content .infolist li {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
        margin-bottom: 10px
    }

   .info-box.socialx .content .infolist li {
        float: right;
        width: 50px;
        height: 50px;
        line-height: 44px;
        background: #29a631;
        border-radius: 50%;
        text-align: center;
        margin-left: 10px;
    }

     .info-box.socialx .content .infolist li a {
            color: #fff;
            display: block;
            width: 100%;
            font-size: 26px;
            line-height: 42px;
        }

        .info-box.socialx .content .infolist li:last-child {
            border-bottom: 0px;
        }

         .info-box.socialx .content .infolist li span {
            font-size: 18px;
            line-height: 26px;
        }
/*.header-wrapper .menu {
    margin: auto!important;
}*/


.lock-scroll {
    overflow: hidden;
}

/*scroll*/
/* width */
::-webkit-scrollbar {
    width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #DDDDDD;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #EC3DA2;
    border-radius: 8px;
}

    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: rgba(236,57,159,0.8);
    }

body::-webkit-scrollbar {
    width: 8px;
    background: #DDDDDD;
}

body::-webkit-scrollbar-thumb {
    background: var(236,57,159);
    border-radius: 8px;
}

    body::-webkit-scrollbar-thumb:hover {
        background: rgba(236,57,159,0.8);
    }

* {
    scrollbar-width: thin;
    scrollbar-color: #EC3DA2 #DDDDDD;
}


.note-toolbar.card-header{
    z-index:1;
}
/*    .header-size-wrapper {
    justify-content:center;
    }*/
.text-red {
    color: tomato;
    text-align: center !important;
    margin: 5px;
}
.text-box {
    width: 200px !important;
    height: 36px !important;
    text-align: end;
}

.dntCaptcha {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap:wrap !important;
}
.fa-redo {
    margin: 0 0.5rem 0 0.5rem ;
}
.field-validation-error{
    margin:0!important;
    width:100%;
    text-align:center !important;
}
.h-fontsize {
font-size:2.5rem !important;
}
.footerdata li {
    line-height: 36px!important;
}
a:hover {
    text-decoration: none !important
}
.breadcrumb-area .content .breadcrumb-list.extra-padding {
    padding-bottom: 5px;
    font-weight: bold;
}
body > header > div > div > ul > li > ul > li {
    border-bottom: 1px solid #e4e4e8;
}
body > header > div > div > ul > li > ul > li:last-child{
    border-bottom: none;
}
.header-wrapper .menu li.user-profile .submenu{
    padding:10px
}
body > header > div > div > ul > li:last-child > ul{
    min-width:166px!important
}
.header-wrapper .menu li.user-profile .submenu::before{
    display:none;
}
.header-wrapper .menu li.user-profile:last-child .submenu::before {
    display: block;
}
.dropdown-item:focus, .dropdown-item:hover {
    color: #16181b;
    text-decoration: none;
    background-color: #f8f9fa78!important;
}

body > section.breadcrumb-area.profile-bc-area > div > div > h2{
    font-weight:bold;
}