/* @import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap'); */

@import url('https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400..700;1,400..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');



/* body,
html {
    overflow-x: hidden;
} */
/* body,html{
    width: 100%;
} */
body {
    margin: 0;
    padding: 0;
    /* font-family: var(--poppins); */
    font-family: var(--armiofonts);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    font-weight: normal;
    font-style: normal;
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.5;
    background-color: #fff;
}

:root {
    scroll-behavior: inherit;
    --poppins: "Poppins", sans-serif;
    --league-spartan: "League Spartan", sans-serif;
    --robotofonts:"Roboto", sans-serif;
    --armiofonts:"Arimo", sans-serif;
    --deep-blue-color: #002752;
    --blue-color: #008DE2;
    --yellow-color: #F9D40D;
    --sky-color: #8ECAEF;
    --green-color: #5EB11E;
    --light-color: #F1F1F1;
    --white-color: #ffffff;
    --black-color: #000000;
    --orange-color: #FF6600;
    --text-color: #4D4D4D;
    --deep-grey: #111111;
    --purplecolor: #7E679E;
}

b,
strong {
    font-weight: 700;
}

p {
    margin: 0 0 22px 0;
}

p:last-child {
    margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 25px 0;
    padding: 0;
    color: #000;
    font-weight: 700;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
    margin-bottom: 0;
}



h1,
.h1-title {
    font-weight: 700;
    font-size: 90px;
    line-height: 1;
}

h2,
.h2-title {
    font-weight: 700;
    font-size: 70px;
    line-height: 1;
}

h3,
.h3-title {
    font-weight: 700;
    font-size: 50px;
    line-height: 1;
}

h4,
.h4-title {
    font-size: 24px;
    line-height: 1.2;

}

h5,
.h5-title {
    font-size: 20px;
    line-height: 1.2;

}




a {
    margin: 0;
    padding: 0;
    text-decoration: none !important;
    outline: none !important;
    color: #ecb61e;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

a:hover {
    color: red;
}

img {
    max-width: 100%;
}


input[type="text"],
input[type="tel"],
input[type="password"],
input[type="email"],
select {
    background-color: transparent;
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    color: #000;
    border: 1px solid rgba(255, 255, 255, 0.7);
    height: 58px;
    padding: 0 16px;
    outline: none !important;
}

textarea {
    background-color: transparent;
    -webkit-appearance: none;
    appearance: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.7);
    padding: 12px 16px;
    width: 100%;
    color: #000;
    height: 158px;
    outline: none !important;
}

select {
    border: 1px solid rgba(255, 255, 255, 0.7);
    width: 100%;
    padding: 0 11px;
    background: url(images/sort-down.svg) no-repeat calc(100% - 16px) center transparent;
    background-size: 18px;
    padding-right: 40px;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
}

select::-ms-expand {
    display: none;
}

input[type="submit"] {
    background: #eab71e;
    color: #000000;
    height: 58px;
    border: none;
    -webkit-appearance: none;
    appearance: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    padding-left: 30px;
    padding-right: 30px;

    cursor: pointer;
    font-size: 24px;
    font-weight: 700;
    outline: none !important;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

input[type="submit"]:hover {
    background: #000;
    color: #eab71e;
}

::-webkit-input-placeholder {
    opacity: 0.7;
    color: #000;
}

:-ms-input-placeholder {
    opacity: 0.7;
    color: #000;
}

::-moz-placeholder {
    opacity: 0.7;
    color: #000;
}

:-moz-placeholder {
    opacity: 0.7;
    color: #000;
}







/* images alignment for wordpress content pages */
.alignright {
    float: right;
    margin: 0 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 0 20px 20px 0;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    float: none;
    clear: both;
}



/* custom checkbox */

.form_input_check label {
    position: relative;
    margin: 0;
    padding-left: 40px;
    display: inline-block;
}

.form_input_check label span {
    margin: 0;
    padding: 0;
}

.form_input_check label input[type="checkbox"] {
    visibility: hidden;
    display: none;
}

.form_input_check label input[type="checkbox"]+span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0px;
    width: 22px;
    height: 22px;
    border: 1px solid #3E3E42;
    background: transparent;
}

.form_input_check label input[type="checkbox"]+span::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0px;
    width: 22px;
    height: 22px;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    background: url(images/tick.svg) no-repeat center center;
    background-size: 15px;
}

.form_input_check label input[type="checkbox"]:not(:checked)+span::after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}


/* .form_input_check input[type="checkbox"]:checked + span::before {
      
    } */

.form_input_check label input[type="checkbox"]:checked+span:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}



/* custom radio */

.form_input_radio label {
    position: relative;
    margin: 0;
    padding-left: 30px;
    display: inline-block;
}

.form_input_radio label span {
    margin: 0;
    padding: 0;
}

.form_input_radio label input[type="radio"] {
    visibility: hidden;
    display: none;
}

.form_input_radio label input[type="radio"]+span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1px;
    width: 22px;
    height: 22px;
    border: 2px solid #000000;
    border-radius: 100%;
    background: #fff;
}

.form_input_radio label input[type="radio"]+span::after {
    content: '';
    width: 12px;
    height: 12px;
    background: #4b0049;
    position: absolute;
    top: 6px;
    left: 5px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.form_input_radio label input[type="radio"]:not(:checked)+span::after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}


/* .form_input_radio input[type="radio"]:checked + span::before {
      
    } */

.form_input_radio label input[type="radio"]:checked+span:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}


/* custom radio end */

.common-button {
    font-size: 28px;
    font-weight: 600;
    color: var(--white-color);
    background-color: var(--deep-blue-color);
    line-height: 1.1;
    padding: 21px 40px;
    border-radius: 50px;
    display: inline-block;
    overflow: hidden;
    min-width: 253px;
    position: relative;
    z-index: 1;
    text-align: center;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    font-family: var(--robotofonts);
}

.common-button::after {
    content: "";
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
    bottom: 0;
    width: 0;
    height: 100%;
    background-color: var(--sky-color);
    border-radius: 50px;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    z-index: -1;
}

.common-button:hover::after {
    width: 100%;
    left: 0;
    right: auto;
}

.common-button:hover {
    /* background-color: var(--sky-color); */
    color: var(--deep-blue-color);
}

.common-button.common-button-orange {
    background-color: var(--orange-color);
    color: var(--white-color);
}

.common-button.common-button-orange:hover {
    /* background-color: var(--sky-color); */
    color: var(--deep-blue-color);
}

.common-button.common-button-yellow {
    background-color: var(--yellow-color);
    color: var(--deep-grey);
}

.common-button.common-button-yellow:hover {
    /* background-color: var(--sky-color); */
    color: var(--deep-blue-color);
}


.landing-main-section {
    overflow: hidden;
    height: 100dvh;
    position: relative;
    padding-top: 87px;
}

.landing-main-section-img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.landing-main-page-wrapper {
    max-width: 975px;
    margin: 0 auto;
}

.landing-main-section-in {
    position: relative;
    z-index: 2;

}

.landing-logo {
    max-width: 975px;
    margin: 0 auto 39px;
    display: block;
}

.landing-logo img {
    width: 100%;
    display: block;
}

.landing-main-page-wrapper ul {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.landing-main-page-wrapper ul li {
    display: flex;
    align-items: center;
}

.landing-main-page-wrapper ul li:not(:first-child) {
    margin-left: 25px;
}

.landing-main-image {
    max-width: 748px;
    margin: 0 0 -8px;
}

.landing-main-page-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    height: 100%;
    padding-top: 87px;
}

.landing-main-section-in .container,
.landing-main-section-in {
    height: 100%;
}

.landing-feel-section {
    /* min-height: 100vh; */
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.landing-feel-section-in {
    width: 100%;
}

.landing-feel-wpr .section-heading h1 {
    font-family: var(--robotofonts);
    font-weight: 600;
    font-size: 66px;
    line-height: 1.1;
    text-align: center;
    text-transform: capitalize;
    color: var(--deep-grey);
    margin: 0;
}

.landing-feel-wpr .section-heading {
    margin-bottom: 60px;
}

.form-radio-wpr {
    /* min-height: 170px; */
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;

}

.form-radio-wpr::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    height: 100%;
    border-left: 1px dashed #D9D1E6;

    z-index: -1;
}

.form-radio-wpr::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    border-bottom: 1px dashed #D9D1E6;
    opacity: 0;
    z-index: -2;
}


.landing-feel-form-wpr .row .col:nth-child(6) .form-radio-wpr::before,
.landing-feel-form-wpr .row .col:nth-child(12) .form-radio-wpr::before {
    opacity: 0;
}

.landing-feel-form-wpr .row {
    justify-content: center;
}

.form-radio-wpr input[type="radio"] {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
}

.form-radio-wpr label {
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    border-radius: 10px;
    background: transparent;
    box-shadow: none;
    display: block;
    z-index: -1;
}

.form-radio-wpr input[type="radio"]:checked+label {
    background-color: var(--white-color);
    box-shadow: 0px 4px 50px 1px rgba(138, 138, 138, 0.25);
}

.form-radio-wpr img {
    pointer-events: none;
    position: relative;
    z-index: 4;
}

.landing-feel-btn-wpr {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 60px;
}

.landing-feel-btn-wpr input[type="submit"] {
    font-size: 28px;
    font-weight: 600;
    color: var(--white-color);
    background-color: #003399;
    height: 73px;
    border-radius: 50px;
    border: 0;
    min-width: 259px;
    text-align: center;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    font-family: var(--robotofonts);
}

.landing-feel-btn-wpr input[type="submit"]:hover {
    background-color: var(--sky-color);
    color: var(--deep-blue-color);
}

.side-bar {
    width: 280px;
    padding: 30px 0px 30px 30px;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    transition: all 0.3s ease-in-out;
    height: 100%;
}

.side-bar-in {
    height: 100%;
    width: 100%;
    background-color: #008DE2;
    border-radius: 30px;
    position: relative;
    padding: 30px 0px 11px;
    /* padding: 30px 30px 11px; */
}

.home-logo-wpr {
    padding: 0 30px;
}

.side-bar-menu-wpr-outer {
    padding: 0 20px 0 30px;
    height: 100%;
}

.side-bar-menu-wpr {
    padding-right: 10px;
}

/* width */
.side-bar-menu-wpr::-webkit-scrollbar {
    width: 5px;
}

/* Track */
.side-bar-menu-wpr::-webkit-scrollbar-track {
    box-shadow: none;
    border-radius: 10px;
    background-color: transparent;
}

/* Handle */
.side-bar-menu-wpr::-webkit-scrollbar-thumb {
    background: #008DE2;
    border-radius: 10px;
}

/* Handle on hover */
.side-bar-menu-wpr::-webkit-scrollbar-thumb:hover {
    background: #008DE2;
}

.side-bar-in::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background-image: url(images/side-bar-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    mix-blend-mode: multiply;
    border-radius: 30px;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
}

.home-logo {
    width: 117px;
    margin: 0 auto 17px;
    position: relative;
    display: block;
}

.side-bar-menu-wpr {
    /* height: calc(100% - 141px); */
    max-height: calc(100% - 141px);
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
}

.side-bar-menu-wpr ul {
    list-style: none;
    padding: 0;
    margin: 0;
    height: 100%;
}

.side-bar-menu-wpr ul li {
    height: calc(100% / 4);
    padding: 9px 0;
}

.side-bar-menu-wpr ul li:not(:last-child) {
    border-bottom: 1px dashed #D9D1E6;
}

.side-bar-menu-wpr ul li a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--robotofonts);
    line-height: normal;
    color: var(--white-color);
    padding: 10px 10px 12px;
}

.side-bar-menu-wpr ul li a:hover,
.side-bar-menu-wpr ul li.current-menu-item a {
    background-color: var(--sky-color);
    color: var(--deep-grey);
}

.side-bar-menu-wpr ul li:first-child.current-menu-item a {
    background-color: #0099CC;
    color: var(--white-color);
}

.side-bar-menu-wpr ul li a .menu-icon {
    width: 50px;
    height: 50px;
    background-color: var(--white-color);
    border-radius: 50%;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

/* .side-bar-menu-wpr ul li a .menu-text {
    margin-top: auto;
} */

.dashboard-header {
    position: fixed;
    top: 0;
    right: 0;
    width: calc(100% - 280px);
    padding: 15px 30px;
    z-index: 999;
}

.dashboard-header.fixed {
    background-image: url(images/bg-2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.dashboard-header-wpr {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

/* .dashboard-header-left {
    padding-top: 14px;
} */

.dashboard-header-logo-wpr {
    display: none;
}

.dashboard-header-logo {
    width: 69px;
    display: block;
}

.dashboard-header-left h1,
.heading-wpr-for-mobile .page-heading {
    font-family: var(--robotofonts);
    font-weight: 600;
    font-size: 34px;
    line-height: 1.1;
    text-transform: capitalize;
    color: var(--deep-grey);
    margin: 15px 0 0px 20px;
}

.dashboard-header-left p,
.heading-wpr-for-mobile p {
    font-weight: 400;
    font-size: 16px;
    color: #4D4D4D;
    margin: 0;
}

.heading-wpr-for-mobile {
    display: none;
    margin-bottom: 15px;
}

.dashboard-header-right .header-profile {
    width: 65px;
    height: 65px;
    display: block;
    border-radius: 50%;
    overflow: hidden;
}
.dashboard-header-right .header-profile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dashboard-menu-button,
.side-bar-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--deep-blue-color);
    border: 3px solid var(--blue-color);
    outline: none;
    position: relative;
    display: none;
}

.side-bar-button {
    margin-left: auto;
}

.dashboard-menu-button span {
    position: absolute;
    top: 50%;
    width: 25px;
    height: 3px;
    border-radius: 2px;
    background-color: var(--white-color);
    transform: translate(-50%, -50%);
}

.side-bar-button span {
    position: absolute;
    top: 20px;
    width: 25px;
    height: 3px;
    border-radius: 2px;
    background-color: var(--white-color);
    transform: rotate(45deg);
    left: 11px;
}

.dashboard-menu-button span::before,
.dashboard-menu-button span::after {
    content: "";
    width: 25px;
    height: 3px;
    position: absolute;
    border-radius: 2px;
    background-color: var(--white-color);
}

.dashboard-menu-button span::before {
    top: -8px;
    left: 0;
}

.dashboard-menu-button span::after {
    top: 8px;
    left: 0;
}

.side-bar-button span::after {
    content: "";
    width: 25px;
    height: 3px;
    position: absolute;
    border-radius: 2px;
    background-color: var(--white-color);
    top: 1px;
    left: 0;
    transform: rotate(-90deg);
}

.dashboard-main-wpr {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 130px 30px 30px 310px;
    height: 100%;
}

.dashboard-bg {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0px;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.dashboard-home-left-col {
    width: 48%;
}

.dashboard-home-right-col {
    width: 52%;
}

.dashboard-home-left-in {
    height: 100%;
}

.video-wpr {
    position: relative;
    /* padding-top: 94%; */
    border-radius: 30px;
    overflow: hidden;
    height: 100%;
}

.video-wpr .video-thumb {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    object-fit: cover;
}

.video-thumm-wpr {
    position: absolute;
    width: 100%;
    height: 100%;
}

.video-thumm-wpr::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    background: rgba(0, 0, 0, 0.3);
}

.video-wpr video {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    object-fit: cover;
}

.video-wpr .video-play-button {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 90px;
    height: 90px;
    background-color: var(--yellow-color);
    border-radius: 50%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    cursor: pointer;
}

.crew-wpr {
    background-color: var(--white-color);
    border-radius: 20px;
    box-shadow: 0px 4px 50px 1px rgba(138, 138, 138, 0.25);
    padding: 20px 23px 24px;
    margin-bottom: 24px;
}

.crew-wpr h2 {
    font-size: 28px;
    font-weight: 600;
    font-family: var(--robotofonts);
    line-height: 1.1;
    margin: 0 0 15px;
}

.crew-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 -12px;
}

.crew-item {
    padding: 0 12px;
    width: 25%;
}

.crew-item-in img {
    width: 100%;
    height: 100%;
}

.message-section {
    padding: 30px 55px 27px 24px;
    background-color: #2e71cd;
    border-radius: 20px;
}

.message-item-in {
    display: flex;
    align-items: flex-start;
}

.message-profile {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    overflow: hidden;
    /* border: 1px solid #008DE2; */
    background: #fff;
}

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

.message-text-wpr {
    width: calc(100% - 54px);
    padding-left: 12px;
}

.message-text-wpr h3 {
    font-family: var(--robotofonts);
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.1;
    color: var(--white-color);
    margin: 0 0 5px;
}

.message-text-wpr p {
    font-weight: 400;
    font-size: 12px;
    line-height: 1.5;
    color: var(--white-color);
    margin: 0 0 5px;
    max-width: 409px;
}

.message-text-wpr .message-tag {
    background-color: #030617;
    border-radius: 30px;
    padding: 6px 10px 3px;
    font-size: 12px;
    font-weight: 400;
    color: var(--white-color);
    line-height: 1;
}
.message-item {
    margin: 0 0 15px;
}

.message-wpr hr {
    border-color: rgba(241, 241, 241, 0.1);
    margin: 24px 0;
}

.message-wpr {
    padding-right: 10px;
    max-height: 385px;
    overflow-y: auto;
    overflow-x: hidden;
}

/* width */
.create-my-own-wpr::-webkit-scrollbar,
.message-wpr::-webkit-scrollbar {
    width: 5px;
}

/* Track */
.create-my-own-wpr::-webkit-scrollbar-track,
.message-wpr::-webkit-scrollbar-track {
    box-shadow: none;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.2);
}

/* Handle */
.create-my-own-wpr::-webkit-scrollbar-thumb,
.message-wpr::-webkit-scrollbar-thumb {
    background: #008DE2;
    border-radius: 10px;
}

/* Handle on hover */
.create-my-own-wpr::-webkit-scrollbar-thumb:hover,
.message-wpr::-webkit-scrollbar-thumb:hover {
    background: #008DE2;
}

.flotting-button-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    bottom: 90px;
    right: 50px;
    z-index: 99;
    list-style: none;
    padding: 0;
    margin: 0;
}

.flotting-button-list li:not(:last-child) {
    margin-bottom: 15px;
}

.flotting-button-list li a {
    width: 70px;
    height: 70px;
    background-color: var(--white-color);
    border: 3px solid var(--yellow-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.flotting-button-list li:nth-child(2) a {
    background-color: #0099CC;
    border-color: var(--white-color);
}

.flotting-button-list li:nth-child(3) a {
    background-color: transparent;
    /* border-color: var(--white-color); */
    border: 0;
}

.flotting-button-list li:nth-child(4) a {
    background-color: var(--green-color);
    border-color: var(--white-color);
}

.gives-section {
    padding-top: 0px;
}

.gives-left-col {
    width: 56%;
}

.gives-right-col {
    width: 44%;
}

.gives-top-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.gives-top-list li {
    display: flex;
    align-items: center;
    padding: 6px 20px 6px 6px;
    background-color: var(--white-color);
    box-shadow: 0px 4px 33px rgba(63, 63, 63, 0.04);
    border-radius: 50px;
    margin-bottom: 14px;
    font-size: 20px;
    font-weight: 600;
    font-family: var(--robotofonts);
    transition: .5s;
}

.gives-top-list li:not(:last-child) {
    margin-right: 15px;
}

.gives-top-list li span {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--orange-color);
    border-radius: 50%;
    margin-right: 10px;
    transition: .5s;
}

.gives-sec-header.mission-sec-header .gives-top-list li:hover span,
.gives-sec-header .gives-top-list li:hover span,
.my-life-dashboard .gives-top-list li:hover span,
.gives-top-list li:hover span {
    background-color: var(--sky-color);
}

.gives-sec-header .gives-top-list li span {
    background-color: var(--orange-color);
}

.gives-image-wpr-outer {
    height: 100%;

}

.my-gvs-sec .gives-image-wpr-outer {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
}

.gives-image-wpr {
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
}

.gives-image-wpr img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.give-idea-top {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 30px;
    margin-top: -10px;
}

.give-idea-top a {
    font-size: 28px;
    font-weight: 600;
    font-family: var(--robotofonts);
    line-height: 1;
    padding: 10px 30px;
    min-width: 350px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    background-color: var(--deep-blue-color);
    border-radius: 50px;
}

.give-idea-top a img {
    width: 52px;
    margin-right: 14px;
}

.give-idea-top a:hover {
    background-color: var(--blue-color);
}

.give-idea-bottom .message-section {
    padding-right: 20px;
}

.message-section-head {
    margin-bottom: 30px;
}

.message-section-head h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--white-color);
    line-height: 1.1;
    margin: 0;

}

.give-idea-bottom {
    position: relative;
}

.give-idea-message-img-10 {
    width: 47px;
    height: 47px;
    border-radius: 50%;
    border: 1px solid var(--yellow-color);
    padding: 8px;
    position: absolute;
    top: -17px;
    right: -17px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.message-tag-wpr {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.message-tag-wpr i {
    width: 33px;
    height: 33px;
    border-radius: 50%;
    border: 1px solid var(--yellow-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    bottom: -10px;
}

.give-idea-bottom .message-tag {
    background-color: var(--orange-color);
}

.give-idea-btn-wpr {
    padding-top: 15px;
}

.give-idea-btn-wpr a {
    font-size: 28px;
    font-weight: 600;
    font-family: var(--robotofonts);
    line-height: 1;
    padding: 23px 30px;
    display: block;
    text-align: center;
    background-color: var(--orange-color);
    border-radius: 50px;
    color: var(--white-color);
}

.give-idea-btn-wpr a:hover {
    background-color: var(--deep-blue-color);
    color: var(--white-color);
}

.gives-left-in {
    height: 100%;
    position: relative;
}

.gives-image-text-wpr {
    position: absolute;
    bottom: 25px;
    right: 25px;
}

.gives-image-text-wpr span {
    font-size: 34px;
    font-weight: 700;
    color: var(--white-color);
    line-height: 1.1;
    font-family: var(--robotofonts);
}

/* ===my-life css start=== */
.my-life-dashboard .gives-top-list li span {
    background-color: var(--purplecolor);
}

.life-search-wpr {
    position: relative;
}

.life-search-wpr input[type="text"] {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    border-radius: 50px;
    color: #9995A5;
    border: 0;
    height: 60px;
    padding: 0 55px;
    outline: none !important;
    background-color: var(--white-color);
    box-shadow: 0px 4px 33px rgba(63, 63, 63, 0.04);
    display: block;
}

.life-search-wpr::after {
    content: "";
    position: absolute;
    top: 20px;
    left: 27px;
    width: 20px;
    height: 20px;
    background: url(images/srch-icn.svg) no-repeat center;
    background-size: 20px;
}

.life-search-wpr ::-webkit-input-placeholder {
    color: #9995A5;
}

.life-search-wpr :-ms-input-placeholder {
    color: #9995A5;
}

.life-search-wpr ::-moz-placeholder {
    color: #9995A5;
}

.life-search-wpr :-moz-placeholder {
    color: #9995A5;
}

.lifes-rt-col {
    width: 44%;
}

.lifes-lt-in {
    max-width: 562px;
    margin-left: auto;
}

.lifes-lt-col-wpr ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    width: 61px;
    margin-bottom: -12px;
    flex-direction: column;
}

.lifes-lt-col-wpr ul li {
    margin-bottom: 12px;
}

.lifes-lt-col-wpr ul li>i {
    display: inline-block;
    border-radius: 50%;
    overflow: hidden;
    width: 61px;
    height: 61px;
}

.lifes-lt-col-wpr ul li>i img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.life-vdo-wpr {
    border-radius: 20px;
    background-color: var(--purplecolor);
    position: relative;
    padding: 12px 12px;
}

.lifes-img-part {
    border-radius: 20px;
}

.lifes-img-part {
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    padding-top: 50%;
    position: relative;
}

.lifes-img-part:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.lifes-img-part img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lifes-vd-img-wpr {
    position: relative;
}

.video-butn {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.vdoplaybuton {
    position: relative;
    display: inline-block;
    border-radius: 50%;
    width: 62px;
    height: 62px;
}

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

.lifes-text-part {
    display: flex;
    align-items: flex-start;
    padding: 18px 17px 5px;
}

.vdo-logo-wpr {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.vdo-para {
    width: calc(100% - 60px);
    padding-left: 12px;
}

.vdo-para p {
    font-size: 12px;
    color: var(--white-color);
    max-width: 387px;
    margin-bottom: 3px;
}

.like-icn-wpr {
    display: flex;
    align-items: center;
}

.like-icn-wpr i {
    display: inline-block;
    max-width: 14px;
    width: 100%;
    margin-right: 14px;
    cursor: pointer;
}

.like-icn-wpr i img {
    width: 100%;
}

.lifes-lt-col-wpr {
    display: flex;
    align-items: flex-start;
}

.life-vd-outer {
    width: calc(100% - 61px);
    padding-left: 16px;
}

.my-lifes-header-part {
    margin-bottom: 30px;
}

.lifes-vd-row {
    --bs-gutter-x: 32px;
    --bs-gutter-y: 30px;
}

.after-none.lifes-img-part:after {
    display: none;
}

.my-life-dashboard .flotting-button-list {
    top: 244px;
    right: 0;
}

.mission-btm-part .gives-image-wpr-outer {
    padding-top: 0;
}

.my-lifes-header-part .gives-top-list li {
    margin-bottom: 0;
}

/* === my-life css end=== */
/* === my-mission=== */
.gives-sec-header.mission-sec-header .gives-top-list li span {
    background-color: #AEE500;

}

.mission-btm-part .give-idea-bottom .message-tag {
    background-color: #AEE500;
    color: var(--deep-grey);
}

.mission-btm-part .give-idea-btn-wpr a {
    background-color: #AEE500;
    color: var(--deep-grey);
}

.mission-sec-header .give-idea-top {
    margin-bottom: 0;
    margin-top: 0;
}

.mission-sec-header .row {
    align-items: center;
}

.mission-sec-header {
    margin-bottom: 30px;
}

.mission-sec-header .gives-top-list li {
    margin-bottom: 0;
}

.msn-lt-col {
    width: 70%;
}

.msn-rt-col {
    width: 30%;
}

/* === champion resource=== */
.champions-dashboard .gives-top-list li span {
    background-color: #0069BF;
}

.lifes-row {
    align-items: center;
    --bs-gutter-y: 20px;
}

.champ-img-part {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.champ-img-part:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 30px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .4);
}

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

.champ-vdo-img-wpr {
    position: relative;
}

.chmp-text-part p {
    font-size: 32px;
    font-family:var(--robotofonts);
    font-weight: 600;
    color: var(--white-color);
}

.champ-vdo-wpr {
    position: relative;
}

.champ-vdo-img-wpr .vdoplaybuton {
    width: 90px;
    height: 90px;
}

.champion-header .gives-top-list li {
    box-shadow: 0px 4px 33px rgba(63, 63, 63, 0.1);
    margin-bottom: 24px;
}

.dashboard-main-wpr.champ-dashboard {
    padding: 93px 30px 30px 310px;

}

.champ-lt-col {
    width: 100%;
}

/* == champion resource=== */
.chmp-rsrce-outer {
    background-color: var(--deep-blue-color);
    border-radius: 20px;
    overflow: hidden;
    padding: 45px 40px 45px 50px;
    height: 100%;
}

.chmp-rsrce-features {
    display: flex;
    align-items: flex-start;
    transition: .5s;
    padding: 30px 0;
    border-bottom: 1px solid rgb(241, 241, 241, .1);
}

.chmp-rsrce-features:last-child {
    border: 0;
    padding-bottom: 0;
}

.chmp-rsrce-features:first-child {
    padding-top: 0px;
}

.rsrce-img-part {
    position: relative;
    width: 93px;
    height: 93px;
    overflow: hidden;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: .5s;
}

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

.rsrce-text-part {
    width: calc(100% - 93px);
    padding-left: 15px;
}

.rsrce-text-part p {
    font-size: 12px;
    max-width: 961px;
    color: var(--white-color);
    margin-bottom: 12px;
}

.rsrce-btn {
    border-radius: 30px;
    background-color: var(--blue-color);
    padding: 6.5px 14.5px 3.5px;
    color: var(--white-color);
    font-size: 12px;
    transition: .5s;
    display: inline-block;
    line-height: 1;
}

.rsrce-btn:hover {
    color: var(--black-color);
}

.chmp-rsrce-features:hover .rsrce-img-part {
    border-color: var(--blue-color);
}

.champ-rsrce-wpr {
    max-height: 488px;
    /* max-height: 728px; */
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 49px;
}

/* width */
.champ-rsrce-wpr::-webkit-scrollbar {
    width: 5px;
}

/* Track */
.champ-rsrce-wpr::-webkit-scrollbar-track {
    box-shadow: none;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.2);
}

/* Handle */
.champ-rsrce-wpr::-webkit-scrollbar-thumb {
    background: #008DE2;
    border-radius: 10px;
}

/* Handle on hover */
.champ-rsrce-wpr::-webkit-scrollbar-thumb:hover {
    background: #008DE2;
}

.dashboard-main-wpr.champ-resource-dashboard {
    padding: 91px 30px 30px 310px;

}

/* === champions activities === */
.champions-activities-dashboard .rsrce-img-part {
    border-color: #0AC500;
}

.champions-activities-dashboard .chmp-rsrce-features.gives-ftrs .rsrce-img-part {
    border-color: #D10303;
}

.champions-activities-dashboard .rsrce-btn {
    background-color: #0AC500;
}

.champions-activities-dashboard .chmp-rsrce-features.gives-ftrs .rsrce-btn {
    background-color: #D10303;
}

.champions-activities-dashboard .chmp-rsrce-features:hover .rsrce-img-part {
    border-color: #0AC500;
}

.champions-activities-dashboard .chmp-rsrce-features.gives-ftrs:hover .rsrce-img-part {
    border-color: #D10303;
}

.my-gvs-sec .row ,.mission-btm-part .row{
    --bs-gutter-y: 30px;
}

.champions-dashboard .gives-top-list li:hover span {
    background-color: var(--orange-color);
}

.mission-btm-part .gives-image-wpr-outer {
    padding-left: 15px;
    padding-right: 15px;
}

.msn-img-sld-wpr .slick-list {
    margin-left: -15px;
    margin-right: -15px;
}

.profile-container {
    position: relative;
    display: block;
    width: 87px;
    height: 84px;
    border-radius: 50%;
    /* overflow: hidden; */
}

.profile-photo {
    width: 100%;
    height: 100%;
    cursor: pointer;
    object-fit: cover;
}

.profile-popover {
    position: absolute;
    top: 110%;
    right: 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: none;
    flex-direction: column;
    padding: 8px;
    z-index: 999;
    width: 150px;
    display: none;
}

.profile-popover.active {
    display: flex;
}

.popover-option {
    background: none;
    border: none;
    padding: 8px 10px;
    text-align: left;
    cursor: pointer;
    width: 100%;
    border-radius: 8px;
    transition: background 0.2s;
}

.popover-option:hover {
    background: var(--blue-color);
    color: var(--white-color);
}

.flotting-btn-item {
    position: relative;
}

.flotting-btn-item-popup {
    position: fixed;
    bottom: 30px;
    right: 50px;
    z-index: 999;
    display: none;
}

.flotting-btn-item-popup.open {
    display: block;
}

.flotting-btn-item-popup-in {
    background-color: var(--deep-blue-color);
    border-radius: 10px;
    width: 260px;
    padding: 10px;
}

.textblock {
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    padding: 8px;
}

.flotting-btn-form-in textarea {
    width: 100%;
    display: block;
    /* border: 1px solid rgba(255,255,255,0.5);
    border-radius: 10px;
    padding: 8px; */
    resize: none;
    outline: none;
    border: 0;
    color: var(--white-color);
    height: 280px;
}

.flotting-btn-form-in textarea::placeholder {
    color: var(--white-color);
}

.textblock {
    margin-bottom: 15px;
}

.flotting-btn-form-in button {
    width: 100%;
    display: block;
    padding: 8px 25px;
    font-size: 18px;
    font-weight: 600;
    font-family: var(--robotofonts);
    color: var(--white-color);
    background-color: var(--orange-color);
    border-radius: 40px;
    border: 0;
    outline: none;
}

.flotting-btn-item-popup-close {
    width: 50px;
    height: 50px;
    background-color: var(--white-color);
    border: 3px solid var(--yellow-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    margin-left: auto;
}

.flotting-btn-item-popup-close img {
    width: 20px;
}

.prfile-img-wpr {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
}

/* --slider-- */
.msn-img-sld-wpr .slick-track {
    display: flex !important;
}

.msn-img-sld-wpr .slick-slide {
    height: inherit !important;
}

.gives-sec-header .row {
    --bs-gutter-y: 20px;
}

/* width */
.textblock textarea::-webkit-scrollbar {
    width: 5px;
}

/* Track */
.textblock textarea::-webkit-scrollbar-track {
    box-shadow: none;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.2);
}

/* Handle */
.textblock textarea::-webkit-scrollbar-thumb {
    background: #0099CC;
    border-radius: 10px;
}

/* Handle on hover */
.textblock textarea::-webkit-scrollbar-thumb:hover {
    background: #0099CC;
}

.msn-img-sld-outer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.dashboard-header-left {
    display: flex;
    align-items: center;
}

.cmp-rsrce-part {
    position: relative;
    /* min-height: 100svh; */
    height: 100%;
}

.rsrce-btn-part.audio-player {
    display: flex;
    align-items: center;
}

.rsrce-btn-part.audio-player .audio-embaded {
    display: none;
}

.listen-audio-svg-wpr {
    width: 100px;
    margin-left: 15px;
}

.listen-audio-svg-wpr svg {
    width: 100%;
}

.audio-embaded-outer {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-30px);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.rsrce-btn-part.audio-player.active .audio-embaded-outer {
    opacity: 1;
    visibility: visible;
    transform: translateX(0px);
}

#chatBox {
    position: fixed;
    bottom: 30px;
    right: 20px;
    width: 320px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 999;
}
#chatBox.chatopen{
    display: block;
}
#chatHeader {
    background: var(--blue-color);
    color: white;
    padding: 10px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#closeChat {
    cursor: pointer;
    width: 25px;
    height: 25px;
}

.chatBody-outer {
   
    background: #f9f9f9;
    position: relative;
      padding: 10px 0px 10px 10px;
}

.chatBody {
    min-height: 250px;
    overflow-y: auto;
    font-family: sans-serif;
    max-height: 250px;
    padding-right: 10px;
}

/* width */
#chatBody::-webkit-scrollbar {
    width: 5px;
}

/* Track */
#chatBody::-webkit-scrollbar-track {
    box-shadow: none;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.2);
}

/* Handle */
#chatBody::-webkit-scrollbar-thumb {
    background: #008DE2;
    border-radius: 10px;
}

/* Handle on hover */
#chatBody::-webkit-scrollbar-thumb:hover {
    background: #008DE2;
}

.usermessage {
    margin-bottom: 10px;
    line-height: 1.4;
    word-wrap: break-word;
}

.usermessage.user {
    text-align: right;
    color: #333;
}

.buddy {
    text-align: left;
    color: #007bff;
}

#chatInputArea {
    display: flex;
    border-top: 1px solid #ddd;
    align-items: center;
}

#chatInput {
    flex: 1;
    border: none;
    padding: 10px;
    outline: none;
    height: 50px;
}

#sendBtn {
    border: none;
    background: var(--blue-color);
    color: white;
    padding: 0 15px;
    cursor: pointer;
    height: 50px;
    font-weight: 600;
}

/* Typing cursor animation */
.typing {
    border-right: 2px solid #007bff;
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
    animation: blink 0.7s step-end infinite;
}

@keyframes blink {

    from,
    to {
        border-color: transparent;
    }

    50% {
        border-color: #007bff;
    }
}

/* --- User Typing Indicator (3 dots) --- */
.typing-indicator {
    display: none;
    align-items: center;
    justify-content: flex-end;
    padding: 5px 10px;
    background-color: #f9f9f9;
    position: absolute;
    bottom: 0;
    right: 0;
}

.typing-indicator span {
    height: 8px;
    width: 8px;
    background-color: #007bff;
    border-radius: 50%;
    display: inline-block;
    margin: 0 2px;
    animation: bounce 1.4s infinite ease-in-out both;
}

.typing-indicator span:nth-child(1) {
    animation-delay: -0.32s;
}

.typing-indicator span:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes bounce {

    0%,
    80%,
    100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1);
    }
}
.create-my-own {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
}
.create-my-own.open{
    display: block;
}
.create-my-own-in{
    width: 100%;
    height: 100%;
    position: relative;
    padding: 60px 30px 30px;
    display: flex;
    align-items: flex-start;
    justify-content: center
}
.create-my-own-body {
    max-width: 600px;
    background-color: #2e71cd;
    border-radius: 30px;
    width: 100%;
    position: relative;
}
.create-my-own-body-top{
    padding: 20px;
}
.create-my-own-textarea-wpr{
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
}
.create-my-own-textarea-wpr textarea{
    height: 100px;
    border: 0;
    resize: none;
    color: var(--white-color);
}
.create-my-own-textarea-wpr textarea::placeholder{
    color: var(--white-color);
}
/* width */
.create-my-own-textarea-wpr textarea::-webkit-scrollbar {
    width: 5px;
}

/* Track */
.create-my-own-textarea-wpr textarea::-webkit-scrollbar-track {
    box-shadow: none;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.2);
}

/* Handle */
.create-my-own-textarea-wpr textarea::-webkit-scrollbar-thumb {
    background: #0099CC;
    border-radius: 10px;
}

/* Handle on hover */
.create-my-own-textarea-wpr textarea::-webkit-scrollbar-thumb:hover {
    background: #0099CC;
}
.won-submit{
    display: block;
    padding: 8px 25px;
    font-size: 18px;
    font-weight: 600;
    font-family:var(--robotofonts);
    color: var(--white-color);
    background-color: var(--orange-color);
    border-radius: 40px;
    border: 0;
    outline: none;
    min-width: 200px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.won-submit:hover{
    background-color: var(--blue-color);
    color: var(--white-color);
}
.create-my-own-textarea-wpr{
    margin-bottom: 15px;
}
.create-my-own-wpr-outer{
    /* padding: 5px 0 30px 20px; */
    padding: 20px 30px;
}
.own-body-close{
    width: 50px;
    height: 50px;
    background-color: var(--white-color);
    border: 3px solid var(--yellow-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    position: absolute;
    top: -55px;
    right: 0;
}
.create-my-own-item{
    padding-bottom: 20px;
}
.create-my-own-item .message-text-wpr{
    width: 100%;
    padding: 0;
}
.create-my-own-wpr{
    padding-right: 20px;
    max-height: 200px;
    overflow-y: auto;
    overflow-x: hidden;
}
.gives-top-list-item{
    position: relative;
}
.tooltips-wpr{
    position: absolute;
    width: 300px;
    background-color: var(--deep-blue-color);
    border-radius: 6px;
    /* left: calc(100% + 11px); */
    top: calc(100% + 15px);
    left: 0;
    z-index: 4;
    padding: 8px;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.gives-top-list-item:hover .tooltips-wpr {
    opacity: 1;
    visibility: visible;
}
.tooltips-wpr::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 15px;
    border-top: 10px solid transparent;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid var(--deep-blue-color);
}
.tooltips-wpr ul{
    padding: 0;
    margin: 0;
}
.tooltips-wpr ul li{
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--white-color);
    padding: 0 0 0 18px !important;
    position: relative;
}
.tooltips-wpr ul li:not(:last-child){
    margin-bottom: 5px !important;
}
.tooltips-wpr ul li::before{
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
    width: 10px;
    height: 10px;
    background: url(images/chk.svg) no-repeat center;
    background-size: 9px;
}
.msn-img-sld-outer .msn-img-sld-wpr,
.msn-img-sld-outer .msn-img-sld-wpr .slick-list,
.msn-img-sld-outer .msn-img-sld-wpr .slick-list .slick-track,
.msn-img-sld-outer .msn-img-sld-wpr .slick-list .msn-img-item,
.msn-img-sld-outer .msn-img-sld-wpr .slick-list .gives-image-wpr-outer {
    height: 100%;
}
.msn-img-sld-outer .msn-img-sld-wpr .slick-track{
    display: flex !important;
}
.msn-img-sld-outer .msn-img-sld-wpr .slick-list .gives-image-wpr-outer {
    position: relative;
}
.msn-img-sld-outer .msn-img-sld-wpr .slick-slide{
    height: inherit !important;
}
.monky-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
}
.mobile-monky{
    display: none;
}
.gives-image-wpr-outer .lifes-vd-img-wpr,.gives-image-wpr-outer .lifes-img-part {
    position: relative;
    height: 100%;
}
.bu-tols-wpr {
    background-color: var(--blue-color);
    border-radius: 16px;
    padding: 20px 20px;
    position: absolute;
    bottom: -81px;
    right: 0;
    /* max-width: fit-content; */
    width: 300px;
    display: none;
}
.bu-tols-wpr::before {
    content: '';
    position: absolute;
    top: -20px;
    right: 22px;
    border-top: 10px solid transparent;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid var(--blue-color);
}
.bu-tls-outer {
    position: relative;
}
.bu-tols-wpr p{
    font-size: 18px;
    font-weight: 500;
    color: var(--white-color);
}
.vdo-wpr-img-part{
    width: 100%;
    height: 100%;
}
.vdo-wpr-img-part img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* ========== responsive css =========== */



@media(min-width:1640px) {
    .champ-rsrce-wpr {
        max-height: 648px;
    }

    .chmp-rsrce-outer {
        height: calc(100% - 90px);
    }
}

@media(min-width:1025px) {}

@media(min-width:992px) {

    .landing-feel-form-wpr .row .col:nth-child(-n+6) .form-radio-wpr::after {
        opacity: 1;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1144px;
    }
}

@media (max-width: 1599px) {
    .gvs-lt-col {
        width: 60%;
    }

    .gvs-rt-col {
        width: 40%;
    }

    .msn-lt-col .gives-top-list li:not(:last-child) {
        margin-right: 9px;
    }

    .msn-lt-col .gives-top-list li {
        font-size: 14px;
    }

    .msn-rt-col .give-idea-top a {
        font-size: 26px;
        font-weight: 600;
        min-width: 283px;
    }

    .msn-lt-col .gives-top-list li span {
        width: 38px;
        height: 38px;
    }

    .my-lifes-header-part .gives-top-list li {
        font-size: 15px;
    }
}

@media(max-width:1399px) {
    .landing-feel-wpr .section-heading h1 {
        font-size: 52px;
    }

    .flotting-button-list {
        bottom: 50px;
        right: 30px;
    }

    .flotting-btn-item-popup {
        right: 30px;
    }

    .gives-sec-header .gives-top-list li:not(:last-child) {
        margin-right: 8px;
    }

    .gives-sec-header .gvs-lt-col {
        width: 66%;
    }

    .gives-sec-header .gvs-rt-col {
        width: 34%;
    }

    .gives-sec-header .give-idea-top a {
        font-size: 22px;
        min-width: 258px;
        padding: 7px 27px;
    }

    .gives-top-list li span {
        width: 35px;
        height: 35px;
    }

    .gives-sec-header .gives-top-list li {
        padding: 6px 14px 6px 6px;
        font-size: 16px
    }

    .msn-lt-col .gives-top-list li:not(:last-child) {
        margin-right: 7px;
    }

    .msn-lt-col .gives-top-list li {
        font-size: 15px;
    }

    .msn-rt-col {
        width: 35%;
    }

    .msn-lt-col {
        width: 65%;
    }

    .mission-sec-header .gives-top-list li {
        margin-bottom: 10px;
    }

    .mission-sec-header {
        margin-bottom: 14px;
    }

    .mission-sec-header .row {
        align-items: flex-start;
    }

    .lifes-rt-col {
        width: 40%;
    }

    .gives-left-col {
        width: 60%;
    }

    .gives-right-col {
        width: 40%;
    }

    .my-lifes-header-part .gives-top-list li {
        font-size: 15px;
    }

    .gives-top-list li:not(:last-child) {
        margin-right: 7px;
    }
    #chatBox {
    bottom: 30px;
    right: 30px;
}
}

@media(max-width:1199px) {
    .common-button {
        font-size: 22px;
        padding: 21px 40px;
        min-width: 223px;
    }

    .landing-main-page-wrapper {
        max-width: 750px;
        margin: 0 auto;
    }

    .landing-main-image {
        max-width: 656px;
        margin: 0 0 -8px;
    }

    .landing-feel-wpr .section-heading h1 {
        font-size: 46px;
    }

    .landing-feel-wpr .section-heading {
        margin-bottom: 40px;
    }

    .landing-feel-btn-wpr {
        padding-top: 40px;
    }

    .gives-left-col {
        width: 57%;
    }

    .lifes-rt-col {
        width: 43%;
    }

    .my-lifes-header-part .gives-top-list li {
        margin-bottom: 0;
    }

    .my-lifes-header-part .gives-top-list li:not(:last-child) {
        margin-right: 9px;
    }

    .my-lifes-header-part .gives-top-list li span {
        width: 35px;
        height: 35px;
    }

    .my-lifes-header-part .gives-top-list li {
        font-size: 15px;
    }

    .lifes-rt-col,
    .lifes-lt-col {
        width: 100%;
    }

    /* .vdoplaybuton {
        top: 23%;
        width: 45px;
        height: 45px;
    } */
    .lifes-vdo-lt-col {
        width: 100%;
    }

    .champ-vdo-img-wpr .vdoplaybuton {
        width: 70px;
        height: 70px;
    }

    .chmp-text-part {
        bottom: 30px;
        left: 40px;
    }

    .chmp-rsrce-outer {
        padding: 35px 35px 35px 30px;
    }

    .gives-sec-header.mission-sec-header .gives-top-list li {
        margin-bottom: 10px;
    }

    .my-gvs-sec .gives-left-col {
        width: 56%;
    }

    .my-gvs-sec .give-idea-btn-wpr a {
        font-size: 25px;
        padding: 16px 30px;
    }

    .mission-sec-header.gives-sec-header {
        margin-bottom: 20px;
    }

    .my-gvs-sec .gives-left-col,
    .my-gvs-sec .gives-right-col {
        width: 50%;
    }

    .mission-sec-header .row {
        align-items: flex-start;
    }

    .msn-rt-col,
    .msn-lt-col {
        width: 50%;
    }

    .lifes-lt-in {
        max-width: 562px;
        margin-left: 0;
    }

    .landing-main-page-wrapper {
        padding-top: 0;
    }
}

@media(max-width:1024px) {}


@media (max-width: 991px) {

    /* .landing-main-section{
    display: flex;
    align-items: flex-end;
    padding-top: 50px;
} */
    .landing-main-image {
        max-width: 656px;
        margin: 0;
    }

    .landing-main-page-wrapper {
        padding-top: 50px;
    }

    .landing-feel-form-wpr .row .col:nth-child(5) .form-radio-wpr::before,
    .landing-feel-form-wpr .row .col:nth-child(10) .form-radio-wpr::before {
        opacity: 0;
    }

    .landing-feel-form-wpr .row .col:nth-child(6) .form-radio-wpr::before,
    .landing-feel-form-wpr .row .col:nth-child(12) .form-radio-wpr::before {
        opacity: 1;
    }

    .landing-feel-form-wpr .row .col .form-radio-wpr::after {
        opacity: 1;
    }

    .landing-feel-form-wpr .row .col:nth-child(11) .form-radio-wpr::after,
    .landing-feel-form-wpr .row .col:nth-child(12) .form-radio-wpr::after {
        opacity: 0;
    }

    .landing-feel-wpr .section-heading h1 {
        font-size: 36px;
    }

    .landing-feel-wpr .section-heading {
        margin-bottom: 30px;
    }

    .landing-feel-btn-wpr input[type="submit"] {
        font-size: 22px;
        height: 60px;
        min-width: 209px;
    }

    .landing-feel-btn-wpr {
        padding-top: 30px;
    }

    .landing-feel-section {
        padding: 50px 0;
    }

    .dashboard-header-left {
        display: none;
    }


    .dashboard-header-logo-wpr {
        display: block;
    }

    .heading-wpr-for-mobile {
        display: flex;
        align-items: center;
    }

    .dashboard-header {
        width: 100%;
    }

    .dashboard-header-right {
        display: flex;
        align-items: center;
    }

    .dashboard-menu-button {
        display: block;
        margin-left: 15px;
    }

    .side-bar-button {
        display: block;
        position: absolute;
        top: 35px;
        z-index: 2;
        right: 40px;
    }

    .dashboard-header-right .header-profile {
        width: 55px;
        height: 55px;
    }

    .side-bar {
        left: auto;
        right: -100%;
        z-index: 999;
        padding: 20px;
    }

    .side-bar.menu-open {
        right: 0;
    }

    .side-bar-in .home-logo {
        display: none;
    }

    .side-bar-in {
        /* height: calc(100% - 77px); */
        padding-top: 80px;
    }

    .dashboard-main-wpr {
        padding: 114px 30px 30px;
    }

    .dashboard-header-left h1,
    .heading-wpr-for-mobile .page-heading {
        font-size: 28px;
    }

    .flotting-button-list {
        bottom: 30px;
        right: 30px;
    }

    .flotting-btn-item-popup {
        right: 30px;
    }

    .side-bar-menu-wpr {
        /* height: calc(100% - 141px); */
        max-height: 100%;
    }

    .champ-vdo-img-wpr .vdoplaybuton {
        width: 60px;
        height: 60px;
    }

    .dashboard-main-wpr.champ-dashboard {
        padding: 100px 30px 30px 30px;
    }

    .dashboard-main-wpr.champ-resource-dashboard {
        padding: 102px 30px 30px 30px;
    }

    .my-gvs-sec .give-idea-btn-wpr a {
        font-size: 23px;
        padding: 13px 30px;
    }

    .landing-main-page-wrapper {

        justify-content: flex-end;
    }

    .mission-btm-part .give-idea-btn-wpr a {
        font-size: 20px;
        padding: 18px 30px;
    }

    .dashboard-header-left h1,
    .heading-wpr-for-mobile .page-heading {
        margin: 15px 0 0px 10px;
    }
    .mobile-monky {
        display: block;
        margin-right: 15px;
        margin-left: 11px;
        width: 55px;
        height: 55px;
    }
    .desktop-mnky{
        display: none;
    }
    .video-thumm-wpr {
        top: 0;
        left: 0;
    }
    .landing-main-top{
        margin-bottom: 300px;
    }

.landing-feel-section {
    height: 100vh;
}
}

@media (max-width: 767px) {

    .common-button {
        font-size: 18px;
        padding: 16px 40px;
        min-width: 183px;
    }

    .landing-main-page-wrapper ul li:not(:first-child) {
        margin-left: 15px;
    }

    .landing-logo {
        margin: 0 auto 29px;
    }

    .landing-feel-wpr .section-heading h1 {
        font-size: 32px;
    }

    .landing-feel-form-wpr .row .col:nth-child(5) .form-radio-wpr::before,
    .landing-feel-form-wpr .row .col:nth-child(10) .form-radio-wpr::before {
        opacity: 1;
    }

    .landing-feel-form-wpr .row .col:nth-child(4) .form-radio-wpr::before,
    .landing-feel-form-wpr .row .col:nth-child(8) .form-radio-wpr::before,
    .landing-feel-form-wpr .row .col:nth-child(12) .form-radio-wpr::before {
        opacity: 0;
    }

    .landing-feel-form-wpr .row .col:nth-child(9) .form-radio-wpr::after,
    .landing-feel-form-wpr .row .col:nth-child(10) .form-radio-wpr::after {
        opacity: 0;
    }

    .dashboard-home-left-col {
        width: 100%;
        margin-bottom: 24px;
    }

    .dashboard-home-right-col {
        width: 100%;
    }

    /* .video-wpr {
        padding-top: 65%;
    } */

    .flotting-button-list li a {
        width: 50px;
        height: 50px;
        border-width: 2px;
    }

    .flotting-button-list li:first-child img {
        width: 50px;
    }

    .flotting-button-list li:nth-child(2) img {
        width: 20px;
    }

    /* .flotting-button-list li:nth-child(3) img {
        width: 40px;
    } */

    .flotting-button-list li:nth-child(3) img {
        width: 50px;
    }

    .lifes-rt-col,
    .lifes-lt-col {
        width: 100%;
    }

    .gives-left-in {
        margin-bottom: 15px;
    }

    .lifes-lt-in {
        max-width: 562px;
        margin-left: 0;
    }

    .champion-header .gives-top-list li {
        margin-bottom: 8px;
        font-size: 18px;
    }

    .champion-header .gives-top-list li span {
        width: 35px;
        height: 35px;
    }

    .chmp-text-part p {
        font-size: 25px;
    }

    .chmp-text-part {
        bottom: 15px;
        left: 25px;
    }

    .gives-top-list li:not(:last-child) {
        margin-right: 10px;
    }

    .chmp-rsrce-outer {
        padding: 25px 20px 25px 20px;
    }

    .chmp-rsrce-features {
        padding: 24px 0;
    }

    .my-gvs-sec .gives-left-col,
    .my-gvs-sec .gives-right-col,
    .mission-btm-part .gives-left-col,
    .mission-btm-part .gives-right-col {
        width: 100%;
    }

    .give-idea-top a img {
        width: 45px;
        margin-right: 12px;
    }

    .gives-sec-header .give-idea-top a {
        font-size: 20px;
        min-width: 225px;
        padding: 5px 20px;
    }

    .gvs-lt-col .gives-left-in {
        margin-bottom: 0px;
    }

    .mission-sec-header.gives-sec-header {
        margin-bottom: 15px;
    }

    .msn-lt-col,
    .msn-rt-col {

        width: 100%;
    }

    .mission-sec-header .give-idea-top {
        justify-content: flex-start;
    }

    .my-gvs-sec .gives-image-wpr-outer {
        position: relative;
    }

    .monky-float.flotting-button-list li:last-child img {
        width: 40px;
    }

    .msn-img-sld-outer {
        position: relative;
    }

    .mission-sec-header .gives-left-in {
        margin-bottom: 0px;
    }

    .mission-btm-part .give-idea-btn-wpr a {
        font-size: 21px;
    }
    .tooltips-wpr {
        width: 200px;
    }
}

@media (max-width: 575px) {
    .landing-feel-wpr .section-heading h1 {
        font-size: 29px;
    }

    .landing-feel-form-wpr .row-cols-2>* {
        flex: 0 0 auto;
        width: 25%;
    }

    .landing-feel-form-wpr .row .col:nth-child(4) .form-radio-wpr::before,
    .landing-feel-form-wpr .row .col:nth-child(8) .form-radio-wpr::before {
        opacity: 1;
    }

    .landing-feel-form-wpr .row .col:nth-child(3) .form-radio-wpr::before,
    .landing-feel-form-wpr .row .col:nth-child(6) .form-radio-wpr::before,
    .landing-feel-form-wpr .row .col:nth-child(9) .form-radio-wpr::before {
        opacity: 0;
    }

    .landing-feel-form-wpr .row .col:nth-child(9) .form-radio-wpr::after {
        opacity: 1;
    }

    .form-radio-wpr img {
        width: 40px;
    }

    .landing-feel-btn-wpr input[type="submit"] {
        font-size: 18px;
        height: 50px;
        min-width: 1px;
        width: 100%;
    }

    .video-wpr .video-play-button {
        width: 50px;
        height: 50px;
    }

    .video-wpr .video-play-button img {
        width: 20px;
    }

    .video-wpr {
        border-radius: 10px;
    }

    .crew-wpr {
        border-radius: 10px;
        padding: 15px 15px 15px;
    }

    .crew-wpr h2 {
        font-size: 20px;
    }

    .message-section {
        padding: 20px 15px 20px 20px;
        border-radius: 10px;
    }

    .dashboard-main-wpr {
        padding: 114px 15px 15px;
    }

    .dashboard-header-left h1,
    .heading-wpr-for-mobile .page-heading {
        font-size: 22px;
    }

    .dashboard-header-left p,
    .heading-wpr-for-mobile p {
        font-size: 15px;
    }

    .flotting-button-list {
        bottom: 20px;
        right: 15px;
    }

    .flotting-btn-item-popup {
        right: 15px;
    }

    .lifes-vd-row {
        --bs-gutter-x: 24px;

    }

    .champ-vdo-img-wpr .vdoplaybuton {
        width: 45px;
        height: 45px;
    }

    .rsrce-text-part {
        width: calc(100% - 65px);
        padding-left: 10px;
    }

    .rsrce-img-part {
        width: 65px;
        height: 65px;
    }

    .champ-rsrce-wpr {
        padding-right: 12px;
    }

    .gives-sec-header .give-idea-top {
        justify-content: flex-start;
    }

    .gives-sec-header .gvs-lt-col,
    .gives-sec-header .gvs-rt-col {
        width: 100%;
    }

    .give-idea-message-img-10 {
        width: 45px;
        height: 45px;
        right: 0px;
    }

    .message-tag-wpr i {
        width: 25px;
        height: 25px;
        padding: 8px;
    }

    .message-tag-wpr i {
        padding: 4px;
    }
#chatBox {
    right: 15px;
    width: 275px;
}
#chatButton img {
    width: 100%;
}
.create-my-own-in{
    padding: 60px 15px 20px;
}
.own-body-close {
    width: 35px;
    height: 35px;
    top: -35px;
}
.create-my-own-body {
    border-radius: 15px;
}
.create-my-own-body-top {
    padding: 10px 10px 20px;
}
.create-my-own-textarea-wpr {
    padding: 10px;
    border-radius: 10px;
}
.create-my-own-wpr-outer {
    padding: 20px 10px 20px 10px;
}
.bu-tols-wpr {
    width: 240px;
   
}
}

@media (max-width: 479px) {
    .landing-main-page-wrapper ul {
        flex-direction: column;
    }

    .landing-main-page-wrapper ul li:not(:first-child) {
        margin: 10px 0 0;
    }

    .landing-feel-form-wpr .row-cols-2>* {
        flex: 0 0 auto;
        width: 33.33%;
    }

    .flotting-button-list {
        bottom: 15px;
        right: 15px;
    }

    .flotting-btn-item-popup {
        right: 15px;
    }

    .my-lifes-header-part .gives-top-list li {
        margin-bottom: 10px;
    }

    .lifes-lt-col-wpr ul li>i {
        width: 30px;
        height: 30px;
    }

    .lifes-lt-col-wpr ul {
        width: 30px;

    }

    .life-vd-outer {
        width: calc(100% - 30px);
    }

    .vdoplaybuton {
        width: 45px;
        height: 45px;
    }

    .lifes-text-part {
        padding: 18px 0px 5px;
    }

    .vdo-logo-wpr {
        width: 40px;
        height: 40px;
    }

    .life-search-wpr::after {
        top: 14px;

    }

    .life-search-wpr input[type="text"] {

        height: 49px;
    }

    .champ-vdo-img-wpr .vdoplaybuton {
        width: 40px;
        height: 40px;
    }

    .chmp-text-part p {
        font-size: 20px;
    }

    .chmp-text-part {
        bottom: 10px;
        left: 20px;
    }

    .champion-header .gives-top-list li {
        margin-bottom: 8px;
        font-size: 16px;
        padding: 6px 13px 6px 6px;
    }

    .champion-header .gives-top-list li span {
        width: 30px;
        height: 30px;
        margin-right: 6px;
    }

    .gives-top-list li:not(:last-child) {
        margin-right: 5px;
    }

    .champ-img-part:after,
    .champ-img-part {
        border-radius: 10px;
    }

    .champ-vdo-img-wpr .vdoplaybuton {
        width: 35px;
        height: 35px;
    }

    .chmp-text-part p {
        font-size: 20px;
    }

    .chmp-text-part {
        bottom: 10px;
        left: 19px;
    }

    .give-idea-message-img-10 {
        top: -23px;
    }

    .gives-sec-header .give-idea-top a {
        font-size: 20px;
        min-width: 185px;
        padding: 5px 13px;
    }

    .give-idea-top a img {
        width: 34px;
        margin-right: 7px;
    }

    .gives-image-text-wpr {
        bottom: 10px;
        right: 15px;
    }

    .gives-image-text-wpr span {
        font-size: 28px;
    }
    .tooltips-wpr {
        width: 150px;
    }
    .landing-main-top {
        margin-bottom: 150px;
    }
    .mission-sec-header .give-idea-top {
        margin-bottom: 10px;
    }
    .lifes-lt-col .gives-left-in {
        margin-bottom: 0px;
    }
}

@media (max-width: 380px) {

    /* .landing-feel-form-wpr .row-cols-2>* {
    flex: 0 0 auto;
    width: 50%;
} */
    .form-radio-wpr img {
        width: 35px;
    }
}