:root {
    --white-color: #ffffff;
    --black-color: #000000;
    --text-color: #333333;
    --primary-color: #0098F1;
    --primary-color-dark: #008ddf;
}

body {
    margin: 0 auto;
    font-size: 16px;
    padding: 0;
    font-family: "Poppins", sans-serif;
    color: #000;
    text-rendering: geometricPrecision;
}

::selection {
    background-color: var(--primary-color);
    color: var(--white-color);
}

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: #0068ba;
    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;
    line-height: normal;
    color: var(--text-color);
}

/* 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: 40px;
    font-weight: 600;

}

.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: var(--white-color);
}


/*==================== 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: #fff;
    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: #000;
    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: 95px;
    display: flex;
    align-items: center;
    z-index: 10;
    border-bottom: 1px solid rgba(255, 255, 255, 0.20);
    -webkit-transition: 0.5s all ease-out;
    -o-transition: 0.5s all ease-out;
    transition: 0.5s all ease-out;
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    top: 0px;
    background: linear-gradient(101deg, #001D64 0%, #0098F1 105.81%);
}

.homepage #header {
    background-color: transparent;
}



#header.is-sticky {
    background: linear-gradient(101deg, #001D64 0%, #0098F1 105.81%);
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    transform: translateY(-100%);
    height: 85px;
    -webkit-transition: 0.5s all ease-out;
    -o-transition: 0.5s all ease-out;
    transition: 0.5s all ease-out;
}

#header.is-sticky.awake {
    transform: translateY(0%);
    -webkit-transition: 0.5s all ease-out;
    -o-transition: 0.5s all ease-out;
    transition: 0.5s all ease-out;
}

#header.is-sticky.inner_pages_head,
#header.inner_pages_head {
    height: 85px;
}

#header>.container-fluid>.navbar {
    padding-left: 0;
    padding-right: 0;
}

#header .navbar-brand img {
    max-height: 42px;
    width: auto;
}

#header .navbar-expand-lg .navbar-nav .nav-item {
    margin-right: 45px;
}

#header .navbar-expand-lg .navbar-nav .nav-item:last-child {
    margin-right: 0px;
}

#header .nav-link:hover {
    color: #ffffffbd;
}

#header .nav-link {
    position: relative;
    padding: 0;
    color: var(--white-color);
    font-size: 18px;
    font-weight: 400;
}

/* #header .navbar-expand-lg .navbar-nav .nav-link:hover,
#header .navbar-expand-lg .navbar-nav .nav-item.active .nav-link {
    color: var(--white-color);
} */

#header .navbar-expand-lg .navbar-nav .nav-item.active .nav-link {
    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: var(--white-color);
    transform: scaleX(1);
}

/* 
#header .navbar-expand-lg .navbar-nav .nav-link:before {
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 1px;
    background: #c72026;
    transform: scaleX(0);
    content: "";
    position: absolute;
    transition: transform 0.5s ease;
} */

#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 .extra_nav {
    margin-left: 30px;
}

#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: #c72026;
    color: #fff;
    border: 1px solid #c72026;
}

#header .header_filled_btn:hover {
    background-color: #fff;
    color: #c72026;
}

#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: #c72026;
    border: 1px solid #c72026;
}

#header .header_border_btn:hover {
    background-color: #c72026;
    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: #c72026;
    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 .border_top {
    padding: 15px 0;
    color: #737777;
    font-size: 14px;
    margin-top: 30px;
    border-top: 1px solid #333A4B;
}

.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: 28px;
    color: var(--white-color);
    margin: 0 0 27px;
    position: relative;
}

ul.footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

ul.footer-links li {
    margin: 3px 0;
    padding: 0;
    list-style: none;
    margin-bottom: 10px;
}

ul.footer-links li a {
    font-size: 14px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.35);
}

ul.footer-links li a:hover {
    color: #d42027;
}

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: #00091E;
    padding: 55px 0 0;
}



.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: var(--primary-color);
}

/* .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 section css start */
.hero-wrapper {
    background-image: url(../img/hero-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 200px 0;
    background-position-x: center;
}

.hero-heading {
    color: var(--white-color);
    font-size: 60px;
    font-style: normal;
    font-weight: 600;
    line-height: 72px;
}

.hero-pra {
    color: var(--white-color);
    font-size: 20px;
    font-weight: 300;
    max-width: 595px;
    margin-bottom: 0;
}

.hero-img {
    height: 455px;
    width: 455px;
}

.hero-img img {
    width: 100%;
    height: 100%;
}

/* Hero section css end */


/* ourUser section css start  */
.ourUser-section {
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    position: relative;
    padding: 60px 0 0px;
}

.ourUser-slider {
    padding-bottom: 140px;
}

.ourUser-section .section-heading {
    color: var(--white-color);
    margin-bottom: 60px;
    text-align: center;
}

.section-heading span {
    font-weight: 400;
}

.testimonial-card {
    background-color: var(--white-color);
    border-radius: 20px;
    padding: 16px 20px;
    position: relative;
    border: 1px solid transparent;
}

.swiper-slide.swiper-slide-next .testimonial-card {
    border-color: #FB7E02;
}

.testimonial-card::before {
    content: "";
    position: absolute;
    bottom: -18px;
    width: 18px;
    height: 18px;
    left: 39px;
    z-index: 4;
    background-color: var(--white-color);
    /* actual shape background */
    clip-path: polygon(0 0, 45% 100%, 100% 0);
}

.swiper-slide.swiper-slide-next .testimonial-card::after {
    content: "";
    position: absolute;
    bottom: -20px;
    width: 20px;
    height: 20px;
    left: 38.5px;
    z-index: 2;
    background-color: #fb7e02;
    clip-path: polygon(0 0, 45% 100%, 100% 0);
}

.testimonial-description {
    margin: 20px 0;
    max-width: 320px;
}

.user-say-box {
    display: flex;
    align-items: center;
    position: relative;
    gap: 14px;
    top: 92px;
    left: 4px;
}

.user-say-box img {
    border-radius: 50%;
    width: 45px;
    height: 45px;
}

.userName-track {
    color: var(--white-color);
    font-size: 16px;
    font-weight: 500;
}

.swiper-pagination {
    margin-bottom: 12px;
}

.swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: var(--white-color);
    transition: ease-in-out .3s !important;
}

/* ourUser section css end  */

/* contact-section */
.contact-section {
    background-color: #F9F9F9;
    padding: 46px 0;
}

.fugu-contact-info {
    margin-top: 50px;
}

.fugu-contact-info ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.fugu-contact-info ul li .fugu-contact-info-icon {
    width: 53px;
    min-width: 53px;
    height: 53px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background-color: var(--primary-color);
}

.fugu-contact-info ul li {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 30px;
}

.fugu-contact-info ul li:last-child {
    margin-bottom: 0;
}

.fugu-contact-info ul li h5 {
	color: var(--black-color);
	font-size: 22px;
	font-weight: 500;
	margin-bottom: 6px;
}

.fugu-contact-info ul li p {
    margin: 0;
    color: #333;
    font-size: 17px;
    font-weight: 400;
}

.contact-descripiton {
    font-weight: 300;
    max-width: 640px;
}

.footer-info {
    position: relative;
    height: 100%;
}

.footer-info::before {
    content: "";
    background: rgba(255, 255, 255, 0.20);
    width: 1px;
    height: 100%;
    right: -60px;
    position: absolute;
}

.footer-detail-box:not(:last-child) {
    margin-bottom: 20px;
}

.footer-label {
    display: block;
    color: var(--white-color);
    text-align: right;
    font-size: 16px;
    font-weight: 600;
}

.footer-links {
    color: var(--white-color);
    text-align: right;
    font-size: 14px;
    font-weight: 300;
    text-decoration: none;
}

.footer-link-list {
    position: relative;
    height: 100%;
}

.footer-link-list::before {
    content: "";
    background: rgba(255, 255, 255, 0.20);
    width: 1px;
    height: 100%;
    left: -60px;
    position: absolute;
}

.footer-box {
    padding-left: 0;
    list-style: none;
}

.footer-box li:not(:last-child) {
    margin-bottom: 10px;
}

.social_icon {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social_link {
    display: flex;
    width: 60px;
    height: 60px;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    position: relative;
    z-index: 1;
}

.social_icon .social_link::before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    -webkit-transform: scale(0);
    transform: scale(0);
    background-color: var(--primary-color);
    content: "";
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    border-radius: 50px;
    z-index: -1;
}

.social_icon .social_link:hover::before {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.footer-block p {
    color: var(--white-color);
    font-weight: 400;
    margin-bottom: 30px;
}

.footer-second-row {
    padding-top: 20px;
}


/* Button css start */
.btnStyle {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    padding: 15px 30px;
    border-radius: 8px;
}

.btnPrimary {
    color: var(--white-color);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btnPrimary:hover,
.btnPrimary:active {
    color: var(--white-color) !important;
    background-color: var(--primary-color-dark);
    border-color: var(--primary-color-dark) !important;
}

/* Button css End */

/* About Section css start */

.sectionTitle {
    font-size: 36px;
    font-weight: 600;
    line-height: 1;
    color: var(--black-color);
    text-align: center;
    margin: 0;
}

.sectionTitle span {
    font-weight: 400;
}

.aboutUsContent h6 {
    margin: 16px 0;
}

.secDec {
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-color);
}

.aboutImgOuter {
    border-radius: 20px;
    width: 100%;
    overflow: hidden;
    margin: auto;
}

.aboutImgOuter img {
    width: 100%;
}

.aboutUsContent button.btnStyle {
    margin-top: 16px;
}

/* About Section css  end */


/* Benefits Section css start */
.benefitSection {
    background: rgba(1, 43, 116, 0.07);
}

.benefitSection .card {
    padding: 40px 30px;
    border-radius: 10px;
}

.benefitSection .card .benefitTitle {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.25;
    color: var(--black-color);
    margin-bottom: 8px;
}

.benefitSection .card p {
    margin-bottom: 0;
}

.benefitSection .benefitIcon {
    margin: auto auto 16px;
}

/* Benefits Section css end */


/* How it Work Section css end */
.howItWorkSection .sectionTitle {
    margin-bottom: 24px;
}

.howItWorkSection .processItem .processTitle {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 8px;
}

.howItWorkSection .processItem p {
    margin-bottom: 0;
}

.howItWorkSection .processItem:first-child:before {
    content: '';
    display: block;
    width: calc(100% - 10%);
    height: 2px;
    background-color: #D9D9D9;
    margin: auto;
    position: absolute;
    top: 98.5px;
    left: 0;
    right: 0;
    z-index: -1;
}

.howItWorkSection .processItem .processIcon {
    width: 149px;
}

.howItWorkSection .processItem .processIcon::after {
    content: '';
    display: block;
    width: 2px;
    height: 27px;
    background-color: #D9D9D9;
    margin: 18px auto 10px;
}

/* How it Work Section css end */

/* About us Page CSS Start */
.pageTitle {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 50px;
}

.aboutUsPage .CMS-section .secDec {
    line-height: 2;
}

/* About us Page CSS End */

/* contact us page css start */

.inner_page {
    padding-top: 160px;
}

/* .cms-page{
    padding-bottom: 100px;
    } */
.cms-inner-section {
    border-radius: 20px;
    padding: 50px 43px;
}

.bg-gray {
    background: #F9F9F9;
}

/* contact us page css end */

/* Terms & condition page css end */
.cms-section h2,
.cms-section .h2 {
    font-size: 24px;
    font-weight: 600;
    margin: 36px 0 18px;
}

.cms-section ul {
    margin: 0;
    padding: 0 0 0 17px;
}

.cms-section ul li p {
    margin-bottom: 4px;
}

/* Terms & condition page css end */

.cms-section p {
    line-height: 34px;
}


.faq_description {
    margin-bottom: 36px;

}
.accordion-main-box {
    border-radius: 20px;
    padding: 25px;
    padding-top: 40px;
    background-color: #F9F9F9;
}
.accordion-main-box .accordion-item {
    margin-bottom: 16px;
    border: 0;
    background-color: #fff;
    border-radius:8px;
}

.accordion-main-box .accordion-button {
	font-size: 18px;
	font-weight: 500;
	padding: 21px 22px;
	border-radius: 8px;
	color: #111;
	background-color: #fff;
}

.accordion-main-box .accordion-button:not(.collapsed) {
    /* background-color: var(--primary-color); */
    color: #111;
    border-radius:8px;
}
.accordion {
	--bs-accordion-inner-border-radius: 8px;
}
.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: 8px;
	border-bottom-left-radius: 8px;
}
.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;
}
.accordion-header {
	margin: 0 !important;
}




/* ------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 */ 