body {
    margin: 0 auto;
    font-size: 16px;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    color: #000;
    background: #F4F4F4;
    text-rendering: geometricPrecision;
}

::selection {
    background-color: #2196f3;
    color: #fff;

}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    color: #000;
}

a {
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    outline: 0;
    color: #000;
    text-decoration: none;
}

a:hover {
    outline: none;
    color: #1d1d1d;
    text-decoration: none;
}

/* input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 9999s ease-in-out 0s;
    -webkit-text-fill-color: #000;
} */


/* Change autocomplete styles in WebKit */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    border: 0px solid #fff;
    -webkit-text-fill-color: #000;
    -webkit-box-shadow: 0 0 0px 1000px #fff inset;
    transition: background-color 5000s ease-in-out 0s;
}

/* Inputs */
select {
    color: #9e9e9e;
}

option:not(:first-of-type) {
    color: black;
}

.wow {
    visibility: hidden;
}

.clear {
    clear: both;
}

img:not(table img) {
    max-width: 100%;
}

iframe {
    border: 0;
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

p {
	font-size: 16px;
	color: #8A8A8A;
	line-height: normal;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

figure {
    margin: 0 auto;
    display: block;
    text-align: center;
}

body.scroll-off {
    overflow: hidden;
}

.section-padding {
    padding-top: 60px;
    padding-bottom: 60px;
}

.section-heading {
    color: #000000;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 0;
}

.font-400 {
    font-weight: 400;
}

.font-500 {
    font-weight: 500;
}

.form-control::-webkit-input-placeholder {
    color: #9C9C9C;
}

.form-control::-moz-placeholder {
    color: #9C9C9C;
}

.form-control:-ms-input-placeholder {
    color: #9C9C9C;
}

.form-control:-moz-placeholder {
    color: #9C9C9C;
}

/*==================== User Dropdown Start ===================*/

.user_dropdown {
    display: inline-block;
}

.user_dropdown>a {
    color: #494949;
    padding-right: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.user_dropdown img {
    height: 35px;
    width: 35px;
    min-height: 35px;
    min-width: 35px;
    border-radius: 50%;
}

.user_dropdown .dropdown-menu.show {
    display: block;
    left: auto;
    width: 160px;
    overflow-x: hidden;
    padding-bottom: 0;
    margin-top: 10px;
    opacity: 1;
    visibility: visible;
    background-color: #fff;
    color: rgba(255, 255, 255, 0.6);
    right: 1px;
    box-shadow: 0 5px 12px rgba(60, 64, 67, 0.15);
    font-size: 12px;
    border-radius: 9px;
    border: 0;
}

.user_name>div {
    white-space: nowrap;
    max-width: calc(160px - 10px);
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    vertical-align: middle;
    color: #494949;
    text-transform: capitalize;
    font-size: 15px;
}

.user_name {
    padding: 0 10px;
    border-bottom: 1px solid #e9ecef;
}

.user_name small {
    color: #a2a2a2;
    text-transform: lowercase;
}

.user_name .user_email {
    margin-top: -10px;
}

.user_dropdown ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.user_dropdown ul li {
    display: block;
}

.user_dropdown ul li a {
    color: #494949;
    text-transform: capitalize;
    font-size: 14px;
    padding: 5px 10px;
    /* padding-left: 20px; */
    display: block;
    border-bottom: 1px solid #e9ecef;
}

.user_dropdown ul li a i {
    margin-right: 5px;
}

.user_dropdown ul li a:hover {
    color: #95FBD6;
}


/*==================== User Dropdown End ===================*/


/* *** loader css start ****  */

.loader-wrapper {
    background: rgba(0, 0, 0, 0.90);
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 9999;
    top: 0;
    left: 0;
}

.loader {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #5e5e5e;
    box-shadow: 0 0 6px 2px rgba(0, 0, 0, 0.1);
}

.loader:before {
    content: "";
    width: 100px;
    height: 100px;
    border: 5px solid rgba(0, 0, 0, 0.05);
    border-top-color: #95FBD6;
    border-radius: 50%;
    animation: spin 1.5s infinite linear;
    display: block;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loader img {
    width: 60%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}


/* *** loader css end  ****  */


/*==================== Header Start ===================*/

#header {
    /* height: 85px; */
    display: flex;
    align-items: center;
    z-index: 10;
    position: relative;
    /* box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05); */
    /* transition: all 0.5s ease; */
    padding: 15px;
    padding-bottom: 0;
}

.hero-section, .page-section {
	padding: 15px;
	position: relative;
	padding-top: 0;
	margin: 0 0 56px;
}

.header-inner {
    padding: 30px 0;
    background-color: #111;
    width: 100%;
    flex: 1;
    border-radius: 42px 42px 0 0;
}

.hero-inner, .page-inner {
    border-radius: 0 0 60px 60px;
    padding: 30px 0;
    background-color: #111;
    padding-bottom: 90px;
    position: relative;
}

#header.is-sticky .header-inner {
    border-radius: 60px;
    padding: 2px 0;
}

#header.is-sticky {
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    transform: translateY(-100%);
    /* box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1); */
    height: 85px;
    /* transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease; */
}

#header.is-sticky.awake {
    transform: translateY(0%);
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
}

#header.is-sticky.inner_pages_head,
#header.inner_pages_head {
    height: 65px;
}

#header>.container-fluid>.navbar {
    padding-left: 0;
    padding-right: 0;
}

#header .navbar-brand img {
    max-height: 60px;
    width: auto;
}

#header .navbar-expand-lg .navbar-nav .nav-item {
    margin-right: 40px;
}

#header .navbar-expand-lg .navbar-nav .nav-item:last-child {
    margin-right: 0px;
}

#header .nav-link {
    position: relative;
    padding: 0;
    color: #8A8A8A;
}



#header .nav-link.cta_btn::before {
    display: none
}



#header .navbar-expand-lg .navbar-nav .nav-link:hover {
    color: #95FBD6;
}

#header .navbar-expand-lg .navbar-nav .nav-item.active .nav-link {
    color: #95FBD6;
    font-weight: 600;
}

#header .navbar-expand-lg .navbar-nav .nav-link:hover:before,
#header .navbar-expand-lg .navbar-nav .nav-item.active .nav-link:before {
    color: #95FBD6;
    transform: scaleX(1);
}

#header .navbar-expand-lg .navbar-nav .nav-link::before {
    left: 0;
    bottom: -6px;
    width: 26px;
    height: 2px;
    background: #95FBD6;
    transform: scaleX(0);
    content: "";
    position: absolute;
    transition: transform 0.5s ease;
    right: 0;
    margin: 0 auto;
    border-bottom: 6px;
}

#header .dropdown-toggle::after {
    border: none;
    /* height: 8px;
  width: 11px; */
    /* background-image: url(../img/drop_arrow.png); */
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    margin-top: 3px;
}

#header .navbar-expand-lg .extra_nav .navbar-nav .nav-item {
    margin-right: 10px;
}


#header .extra_nav .nav-item:list-child {
    margin-right: 0px;
}


#header .extra_btn:hover {
    background-color: rgba(255, 255, 255, 0.24);
}

#header .header_filled_btn {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 15px;
    padding-left: 15px !important;
    padding-right: 15px !important;
    background-color: #95FBD6;
    color: #fff;
    border: 1px solid #95FBD6;
}

#header .header_filled_btn:hover {
    background-color: #fff;
    color: #95FBD6;
}

#header .header_border_btn {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 15px;
    padding-left: 15px !important;
    padding-right: 15px !important;
    background-color: #fff;
    color: #95FBD6;
    border: 1px solid #95FBD6;
}

#header .header_border_btn:hover {
    background-color: #95FBD6;
    color: #fff !important;
}

.header_border_btn:before,
.header_filled_btn:before {
    display: none;
}

#header .flag_ico {
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
}

#header .navbar-expand-lg .navbar-nav .nav-link.lang_drop {
    padding-left: 32px;
    padding-right: 5px;
    width: auto;
    font-weight: 400;
    color: #000;
}


#header .navbar-expand-lg .navbar-nav .nav-link.lang_drop img {
    width: 21px;
    height: auto;
    vertical-align: text-bottom;
}

#header .for_mobile {
    display: none;
}

#header .for_desktop {
    display: block;
}

#header .dropdown-item {
    font-weight: 300;
}


/*#header .dropdown-item:hover {
    background-color: #30383d;
    color: rgba(255,255,255,0.60);
}*/

.langugae_filter {
    position: relative;
}

.lang_dropdown {
    display: none;
    position: absolute;
    top: 100%;
    min-width: 100px;
    background-color: #fff;
    color: rgba(255, 255, 255, 0.6);
    right: 1px;
    box-shadow: 0 5px 12px rgba(60, 64, 67, 0.15);
    font-size: 12px;
    border-radius: 9px;
    border: 0;
    margin: 0;
    padding: 4px 11px 6px 10px;
}

.lang_country {
    position: relative;
    cursor: pointer;
}

.dropdown-toggle.lang_drop {
    border: 0;
    background: transparent;
}

#header .navbar-expand-lg .navbar-nav .currency-filter .nav-link.lang_drop {
    padding: 8px 0 8px 36px;
}

#header .navbar-expand-lg .navbar-nav .nav-link.lang_drop {
    padding: 8px 0 8px 36px;
    color: #8B96A5;
}

.lang_country {
    position: relative;
    padding: 5px 0px 5px 34px;
    color: #494949;
    border-bottom: 1px solid #e9e9e9;
}

.lang_country .flag_ico img {
    max-width: 19px;
}

.lang_country:last-child {
    border-bottom: 0;
}

.lang_country:hover {
    color: #95FBD6;
    background-color: transparent;
}


.navbar-brand {
    font-size: 0;
    margin: 0 auto 0 0;
}

/* 
.langugae_filter:hover .lang_dropdown {
    display: block;
} */
/*==================== Header End ===================*/



/*==================== Footer login Signup Section ===================*/

.footer-logsign-link {
    position: relative;
}

.footer-logsign-link:after,
.footer-logsign-link:before {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: 50%;
    z-index: -1;
}

.footer-logsign-link:before {
    background-color: #df1f26;
    left: 0;
}

.footer-logsign-link:after {
    background-color: #ec2027;
    right: 0;
}

.footer-signin-link a,
.footer-signup-link a {
    height: 150px;
    align-items: center;
    padding-left: 50px;
    display: flex;
    flex-wrap: wrap;
    padding-right: 10px;
}

.footer-signup-link a {
    background-color: #df1f26;
    padding-left: 0px;
}

.footer-signin-link a {
    background-color: #ec2027;
}

.footer-signin-link a span,
.footer-signup-link a span {
    color: #fff;
    font-size: 36px;
    width: 100%;
}

.footer-signin-link a p,
.footer-signup-link a p {
    color: #fff;
    font-size: 15px;
    width: 100%;
    margin-bottom: 0;
}

.footer-signup-link a span.footer-link-arrow,
.footer-signin-link a span.footer-link-arrow {
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    position: absolute;
    border-radius: 50%;
    background-color: #d42027;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 23px;
    transition: 0.5s all;
}

.footer-signup-link a:hover span.footer-link-arrow,
.footer-signin-link a:hover span.footer-link-arrow {
    background-color: #fff;
    color: #d42027;
}


/*==================== Footer login Signup Section ===================*/


/*==================== Footer ===================*/

.footer-block figure {
    margin: 0 0 30px;
    display: inline-block;
    max-width: 219px;
}

.cts_no {
    font-size: 15px;
    padding: 0 80px 0 0;
}

.cts_no p {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
    font-weight: 300;
}

.copyright {
	padding: 18px 0;
	border-top: 1px solid #8A8A8A;
	color: #fff;
	font-size: 14px;
	margin-top: 30px;
    font-weight: 300;
	text-align: center;
}
.newsletter-form .form-control {
    height: 45px;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.3);
    font-weight: 400;
    background: transparent;
    border: 0;
    border-radius: 3px;
    padding-right: 40px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.relative-box {
    position: relative;
    top: 7px;
}

.relative-box .subscribe-btn {
    position: absolute;
    top: 0;
    right: 0;
    color: #827e7e;
    height: 45px;
    font-size: 20px;
    background: no-repeat;
}

.relative-box .subscribe-btn:hover {
    color: #d42027;
}

footer h6 {
    font-size: 17px;
    color: #000;
    margin: 0 0 32px;
    position: relative;
}

ul.footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

ul.footer-links li {
    padding: 0;
    list-style: none;
    margin-bottom: 17px;
}

ul.footer-links li a {
    font-size: 17px;
    font-weight: 400;
    color:#fff;
}

ul.footer-links li a:hover {
    color: #95FBD6;
}

ul.footer-links.socialize li a {
    position: relative;
    padding-left: 25px;
}

ul.footer-links.socialize li a i {
    position: absolute;
    left: -9px;
    width: 30px;
    text-align: center;
    top: -4px;
    color: #959595;
    font-size: 17px;
}

.footer_wrapper {
	background: #111;
	padding: 55px 0 0;
	margin-top: 40px;
}
footer h6 {
	color: #FFF;
	font-family: Merriweather;
	font-size: 25px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	background-image: url(../img/dotline.png);
	background-size: auto;
	background-repeat: no-repeat;
	background-position: 0 bottom;
	padding: 0 0 35px;
}
.company-intro {
	color: #FFF;
	font-size: 18px;
    max-width: 520px;
	font-style: normal;
	font-weight: 400;
	line-height: 29px;
}

.subscribe_text {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.5);
    font-weight: 400;
}


.navbar {
    padding: 0;
    justify-content: right;
}


#top-button {
    display: inline-block;
    transition: background-color .3s,
        opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

#top-button.show {
    opacity: 1;
    visibility: visible;
}

.back_top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    background-color: #2196f3;
    display: none;
    border: #2196f3 1px solid;
    z-index: 1;
    border-radius: 4px
}

.back_top span {
    position: relative;
    display: block;
    color: #fff;
    width: 100%;
    height: 100%;
}

.back_top span svg {
    width: 22px;
    height: 21px;
    position: absolute;
    left: 0;
    margin: 0 auto;
    right: 0;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
}

.back_top:hover {
    border-color: #2196f3;
    color: #2196f3;
    background-color: #fff;
}

.back_top:hover span {
    color: #2196f3;
}


/*==================== Footer ===================*/

#header .navbar-expand-lg .navbar-nav .nav-item.dropdown .nav-link {
    padding-right: 25px;
}

.mobiledrop {
    position: absolute;
    right: 0px;
    top: 0;
    width: 24px;
    height: 24px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background-color: transparent;
}

/* Custom Select */

.custom_checkbox input[type="checkbox"],
.custom_checkbox input[type="radio"] {
    height: 21px;
    width: 21px;
    min-width: 21px;
    margin: 0;
    padding: 0;
    opacity: 1;
    appearance: none;
    border: 2px solid #d0d0d0;
    border-radius: 5px;
    background: transparent;
    position: relative;
    margin-right: 10px;
    cursor: pointer;
}

.custom_checkbox input[type="checkbox"]:checked,
.custom_checkbox input[type="radio"]:checked {
    border: 2px solid #1295d6;
    background: #1295d6;
}

.custom_checkbox input[type="checkbox"]:checked::before,
.custom_checkbox input[type="radio"]:checked::before {
    content: "\f00c";
    height: 100%;
    color: #fff;
    font-family: "Font-awesome-5-pro";
    position: absolute;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.custom_checkbox label {
    color: #555 !important;
}


/* Custom Radio */
.custom_radio [type="radio"]:checked,
.custom_radio [type="radio"]:not(:checked) {
    position: absolute;
    /* left: -9999px; */
    appearance: none;
}

.custom_radio [type="radio"]:checked+label,
.custom_radio [type="radio"]:not(:checked)+label {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #666;
}

.custom_radio [type="radio"]:checked+label:before,
.custom_radio [type="radio"]:not(:checked)+label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #b5b5b5;
    border-radius: 100%;
    background: #fff;
}

.custom_radio [type="radio"]:checked+label::after,
.custom_radio [type="radio"]:not(:checked)+label::after {
    content: '';
    width: 10px;
    height: 10px;
    background: #F87DA9;
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.custom_radio [type="radio"]:not(:checked)+label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.custom_radio [type="radio"]:checked+label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.form-control {
    height: 45px;
    font-size: 16px;
    color: rgb(66 66 66 / 60%);
    font-weight: 400;
    background: transparent;
    border-radius: 6px;
    border: 1px solid #B1B1B1;
    padding: 15px 25px;
}

.form-control:focus {
    box-shadow: none;
}

.btn-primary {
    background-color: #2196F3;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    padding: 12px 30px;
    border: 1px solid #2196F3;
}

.btn-primary:hover {
    color: #2196F3;
    background-color: transparent;
    border: 1px solid #2196F3;
}

.custom_select_block .ms-dd .ms-dd-header {
    height: 45px;
    font-size: 16px;
    color: rgb(66 66 66 / 60%);
    font-weight: 400;
    background: transparent;
    border-radius: 6px;
    border: 1px solid #B1B1B1;
    overflow: hidden;
    width: 100%;
}

.custom_select_block .ms-dd .ms-dd-header .option-selected {
    height: 45px;
    padding: 10px 25px;
    width: 100%;
}

.custom_select_block .ms-dd .ms-list-option.option-selected,
.ms-dd .ms-optgroup ul .ms-list-option.option-selected {
    background: #ffffff;
}

.custom_select_block .ms-dd {
    width: 100%;
}

.custom_select_block .ms-dd .ms-dd-arrow {
    margin-top: -5px;
    right: 25px;
}


/* Select2 */



.floating-label {
    font-size: 16px;
    font-weight: 400;
    color: #475F7B;
    opacity: 1;
    top: 16px;
    left: 20px;
    pointer-events: none;
    position: absolute;
    transition: 240ms;
    margin-bottom: 0;
    z-index: 1;
}

.floating-diff .floating-label {
    opacity: 0;
}

.floating-diff.focused .floating-label {
    opacity: 1;
}

.form-group.focused .floating-label {
    opacity: 1;
    color: #7b7f82;
    top: 4px;
    left: 19px;
    font-size: 12px;
}

.form-group.focused select.form-control {
    padding-top: 21px;
}

.float-checkradio {
    background-color: #FFF;
    border: 1px solid #DFE3E7;
    border-radius: .267rem;
    padding: 8px 19px;
    transition: 0.3s;
    min-height: 55px;
}

.float-checkradio.focused {
    padding-top: 21px;
}

/*--------select2-css----*/
.select2Part .floating-label {
    opacity: 0;
}

.select2Part.focused .floating-label {
    opacity: 1;
}

.select2multiple .floating-label {
    opacity: 1;
}

.floating-group.focused .select2-container--default .select2-selection--multiple .select2-selection__rendered {
    padding-bottom: 7px;
    margin: 0;
    padding-top: 17px;
    padding-left: 0px;
}


.select2-container--default .select2-selection--multiple .select2-selection__rendered:before {
    border: none;
    content: '';
    background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxOS4wLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9Ii00NzMgMjc3IDEyIDgiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgLTQ3MyAyNzcgMTIgODsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4NCgkuc3Qwe2ZpbGw6IzhBOTNBNjt9DQo8L3N0eWxlPg0KPHBhdGggY2xhc3M9InN0MCIgZD0iTS00NzEuNiwyNzcuM2w0LjYsNC42bDQuNi00LjZsMS40LDEuNGwtNiw2bC02LTZMLTQ3MS42LDI3Ny4zeiIvPg0KPC9zdmc+DQo=') no-repeat 0 0;
    width: 12px;
    height: 8px;
    background-size: 100% 100%;
    transform: translateY(-50%);
    position: absolute;
    right: 18px;
    top: 26px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    left: auto;
    top: 0;
    right: 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    padding-right: 30px;
    padding-left: 0px;
    background-color: #ebf0fe;
    margin-right: 5px;
    border: 0px solid #aaa;
    margin-top: 9px;
    padding-top: 3px;
    padding-bottom: 3px;

}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover,
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus {
    background-color: #dc3545;
    color: #e4e4e4;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    background-color: #EE343A;
    color: #fff;
    padding: 1px;
    top: 7px;
    right: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    border-right: 0;
    justify-content: center;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
    padding-right: 10px;
    font-size: 13px;
    font-weight: 300;
    padding-left: 10px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove span {
    line-height: 11px;
    height: 17px;
    /* width: 1px; */
    padding-right: 1px;
    border-radius: 50%;
    display: flex;
    font-weight: 300;
    justify-content: center;

}

.floating-group .select2-container--focus .select2-selection__rendered {
    padding-top: 20px !important;
}

.floating-group .select2-container--focus .select2-selection__rendered {
    padding-top: 20px !important;
}

.floating-group .select2-container--below .select2-selection__rendered {
    padding-top: 20px !important;
}

.floating-group .select2-container--below .select2-selection--multiple {
    padding-top: 20px !important;
}

.floating-group .select2-container--above .select2-selection__rendered {
    padding-top: 20px !important;
}

.floating-group .select2-container--above .select2-selection--multiple {
    padding-top: 20px !important;
}

.floating-group .select2-selection--multiple .select2-selection__rendered {
    padding-top: 20px !important;
}

.select2-dropdown {
    border: 0px solid #aaa;
    box-shadow: 0 9px 9px rgba(0, 0, 0, 0.1);
    margin-top: 3px;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: 1px solid #DFE3E7
}

.select2-container--default .select2-selection--multiple {
    border: 1px solid #DFE3E7;
    padding-left: 19px;
    padding-bottom: 9px;
}

.select2-container .select2-selection--multiple {
    min-height: 55px;

}

.select2-container .select2-selection--single {
    min-height: 55px;
    border: 1px solid #DFE3E7;
}

.select2-container .select2-search--inline .select2-search__field {
    margin-top: 16px;
    line-height: 1;
    margin-left: 0;
    padding-left: 0px;
    font-size: 15px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    border: none;
    content: '';
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxOS4wLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9Ii00NzMgMjc3IDEyIDgiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgLTQ3MyAyNzcgMTIgODsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4NCgkuc3Qwe2ZpbGw6IzhBOTNBNjt9DQo8L3N0eWxlPg0KPHBhdGggY2xhc3M9InN0MCIgZD0iTS00NzEuNiwyNzcuM2w0LjYsNC42bDQuNi00LjZsMS40LDEuNGwtNiw2bC02LTZMLTQ3MS42LDI3Ny4zeiIvPg0KPC9zdmc+DQo=) no-repeat 0 0;
    width: 12px;
    height: 8px;
    background-size: 100% 100%;
    transform: translateY(-50%);
    position: absolute;
    right: 18px;
    top: 26px;
}

.select2-selection__rendered li:first-child {
    margin-left: 0;

}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 19px;
    padding-right: 20px;
    font-size: 15px;
    color: #000;
    padding-top: 10px;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    font-weight: 300;
}

.select2-results__option {
    font-size: 15px;
    font-weight: 300;

}

/*select2*/
.form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-control {
    display: block;
    width: 100%;
    height: auto;
    padding: 8px 19px;
    padding-top: 21px;
    min-height: 55px;
    font-size: 1rem;
    color: #475F7B;
    background-color: #FFF;
    border: 1px solid #DFE3E7;
    border-radius: .267rem;
    -webkit-transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

select.form-control {
    padding-top: 10px;
    transition: 0.15s;
}

.form-control:focus {
    color: #475F7B;
    background-color: #FFF;
    border-color: #5A8DEE;
    outline: 0;
    box-shadow: none;
}



/* ======= Go to Top Button style ======= */
.progress-wrap {
    position: fixed;
    bottom: 30px;
    right: 30px;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
    background-color: #fff;
    box-shadow: 0 3px 6px 1px rgba(0, 0, 0, 0.07);
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.arrowTop {
    position: absolute;
    top: 16px;
    left: 17px;
}

.arrowTop path {
    fill: #1295d6;
}

/* .progress-wrap::after {
    position: absolute;
    font-family: 'themify';
    content: '\e648';
    text-align: center;
    line-height: 50px;
    font-size: 15px;
    font-weight: normal;
    color: transparent;
    left: 0;
    top: 0;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
} */
.progress-wrap svg.progress-circle path {
    fill: none;
}

.progress-wrap svg.progress-circle path {
    stroke: transparent;
    stroke-width: 4;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
}

/* .progress-wrap::after {
    color: #1e90ff;
} */
.progress-wrap svg.progress-circle path {
    stroke: #1e90ff;
}

/* End */

.dash_header {
    background-color: lightblue;
    padding: 10px;
}

.main_content {
    background-color: lightgrey;
    overflow-y: auto;
    /* Scroll if content overflows */
}

.hero-title {
    color: #FFF;
    font-family: Merriweather;
    display: inline;
    line-height: normal;
    font-size: 69px;
    font-weight: 400;
    letter-spacing: 1.38px;
}

.vector-star {
    display: inline;
    vertical-align: top;
    padding-top: 0;
    position: relative;
    top: 20px;
    margin: 0 0 0 19px;
}

.hero-text {
    color: #8A8A8A;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 31px;
}

.hero-img {
    text-align: right;
    position: relative;
}

.vectorLine {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 80px;
}

.hero-section::before {
    background-image: url(../img/nobe.png);
    background-size: 100%;
    background-repeat: no-repeat;
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 148px;
    bottom: -25px;
    height: 43px;
}


/* Arrow Bounce */
.scrolled {
    text-align: center;
    width: 64px;
    height: 88px;
    background: #fff;
    border-radius: 50px;
    margin: 0 auto;
    color: white;
    cursor: pointer;
    position: absolute;
    right: 0;
    left: 0;
    bottom: -10px;
    border: 6px solid #3C3C3C;
    line-height: 100px;
    -webkit-transition: -webkit-transform 0.6s ease;
    -moz-transition: -moz-transform 0.6s ease;
    transition: transform 0.6s ease;
}

.arrow-bounce {
    position: absolute;
    bottom: 0;
    animation: arrow 1s infinite;
    animation-timing-function: cubic-bezier(0.4, 0, 0.6, 1);
    left: 0;
    right: 0;
    margin: 0 auto;
}


@-webkit-keyframes arrow {
    0% {
        bottom: -13px;
    }

    50% {
        bottom: -8px;
    }

    100% {
        bottom: -13px;
    }
}

@-moz-keyframes arrow {
    0% {
        bottom: -13px;
    }

    50% {
        bottom: -8px;
    }

    100% {
        bottom: -13px;
    }
}

@keyframes arrow {
    0% {
        bottom: -13px;
    }

    50% {
        bottom: -8px;
    }

    100% {
        bottom: -13px;
    }
}

.about-img {
    text-align: center;
}

.section-title {
    color: #111;
    font-family: Merriweather;
    font-size: 42px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0 0 21px;
    text-align: center;
}
.btn-more {
	color: #F4F4F4;
	text-align: center;
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: 56px;
	background: #111;
	border-radius: 50px;
	padding: 0 34px;
    min-height: 40px;
    display: inline-block;
    margin-top: 20px;
}
.btn-more:hover {
	color: #000; 
	background: #95FBD6; 
}
.section-text p {
	font-size: 18px;
}
.about-section .section-title {
    text-align: left;
}
.hiw-block {
	background: #fff;
	border-radius: 42px;
	padding: 90px 30px;
	text-align: center;
    margin-top: 20px;
    background-image: url(../img/trap.png);
    background-size: auto;
    background-repeat: no-repeat;
    background-position: center top;
}
.hiw-title {
	color: #111;
	text-align: center;
	font-size: 32px;
	font-weight: 700;
	line-height: normal;
	margin-top: 27px;
}
.hiw-text {
	color: #959595;
	text-align: center;
	font-size: 18px;
	font-weight: 400;
	line-height: normal;
	margin-top: 15px;
}

.section-subtext {
	color: #959595;
	text-align: center;
	font-size: 18px;
	font-weight: 400;
	line-height: 28px;
	margin: 0 auto 30px;
    max-width: 1000px;
}

.benefits-block {
    padding: 20px 35px;
    margin-top: 20px;
    border-radius: 42px;
    background: #fff;
	display: flex;
	gap: 22px;
}

.benefits-icon {
	width: 72px;
	flex: 0 0 72px;
}

.benefits-title {
	color: #111;
	font-size: 26px;
	font-weight: 700;
	margin: 0 0 5px;
}

.benefits-text {
	color: #959595;
	font-size: 16px;
	font-weight: 400;
}


.faq_description {
    margin-bottom: 36px;
}

.accordion-main-box .accordion-item {
    margin-bottom: 16px;
    border: 0;
    background-color: #fff;
    border-radius:32px;
}

.accordion-main-box .accordion-button {
	font-size: 18px;
	font-weight: 500;
	padding: 21px 22px;
	border-radius: 32px;
	color: #111;
	background-color: #fff;
}

.accordion-main-box .accordion-button:not(.collapsed) {
    /* background-color: var(--primary-color); */
    color: #111;
    border-radius:32px;
}
.accordion {
	--bs-accordion-inner-border-radius: 32px;
}
.accordion-button:not(.collapsed) {
    box-shadow: unset;
}

.accordion-button:focus {
    border: none;
    box-shadow: unset;
}

.accordion-main-box .accordion-button::after {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none"><path d="M16.5984 7.45703L11.1651 12.8904C10.5234 13.532 9.47344 13.532 8.83177 12.8904L3.39844 7.45703" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}
.accordion-item:last-of-type .accordion-button.collapsed {
	border-bottom-right-radius: 32px;
	border-bottom-left-radius: 32px;
}
.accordion-main-box .accordion-button:not(.collapsed)::after {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none"><path d="M16.5984 12.543L11.1651 7.10963C10.5234 6.46797 9.47344 6.46797 8.83177 7.10963L3.39844 12.543" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    transform: rotate(0deg);
}
.accordion-body {
	padding-top: 6px;
}
/* FAQ css end */

.section-title span {
	display: block;
	font-weight: 300;
}
.testimonialSwiper {
	position: relative;
    margin-top: 50px;
}

.testimonialSwiper .swiper-button-next::after, .testimonialSwiper .swiper-rtl .swiper-button-prev::after {
	display: none;
}
.testimonialSwiper .swiper-button-prev::after, .testimonialSwiper .swiper-rtl .swiper-button-next::after {
	display: none;
}
.testimonialSwiper .swiper-button-next, .testimonialSwiper .swiper-rtl .swiper-button-prev {
	right: -42px;
 }
 .testimonialSwiper .swiper-button-prev, .testimonialSwiper .swiper-rtl .swiper-button-next {
	left: -43px; 
}

.testimonial-card {
	border-radius: 42px;
	background: #FFF;
	padding: 30px;
	padding-bottom: 45px;
}

.user-image {
	margin: 0 0 26px;
}

.card-subText p, .card-subText {
    color: #111;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
  }
  .testimonial-footer {
	position: relative;
	padding-left: 75px;
	margin-top: 31px;
}
.userThumb {
	position: absolute;
	left: 0;
	top: 0;
	width: 60px;
}
.userThumb img {
	width: 60px;
    height: 60px;
    border-radius: 50%;
}
.userName {
	color: #111;
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}
.role {
	color: #959595;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.cta-icon {
	width: 50px;
	height: 50px;
	background: #252525;
	border-radius: 50%;
	text-align: center;
    flex: 0 0 50px;
	line-height: 49px;
}

.cta-block {
	display: flex;
	gap: 14px;
	flex-wrap: nowrap;
	margin: 0 0 28px;
}
.cta-subtext {
	font-size: 16px;
	color: #95FBD6;
    font-weight: 500;
}
.cta-subtext span {
    display: block;
 	color: #fff;
}
.break-word {
	word-break: break-word;
}

.page-subtitle {
	color: #8A8A8A;
	text-align: center;
	font-size: 18px;
	font-weight: 400;
	line-height: 28px;
	max-width: 1000px;
	margin: 0 auto;
}
.page-title {
	color: #FFF;
	text-align: center;
	font-family: Merriweather;
	font-size: 42px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	margin: 0 auto 23px;
}

.page-inner {
	padding-bottom: 60px;
}
.cms-title {
	margin: 0 0 18px;
	color: #111;
	font-family: Merriweather;
	font-size: 32px;
	font-style: normal;
	font-weight: 400;
	line-height: 56px;
}
.about-image img {
	border-radius: 14px;
}
.cms-section {
	padding: 0 0 37px;
}

.cta-element {
	background: #fff;
	border-radius: 18px;
	padding: 40px;
}

.cta-blocks {
	display: flex;
	gap: 14px;
	flex-wrap: nowrap;
	margin: 0 0 28px;
}
.cta-icons {
	width: 50px;
	height: 50px;
	background: #111;
	border-radius: 50%;
	text-align: center;
	flex: 0 0 50px;
	line-height: 49px;
}
.cta-subtexts {
	font-size: 22px;
	color: #111;
	font-weight: 500;
}
.cta-subtexts span {
	display: block;
	color: #111;
    font-size: 18px;
}

.cta-para {
	font-size: 18px;
	margin: 0 0 50px;
}

.timing {
	background: #F4F4F4;
	display: inline-block;
	padding: 17px 30px;
	border-radius: 40px;
	margin-top: 32px;
}

.terms-text {
	color: #111;
	font-family: Merriweather;
	font-size: 18px;
 	font-weight: 400;
 	margin: 0 0 20px;
}


.terms-h1 {
	margin: 0 0 12px;
	color: #111;
	font-family: Merriweather;
	font-size: 32px;
 	font-weight: 400;
 }
.legal-block {
	border-radius: 42px;
	background: #FFF;
	padding: 30px 42px 15px;
	margin-top: 20px;
}
.l-h1 {
	color: #111;
	font-family: Merriweather;
	font-size: 22px;
 	font-weight: 400;
 	margin: 0 0 20px;
}
.cms-section ul li {
    color: #959595;
}
.cms-section ul {
    padding: 0 0 0 17px;
    
}



/* ------pricing page css start */
.pricing-card {
    width: 100%;
    border-radius: 17px;
    background: #FFF;
    box-shadow: 0px 0px 26.811px 0px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.pricing-card-section {
    padding: 10px 0 86px;
}

.pricing-card .card-header {
	text-align: center;
	background-color: #111;
	border-top-right-radius: 17px;
	border-top-left-radius: 17px;
	padding: 21px 0;
}

.most-popular {
	position: absolute;
	background: linear-gradient(180deg, #C90C0E 0%, #FB1716 100%);
	color: #FFF;
	font-size: 14px;
	font-weight: 500;
	transform: rotate(-36.95deg);
	top: 20px;
	left: -43px;
	padding: 2px 40px;
	filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}
.plan-desc {
	color: #606060;
	text-align: center;
	font-size: 15px;
	font-weight: 400;
	line-height: 23px;
	margin: 0 auto ;
 }

.pricing-card .card-title {
    color: #FFF;
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    text-transform: uppercase;
}

.card-offer-box {
    padding: 32px 17px;
}

.card-offer {
    text-align: center;
    position: relative;
    padding-bottom: 25px;
    /* min-height: 190px; */
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-content: center;
}

.card-icon {
    line-height: 1;
}

.card-heading {
    font-size: 43px;
    font-weight: 600;
    margin-bottom: 4px;
}

.green {
    color: #00C975;
}

.card-sub-title {
	color: #717171;
	font-size: 15px;
	font-weight: 400;
	width: 100%;
}
.card-list-box {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    /* border-top: 1px solid #DDD; */
    padding-top: 21px;
}
.card-items {
	display: flex;
	align-items: center;
	gap: 8px;
	justify-content: center;
	border-top: 1px dotted #9B9B9B;
	padding: 11px 0;
}

.card-list-text {
    color: #515151;
    font-size: 15px;
    font-weight: 400;
}

.card-offer-box .card-footer {
    padding: 46px 0 40px;
    text-align: center;
}

.card-btn {
    border: none;
    border-radius: 8px;
    background: #00008B;
    box-shadow: 0px 10.378px 18.162px 3.459px rgba(0, 128, 255, 0.15);
    color: #FFF;
    font-size: 16px;
    font-weight: 600;
    padding: 13px 60px;
}

.card-btn:hover {
    background-color: #EED24F;
    box-shadow: 0px 10.378px 18.162px 3.459px rgba(238, 210, 79, 0.15);
}

.card_img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
}

.pricing-card-box {
	display: flex;
	justify-content: center;
	margin: auto;
	max-width: 1000px;
	gap: 20px;
	margin-top: 43px;
}

.pricing-card.active {
    transform: scale(1.1);
    transform-origin: bottom;
    z-index: 1023;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0px 0px 31px 0px rgba(0, 0, 0, 0.25);
}
 
.month-title {
    color: #000;
    font-size: 17px;
    font-weight: 600;
}

.pricing-card.active .card_img {
    z-index: -1;
}

.less-price {
    color: #7A7A7D;
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    width: 100%;
}

.pricing-card .switch_time {
    justify-content: center;
}

.pricing-card .right_select {
    color: #7A7A7D;
    /* font-size: 13px;
    font-weight: 400; */
    line-height: normal;
    padding-top: 3px;
}

.pricing-card.active .card-footer {
    padding-top: 25px;
}
.period {
	font-weight: normal;
	color: #777;
}
.price-options {
	border: 1px solid #666;
	border-radius: 10px;
	display: flex;
	justify-content: space-between;
	gap: 10px;
	padding: 9px;
	margin: 10px auto;
	font-size: 16px;
	font-weight: 600;
	/* background: #f4f4f4; */
}
/* ------pricing page css end */ 
