:root {
    --primary: #125A97;
    --hover: #39babd;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    height: 100%;
}

body {
    line-height: 1.6;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Rubik', sans-serif;
    color: #424243;
    position: relative;
    background-color: #fff;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Bai Jamjuree', sans-serif;
    color: #303030;
    font-weight: 600;
}

a {
    text-decoration: none;
    -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}

a:hover {
    color: var(--hover);
}
.text-end {
    text-align: left !important;
}

.ms-2 {
    margin-left: initial !important;
	margin-right: .5rem !important;
}

.btn {
    border-radius: 0;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bg-blue {
    background-color: #F8FAFF;
}

.text-justify {
    text-align: justify;
}

.py-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.py-90 {
    padding-top: 90px;
    padding-bottom: 90px;
}

.py-80 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.py-70 {
    padding-top: 70px;
    padding-bottom: 70px;
}

.py-60 {
    padding-top: 60px;
    padding-bottom: 60px;
}

.py-30 {
    padding-top: 30px;
    padding-bottom: 30px;
}

.bg-theme-color {
    background-color: var(--primary);
}

.overlay-dark:before {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #000;
    z-index: -1;
    opacity: 0.5;
}

.bg-image-center {
    position: relative;
    z-index: 1;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.btn-dark {
    padding: 12px 25px;
    border-radius: 10rem;
    color: #ffffff;
    text-decoration: none;
    background: linear-gradient(180deg, rgba(57, 186, 189, 1) 0%, rgba(0, 79, 145, 1) 100%) 0% 0%;
    font-size: 16px;
    font-weight: 500;
    min-width: 18rem;
    display: inline-block;
}

.btn-dark span {
    background: url(../images/arrow-black.png) scroll no-repeat left center;
    padding: 0 0 0 3rem;
    display: block;
    filter: brightness(0) invert(100%);
}

.form-control,
.form-select {
    border-radius: 0;
}

.form-control:focus,
.form-select:focus {
    box-shadow: none;
}

.section-title {
    margin-bottom: 30px;
}

.section-title .main-title {
    font-size: 40px;
    font-weight: 700;
    text-transform: capitalize;
    color: #000;
}

.section-title .main-title.text-md {
    font-size: 34px;
}

.section-title .main-title.gradient-color {
    background: rgb(60, 187, 190);
    background: linear-gradient(90deg, rgba(60, 187, 190, 1) 0%, rgba(19, 91, 153, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.short-title-wrap h5 {
    position: relative;
    font-size: 22px;
    font-weight: 700;
    display: inline-block;
    color: var(--primary);
    text-transform: uppercase;
}

.section-title .short-title-wrap {
    margin-bottom: 15px;
}

.section-title .short-content {
    margin-top: 20px;
    padding-bottom: 15px;
}

.text-theme-color {
    color: var(--primary) !important;
}

.text-secondary-color {
    color: var(--hover) !important;
}

.sub-title {
    position: relative;
    font-size: 30px;
    font-weight: 700;
    text-transform: capitalize;
}

.line-clamp-2 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.line-clamp-3 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.custom-arrow-list ul {
    margin: 25px 0;
}

.custom-arrow-list ul li {
    padding: 8px 0;
    position: relative;
    padding-right: 32px;
}

.custom-arrow-list ul li:before {
    content: "\f45c";
    position: absolute;
    right: 0;
    top: 10px;
    font-family: "Font Awesome 5 Free";
    font-size: 14px;
    font-weight: 900;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.custom-arrow-list.arrow-list ul li {
    padding: 8px 0;
    position: relative;
    padding-right: 32px;
}

.custom-arrow-list.arrow-list ul li:before {
    content: "\f30b";
    position: absolute;
    right: 0;
    top: 10px;
    font-family: "Font Awesome 5 Free";
    font-size: 14px;
    font-weight: 900;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}

.custom-circle-list ul {
    margin: 25px 0;
}

.custom-circle-list ul li {
    padding: 8px 0;
    position: relative;
    padding-right: 32px;
}

.custom-circle-list ul li:before {
    content: "\f111";
    position: absolute;
    right: 0;
    top: 10px;
    font-family: "Font Awesome 5 Free";
    font-size: 14px;
    font-weight: 900;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    background: rgb(60, 187, 190);
    background: linear-gradient(230deg, rgba(60, 187, 190, 1) 0%, rgba(19, 91, 153, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text.justify p {
    text-align: justify;
}

@media (max-width: 767.98px) {

    .short-title-wrap h5 {
        font-size: 20px;
    }

    .section-title .main-title {
        font-size: 30px;
    }
}


/*=============================================
   - TOP BAR        
=============================================*/

.top-bar {
    background-color: #021238;
    padding: 7px 0;
    height: 45px;
}

.top-bar .contact-support li {
    position: relative;
    float: right;
    font-size: 16px;
    line-height: 28px;
    color: #fff;
    font-weight: 500;
    margin-left: 35px;
}

.top-bar .contact-support li a {
    color: #fff;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}

.top-bar .contact-support li a:hover,
.top-bar .contact-support li a:focus {
    color: var(--hover);
}

.top-bar .social-links {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    justify-content: end;
}

.top-bar .social-links li+li {
    margin-right: 10px;
}

.top-bar .social-links li a {
    position: relative;
    height: 30px;
    width: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    font-size: 15px;
    border: 1px solid #fff;
    border-radius: 12px 0 12px 0;
    overflow: hidden;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
}

.top-bar .social-links li a:hover {
    color: var(--primary);
}

.top-bar .social-links li a:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-color: #fff;
    -webkit-transition-delay: .1s;
    transition-delay: .1s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-duration: .4s;
    transition-duration: .4s;
    -webkit-transition-property: all;
    transition-property: all;
    opacity: 1;
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    z-index: -1;
}

.top-bar .social-links li a:hover:after {
    opacity: 1;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}


@media (max-width: 767.98px) {
    .top-bar {
        display: none;
    }
}

/*=============================================
   - MAIN HEADER      
=============================================*/

.main-header .navbar {
    background: #fff;
    padding: 5px 0;
    border-bottom: 1px solid rgb(228 228 228 / 0%);
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, .075) !important;
}

.main-header .navbar.fixed-top {
    box-shadow: 0px 0px 2px rgba(33, 51, 102, 0.3);
    transition: all 0.3s ease;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

.main-header .navbar .navbar-nav .nav-link {
    position: relative;
    color: #000;
    font-size: 18px;
    font-weight: 700;
    text-transform: capitalize;
    padding: 28px 18px;
}

.main-header .navbar .navbar-nav .nav-item:hover .nav-link,
.main-header .navbar .navbar-nav .nav-item:focus .nav-link {
    color: var(--primary);
}

.main-header .navbar .navbar-nav .nav-item.active .nav-link,
.main-header .navbar .navbar-nav .nav-link:hover,
.main-header .navbar .navbar-nav .nav-link:focus,
.main-header .navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.main-header .navbar .navbar-nav .nav-link.active+.sub-arrow {
    color: var(--primary);
}

.main-header .navbar-toggler {
    border: 0.1rem solid var(--primary);
    padding: 0.1rem 0.5rem;
    border-radius: 1px;
}

.main-header .navbar-toggler:focus {
    box-shadow: none;
}

.main-header .navbar-toggler-icon {
    filter: brightness(0);
    width: 1.5em;
    height: 2em;
}

.main-header .offcanvas-header .btn-close {
    opacity: 1;
    width: 2em;
    height: 2em;
}

.main-header .navbar .offcanvas.show .navbar-nav .nav-link {
    padding: 0.8rem 1rem;
    display: inline-block;
}

.main-header .offcanvas.show .dropdown-toggle::after {
    float: left;
}


@media (max-width: 767.98px) {

    .main-header .navbar .navbar-brand img {
        width: 160px !important;
    }
}

/************ BANNER SECTION ***********/

.banner-c-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
}

.banner-c-section .banner-content {
    padding-top: 15px;
}

.banner-c-section .banner-content .section-title .main-title {
    color: #fff;
    font-size: 48px;
    margin-bottom: 20px;
}

.banner-c-section .banner-content .section-title .p {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
}

.banner-c-section .banner-image {
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 70vh;
}

@media (max-width: 767.98px) {

    .banner-c-section {
        z-index: -1;
        height: auto;
        padding-bottom: 0;
    }

    .banner-c-section .banner-image {
        position: relative;
        width: 50vh;
        margin: 0 auto;
    }

}

/************ FEATURE SECTION ***********/

.feature-c-section {
    position: relative;
    background-color: #E2F2FF;
}

.feature-c-section .inner-box {
    background-color: #C90000;
    padding: 30px 30px;
    text-align: center;
    color: #fff;
    height: 100%;
    border-radius: 15px;
}

.feature-c-section [class*=col]:nth-child(1) .inner-box {
    background-color: #C90000;
}

.feature-c-section [class*=col]:nth-child(2) .inner-box {
    background-color: #006448;
}

.feature-c-section [class*=col]:nth-child(3) .inner-box {
    background-color: #000898;
}

.feature-c-section .inner-box h3 {
    color: #fff;
    margin-bottom: 10px;
    font-weight: 700;
}

.feature-c-section .inner-box p {
    color: #fff;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 0;
}

/************ ABOUT SECTION ***********/

.about-c-section {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.about-c-section .shape .shape-1 {
    position: absolute;
    left: -200px;
    top: 22%;
    width: 350px;
    transform: translateY(-50%);
    z-index: -1;
}

.about-c-section:before {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-color: #E2F2FF;
    z-index: -1;
    opacity: 1;
}

.about-c-section .wrap {
    padding-top: 80px;
}

.about-c-section .wrap .icon-block {
	position: relative;
    padding: 30px 30px;
    background-color: #FFEFEF;
    border: 2px solid #C90000;
    border-top-width: 10px !important;
    border-radius: 15px;
    height: 100%;
	overflow: hidden;
}

.about-c-section .wrap [class*=col]:nth-child(1) .icon-block {
    background-color: #FFEFEF;
    border: 2px solid #C90000;
}

.about-c-section .wrap [class*=col]:nth-child(2) .icon-block {
    background-color: #DBFFF5;
    border: 2px solid #006448;
}

.about-c-section .wrap [class*=col]:nth-child(3) .icon-block {
    background-color: #DBDDFF;
    border: 2px solid #000898;
}

.about-c-section .wrap .icon-block .icon {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 4px;
    background: transparent linear-gradient(180deg, #000000 0%, #C90000 100%) 0% 0% no-repeat;
    margin-bottom: 20px;
}

.about-c-section .wrap [class*=col]:nth-child(1) .icon-block .icon {
    background: transparent linear-gradient(180deg, #000000 0%, #C90000 100%) 0% 0% no-repeat;
}

.about-c-section .wrap [class*=col]:nth-child(2) .icon-block .icon {
    background: transparent linear-gradient(180deg, #000000 0%, #006448 100%) 0% 0% no-repeat;
}

.about-c-section .wrap [class*=col]:nth-child(3) .icon-block .icon {
    background: transparent linear-gradient(180deg, #000000 0%, #000898 100%) 0% 0% no-repeat;
}

.about-c-section .wrap .icon-block .content h3 {
    font-size: 20px;
    color: #000;
    margin-bottom: 12px;
    font-weight: 700;
}

.about-c-section .wrap .icon-block .overlay-text {
    position: absolute;
    inset: 0;
	padding: 25px;
    opacity: 0;
	border-radius: 15px;
    overflow: hidden;
	bottom: 30px;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    transition:  0.5s ease-in-out;
}

.about-c-section .wrap [class*=col]:nth-child(1) .overlay-text {
    background-color: #FFEFEF;
}

.about-c-section .wrap [class*=col]:nth-child(2) .overlay-text {
    background-color: #DBFFF5;
}

.about-c-section .wrap [class*=col]:nth-child(3) .overlay-text {
    background-color: #DBDDFF;
}

.about-c-section .wrap .icon-block:hover .overlay-text {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}


.privacy-compliance {
	position: relative;
    background-color: #fff;
    padding: 50px 50px;
    border-radius: 25px;
    margin-top: 80px;
    box-shadow: 1px 1px 10px #e2f2ff;
}

.privacy-compliance .icon-block {
    border: 2px solid #e2f2ff;
    position: relative;
    display: flex;
    align-items: center;
    padding: 30px;
    border-radius: 20px;
}

.privacy-compliance .icon-block .icon{
	margin-left: 20px;
	flex-shrink: 0;
}

.privacy-compliance .icon-block h5{
	font-size: 20px;
    font-weight: 700;
    margin-bottom: 0;
}

/************ TOP CHALLENGES SECTION ***********/

.challenges-c-section {
    position: relative;
    z-index: 1;
    background-color: #F5EFFF;
    overflow: hidden;
}

.challenges-c-section .shape .shape-2 {
    position: absolute;
    right: -200px;
    top: 50%;
    width: 350px;
    transform: translateY(-50%);
    z-index: -1;
}

.challenges-c-section .nav-tabs {
    border-bottom: 2px solid #D5D5D5;
}

.challenges-c-section .nav-tabs .nav-link {
    color: #000;
    font-weight: 500;
    border: none;
}

.challenges-c-section .nav-tabs .nav-item.show .nav-link,
.challenges-c-section .nav-tabs .nav-link.active {
    background: transparent linear-gradient(180deg, #45B9BC 0%, #125A97 100%) 0% 0%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border-bottom: 2px solid #125A97;
    margin-bottom: -2px;
}

.challenges-c-section .nav-tabs .nav-link img {
    display: block;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 10px;
    filter: brightness(0);
}

/************ ADVISOR SECTION ***********/

.advisor-c-section {
    position: relative;
    background-color: #000000;
    color: #fff;
    z-index: 1;
    overflow: hidden;
}

.advisor-c-section .shape .shape-3 {
    position: absolute;
    left: -200px;
    top: 28%;
    width: 350px;
    transform: translateY(-50%);
    z-index: -1;
}

.advisor-c-section .wrap {
    padding-top: 60px;
}

.advisor-c-section .wrap .inner-box {
	position: relative;
    padding: 70px 20px;
    text-align: center;
    border-right: 1px solid #646464;
    height: 100%;
	background-color: #000000;
	overflow: hidden;
}

.advisor-c-section .wrap [class*=col]:last-child .inner-box {
    border-right: none;
}

.advisor-c-section .wrap .inner-box img {
    width: 60px;
    margin-bottom: 15px;
}

.advisor-c-section .wrap .inner-box h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.advisor-c-section .wrap .inner-box p {
    opacity: 0.8;
    font-size: 14px;
    margin-bottom: 0;
}

.advisor-c-section .wrap .inner-box .overlay-text {
    position: absolute;
    inset: 0;
	padding: 25px;
    opacity: 0;
    overflow: hidden;
	background-color: #000000;
	bottom: 30px;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    transition:  0.5s ease-in-out;
}

.advisor-c-section .wrap .inner-box:hover .overlay-text {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

@media (max-width: 767.98px) {
    .advisor-c-section .wrap .inner-box {
        border-right: none;
    }
}

/************ HELP SECTION ***********/

.download-c-section{
	position: relative;
	background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    z-index: 1;
}

.help-c-section {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.help-c-section .shape .shape-4 {
    position: absolute;
    right: -200px;
    top: 50%;
    width: 350px;
    transform: translateY(-50%);
    z-index: -1;
}

.help-c-section .case-study-item {
    background-color: #E2F2FF;
    padding: 10px 10px;
    border-radius: 15px;
}

.help-c-section .case-study-item .img img {
    border-radius: 15px;
}

.help-c-section .case-study-item .detail {
    padding: 20px 20px;
}

.help-c-section .case-study-item .detail h6 {
    color: #000;
    font-size: 14px;
    margin-bottom: 15px;
    font-weight: 600;
}

.help-c-section .case-study-item .detail a {
    color: #000;
    font-weight: 400;
    font-size: 14px;
}

.help-c-section .case-study-item:hover .detail a {
    color: #3729BA;
}

/************TEAM SECTION ***********/

.team-c-section {
    position: relative;
}

.team-c-section .team-wrapper {
    padding: 50px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.team-c-section .team-wrapper .list {
    text-align: center;
    position: relative;
    padding: 30px;
    height: 100%;
}

.team-c-section .team-wrapper .list::before {
    position: absolute;
    content: '';
    width: 2px;
    height: 30%;
    background-color: #e2e1e1;
    left: 0;
    top: 50%;
}

.team-c-section .team-wrapper [class*=col]:last-child .list::before {
    display: none;
}

.team-c-section .team-wrapper .list .image img {
    width: 90px;
    margin: auto;
    margin-bottom: 20px;
}

.team-c-section .team-wrapper .list h5 {
    color: #125A97;
    font-weight: 600;
    margin-bottom: 12px;
}

@media (max-width: 767.98px) {

    .team-c-section .team-wrapper {
        padding: 50px 30px;
    }

    .team-c-section .team-wrapper .list::before {
        display: none;
    }
}


/************ COMPLIANCE SECTION ***********/

.compliance-c-section {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.compliance-c-section p {
    color: #fff;
}

.compliance-c-section .slot {
    color: #fff;
    margin-right: 15px;
}

/************EVENT-SECTION ***********/

.event-c-section {
    position: relative;
}

.event-c-section .event-wrapper img {
    width: 100%;
    border-radius: 20px 20px 0px 0px;
}

.event-c-section .event-wrapper .content {
    border-top: none;
    border: 1px solid #F1F1F1;
    padding: 20px;
    border-radius: 0px 0px 20px 20px;
}

.event-c-section .event-wrapper .content h5 {
    font-size: 15px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.event-c-section .event-wrapper .content h6 a {
    font-size: 16px;
}


/************ EXPERT SECTION ***********/

.expert-c-section {
    position: relative;
    background-color: #F5EFFF;
}

.expert-c-section .owl-carousel .owl-stage {
    display: flex;
    height: 100%;
}

.expert-c-section .expert-wrapper {
    height: 100%;
}

.expert-c-section .expert-wrapper img {
    width: 100%;
    border-radius: 20px 20px 0px 0px;
}

.expert-c-section .expert-wrapper .content {
    border-top: none;
    border: 1px solid #d2cbcb;
    padding: 20px;
    border-radius: 0px 0px 20px 20px;
    text-align: center;
    min-height: 90px;
    background-color: #fff;
    transition: all 0.5s ease-in-out;
}

.expert-c-section .expert-wrapper:hover .content {
    background-color: #125A97;
    color: #fff;
}

.expert-c-section .expert-wrapper .content h6 {
    margin-bottom: 0;
    font-size: 18px;
}

.expert-c-section .expert-wrapper .content h6 a {
    font-size: 18px;
    color: #000;
}

.expert-c-section .expert-wrapper:hover .content h6 a {
    color: #fff;
}

/************ CTA-SECTION ***********/

.cta-c-section {
    position: relative;
}

.cta-c-section .cta-wrapper {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding-top: 50px;
    padding-bottom: 50px;
}

.cta-c-section .cta-wrapper h3 {
    color: #fff;
}

/************ FAQ-SECTION ***********/
.faq-c-section {
    position: relative;
    background-color: #000;
    z-index: 1;
    overflow: hidden;
}

.faq-c-section .shape .shape-5 {
    position: absolute;
    left: -200px;
    top: 50%;
    width: 350px;
    transform: translateY(-50%);
    z-index: -1;
}

.faq-c-section .accordion {
    background-color: #000;
}

.faq-c-section .accordion-item {
    border: none;
    border-bottom: 1px solid #393535;
    border-radius: 0;
    margin-bottom: 10px;
    background-color: #000;
}

.faq-c-section .accordion-button {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background-color: #000;
    padding-right: 0;
}

.faq-c-section .accordion-button:focus {
    box-shadow: none;
}

.faq-c-section .accordion-button:not(.collapsed) {
    background-color: #000;
    box-shadow: none;
    color: #39babd;
}

.faq-c-section .accordion-button.collapsed::after {
    color: #000;
    background-image: none;
    content: '\2b';
    font-family: 'FontAwesome';
    font-size: 16px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    background-color: #fff;
	margin-left: initial;
	margin-right: auto;
}

.faq-c-section .accordion-button:not(.collapsed)::after {
    color: #000;
    background-image: none;
    content: '\f068';
    font-family: 'FontAwesome';
    font-size: 16px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    background-color: #fff;
	margin-left: initial;
	margin-right: auto;
}

.faq-c-section .accordion-body {
    padding: 15px 20px;
    padding-right: 0;
    font-size: 16px;
    color: #fff;
}

/************ FOOTER-SECTION ***********/

.footer-c-section {
    position: relative;
}

.footer-c-section .footer-widgets img {
    margin-bottom: 20px;
}

.footer-c-section .footer-widgets .social-links h6 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 20px;
}

.footer-c-section .footer-widgets .social-links a span {
    font-size: 20px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 10px;
    background-color: #39babd;
    color: #fff;
    text-align: center;
}

.footer-c-section .contact-info h6 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 10px;
}

.footer-c-section .contact-info a {
    font-size: 16px;
    font-weight: 600;
    color: #3729BA;
}

.footer-c-section .contact-info p {
    font-size: 16px;
    font-weight: 600;
    color: #3729BA;
}

/************ COPY-RIGHT-SECTION ***********/

.copyright-section {
    position: relative;
}

.copyright-section .copyright-wrapper {
    border-top: 1px solid #cac4c4;
    padding: 20px 0;
}

.copyright-section .copyright-wrapper h6 {
    color: #000;
    margin-bottom: 0;
}

@media (max-width: 767.98px) {

    .copyright-section {
        text-align: center;
    }

    .copyright-section .copyright-wrapper .text-end {
        text-align: center !important;
    }

}

.fixed-book-assessment .icon-box{
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  border-radius: 50px;
  z-index: 1055;
  transition: all 0.3s linear;
  box-shadow: 2px 2px 8px 0px rgba(0,0,0,.4);
}

.fixed-book-assessment .icon-box .icon{
  height: 60px;
  position:relative;
}

.fixed-book-assessment .icon-box .icon a{
  color: #fff;
  display: block;
  height: 100%;
  width: 100%;
  line-height: 60px;
  border-radius: 50px;
  padding-right:25%;
  background: #45B9BC;
 overflow: hidden;
  background: linear-gradient(180deg, #45B9BC 0%, #125A97 100%) 0% 0% no-repeat;
  border-bottom: 1px solid rgba(0,0,0,.4);
  transition: all .5s linear;
}

.fixed-book-assessment .icon-box .icon a img{
  position:absolute;
  top: 18px;
  right: 15px;
  width: 30px;
  font-size: 25px;
}

.fixed-book-assessment .icon-box .icon a span{
    display: none;
    font-weight: 500;
    font-size: 15px;
    text-transform: capitalize;
}

.fixed-book-assessment .icon-box .icon a:hover {
  z-index:1;
  width: 340px;
}

.fixed-book-assessment .icon-box .icon:hover a span{
  padding-right: 12%;
  display: block;
}

/************ FEATURE SECTION ***********/

.assessment-form-section {
    position: relative;
    background-color: #E2F2FF;
}

.assessment-form-section .multi-form {
    background-color: #FFF;
    padding: 30px 30px;
    text-align: center;
    color: #fff;
    height: 100%;
    border-radius: 15px;
}
 

/* CF7 */

.multi-form .question{
	font-size: 22px;
}
/* Radio */
.wpcf7-radio {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: right;
}

.wpcf7-radio .wpcf7-list-item {
	border: 1px solid #ccd1d8;
	padding: 12px;
    margin: 0 20px;
	box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
	border-radius: 5rem;
	display: flex;
	align-items: center;
}

.wpcf7-radio .wpcf7-list-item label {
	display: flex !important;
	align-items: center;
}

.wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label {
	font-weight: 600;
	font-size: 20px;
	padding: 0 1rem 0 4rem;
}

.wpcf7-radio .wpcf7-list-item input[type="radio"] {
	background: url("../images/check1.png") scroll no-repeat 0 0;
	width: 32px;
	height: 32px;
	background-size: cover;
	-webkit-appearance: none;
}

.wpcf7-radio .wpcf7-list-item input[type="radio"]:checked {
	background: url("../images/check2.png") scroll no-repeat 0 0;
	background-size: cover;
}

.wpcf7-form .fieldset-cf7mls .cf7mls-btns {
	text-align: center;
	display: flex;
    justify-content: center;
    width: 100%;
}

.fieldset-cf7mls .cf7mls_next,
.fieldset-cf7mls .cf7mls_back {
	float: initial !important;
	margin: 15px 8px !important;
}

.fieldset-cf7mls .wpcf7-form-control:not(.wpcf7-submit):not(.wpcf7-acceptance):not(.wpcf7-radio){
    border: 2px solid #ced4da;
    padding: 10px 24px;
    height: 55px;
    font-weight: 600;
	width:100%;
	box-shadow: 2px 4px 15px rgba(86, 85, 233, 0.15);
}

.fieldset-cf7mls .wpcf7-form-control:focus {
    border: 1px solid var(--primary);
}

.fieldset-cf7mls textarea.wpcf7-form-control{
   padding: 2rem !important;
   height: 10rem !important;
}

.fieldset-cf7mls .wpcf7-submit.btn-dark {
	position: relative;
	text-align: center !important;
}

.fieldset-cf7mls .wpcf7-list-item-label {
	padding-right: 10px;
}

.thank-you-message {
    text-align: center;
    padding: 50px 0;
}

.thank-you-message h2 {
    font-size: 22px;
}

/* scoring system */
@keyframes growProgressBar {
  0%, 33% { --pgPercentage: 0; }
  100% { --pgPercentage: var(--value); }
}

@property --pgPercentage {
  syntax: '<number>';
  inherits: false;
  initial-value: 0;
}

div[role="progressbar"] {
  --pgPercentage: var(--value);
  animation: growProgressBar 3s 1 forwards;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 25px auto 0;
  background:radial-gradient(closest-side, white 80%, transparent 0 99.9%, white 0), conic-gradient(#004e90 calc(var(--pgPercentage) * 1%), #def 0);
  font-size: calc(12rem / 4);
  color: #004e90;
  font-weight: 600;
}

div[role="progressbar"]::before {
  counter-reset: percentage var(--value);
  content: counter(percentage);
}

.modal-header .btn-close{
	margin-right: auto;
    margin-left: inherit;
}