:root {
    --blue-bg: #007cd6;
    --darkblue-bg: #0a5aa1;
    --green-bg: #71be36;
    --white-bg: #ffffff;
    --dark-bg: #404040;
    --black-bg: #1d1d1d;
    --orange-bg: #f6a73e;
    --lighgray-bg: #f7fafe;
    --text-blue: #007cd6;
    --text-green: #71be36;
    --text-dark: #404040;
    --text-gray: #666666;
    --text-white: #ffffff;
    --primary-font: 'Euclid Circular A';
}

@font-face {
    font-family: 'Euclid Circular A';
    src: url('../fonts/EuclidCircularA-Light.eot');
    src: url('../fonts/EuclidCircularA-Light.eot?#iefix') format('embedded-opentype'), url('../fonts/EuclidCircularA-Light.woff2') format('woff2'), url('../fonts/EuclidCircularA-Light.woff') format('woff'), url('../fonts/EuclidCircularA-Light.ttf') format('truetype'), url('../fonts/EuclidCircularA-Light.svg#EuclidCircularA-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Euclid Circular A';
    src: url('../fonts/EuclidCircularA-Regular.eot');
    src: url('../fonts/EuclidCircularA-Regular.eot?#iefix') format('embedded-opentype'), url('../fonts/EuclidCircularA-Regular.woff2') format('woff2'), url('../fonts/EuclidCircularA-Regular.woff') format('woff'), url('../fonts/EuclidCircularA-Regular.ttf') format('truetype'), url('../fonts/EuclidCircularA-Regular.svg#EuclidCircularA-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Euclid Circular A';
    src: url('../fonts/EuclidCircularA-Medium.eot');
    src: url('../fonts/EuclidCircularA-Medium.eot?#iefix') format('embedded-opentype'), url('../fonts/EuclidCircularA-Medium.woff2') format('woff2'), url('../fonts/EuclidCircularA-Medium.woff') format('woff'), url('../fonts/EuclidCircularA-Medium.ttf') format('truetype'), url('../fonts/EuclidCircularA-Medium.svg#EuclidCircularA-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Euclid Circular A';
    src: url('../fonts/EuclidCircularA-SemiBold.eot');
    src: url('../fonts/EuclidCircularA-SemiBold.eot?#iefix') format('embedded-opentype'), url('../fonts/EuclidCircularA-SemiBold.woff2') format('woff2'), url('../fonts/EuclidCircularA-SemiBold.woff') format('woff'), url('../fonts/EuclidCircularA-SemiBold.ttf') format('truetype'), url('../fonts/EuclidCircularA-SemiBold.svg#EuclidCircularA-SemiBold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Euclid Circular A';
    src: url('../fonts/EuclidCircularA-Bold.eot');
    src: url('../fonts/EuclidCircularA-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/EuclidCircularA-Bold.woff2') format('woff2'), url('../fonts/EuclidCircularA-Bold.woff') format('woff'), url('../fonts/EuclidCircularA-Bold.ttf') format('truetype'), url('../fonts/EuclidCircularA-Bold.svg#EuclidCircularA-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
    margin: 0;
    padding: 0;
}

p {
    font-weight: 300;
}

body {
    font-family: var(--primary-font);
    background: var(--white-bg);
    font-size: 16px;
    line-height: 20px;
    color: var(--text-dark);
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

header.is-sticky {
    position: fixed;
    animation: slideDown 0.35s ease-out;
    top: -27px;
    -webkit-animation: slideDown 0.35s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.btn {
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    padding: 8px 28px;
    font-size: 16px;
    font-weight: 600;
}

.btn-lg {
    padding: 11px 34px;
}

.btn-primary {
    background: var(--green-bg);
    border-color: var(--green-bg);
}

.btn-outline-primary {
    border-color: var(--dark-bg);
    color: var(--text-dark);
}

.btn-primary:hover {
    background: var(--blue-bg);
    border-color: var(--blue-bg);
}

.btn-outline-secondary {
    border-color: var(--white-bg);
    color: var(--text-white);
}

.green-hover:hover {
    background: var(--green-bg);
    border-color: var(--green-bg);
}

.btn-blue {
    background: var(--blue-bg);
    border-color: var(--blue-bg);
}

.btn-orange {
    background: var(--orange-bg);
    border-color: var(--orange-bg);
}

.btn-dark {
    background: var(--dark-bg);
    border-color: var(--dark-bg);
}

header .nav li {
    margin: 0 25px;
}

header .nav-link {
    font-size: 14px;
    font-weight: normal;
    color: var(--text-dark);
    padding: 32px 0;
    position: relative;
    transition: ease-in-out 0.2s;
    -webkit-transition: ease-in-out 0.2s;
    -moz-transition: ease-in-out 0.2s;
    -ms-transition: ease-in-out 0.2s;
    -o-transition: ease-in-out 0.2s;
}

header .nav-link::after {
    content: '';
    width: 100%;
    height: 4px;
    background: transparent;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: ease-in-out 0.2s;
}

header .nav-link:hover {
    color: var(--text-blue);
}

header .nav-link:hover::after {
    background: var(--green-bg);
}

.topHeader {
    background: var(--lighgray-bg);
    padding: 3px 0;
}

.topHeader li {
    margin-right: 20px;
    font-size: 14px;
}

.topHeader li:last-child {
    margin-right: 0;
}

.topHeader li span {
    color: var(--text-blue);
    display: inline-block;
    margin-right: 5px;
}

.topHeader li a {
    color: var(--text-dark);
    text-decoration: none;
}

.topHeader li a:hover {
    color: var(--text-blue);
}

html,
body {
    height: 100%;
}

.heroBanner {
    min-height: 900px;
}

.heroBanner .slick-list,
.heroBanner .slick-track {
    height: 100%;
}

.heroBanner__item--content {
    /* max-width: 924px; */
    margin: auto;
    margin-top: 200px;
}

.heroBanner__item--content h1,
.heroBanner__item--content h2 {
    font-weight: bold;
    font-size: 42px;
    line-height: 46px;
    margin-bottom: 40px;
    color: var(--text-green);
}

.heroBanner__item--content h3 {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.heroBanner__item--content p {
    font-size: 16px;
    line-height: 20px;
    text-transform: capitalize;
}

.heroBanner__item--content .col-sm-4 {
    border-right: 1px solid #ddd;
}

.heroBanner__item--content .col-sm-4:last-child {
    border-right: 0;
}

.heroBanner__item--content .col-sm-4:hover h3 {
    color: var(--green-bg);
}

.custom-arrows .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    left: 5%;
    z-index: 1;
    font-size: 0;
    height: 34px;
    width: 34px;
    background: rgba(255, 255, 255, 0.2);
    border: 0;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.custom-arrows .slick-arrow::after {
    content: '\f104';
    position: absolute;
    left: 50%;
    color: #fff;
    font-size: 12px;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    font-family: "FontAwesome";
    font-size: 14px;
}

.custom-arrows .slick-arrow.slick-next {
    right: 5%;
    left: auto;
}

.custom-arrows .slick-arrow.slick-next::after {
    content: '\f105';
}

.custom-arrows-2 .slick-arrow {
    background: rgba(88, 88, 88, 0.2);
    left: -5%;
    color: var(--text-dark);
}

.custom-arrows-2 .slick-arrow.slick-next {
    right: -5%;
    left: auto;
}

.pt-8 {
    padding-top: 80px;
}

.pb-8 {
    padding-bottom: 80px;
}

.main-heading {
    margin-bottom: 50px;
}

.main-heading h1,
.main-heading h2 {
    font-size: 36px;
    font-weight: bold;
    color: var(--text-blue);
    margin-bottom: 20px;
    line-height: 36px;
}

.main-heading p {
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
}

.main-heading.text-white h1,
.main-heading.text-white h2 {
    color: var(--text-white);
}

.main-sub-heading h3 {
    font-size: 30px;
    font-weight: bold;
    color: var(--text-blue);
    margin-bottom: 20px;
    line-height: 30px;
}

.br-15 {
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.softThumbnail h4 {
    font-size: 20px;
    line-height: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.brandsSection__inner {
    padding: 0 130px;
}

.card-blue::before {
    content: '';
    position: absolute;
    background: rgba(14, 81, 128, 0.9);
    left: 0;
    top: 0;
    width: 100%;
    bottom: 0;
}

.card-green::before {
    content: '';
    position: absolute;
    background: rgba(116, 166, 62, 0.9);
    left: 0;
    top: 0;
    width: 100%;
    bottom: 0;
}

.card-orange::before {
    content: '';
    position: absolute;
    background: rgba(212, 121, 69, 0.9);
    left: 0;
    top: 0;
    width: 100%;
    bottom: 0;
}

.card-dark::before {
    content: '';
    position: absolute;
    background: rgba(29, 29, 29, 0.9);
    left: 0;
    top: 0;
    width: 100%;
    bottom: 0;
}

.card-skyblue::before {
    content: '';
    position: absolute;
    background: rgba(4, 169, 226, 0.9);
    left: 0;
    top: 0;
    width: 100%;
    bottom: 0;
}

.productCard {
    transition: ease-in-out 0.2s;
    -webkit-transition: ease-in-out 0.2s;
    -moz-transition: ease-in-out 0.2s;
    -ms-transition: ease-in-out 0.2s;
    -o-transition: ease-in-out 0.2s;
}

.productCard .card-footer {
    border-color: rgba(255, 255, 255, 0.2);
}

.productCard h4 a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 18px;
    line-height: 22px;
    font-weight: 500;
    display: block;
}

.productCard ul li {
    color: var(--text-white);
    font-size: 13px;
    margin-right: 10px;
}

.productCard .btn {
    font-size: 13px;
    font-weight: 500;
    padding: 8px 15px;
}

.productCard h4 a:hover {
    opacity: 0.6;
}

.productCard:hover {
    transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
}

.productSection__slider--item {
    padding: 0 15px;
}

.no-space .slick-list {
    margin: 0 -15px;
}

.productCard img {
    display: inline-block;
}

.productSection__in {
    padding: 0 120px;
}

.blue-overlay::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background: rgba(10, 90, 160, 0.9)
}

.helpSection__in {
    padding: 150px 0;
}

.helpSection__in h3 {
    color: var(--text-white);
    font-weight: bold;
    font-size: 30px;
    margin-top: 30px;
}

.reviewsSection__slider {
    height: 600px;
}

.reviewsSection__slider .slick-track,
.reviewsSection__slider .slick-list {
    height: 100%;
}

.reviewsSection__slider--item {
    padding: 70px 15px 30px;
    height: 100%;
}

.reviewsSection__slider--item .card {
    height: 100%;
}

.reviewsSection__slider--item .card-footer {
    flex: 1 1 auto;
}

.reviewsSection__slider--item .profile {
    margin-top: -80px;
}

.reviewsSection__slider--item span {
    display: block;
    font-size: 18px;
    font-weight: bold;
    margin-top: 40px;
}

.reviewsSection__slider--item small {
    display: block;
    margin: 5px 0 20px;
}

.reviewsSection__slider--item h5 {
    font-size: 18px;
    font-weight: bold;
    color: var(--text-blue);
    line-height: 20px;
    margin: 20px 0;
}

.reviewsSection__slider--item img {
    display: inline-block !important;
}

.footer {
    background: var(--black-bg);
}

.footerLinks h5 {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-green);
    margin-bottom: 15px;
}

.footerLinks li {
    margin-bottom: 7px;
}

.footerLinks li span {
    color: var(--text-green);
    display: block;
}

.footerLinks a {
    color: var(--text-gray);
    text-decoration: none;
}

.footerLinks a:hover {
    color: #ddd;
}

.copyrights {
    border-top: 1px solid var(--text-gray);
    padding-top: 40px;
    padding-bottom: 40px;
    margin-top: 50px;
}

.copyrights p {
    color: var(--text-gray);
    font-size: 14px;
}

.copyrights a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
}

.social a {
    font-size: 26px;
    display: inline-block;
    margin-right: 20px;
}

.go-top {
    position: fixed;
    bottom: 140px;
    right: 36px;
    width: 30px;
    height: 30px;
    padding: 20px;
    display: none;
    cursor: pointer;
    -webkit-font-smoothing: antialiased;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    background-color: #E5E8F0;
}

.go-top:after {
    font-family: FontAwesome;
    content: "\f106";
    color: #6a6e7c;
    position: absolute;
    font-size: 28px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}


/* login page */

.formCard {
    max-width: 462px;
    margin: auto;
}

.formCard .p-5 {
    padding: 40px !important;
}

.formCard h4 {
    color: var(--text-blue);
    font-weight: 600;
    font-size: 24px;
}

.formCard .form-control,
.formCard .form-select {
    border-color: #9a9a9a;
    padding: 10px 10px 10px 40px;
    font-size: 14px;
}

.formCard i {
    color: var(--text-blue);
    font-size: 14px;
    position: absolute;
    left: 25px;
    top: 14px;
}

.notLogin.p-5 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
}

.notLogin a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
}

.notLogin a:hover {
    color: var(--text-blue);
    text-decoration: underline;
}

.otherLogins span {
    font-size: 14px;
}

.otherLogins a {
    display: inline-block;
    border: 1px solid var(--text-gray);
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    padding: 5px;
    margin-left: 5px;
}


/* login page */


/* contact page */

.mt-110 {
    margin-top: 110px;
}

.pageBanner__content {
    max-width: 540px;
}

.pageBanner__content h1,
.pageBanner__content h2 {
    color: var(--text-white);
    font-weight: bold;
    font-size: 44px;
    line-height: 44px;
    margin-bottom: 20px;
}

.pageBanner__content p {
    color: var(--text-white);
    font-size: 18px;
    line-height: 24px;
}

.text-link {
    color: var(--text-green);
}

.text-blue {
    color: var(--text-blue);
}

.captchaImg {
    height: 43px;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    overflow: hidden;
}

.captchaLink {
    font-size: 12px;
    color: var(--text-blue);
}


/* contact page */


/* challange page */

.no-maxwidth {
    max-width: 100%;
}

.cis-content {
    margin-bottom: 30px;
}

.cis-content h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-blue);
    margin-bottom: 20px;
}


/* challange page */


/* video page */

.play-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.play-btn i {
    color: var(--blue-bg);
    font-size: 40px;
    position: relative;
    left: 4px;
}

.play-btn:hover i {
    color: var(--green-bg);
}

.play-btn::before {
    content: '';
    background: rgba(255, 255, 255, 0.5);
    position: absolute;
    height: 70px;
    width: 70px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.play-btn a {
    display: block;
}


/* video page */


/* faq page */

.faqSection__inner {
    max-width: 870px;
    margin: auto;
}

.faqSection__inner button {
    font-size: 18px;
    color: var(--text-blue);
    font-weight: 600;
}

.faqSection__inner .accordion-button:not(.collapsed) {
    color: var(--text-blue);
    background-color: var(--white-bg);
    box-shadow: none;
}

.faqSection__inner .accordion-item {
    overflow: hidden;
    border-radius: 6px !important;
    -webkit-border-radius: 6px !important;
    -moz-border-radius: 6px !important;
    -ms-border-radius: 6px !important;
    -o-border-radius: 6px !important;
}


/* faq page */


/* announcement page */

.bannerSearch input[type=text] {
    border-color: #fff;
    color: var(--text-white);
    padding: 10px 50px 10px 25px;
    font-size: 16px;
    font-weight: 500;
    background: transparent;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}

.bannerSearch button {
    position: absolute;
    right: 0;
    top: 0;
    height: 43px;
    width: 60px;
    color: var(--text-white);
}

.bannerSearch input::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #fff;
    opacity: 1;
    /* Firefox */
}

.bannerSearch input :-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #fff;
}

.bannerSearch input ::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #fff;
}

.announcementdate {
    width: 10%;
    border-right: 1px solid #ddd;
}

.announcementdate i {
    color: var(--text-gray);
}

.announcementdate span {
    font-size: 12px;
    line-height: 12px;
    display: block;
    color: var(--text-gray);
    margin-top: 10px;
}

.announcementdetails {
    width: 90%;
    padding-left: 30px;
}

.announcementdetails a {
    text-decoration: none;
    color: var(--text-blue);
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.announcementdetails p {
    font-size: 14px;
    line-height: 16px;
}

.nav-underline .nav-link {
    color: var(--text-gray);
}

.nav-underline .nav-link.active,
.nav-underline .show>.nav-link {
    color: var(--text-gray);
}

.myTabs li {
    margin-right: 15px;
}

.cis-book {
    max-width: 260px;
    margin-left: auto;
}


/* announcement page */


/* download page */

.productDownload_card {
    max-width: 980px;
    margin: auto;
}

.productDownload_card h5 {
    font-size: 18px;
    line-height: 22px;
    color: var(--text-blue);
    font-weight: 500;
    margin-bottom: 10px;
}

.productDownload_card h6 {
    font-size: 14px;
    line-height: 14px;
    color: var(--text-blue);
    font-weight: 500;
    margin-bottom: 10px;
}

.productDownload_card span {
    display: block;
    font-size: 14px;
    color: var(--text-gray);
}

.productDownload_card p {
    font-size: 12px;
    line-height: 14px;
}

.productDownload_card .btn {
    font-size: 13px;
    font-weight: 500;
    padding: 8px 15px;
}

.productDownload_card ul li {
    color: var(--text-gray);
    font-size: 12px;
    margin-right: 10px;
}


/* download page */


/* support page */

.supportSection__card {
    max-width: 260px;
    margin: auto;
}

.supportSection__card h5 {
    color: var(--text-blue);
    font-size: 18px;
    font-weight: 600;
    margin: 10px 0;
}

.supportSection__card p {
    font-size: 14px;
    line-height: 16px;
}

.spTab__card a {
    text-decoration: none;
    font-size: 16px;
    line-height: 18px;
    font-weight: 600;
    color: var(--text-blue);
    margin-bottom: 10px;
    display: block;
}

.spTab__card img {
    margin-left: -12px;
}

.spTab__card p {
    font-size: 14px;
    line-height: 16px;
}

.spTab__card .card-footer p {
    margin-left: 10px;
    font-size: 13px;
    font-weight: 600;
}

.supportSection .myTabs li {
    display: block !important;
}


/* support page */


/* press page */

.pressCard span {
    display: block;
    font-size: 16px;
    color: var(--text-blue);
    font-weight: 600;
    padding-bottom: 7px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 15px;
}

.pressCard a {
    text-decoration: none;
    color: var(--text-gray);
    font-size: 14px;
}

.pressCard a i {
    color: var(--text-blue);
    margin-top: -1px;
}


/* press page */


/* sitemap */

.sitemapSection h5 {
    color: var(--text-blue);
    margin-bottom: 30px;
}

.sitemapSection ul li {
    margin-bottom: 20px;
}

.sitemapSection ul li a {
    color: var(--text-gray);
    font-size: 14px;
}


/* sitemap */


/* problem solution page */

.probMainNav .nav-item button {
    opacity: 0.3;
    position: relative;
}

.probMainNav .nav-item button.active {
    opacity: 1;
}

.probMainNav .nav-item button.active::after {
    bottom: 0;
    left: 50%;
    border: solid transparent;
    content: "";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(13, 87, 152, 0);
    border-bottom-color: #132839;
    border-width: 12px;
    margin-left: -12px;
}

.probMainNav h6 {
    color: var(--text-gray);
    margin-top: 15px;
}

.probSubNav button {
    color: var(--text-white) !important;
    font-weight: 500 !important;
    margin: 0 15px;
}

.probSubNav .nav-link.active {
    border-bottom-color: var(--green-bg);
}

.myList li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
}

.myList li::before {
    content: '';
    background: url('../img/check-icon.png');
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background-size: cover;
}

.probSolutionSection .myList li {
    margin-bottom: 20px;
}

.probSolutionSection .myList li b {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 18px;
}


/* problem solution page */


/* remote work page */

.wfh-nums h3 {
    color: var(--text-blue);
    font-weight: bold;
    font-size: 30px;
    line-height: 30px;
}

.wfh-nums p {
    font-size: 14px;
}


/* remote work page */


/* feature page */

.mt--80 {
    margin-top: -80px;
}

.featureHeading {
    height: 80px;
}

.featureHeading h5 {
    font-size: 24px;
    font-weight: 600;
    position: relative;
    top: 2px;
}

.featureHeading h6 {
    font-size: 14px;
    line-height: 14px;
    color: var(--text-white);
}

.featureItems li {
    font-size: 14px;
    height: 30px;
    margin-bottom: 10px;
    line-height: 14px;
}

.featureItems .fa-check {
    color: var(--text-green);
}

.featureItems .fa-times {
    color: red;
}

.g-btn a {
    font-size: 12px;
}

.featureItems .card-footer h5 {
    font-weight: 600;
    color: var(--text-blue);
}

.featureItems .card-footer h3 {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.plan__description {
    font-size: 14px;
}

.plan__description h2 {
    font-size: 18px;
    color: var(--text-dark);
    font-weight: bold;
}

.plan__price__number {
    font-size: 45px;
    font-weight: bold;
    color: var(--text-dark);
}

.plan__price__symbol {
    font-size: 16px;
}

.plan__features {
    text-align: left;
}

.plan__extra_info {
    color: var(--text-gray);
}

.plan__price__full {
    padding-left: 8px;
    padding-right: 8px;
    top: -7px;
    font-size: 32px;
    color: #888;
    font-weight: 600;
    margin-right: 5px;
    letter-spacing: -1px;
}

.plan__price__full span {
    position: relative;
    font-weight: 600;
    font-size: 18px;
    margin-right: 2px;
    opacity: .75;
    vertical-align: top;
    top: 10px;
}

.plan__price__full::after {
    position: absolute;
    content: "";
    left: 0;
    top: 45%;
    right: 0;
    border-top: 2px solid;
    border-color: #ec4909;
    filter: drop-shadow(0 1px 0 #fff);
    -webkit-transform: skewY(25deg);
    -moz-transform: skewY(25deg);
    transform: skewY(25deg);
}

.popular {
    background: var(--blue-bg);
    color: var(--text-white);
    font-size: 16px;
    font-weight: 600;
    margin-top: -24px;
    padding: 5px;
    margin-bottom: 15px;
    border-radius: 0 0 15px 15px;
    -webkit-border-radius: 0 0 15px 15px;
    -moz-border-radius: 0 0 15px 15px;
    -ms-border-radius: 0 0 15px 15px;
    -o-border-radius: 0 0 15px 15px;
}

.popular-plan {
    border-width: 3px;
    border-color: var(--blue-bg);
}

.plansTabs .nav-link {
    background: var(--blue-bg);
    color: var(--text-white);
}

.pricingFeaturesTable {
    scroll-snap-type: x proximity;
}

.pricingFeaturesTable table {
    table-layout: fixed;
    min-width: 595px;
}

.pricingFeaturesTable td {
    text-align: center;
}

.pricingFeaturesTable th {
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    line-height: 14px;
    color: var(--text-dark);
}

.pricingFeaturesTable th:first-child {
    text-align: left;
    font-weight: normal;
}

.pricingFeaturesTable .fa-check {
    color: var(--text-green);
}

.pricingFeaturesTable th,
.pricingFeaturesTable td {
    background: var(--lighgray-bg);
}

.pricingFeaturesTable td {
    padding: 12px;
    position: relative;
    border-left: 1px solid #dae1e9;
    border-right: 1px solid #dae1e9;
    text-align: center;
    scroll-snap-align: end;
    cursor: default;
}


/* feature page */

.add-text {
    border: 1px solid #fff;
    padding: 5px 10px;
    border-radius: 10px;
    display: inline;
    background: #0a5291;
    font-size: 16px !important;
    line-height: 16px !important;
}