:root {
    --primary-color: #258EEA;
    --primart-opacity: rgba(34, 150, 236, 0.10);
    --dark-color: #163D5D;
    --copy-color: #444A58;
    --light-color: #F6F9FF;
    --body-color: #F7FAFC;
    --white: #ffffff;
    --transition: .3s all ease;
}

.bg-body {
    background-color: var(--body-color) !important;
}

.text-dblue {
    color: var(--dark-color) !important;
}

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

.navbar-toggler {
    position: relative;
    box-shadow: none !important;
    min-width: 30px;
}

.navbar-toggler span {
    display: block;
    width: 30px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--dark-color);
    border-radius: 5px;
    margin: auto;
    -moz-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.navbar-toggler span:before {
    content: "";
    width: 100%;
    position: absolute;
    top: -11px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--dark-color);
    border-radius: 5px;
    -moz-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.navbar-toggler span:after {
    content: "";
    width: 100%;
    position: absolute;
    bottom: -11px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--dark-color);
    border-radius: 5px;
    -moz-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.navbar-toggler[aria-expanded="true"] span {
    background: transparent;
}

.navbar-toggler[aria-expanded="true"] span:before {
    transform: rotate(45deg);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.navbar-toggler[aria-expanded="true"] span:after {
    transform: rotate(-45deg);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.review-col .name .icon svg{
    width: 42px;
    height: 42px;
    border: solid 1.5px #fff;
    border-radius: 100px;
    position: absolute;
    top: 3px;
    left: 3px;
    padding: 3px;
}
.review-col .name .icon {
    width: 48px;
    height: 48px;
    background: #163d5d;
    border-radius: 100px;
    padding: 10px;
    fill: #fff;
    position: relative;
    margin-right: 10px;
}
.owl-item.center .story-col .icon {
    top: -45px;
    width: 90px;
    height: 90px;
}

.owl-item.center .story-col .icon svg {
    width: 83px;
    height: 83px;
    border: solid 2px #fff;
    border-radius: 100px;
    /* padding: 0; */
    position: absolute;
    top: 3.5px;
    left: 3.5px;
    padding: 6px;
}

.story-col .icon {
    width: 70px;
    height: 70px;
    margin: auto;
    position: relative;
    top: -35px;
    background: #163d5d;
    border-radius: 100px;
    padding: 10px;
    fill: #fff;
}
.story-col .icon svg{

    width: 63px;
    height: 63px;
    border: solid 2px #fff;
    border-radius: 100px;
    position: absolute;
    top: 3px;
    left: 3px;
    padding: 6px;
}

/* Importing Fonts */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

/* Style */

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

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--copy-color);
}

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

img {
    width: 100%;
    height: auto;
}

h1 {
    font-size: 48px;
    color: var(--white);
    font-weight: 700;
}

h2 {
    font-size: 46px;
    font-weight: 700;
    color: var(--dark-color);
}

h3 {
    font-size: 38px;
    font-weight: 700;
}

h4 {
    font-size: 20px;
    font-weight: 700;
}

.section-title h2 span {
    color: var(--primary-color);
}

.section-title p {
    font-size: 18px;
}

.site-btn {
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    font-size: 16px;
    text-decoration: none;
    border-radius: 6px;
    display: inline-block;
    text-align: center;
    min-width: 440px;
    position: relative;
    padding: 10px 10px;
    overflow: hidden;
}

.site-btn span {
    color: #fff;
    position: relative;
    z-index: 1;
}

.site-btn::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -100%;
    width: 100%;
    height: 100%;
    /* border-radius: 6px; */
    background: var(--white);
    transition: var(--transition);
}

.site-btn:hover::before {
    bottom: 0;
    transition: var(--transition);
}

.site-btn:hover span {
    color: var(--primary-color);
    transition: var(--transition);
}

.site-btn.outline {
    border-color: var(--dark-color);
}

.site-btn.dark {
    background-color: var(--dark-color);
    border-color: var(--dark-color);
}

.site-btn.white span,
.site-btn.outline span {
    color: var(--dark-color);
}

.site-btn.white,
.site-btn.outline {
    background: #fff;
}

.site-btn.dark:hover span {
    color: var(--dark-color);
}

.site-btn.white:hover span,
.site-btn.outline:hover span {
    color: var(--white);
}

.site-btn.outline::before,
.site-btn.white::before {
    background: var(--dark-color);
}

input.site-btn {
    color: #fff;
    position: relative;
    transition: var(--transition);
}

input.site-btn:hover {
    background: var(--white);
    color: var(--primary-color);
    transition: var(--transition);
}

.section-title span {
    color: var(--primary-color);
    font-size: 124px;
    font-weight: 700;
    margin-right: 20px;
    line-height: 1.0;
}

.section-title h2 {
    line-height: 1.4;
}

ul.list-style li {
    padding-left: 14px;
    margin-top: 20px;
    font-size: 17px;
}

ul.list-style li::before {
    content: "\2022";
    color: #00CB62;
    font-weight: bold;
    display: inline-block;
    margin-left: -1em;
    margin-right: 8px;
    transform: scale(1.22);
}

input,
select {
    min-height: 45px;
    border-color: var(--copy-color);
}

input,
input::placeholder,
select,
select option {
    color: rgba(68, 74, 88, 0.75);
}


/* Header */

header {
    position: absolute;
    left: 0;
    top: 45px;
    width: 100%;
    z-index: 1060;
}

header.scroll {
    position: fixed;
    top: 10px;
}

header.scroll nav {
    box-shadow: -14px 9px 15px rgba(22, 61, 93, 0.15);
}

header nav {
    background-color: var(--white);
    border-radius: 10px;
    padding: 15px;
}

header .site-btn {
    min-width: 145px;
}

header .navbar-nav .nav-item {
    margin-left: 40px;
}

header .navbar-nav .nav-item:first-of-type {
    margin-left: 0;
}

header .navbar-nav .nav-link {
    position: relative;
    color: var(--dark-color);
    transition: var(--transition);
}

@media (min-width: 768px) {
    header .navbar-nav .nav-link::before {
        content: "";
        position: absolute;
        width: 0;
        height: 5px;
        left: 0;
        bottom: -8px;
        border-radius: 20px;
        background-color: var(--primary-color);
        transition: var(--transition);
    }
}

header .navbar-nav .nav-link:hover {
    transition: var(--transition);
    color: var(--primary-color);
}

header .navbar-nav .nav-link:hover::before {
    transition: var(--transition);
    width: 100%;
}

header .navbar-nav .nav-link.active {
    color: var(--primary-color);
    font-weight: bold;
    transition: var(--transition);
}

header .navbar-nav .nav-link.active::before {
    transition: var(--transition);
    width: 100%;
}


/* Banner */

section.banner {
    background-color: var(--dark-color);
    padding: 185px 0 0;
}

section.banner .text {
    max-width: 485px;
    padding-top: 24px;
}

section.banner h1 {
    max-width: 470px;
}

section.banner p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 18px 0 40px;
}

section.banner .img {
    background: url(../images/budget-b.png) no-repeat;
    background-size: 100% 100%;
    padding: 0 45px 0 95px;
}

section.banner .img img {
    margin-top: -30px;
}


/* Logos Section */

section.logos {
    padding: 65px 0 100px;
}

.logo-slider .owl-stage {
    display: flex;
}

.logo-slider .item {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Section 3 */

section.sec-3 {
    padding-bottom: 50px;
}

section.sec-3 .section-title {
    max-width: 925px;
    margin: 0 auto 40px;
}

section.sec-3 .wrapper {
    max-width: 1095px;
    margin: auto;
}

section.sec-3 .row {
    gap: 15px;
}

@media (min-width: 768px) {
    section.sec-3 .col-md-6 {
        width: calc(50% - 7.5px);
    }
}

.issue-col {
    background-color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding: 18px 20px;
    column-gap: 15px;
}

.issue-col h3 {
    color: var(--dark-color);
    border-radius: 50%;
    background-color: rgba(34, 150, 236, 0.1);
    border: 1px solid #2296EC;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 34px;
    line-height: 1.0;
    margin: 0;
}

.issue-col p {
    margin-bottom: 0;
    font-size: 20px;
    font-weight: 500;
    width: calc(100% - 60px);
}


/* Story Section */

section.sec-4 {
    background-color: #EBF6FF;
    padding: 55px 0 85px;
}
section.sec-4 .story-col {
    background: var(--white);
    border-radius: 10px;
    padding: 0 18px 30px;
    min-height: 320px;
}
.owl-item.active.center .item .story-col {
    height: calc(320px + 60px)!important;
}

section.sec-4 .owl-stage {
    display: flex;
    align-items: flex-end;
}

section.sec-4 .item {
    padding-top: 45px;
}

.story-col img {
    max-width: 70px;
    margin: auto;
    position: relative;
    top: -35px;
}
.story-col .name.name.position-absolute {
    bottom: 20px;
}

.owl-item.center .story-col img {
    top: -45px;
    max-width: 90px;
}

.story-col p {
    font-size: 18px;
    opacity: 0.9;
    margin: 0;
}

.owl-item.center .story-col p {
    font-size: 19px;
}

.story-col .name {
    margin-top: 35px;
}

.story-col .name p {
    color: var(--primary-color);
    font-weight: 500;
}

.story-col h4 {
    color: var(--dark-color);
    margin-bottom: 6px;
}

.story-slider {
    min-height: 420px;
}

.story-slider .owl-dots,
.review-slider .owl-dots {
    position: absolute;
    bottom: -33%;
    left: 0;
    right: 0;
}

.story-slider.owl-theme .owl-dots .owl-dot span,
.review-slider.owl-theme .owl-dots .owl-dot span {
    background-color: transparent;
    border: 1px solid var(--dark-color);
}

.story-slider.owl-theme .owl-dots .owl-dot.active span,
.review-slider.owl-theme .owl-dots .owl-dot.active span {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}


/* section 5 */

section.sec-5 {
    padding: 100px 0;
}

section.sec-5 .section-title h2 {
    line-height: 1.1;
}

section.sec-5 .section-title small {
    display: block;
    font-weight: 600;
    font-size: 38px;
}


/* Section 6 */

section.sec-6 {
    background-color: var(--dark-color);
    padding-top: 50px;
}

section.sec-6 .section-title p {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 0;
}

section.sec-6 .section-title h3 {
    opacity: 0.9;
    margin: 25px 0 0;
}

@media (min-width: 768px) {
    section.sec-6 .col-md-8 {
        width: 59.5%;
    }
    section.sec-6 .col-md-4 {
        width: 40%;
    }
}


/* Section 7 */

section.sec-7 {
    padding: 115px 0;
}

section.sec-7 .section-title {
    max-width: 625px;
    margin: 0 auto 80px;
}

section.sec-7 .text p {
    font-size: 14px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

section.sec-7 .row-wrap {
    row-gap: 120px;
    display: flex;
    flex-direction: column;
}

section.sec-7 .row1 .text {
    max-width: 510px;
}

section.sec-7 .row1 .text h2 {
    margin-bottom: 40px;
}

section.sec-7 .row1 .img {
    max-width: 300px;
    text-align: center;
}

section.sec-7 .text input {
    margin-bottom: 20px;
}

section.sec-7 .row1 .img .site-btn {
    min-width: 223px;
    margin-top: 15px;
}

section.sec-7 .text ul {
    margin-bottom: 40px;
}

section.sec-7 .text li {
    font-size: 18px;
    padding-left: 22px;
}

section.sec-7 .text li::before {
    color: var(--primary-color);
}

section.sec-7 .wrapper {
    width: 100%;
    max-width: 855px;
    margin: auto;
}

section.sec-7 .cus-video {
    position: relative;
    z-index: 1;
    padding: 0 20px 20px;
}

section.sec-7 .cus-video::before {
    position: absolute;
    content: "";
    border-radius: 10px;
    background: var(--primary-color);
    height: 95%;
    width: 100%;
    bottom: 0;
    left: 0;
    z-index: -1;
}

section.sec-7 .cus-video .vc {
    border-radius: 10px;
}

section.sec-7 .cus-video .play {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    max-width: 65px;
}

section.sec-7 .row4 .vid-sub {
    text-align: center;
    margin-top: 12px;
}

section.sec-7 .row4 .vid-sub b {
    font-weight: 600;
}

section.sec-7 .row4 .text li {
    margin-top: 15px;
}

section.sec-7 .row4 .text ul {
    margin-bottom: 30px;
}

section.sec-7 .row4 .text .site-btn {
    min-width: 250px;
}


/* Section 8 */

section.sec-8 {
    background: rgba(34, 150, 236, 0.06);
    padding: 60px 0 70px;
}

section.sec-8 .section-title {
    margin-bottom: 40px;
}

.review-slider.owl-carousel .owl-stage {
    display: flex;
    align-items: stretch;
}

.review-slider.owl-carousel .item,
.review-col {
    height: 100%;
}

.review-col {
    background-color: var(--white);
    border-radius: 10px;
    padding: 24px 28px 24px 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-col .top img {
    max-width: 36px;
    margin-bottom: 23px;
}

.review-col p {
    font-size: 18px;
}

.review-col .name {
    display: flex;
    align-items: center;
    margin-top: 50px;
}

.review-col .name img {
    max-width: 48px;
    margin-right: 12px;
}

.review-col h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0px;
    color: var(--dark-color);
}

.review-col .name p {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 0px;
}

.review-slider .owl-dots {
    bottom: -40%;
}


/* Section 9 */

section.sec-9 {
    background: url(../images/podcast-bg.png) no-repeat;
    background-size: 100% 100%;
    padding: 30px 0 2px;
}

@media (min-width: 768px) {
    section.sec-9 .col-md-6 {
        width: 53%;
    }
}

section.sec-9 h2 {
    margin-bottom: 37px;
    line-height: 1.3;
}


/* Section 10 */

section.sec-10 {
    background-color: #F7FAFC;
}

section.sec-10 .wrapper-1 {
    background: var(--primary-color);
    padding: 30px 0;
    margin-top: -1px;
}

section.sec-10 .wrapper-1 .site-btn {
    min-width: 315px;
}

section.sec-10 .wrapper-1 h2 {
    font-size: 28px;
}

section.sec-10 .wrapper-2 {
    padding: 100px 0;
}

section.sec-10 .wrapper-2 .section-title {
    margin-bottom: 40px;
}

section.sec-10 .quick-link {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 3px 26px rgba(22, 61, 93, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px 20px 16px;
    margin-top: 20px;
    min-height: 80px;
    transition: var(--transition);
}

.quick-link .name p {
    margin-bottom: 0;
    margin-left: 16px;
    font-weight: 500;
    font-size: 20px;
}
.quick-link .name img {
    width: min-content;
    height: 40px;
}
.quick-link .arrow {
    max-width: 19px;
}

section.sec-10 .quick-link .outer {
    color: var(--dark-color);
    transition: var(--transition);
}

section.sec-10 .quick-link .inner {
    color: var(--primary-color);
    transition: var(--transition);
}

section.sec-10 .quick-link .arrow {
    color: var(--primary-color);
    transition: var(--transition);
}

section.sec-10 .quick-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transition: var(--transition);
}

section.sec-10 .quick-link:hover .arrow,
section.sec-10 .quick-link:hover .inner {
    color: var(--white);
    transition: var(--transition);
}


/* section.sec-10 .quick-link:hover .outer{
    color: ;
} */


/* Footer */

.site-footer {
    background: var(--dark-color);
    padding: 38px 0 8px;
}

.site-footer p a {
    transition: var(--transition);
    text-decoration: none;
}

.site-footer p a:hover {
    color: var(--primary-color) !important;
    transition: var(--transition);
}

.site-footer .social {
    display: flex;
    justify-content: center;
    column-gap: 11px;
}

.site-footer .social a {
    width: 36px;
    height: 36px;
}

@media (min-width: 2300px) {
    .site-footer .social a {
        width: 37px;
        height: 37px;
    }
}

.site-footer .social a,
.site-footer .policy a {
    color: #DDDDDD;
    text-decoration: none;
    transition: var(--transition);
}

.site-footer .social a:hover,
.site-footer .policy a:hover {
    color: var(--primary-color);
    transition: var(--transition);
}

.site-footer .policy a {
    margin-left: 8px;
    padding-left: 8px;
    border-left: 2px solid #DDDDDD;
    line-height: 1.0;
}

.site-footer .policy a:first-of-type {
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
}

.site-footer .bar {
    margin-top: 30px;
    padding-top: 12px;
    color: var(--white);
    border-top: 1px solid #DDDDDD;
}


/* Podcasts page */


/* Banner */

section.podcast-banner {
    background-color: #F5FBFF;
    padding-bottom: 35px;
}

section.podcast-banner h1 {
    max-width: 100%;
    color: var(--dark-color);
}

section.podcast-banner h1 span {
    color: var(--primary-color);
}

section.podcast-banner p {
    font-size: 16px;
    color: #163D5D;
    margin: 0 0 12px;
}

section.podcast-banner .sub-para {
    font-size: 12px;
    max-width: 290px;
}

section.podcast-banner h3 {
    font-size: 50px;
    line-height: 1.0;
    margin-bottom: 13px;
    color: var(--primary-color);
}

section.podcast-banner .row .site-btn {
    min-width: 223px;
    margin-top: 24px;
}

section.banking-clip .row p,
section.trending-poadcast .row p {
    font-size: 27px;
    margin: 10px 0 25px;
    line-height: 1.3;
}

section.banking-clip .card,
section.trending-poadcast .card {
    padding: 20px 22px 15px;
    box-shadow: 0 13px 30px rgba(22, 61, 93, 18%);
    border: none;
    border-radius: 10px;
}


/* Media Page */

section.media-banner {
    /* padding-bottom: 190px; */
}

section.media-banner form {
    background: var(--white);
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    text-align: center;
    padding: 20px 20px;
    margin-bottom: -70px;
}

section.media-banner form h3 {
    font-size: 34px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 30px;
}

section.media-banner form [class*="col-"] {
    margin-top: 10px;
}

section.media-banner form input:not(.form-check-input) {
    height: 50px;
    font-weight: 500;
}

section.media-banner form select {
    height: 50px;
}

section.media-banner .form-check {
    display: flex;
    align-items: center;
    border: 1px solid #E1E1E1;
    border-radius: 4px;
    padding: 16px 16px;
}

section.media-banner .form-check input {
    margin-left: 0;
    width: 40px;
    height: 40px;
}

section.media-banner .form-check label {
    text-align: left;
    margin-left: 10px;
}

section.media-banner form input,
section.media-banner form input::placeholder,
section.media-banner form select,
section.media-banner form textarea,
section.media-banner form textarea::placeholder {
    color: rgba(68, 74, 88, 0.6);
    border-radius: 4px;
}

section.media-banner form .site-btn {
    min-width: unset;
    width: 100%;
}

section.media-sec-3 {
    margin: 100px auto;
}

section.media-sec-3 .wrapper {
    border-radius: 6px;
    background-color: var(--white);
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.1);
    max-width: 1010px;
    padding: 30px 30px 15px;
    margin: auto;
}

section.media-sec-3 .text h2 {
    font-size: 40px;
}

section.media-sec-3 .text p {
    font-size: 18px;
    margin-bottom: 0;
}

section.media-sec-3 .text .site-btn {
    margin-top: 20px;
    min-width: 150px;
}

section.media-sec-3 .img {
    margin: -95px 0 0 auto;
    max-width: 295px;
}

section.media-sec-4 {
    padding: 170px 0 100px;
}

section.media-sec-4 .section-title {
    margin-bottom: 40px;
}

section.media-sec-4 .video-sec-col {
    background: var(--white);
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    padding: 16px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

section.media-sec-4 .video-sec-col .img {
    position: relative;
    width: 43%;
}

section.media-sec-4 .video-sec-col .img .vc {
    border-radius: 10px;
}

section.media-sec-4 .video-sec-col .play {
    position: absolute;
    max-width: 31px;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

section.media-sec-4 .video-sec-col .text {
    width: 54%;
}

section.media-sec-4 .video-sec-col h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

section.media-sec-4 .video-sec-col p {
    font-size: 14px;
    margin-bottom: 20px;
}

section.media-sec-4 .video-sec-col p b {
    font-weight: 600;
}

section.media-sec-4 .video-sec-col .text .btn {
    color: var(--primary-color);
    font-size: 18px;
    text-decoration: none;
}

section.media-sec-4 .wrapper-title {
    position: relative;
    z-index: 1;
    margin: 106px 0 0;
    padding: 70px 0;
    background-color: var(--dark-color);
}

section.media-sec-4 .wrapper-title p {
    font-size: 18px;
    max-width: 806px;
    margin: 18px auto;
    color: rgba(255, 255, 255, 0.9);
}

section.media-sec-4 .wrapper-title p:nth-of-type(2) {
    max-width: 780px;
    margin-bottom: 0;
}

section.media-sec-4 .wrapper-title p a {
    color: rgba(34, 150, 236, 0.9);
    text-decoration: none;
}

section.media-sec-4 .wrapper-2 {
    margin-top: 100px;
}

section.media-sec-4 .wrapper-2 .text {
    max-width: 607px;
}

section.media-sec-4 .wrapper-2 .text p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.7;
}

section.media-sec-4 .wrapper-2 .text .site-btn {
    min-width: 150px;
}

section.media-sec-4 .wrapper-2 .img {
    max-width: 440px;
    margin-left: auto;
}

section.media-sec-4 .wrapper-2 .bg-logo {
    margin-top: 40px;
    background: var(--primary-color);
    padding: 18px 30px;
    border-radius: 10px;
}


/* Quiz Page */

section.quiz-banner {
    min-height: 490px;
}

section.quiz-sec {
    padding-bottom: 110px;
}

section.quiz-sec .quiz-wrapper {
    background-color: var(--white);
    border-radius: 6px;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.1);
    padding: 75px 15px;
    margin-top: -26%;
    position: relative;
}

.quiz-wrapper .quiz-step {
    max-width: 590px;
    margin: auto;
}

.quiz-wrapper .section-title p {
    margin: 30px 0;
}

.quiz-wrapper .quiz-col {
    margin-bottom: 30px;
    position: relative;
}

.quiz-wrapper .quiz-col input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.quiz-wrapper .quiz-col label {
    border: 1px solid var(--copy-color);
    border-radius: 6px;
    width: 100%;
    text-align: center;
    color: rgba(68, 74, 88, 0.75);
    padding: 10px 15px;
    transition: var(--transition);
}

.quiz-wrapper .quiz-col input:checked+label {
    border-color: var(--dark-color);
    color: var(--white);
    background-color: var(--dark-color);
    transition: var(--transition);
}

.quiz-wrapper .submit-container {
    margin-top: 10px;
}

.submit-container .quiz-step-info {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 15px;
}

.quiz-step-info p {
    color: rgba(68, 74, 88, 0.75);
    font-size: 14px;
    line-height: 1.0;
    margin: 0;
}

.quiz-step-info p.output {
    border-radius: 3px;
    border: 1px solid rgba(68, 74, 88, 0.3);
    padding: 5px 19px;
    margin: 0 10px;
}


/* Books Page */

section.books-banner {
    min-height: 660px;
}

section.books-sec .books-wrapper {
    background-color: var(--white);
    border-radius: 6px;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.1);
    padding: 30px 22px 45px;
    margin-top: -38%;
    position: relative;
}

.books-wrapper .section-title p {
    font-size: 17px;
}

.books-wrapper .reviews {
    display: flex;
    align-items: center;
}

.books-wrapper .reviews p {
    font-weight: 500;
    margin: 0 12px 0 0;
}

.books-wrapper .reviews img {
    max-width: 100px;
}

.books-wrapper .price {
    display: flex;
    align-items: flex-end;
    margin: 20px 0 15px;
}

.books-wrapper .price p {
    color: rgba(68, 74, 88, 0.9);
}

.books-wrapper .price h3 {
    color: var(--primary-color);
    margin: 0 0 0 10px;
}

.books-wrapper .tags {
    border-top: 1px solid rgba(68, 74, 88, 0.08);
    padding-top: 20px;
    margin-bottom: 30px;
}

.books-wrapper .tags span {
    font-size: 18px;
    font-weight: 500;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    margin-right: 15px;
    padding: 9px 16px;
    display: inline-block;
}

.books-wrapper .social {
    margin-top: 20px;
}

.books-wrapper .social a {
    text-decoration: none;
    padding-right: 12px;
    margin-right: 12px;
    border-right: 1px solid rgba(68, 74, 88, 0.12);
}


/* .book-slider {
    margin-bottom: 15px;
} */

.book-slider .f-carousel__slide.is-selected {
    text-align: center;
}

.book-slider {
    margin-bottom: 20px;
}

.book-slider .f-carousel__slide>img {
    width: 60%;
}

.books-wrapper .f-thumbs__slide {
    width: 142px;
    height: 142px;
}

section.book-sec-2 .wrapper {
    background-color: var(--primary-color);
    max-width: 100%;
    padding-bottom: 20px;
}

section.book-sec-2 {
    margin-bottom: 70px;
}

section.book-sec-2 .img {
    margin-top: -116px;
}

section.quiz-tab {
    margin-bottom: 110px;
}

section.quiz-tab .nav-tabs {
    border-bottom-color: rgba(68, 74, 88, 0.15);
}

section.quiz-tab .nav-tabs .nav-link {
    background-color: transparent;
    color: var(--copy-color);
    border: none;
    padding-bottom: 20px;
    position: relative;
    padding-left: 0;
    padding-right: 0;
    margin-right: 50px;
}

section.quiz-tab .nav-tabs .nav-link.active {
    color: var(--primary-color);
    font-weight: 700;
}

section.quiz-tab .nav-tabs .nav-item:last-of-type .nav-link {
    margin-right: 0;
}

section.quiz-tab .nav-tabs .nav-link::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 4px;
    border-radius: 20px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

section.quiz-tab .nav-tabs .nav-link.active::before {
    width: 100%;
    transition: var(--transition);
}

section.quiz-tab .tab-inner {
    padding-top: 30px;
}

section.quiz-tab .tab-inner p {
    font-size: 16px;
}

section.quiz-tab .tab-inner h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

section.quiz-tab .tab-inner ol li {
    list-style-type: decimal;
}

section.quiz-tab .tab-inner li {
    margin-top: 16px;
}

ul.cus-list-style li {
    position: relative;
    padding-left: 16px;
}

ul.cus-list-style li::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-color);
    left: 0;
    top: 8px;
    margin: auto;
}


/* Software Page///////////////////////////////////////////// */

section.software-banner {
    min-height: 630px;
}

section.software-banner p {
    font-size: 18px;
    margin: 16px auto;
    max-width: 480px;
}


/* section-2 */

section.software-sec-2 {
    margin: -17% auto 100px;
}

section.software-sec-2 .wrapper {
    max-width: 1110px;
}

section.software-sec-2 .cus-video {
    position: relative;
    z-index: 1;
    padding: 0 40px 24px;
}

section.software-sec-2 .cus-video::before {
    position: absolute;
    content: "";
    border-radius: 10px;
    background: var(--primary-color);
    height: 75%;
    width: 100%;
    bottom: 0;
    left: 0;
    z-index: -1;
}

section.software-sec-2 .cus-video .vc {
    border-radius: 10px;
}

section.software-sec-2 .cus-video .play {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    max-width: 65px;
}

section.software-sec-2 .vid-sub {
    text-align: center;
    font-size: 18px;
    font-weight: 200;
    margin-top: 10px;
}

section.software-sec-2 .vid-sub b {
    font-weight: 600;
    color: var(--dark-color);
}


/* software Sec-3 */

section.software-sec-3 {
    margin-bottom: 120px;
}

section.software-sec-3 .text p {
    font-size: 17px;
    max-width: 485px;
    margin-top: 20px;
    line-height: 1.7;
}

section.software-sec-3 .img {
    position: relative;
    z-index: 1;
    padding: 0 10px 20px 0;
}

section.software-sec-3 .img::before {
    position: absolute;
    content: "";
    border-radius: 10px;
    background: var(--primary-color);
    height: 90%;
    width: 94%;
    bottom: 0;
    right: 0;
    z-index: -1;
}

section.software-sec-3 .row,
section.software-sec-4 .row {
    margin-bottom: 80px;
}

section.software-sec-3 .row2 img {
    padding-right: 5px;
    box-shadow: -14px 10px 30px rgba(22, 61, 93, 0.15);
}

section.software-sec-3 .row2 .img::before {
    background: #163D5D;
    height: 84%;
    width: 93%;
}

section.software-sec-3 .row1 img,
section.software-sec-3 .row3 img {
    box-shadow: -14px 9px 15px rgba(22, 61, 93, 0.15);
    border-radius: 10px;
}

section.software-sec-3 .row3 .img::before {
    height: 93%;
    width: 90%;
}

.software-sec-3 .row2 .text {
    max-width: 500px;
    margin-left: auto;
}


/* software Sec-4 */

section.software-sec-4 {
    margin-bottom: 90px;
}

section.software-sec-4 .title h2 {
    max-width: 870px;
    margin: 0 auto 100px;
}

section.software-sec-4 .text p {
    font-size: 18px;
    line-height: 1.6;
}

section.software-sec-4 .img {
    position: relative;
    z-index: 1;
    padding: 0 0 20px;
}

section.software-sec-4 .img::before {
    position: absolute;
    content: "";
    border-radius: 10px;
    background: var(--primary-color);
    height: 92%;
    width: 86%;
    bottom: 0;
    right: 0;
    z-index: -1;
}

section.software-sec-4 .row1 img,
section.software-sec-4 .row2 img {
    padding-right: 15px;
    box-shadow: -14px 9px 15px rgba(22, 61, 93, 0.15);
    border-radius: 10px;
}

section.software-sec-4 .row1 .img::before {
    background: #163D5D;
    height: 92%;
    width: 95%;
}


/* section-5 */

section.software-sec-5 {
    margin-bottom: 120px;
}

section.software-sec-5 .title h2 {
    margin: 0 auto 100px;
    max-width: 1015px;
}

section.software-sec-5 .text h2 {
    margin-bottom: 20px;
}

section.software-sec-5 .text p {
    font-size: 18px;
    line-height: 1.7;
}

section.software-sec-5 .row2 .text p {
    max-width: 485px;
}

section.software-sec-5 .row1 .img {
    position: relative;
    z-index: 1;
    padding: 15px 0 0 15px;
}

section.software-sec-5 .row1 img {
    box-shadow: 14px 9px 15px rgba(22, 61, 93, 0.15);
    border-radius: 10px;
}

section.software-sec-5 .row {
    margin-bottom: 25px;
}

section.software-sec-5 .row1 .img::before {
    position: absolute;
    content: "";
    border-radius: 10px;
    background: #163D5D;
    height: 83%;
    width: 96%;
    top: 0;
    left: 0;
    z-index: -1;
}


/* section-6 */

section.software-sec-6 {
    margin-bottom: 100px;
}

section.software-sec-6 h4 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--dark-color);
}

section.software-sec-6 .tabel {
    background: #FFFFFF;
    box-shadow: 0 3px 20px rgba(69, 67, 67, 0.1);
    border-radius: 6px;
    padding: 30px 40px 40px;
}

section.software-sec-6 .title h2 {
    margin-bottom: 50px;
}

.tabel .table>:not(caption)>*>* {
    border: none;
}

.tabel .table-striped>tbody>tr:nth-of-type(odd)>* {
    --bs-table-accent-bg: #F7F7F7;
}

section.software-sec-6 table th {
    color: #163D5D !important;
    font-size: 18px;
    font-weight: 600;
}

section.software-sec-6 td {
    color: rgba(22, 61, 93, 0.75) !important;
    font-size: 14px;
    font-weight: 500;
    padding: 13px 15px;
}

section.software-sec-6 td img {
    max-width: 18px;
}

section.software-sec-6 .cus-btn {
    background-color: #163D5D;
    border: none;
    color: white;
    font-size: 16px;
    height: 45px;
    width: 188px;
    border-radius: 6px;
}

section.software-sec-6 .site-btn {
    min-width: 180px;
}


/* section-7 */

section.software-sec-7 {
    background: rgba(34, 150, 236, 0.07);
}

section.software-sec-7 .wrapper {
    padding-bottom: 60px;
}

section.software-sec-7 .section-title h2 {
    padding: 50px 0;
}

section.software-sec-7 .accordion-item {
    margin-bottom: 30px;
    border-radius: 6px !important;
    border: none;
}

section.software-sec-7 .accordion-body {
    font-size: 18px;
    padding: 16px 30px;
}

section.software-sec-7 .accordion-button {
    font-size: 18px;
    padding: 19px 30px;
    box-shadow: none;
    background: #fff !important;
}

section.software-sec-7 .accordion-button:not(.collapsed) {
    border-bottom: 1px solid rgba(22, 61, 93, 0.2);
    font-weight: 700;
    color: #212529;
}

section.software-sec-7 .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}


/* Popups */

.modal {
    z-index: 1090;
}

.modal .modal-dialog {
    max-width: 600px;
}

.modal .modal-content {
    border-radius: 15px;
}

.modal .modal-body,
.modal .modal-footer {
    padding-left: 40px;
    padding-right: 40px;
}


/* Message popup */

.message-popup .modal-dialog {
    max-width: 450px;
}

.message-popup .modal-content {
    border-radius: 10px;
}

.message-popup .modal-body,
.message-popup .modal-footer {
    padding-left: 20px;
    padding-right: 20px;
}

.message-popup .message {
    font-size: 18px;
    max-width: 385px;
    margin: 0 auto 20px;
}

.message-popup .site-btn {
    min-width: 150px;
}

.share-story .site-btn {
    min-width: 150px;
}

.message-popup.long-message .message {
    font-size: 16px;
}

section.terms-page {
    padding: 170px 0 80px;
    background: var(--body-color);
}

section.terms-page h4 {
    margin: 24px 0;
}

section.terms-page li {
    margin-top: 10px;
}

@media (max-width: 1199px) {
    h1 {
        font-size: 40px;
    }
    header .site-btn {
        min-width: 129px;
    }
    header .navbar-nav .nav-item {
        margin-left: 20px;
    }
    section.banner .text {
        padding-bottom: 24px;
    }
    section.banner p {
        font-size: 16px;
    }
    section.sec-4 .story-col {
        padding: 0 12px 30px;
    }
    .story-col p {
        font-size: 15px;
    }
    .owl-item.center .story-col p {
        font-size: 16px;
    }
    .story-col img {
        max-width: 50px;
    }
    .story-col h4 {
        font-size: 18px;
    }
    .owl-item.center .story-col img {
        top: -35px;
        max-width: 70px;
    }
    section.sec-5 .section-title h2 {
        font-size: 42px;
    }
    section.sec-5 .section-title small {
        font-size: 25px;
    }
    ul.list-style li {
        font-size: 18px;
    }
    section.sec-6 .section-title {
        padding-bottom: 30px;
    }
    section.sec-6 .section-title p {
        font-size: 18px;
    }
    section.sec-9 h2 {
        font-size: 38px;
        margin-bottom: 25px;
    }
    section.sec-9 .section-title img {
        max-width: 50px;
    }
    section.sec-10 .wrapper-1 h2 {
        font-size: 24px;
    }
    /* Media Page */
    section.media-banner form h3 {
        font-size: 28px;
    }
    section.media-sec-4 .video-sec-col h3 {
        font-size: 14px;
        margin-bottom: 11px;
    }
    /* Books Page */
    section.books-banner {
        min-height: 555px;
    }
    /* Software Page */
    section.software-sec-2 {
        margin-top: -27%;
    }
}

@media (max-width: 991px) {
    .site-btn {
        min-width: 330px;
    }
    h2 {
        font-size: 38px;
    }
    header .navbar-nav {
        align-items: flex-start !important;
    }
    header .navbar-nav .nav-item {
        margin-left: 0;
        margin-top: 10px;
    }
    header .navbar-nav .nav-link::before {
        height: 4px;
        bottom: 0px;
    }
    section.banner .img {
        max-width: 500px;
        margin: 40px auto 0;
    }
    section.logos .row {
        row-gap: 30px;
    }
    section.sec-3 .section-title span,
    section.sec-7 .section-title span {
        font-size: 100px;
    }
    section.sec-3 .section-title h2,
    section.sec-7 .section-title h2 {
        font-size: 34px;
    }
    section.sec-5 .img {
        max-width: 500px;
        margin: 40px auto 0;
    }
    section.sec-6 .section-title p {
        font-size: 14px;
    }
    section.sec-6 .section-title h3 {
        font-size: 28px;
    }
    .story-slider .owl-dots,
    .review-slider .owl-dots {
        bottom: -27%;
    }
    section.sec-9 h2 {
        font-size: 28px;
    }
    .section-title p {
        font-size: 16px;
    }
    section.sec-9 .section-title img {
        max-width: 36px;
    }
    section.sec-10 .wrapper-1 h2 {
        font-size: 18px;
    }
    section.sec-10 .wrapper-1 .site-btn {
        min-width: auto;
        width: 100%;
    }
    .quick-link .name p {
        font-size: 16px;
    }
    /* podcast Page */
    section.banking-clip .row p,
    section.trending-poadcast .row p {
        font-size: 16px;
    }
    /* Media Page */
    section.media-sec-3 .wrapper {
        padding-right: 10px;
        padding-bottom: 15px;
    }
    section.media-sec-3 .img {
        margin-top: -74px;
    }
    section.media-sec-3 .text .site-btn {
        margin: 25px auto 0;
        display: block;
    }
    section.media-banner form h3 {
        font-size: 24px;
    }
    section.media-sec-4 .video-sec-col {
        margin-bottom: 30px;
    }
    section.media-sec-4 .video-sec-col h3 {
        font-size: 18px;
    }
    section.media-sec-4 .wrapper-2 .text p {
        font-size: 16px;
    }
    /* Quiz Page */
    section.quiz-banner {
        min-height: 445px;
    }
    section.quiz-sec .quiz-wrapper {
        margin-top: -36%;
    }
    /* Books PAge */
    section.books-banner {
        min-height: 450px;
    }
    .book-slider .f-carousel__slide>img {
        width: 50%;
    }
    section.books-sec .section-title {
        margin-top: 40px;
    }
    section.book-sec-2 .text h2 {
        font-size: 35px;
    }
    section.book-sec-2 .img {
        margin-top: -110px;
    }
    /* Software Page */
    section.software-banner {
        min-height: 560px;
    }
    section.software-sec-2 .cus-video {
        padding: 0 30px 24px;
    }
}

@media (max-width: 767px) {
    .container {
        padding: 0 20px;
    }
    h1 {
        font-size: 32px;
    }
    h2 {
        font-size: 30px !important;
    }
    .site-btn {
        min-width: 300px;
    }
    header {
        top: 20px;
    }
    section.banner {
        padding: 95px 0 0;
        position: relative;
    }
    section.banner .img {
        padding: 0 35px 0 55px;
    }
    section.logos {
        padding: 40px 0;
    }
    section.sec-3 .section-title h2,
    section.sec-7 .section-title h2 {
        font-size: 20px !important;
    }
    section.sec-3 .section-title span,
    section.sec-7 .section-title span {
        font-size: 90px;
    }
    .issue-col h3 {
        width: 45px;
        height: 45px;
        font-size: 26px;
    }
    .issue-col p {
        font-size: 16px;
    }
    ul.list-style li {
        font-size: 16px;
    }
    section.sec-5 {
        padding: 50px 0;
    }
    section.sec-6 .section-title h3 {
        text-align: left !important;
    }
    section.sec-6 .section-title p {
        font-size: 15px;
        margin-top: 20px;
    }
    section.sec-6 .section-title p:first-of-type {
        margin-top: 0;
    }
    section.sec-7 {
        padding: 50px 0 35px;
    }
    section.sec-7 .section-title {
        margin-bottom: 40px;
    }
    section.sec-7 .row .img {
        margin: 40px auto 0;
        max-width: 100%;
        width: 60%;
    }
    section.sec-7 .wrapper .row .img {
        width: 60%;
        margin: 30px auto;
    }
    section.sec-7 .text ul {
        margin-bottom: 30px;
    }
    section.sec-7 .row-wrap {
        row-gap: 50px;
    }
    section.sec-7 .cus-video {
        margin-top: 40px;
    }
    section.sec-7 .text li {
        font-size: 16px;
    }
    section.sec-7 .cus-video .play {
        max-width: 50px;
    }
    .review-slider .owl-dots {
        bottom: -31%;
    }
    .review-col .name {
        margin-top: 20px;
    }
    .review-col h4 {
        font-size: 16px;
    }
    section.sec-8 {
        padding: 50px 0 80px;
    }
    .review-col p {
        font-size: 15px;
    }
    section.sec-9 h2 {
        font-size: 26px !important;
    }
    section.sec-9 {
        padding: 50px 0 1px;
    }
    section.sec-9 .section-title img {
        max-width: 33px;
    }
    section.sec-9 .img {
        margin: 50px auto 0;
        width: 60%;
    }
    section.sec-10 .wrapper-2 .section-title {
        margin-bottom: 30px;
    }
    section.sec-10 .wrapper-1 h2 {
        margin-bottom: 15px !important;
        font-size: 18px !important;
    }
    section.sec-10 .wrapper-2 {
        padding: 50px 0;
    }
    /* Podcast Page */
    section.podcast-banner {
        padding: 125px 0 0;
    }
    section.podcast-banner h3 {
        font-size: 35px;
    }
    /* Media Banner */
    section.media-banner {
        padding: 135px 0 0;
    }
    section.media-banner form h3 {
        margin-bottom: 20px;
    }
    section.media-sec-3 {
        margin: 0;
        padding: 65px 0 50px;
    }
    section.media-sec-3 .text {
        text-align: center;
    }
    section.media-sec-3 .text p {
        font-size: 16px;
    }
    section.media-sec-3 .wrapper {
        padding: 0 10px 30px 15px;
    }
    section.media-sec-3 .img {
        margin-top: -60px;
    }
    section.media-sec-4 {
        padding: 110px 0 50px;
    }
    section.media-sec-4 .wrapper-title {
        margin-top: 40px;
        padding: 50px 0;
    }
    section.media-sec-4 .wrapper-title p {
        font-size: 15px;
    }
    section.media-sec-4 .video-sec-col {
        padding: 16px 10px;
    }
    section.media-sec-4 .video-sec-col h3 {
        font-size: 14px;
    }
    section.media-sec-4 .video-sec-col p {
        font-size: 11px;
        margin-bottom: 8px;
    }
    section.media-sec-4 .video-sec-col .text a {
        font-size: 14px;
    }
    section.media-sec-4 .wrapper-2 {
        margin-top: 40px;
    }
    section.media-sec-4 .wrapper-2 .text p {
        font-size: 14px;
    }
    section.media-sec-4 .wrapper-2 .img {
        max-width: 220px;
        margin: 0 auto 40px;
    }
    section.media-sec-4 .wrapper-2 .text .site-btn {
        min-width: unset;
        display: block;
        width: 100%;
        max-width: 150px;
        margin: auto;
    }
    /* Quize Page */
    section.quiz-banner {
        min-height: 350px;
    }
    section.quiz-sec .quiz-wrapper {
        margin-top: -50%;
    }
    .quiz-wrapper .section-title p {
        margin: 20px 0 30px;
    }
    .quiz-wrapper .quiz-col {
        margin-bottom: 20px;
    }
    section.quiz-sec .quiz-wrapper {
        padding: 50px 15px;
    }
    section.books-sec .books-wrapper {
        margin-top: -85%;
    }
    section.books-sec .books-wrapper {
        padding: 30px 15px 45px;
    }
    .books-wrapper .price h3 {
        font-size: 26px;
    }
    .books-wrapper .f-thumbs__slide {
        width: 110px;
        height: 110px;
    }
    .books-wrapper .btns {
        text-align: center;
    }
    .books-wrapper .section-title p {
        font-size: 15px;
    }
    section.books-sec .section-title {
        margin-top: 25px;
    }
    section.book-sec-2 {
        padding-top: 110px;
    }
    section.book-sec-2 .text {
        margin-top: 40px;
    }
    section.book-sec-2 .text a,
    .books-wrapper .btns a:not(.social a) {
        display: block;
        max-width: 230px;
        margin: auto;
    }
    .books-wrapper .tags span {
        font-size: 14px;
        margin-bottom: 10px;
    }
    .books-wrapper .social {
        margin-top: 30px;
    }
    section.book-sec-2 .text h2 {
        margin-bottom: 15px;
    }
    section.quiz-tab .tab-inner p {
        font-size: 14px;
        margin-bottom: 16px;
    }
    section.quiz-tab .tab-inner li,
    ul.cus-list-style li {
        font-size: 14px;
    }
    ul.cus-list-style li::before {
        top: 6px;
    }
    section.quiz-tab {
        margin-bottom: 60px;
    }
    section.quiz-tab .nav-tabs .nav-link {
        margin-right: 25px;
        font-size: 14px;
    }
    /* Software page */
    section.software-banner {
        padding-top: 140px;
        min-height: 410px;
    }
    section.software-sec-2 {
        margin-bottom: 45px;
    }
    section.software-sec-2 .cus-video .play {
        max-width: 45px;
    }
    section.software-sec-2 .cus-video {
        padding: 0 15px 15px;
    }
    section.software-sec-2 .vid-sub {
        font-size: 12px;
    }
    section.software-sec-3 .text h2 {
        font-size: 28px !important;
    }
    section.software-sec-3 .text p,
    section.software-sec-4 .text p,
    section.software-sec-5 .text p {
        font-size: 14px;
    }
    section.software-sec-3 .row,
    section.software-sec-4 .row,
    section.software-sec-3,
    section.software-sec-4,
    section.software-sec-5,
    section.software-sec-6 .title h2,
    section.software-sec-6 {
        margin-bottom: 40px;
    }
    section.software-sec-4 .title h2 {
        font-size: 25px !important;
        margin-bottom: 45px;
    }
    section.software-sec-5 .title h2 {
        font-size: 28px !important;
        line-height: 1.4;
        margin-bottom: 45px;
    }
    section.software-sec-6 .tabel {
        padding: 30px 20px 40px;
    }
    section.software-sec-6 td {
        font-size: 13px;
        padding: 13px 10px;
    }
    section.software-sec-7 .section-title h2 {
        padding: 50px 0 30px;
        margin-bottom: 0;
    }
    section.software-sec-7 .accordion-button {
        font-size: 15px;
        padding: 14px 15px;
    }
    section.software-sec-7 .accordion-body {
        font-size: 14px;
        padding: 14px 15px;
    }
    section.media-banner form input,
    section.media-banner form select,
    section.media-banner form textarea {
        font-size: 14px;
    }
    /* Popups */
    #quickGuide .text h2 {
        font-size: 28px !important;
    }
    .message-popup.long-message .message,
    .message-popup .message {
        font-size: 15px;
    }
    .modal .modal-body,
    .modal .modal-footer {
        padding-left: 20px;
        padding-right: 20px;
    }
    section.sec-7 .text button {
        margin: auto;
        width: 100%;
        display: block;
        max-width: 220px;
        min-width: unset !important;
    }
    .mob-cards li {
        font-size: 14px;
    }
    .mob-cards li img {
        max-width: 17px;
    }
    section.terms-page {
        padding: 140px 0 50px;
    }
}