@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

:root {
    --white-color: #ffffff;
    --primary-color: #e76f51;
    --secondary-color: #e9c46a;
    --section-bg-color: #f0f8ff;
    --custom-btn-bg-color: #c700a9;
    --custom-btn-bg-hover-color: #e251e7;
    --dark-color: #000000;
    --p-color: #717275;
    --link-hover-color: #e76f51;

    --body-font-family: "Montserrat", sans-serif;

    --h1-font-size: 42px;
    --h2-font-size: 36px;
    --h3-font-size: 28px;
    --h4-font-size: 24px;
    --h5-font-size: 22px;
    --h6-font-size: 20px;
    --p-font-size: 16px;
    --menu-font-size: 12px;
    --btn-font-size: 14px;
    --copyright-font-size: 14px;

    --border-radius-large: 10px;
    --border-radius-medium: 20px;
    --border-radius-small: 10px;

    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
}

body {
    background-color: var(--white-color);
    font-family: var(--body-font-family);
}

h2,
h3,
h4,
h5,
h6 {
    color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: var(--font-weight-semibold);
}

h1 {
    font-size: var(--h1-font-size);
    font-weight: var(--font-weight-bold);
}

h2 {
    font-size: var(--h2-font-size);
    font-weight: var(--font-weight-bold);
}

h3 {
    font-size: var(--h3-font-size);
}

h4 {
    font-size: var(--h4-font-size);
}

h5 {
    font-size: var(--h5-font-size);
}

h6 {
    color: var(--secondary-color);
    font-size: var(--h6-font-size);
}

p {
    color: var(--p-color);
    font-size: var(--p-font-size);
    font-weight: var(--font-weight-normal);
}

ul li {
    color: var(--p-color);
    font-size: var(--p-font-size);
    font-weight: var(--font-weight-normal);
}

a,
button {
    touch-action: manipulation;
    transition: all 0.3s;
}

a {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    color: var(--link-hover-color);
}

b,
strong {
    font-weight: var(--font-weight-bold);
}

/*---------------------------------------
  SECTION
-----------------------------------------*/
.section-padding {
    padding-top: 100px;
    padding-bottom: 100px;
}

::selection {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

/*---------------------------------------
  AVATAR IMAGE
-----------------------------------------*/
.avatar-image {
    border: 4px solid var(--white-color);
    border-radius: 100px;
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.avatar-image-left {
    position: relative;
    left: -10px;
}

.avatar-image-left + .avatar-image-left {
    left: -20px;
}

.avatar-image-left + .avatar-image-left + .avatar-image-left {
    left: -30px;
}

.avatar-image-left
    + .avatar-image-left
    + .avatar-image-left
    + .avatar-image-left {
    left: -40px;
}

.avatar-group,
.reviews-group {
    position: relative;
    z-index: 22;
}

.reviews-group {
    display: inline-block;
    vertical-align: top;
}

.reviews-group strong {
    font-size: var(--h3-font-size);
    margin-right: 10px;
}

/*---------------------------------------
  CUSTOM LINK
-----------------------------------------*/
.link {
    cursor: pointer;
    position: relative;
    white-space: nowrap;
    color: var(--white-color);
}

.link::before,
.link::after {
    position: absolute;
    width: 100%;
    height: 1px;
    background: currentColor;
    top: 100%;
    left: 0;
    pointer-events: none;
}

.link::before {
    content: "";
}

.link--kale::before {
    height: 10px;
    top: 100%;
    opacity: 0;
}

.link--kale:hover::before {
    opacity: 1;
    animation: lineUp 0.3s ease forwards;
}

@keyframes lineUp {
    0% {
        transform-origin: 50% 100%;
        transform: scale3d(1, 0.045, 1);
    }

    50% {
        transform-origin: 50% 100%;
        transform: scale3d(1, 1, 1);
    }

    51% {
        transform-origin: 50% 0%;
        transform: scale3d(1, 1, 1);
    }

    100% {
        transform-origin: 50% 0%;
        transform: scale3d(1, 0.045, 1);
    }
}

.link--kale::after {
    content: "";
    transition: opacity 0.3s;
    opacity: 0;
    transition-delay: 0s;
}

.link--kale:hover::after {
    opacity: 1;
    transition-delay: 0.3s;
}

/*---------------------------------------
  CUSTOM BUTTON
-----------------------------------------*/
.custom-btn {
    background: var(--custom-btn-bg-color);
    border: 2px solid transparent;
    color: var(--white-color);
    font-size: var(--btn-font-size);
    font-weight: var(--font-weight-semibold);
    line-height: normal;
    transition: all 0.3s;
    font-size: 1.7rem;
    padding: 0.8rem 5rem;
    box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px,
        rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px,
        rgba(0, 0, 0, 0.09) 0px 32px 16px;
    border-radius: 5rem;
}

@media (max-width: 768px) {
    .custom-btn {
        font-size: 1.5rem;
        padding: 0.8rem 5rem;
        margin-left: 1rem;
    }
}

.custom-btn:hover {
    background: var(--custom-btn-bg-hover-color);
    color: var(--white-color);
}

.custom-border-btn {
    background: transparent;
    border: 2px solid var(--custom-btn-bg-color);
    color: var(--custom-btn-bg-color);
}

.custom-border-btn:hover {
    background: var(--custom-btn-bg-color);
    border-color: transparent;
    color: var(--white-color);
}

.custom-btn-bg-white {
    border-color: var(--white-color);
    color: var(--white-color);
}

.btn-naira {
    padding: 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
}

.btn-naira::before {
    content: "";
    position: absolute;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--primary-color);
    top: -50%;
    z-index: -1;
    -webkit-transform: translate3d(0, -100%, 0) rotate3d(0, 0, 1, -10deg);
    transform: translate3d(0, -100%, 0) rotate3d(0, 0, 1, -10deg);
}

.btn-naira.btn-inverted::before {
    background: var(--primary-color);
}

.btn-naira > span {
    display: block;
    vertical-align: middle;
}

.btn-naira .btn-icon {
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
    color: var(--white-color);
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
}

.btn-naira > span,
.btn-naira .btn-icon {
    padding: 10px 20px;
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
    transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}

.btn-naira:hover::before {
    -webkit-animation: anim-naira-1 0.3s forwards ease-in;
    animation: anim-naira-1 0.3s forwards ease-in;
}

@-webkit-keyframes anim-naira-1 {
    50% {
        -webkit-transform: translate3d(0, -50%, 0) rotate3d(0, 0, 1, -10deg);
        transform: translate3d(0, -50%, 0) rotate3d(0, 0, 1, -10deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    100% {
        -webkit-transform: translate3d(0, 0%, 0) rotate3d(0, 0, 1, 0deg);
        transform: translate3d(0, 0%, 0) rotate3d(0, 0, 1, 0deg);
    }
}

@keyframes anim-naira-1 {
    50% {
        -webkit-transform: translate3d(0, -50%, 0) rotate3d(0, 0, 1, -10deg);
        transform: translate3d(0, -50%, 0) rotate3d(0, 0, 1, -10deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    100% {
        -webkit-transform: translate3d(0, 0%, 0) rotate3d(0, 0, 1, 0deg);
        transform: translate3d(0, 0%, 0) rotate3d(0, 0, 1, 0deg);
    }
}

.btn-naira:hover {
    background-color: var(--primary-color);
    -webkit-transition: background-color 0s 0.3s;
    transition: background-color 0s 0.3s;
}

.btn-naira.btn-inverted:hover {
    background-color: var(--primary-color);
}

.btn-naira:hover .btn-icon {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.btn-naira:hover > span {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}

/*---------------------------------------
  NAVIGATION
-----------------------------------------*/
.sticky-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
}

.sticky-wrapper.is-sticky .navbar {
    background-color: rgba(0, 0, 0, 0.85);
}

.navbar {
    background: transparent;
    z-index: 99;
    padding-top: 15px;
    padding-bottom: 15px;
}

.navbar-brand,
.navbar-brand:hover {
    font-size: var(--h3-font-size);
    font-weight: var(--font-weight-bold);
    display: block;
    color: var(--white-color);
}

.navbar-brand-icon {
    background: var(--secondary-color);
    border-radius: var(--border-radius-large);
    display: inline-block;
    vertical-align: top;
    color: var(--white-color);
    font-size: var(--h6-font-size);
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    position: relative;
}

.navbar-brand-icon::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 10px;
    right: -5px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 20px 20px;
    border-color: transparent transparent var(--secondary-color) transparent;
    pointer-events: none;
    transform: rotate(65deg);
}

.navbar-expand-lg .navbar-nav .nav-link {
    border-radius: var(--border-radius-large);
    margin: 10px;
    padding: 10px;
}

.navbar-nav .nav-link {
    display: inline-block;
    color: var(--white-color);
    font-size: var(--menu-font-size);
    font-weight: var(--font-weight-semibold);
    letter-spacing: 0.5px;
    position: relative;
    padding-top: 15px;
    padding-bottom: 15px;
}

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

.navbar-toggler {
    border: 0;
    padding: 0;
    cursor: pointer;
    margin: 0;
    width: 30px;
    height: 35px;
    outline: none;
}

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

.shadow2 {
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
        rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

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

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
    transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
    transition: top 300ms 50ms ease, transform 300ms 350ms ease;
    transition: top 300ms 50ms ease, transform 300ms 350ms ease,
        -webkit-transform 300ms 350ms ease;
    top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
    transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
    transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
    background: var(--white-color);
    transition: background 10ms 300ms ease;
    display: block;
    width: 30px;
    height: 2px;
    position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
    transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
    transition: top 300ms 350ms ease, transform 300ms 50ms ease;
    transition: top 300ms 350ms ease, transform 300ms 50ms ease,
        -webkit-transform 300ms 50ms ease;
    position: absolute;
    right: 0;
    left: 0;
    background: var(--white-color);
    width: 30px;
    height: 2px;
    content: "";
}

.navbar-toggler .navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
    top: 8px;
}

/*---------------------------------------
  HERO
-----------------------------------------*/
.hero-section {
    /* background-image: url('../images/businessman-sitting-by-table-cafe.jpg'); */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    padding-top: 50px;
    height: 100%;
    background-color: #fff;
}

/* .hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.45);
} */

.hero-section .row {
    position: relative;
    z-index: 22;
    /* top: 100px; */
}

.hero-image {
    position: relative;
    z-index: 2;
    /* bottom: 100px; */
    display: block;
    margin: auto;
}

@media screen and (min-width: 991px) {
    .hero-section {
        /* height: calc(100vh - 88px); */
        height: 100%;
        /* padding-top: 350px; */
        /* padding-top: 200px; */
    }
}

/*---------------------------------------
  FEATURED
-----------------------------------------*/
.featured-section {
    background-color: var(--custom-btn-bg-color);
    position: relative;
    padding-top: 50px;
    padding-bottom: 50px;
}

.featured-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 450px 450px;
    border-color: transparent transparent var(--white-color) transparent;
    pointer-events: none;
}

/*---------------------------------------
  CUSTOM BLOCK
-----------------------------------------*/
.custom-block {
    background-image: url("../images/businessman-sitting-by-table-cafe.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: var(--border-radius-medium);
    position: relative;
    overflow: hidden;
}

.custom-block::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    pointer-events: none;
    background-color: rgba(0, 0, 0, 0.45);
}

.custom-block .avatar-image {
    min-width: 60px;
    margin: auto;
    left: 0;
}

.custom-block .bi-star {
    color: var(--white-color);
}

.custom-block .bi-star-fill {
    color: var(--secondary-color);
}

.custom-block-image-wrap {
    background-color: rgba(231, 111, 81, 0.85);
    border-radius: 0 0 var(--border-radius-medium) var(--border-radius-medium);
    position: relative;
    z-index: 2;
    overflow: hidden;
    margin: auto;
    padding: 25px 45px;
}

.custom-block-info {
    position: relative;
    z-index: 2;
    padding: 30px;
}

.custom-block-info strong,
.custom-block-info p {
    color: var(--white-color);
}

.custom-block-info p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

/*---------------------------------------
  THE BOOK SECTION
-----------------------------------------*/

.book-section {
    background-image: url("/images/bgg.png");
    background-size: cover;
    padding: 10rem 1rem;
}
.book-section-info {
    padding-top: 20px;
    padding-right: 40px;
    padding-left: 40px;
}

.book-section-info h6 {
    text-align: center;
    font-size: 1.6rem;
    color: purple;
}
.book-section-info h2 {
    text-align: center;
    line-height: 3.5rem;
    font-size: 2.5rem;
    margin-top: 1.5rem;
}

.box1 {
    padding: 2rem 2rem;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px,
        rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
    border-radius: 1rem;
    text-align: center;
    background-color: rgb(255, 243, 223);
}
.box1 h5 {
    font-size: 1.2rem;
    color: #343434;
    line-height: 2.3rem;
}

@media (max-width: 768px) {
    .book-section {
        background-image: url("/images/bg.png");
        background-size: cover;
        padding: 10rem 1rem;
    }
    .book-section-info {
        padding-top: 20px;
        padding-right: 0px !important;
        padding-left: 0px !important;
    }

    .book-section-info h6 {
        text-align: center;
        line-height: 1.5rem;
        font-size: 0.9rem;
        color: purple;
    }
    .book-section-info h2 {
        text-align: center;
        line-height: 2rem;
        font-size: 1.2rem;
        margin-top: 0.5rem;
    }

    .box1 {
        padding: 2rem 1rem;
        box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px,
            rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
        border-radius: 1rem;
        text-align: center;
        background-color: rgb(255, 243, 223);
    }
    .box1 h5 {
        font-size: 0.9rem;
        color: #343434;
        line-height: 1.5rem;
    }
}
.nav-pills {
    /* border: 2px solid var(--primary-color); */
    border-radius: var(--border-radius-medium);
    position: sticky;
    top: 120px;
    padding: 30px;
}

.nav-pills .nav-link {
    background: var(--section-bg-color);
    color: var(--p-color);
    border-radius: var(--border-radius-large);
    margin-top: 5px;
    margin-bottom: 10px;
    padding: 15px 30px;
}

.nav-pills h1 {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.nav-pills h4 {
    font-size: 1.3rem;
    line-height: 2.5rem;
}

@media (max-width: 768px) {
    .nav-pills h1 {
        margin-top: 0rem;
        font-size: 1.4rem;
        text-align: center;
    }
    .nav-pills h4 {
        text-align: center;
    }
}

.nav-pills .nav-link:hover,
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    background: var(--primary-color);
    color: var(--white-color);
}

.scrollspy-example-2 {
    padding-right: 30px;
    padding-left: 30px;
}

.scrollspy-example-item {
    border-bottom: 5px dotted var(--p-color);
    min-height: 500px;
    padding-top: 20px;
    padding-bottom: 50px;
}

.scrollspy-example-item:last-child {
    border-bottom: 0;
}

.scrollspy-example-item-image {
    border-radius: var(--border-radius-medium);
}

.scrollspy-example-item h5 {
    padding-top: 30px;
    padding-bottom: 20px;
}

.blockquote {
    background: var(--section-bg-color);
    border-radius: var(--border-radius-small);
    font-size: var(--h5-font-size);
    font-weight: var(--font-weight-semibold);
    color: var(--site-footer-bg-color);
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 80px 40px 40px 40px;
    text-align: center;
}

.blockquote::before {
    content: "“";
    color: var(--custom-btn-bg-color);
    font-size: 100px;
    line-height: 1rem;
    display: block;
}

/*---------------------------------------
  AUTHOR SECTION
-----------------------------------------*/
.author-section {
    /* background-image: url('../images/circle-scatter-haikei.png'); */
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left bottom;
    position: relative;
    /* margin-top: 50px; */
}

.author-image {
    border: 10px solid var(--secondary-color);
    border-radius: 100%;
    display: block;
    margin: auto;
    width: 350px;
    height: 350px;
    object-fit: cover;
}

/*---------------------------------------
  DIVIDER SECTION
-----------------------------------------*/
.divider-section {
    background-image: url("../images/wave-haikei.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

/*---------------------------------------
  CONTACT
-----------------------------------------*/
.contact-section {
    /* background: var(--custom-btn-bg-color); */
    background-color: #444;
    position: relative;
    overflow: hidden;
}

/* .contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 450px 450px 0 0;
  border-color: var(--white-color) transparent transparent;
  pointer-events: none;
} */

.contact-section .container {
    position: relative;
}

.contact-section p {
    color: var(--white-color);
    font-size: var(--h6-font-size);
}

.contact-link {
    color: var(--white-color);
}

.contact-section .copyright-text {
    font-size: var(--copyright-font-size);
}

/*---------------------------------------
  EBOOK DOWNLOAD FORM
-----------------------------------------*/
.ebook-download-form {
    border-radius: 0.5rem;
    position: relative;
    z-index: 2;
    padding: 20px 50px;
}

/*---------------------------------------
  CUSTOM FORM
-----------------------------------------*/
.custom-form .form-control {
    border-radius: var(--border-radius-large);
    box-shadow: none;
    color: var(--p-color);
    /* padding-top: 13px; */
    /* padding-bottom: 13px; */
    padding-top: 6px;
    padding-bottom: 6px;
    padding-right: 40px;
    padding-left: 20px;
    outline: none;
}

.custom-form .form-control:focus,
.custom-form .form-control:hover {
    border-color: var(--primary-color);
}

.custom-form .form-control:focus + .input-group-text .custom-form-icon,
.custom-form .form-control:hover + .input-group-text .custom-form-icon {
    opacity: 1;
}

.custom-form .input-group-text {
    background: transparent;
    border: 0;
    border-radius: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: 10px;
}

.custom-form-icon {
    position: relative;
    z-index: 22;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n + 3),
.input-group:not(.has-validation)
    > .form-floating:not(:last-child)
    > .form-control,
.input-group:not(.has-validation)
    > .form-floating:not(:last-child)
    > .form-select,
.input-group:not(.has-validation)
    > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(
        .form-floating
    ) {
    border-radius: var(--border-radius-large);
}

.custom-form button[type="submit"] {
    background: var(--custom-btn-bg-color);
    border: none;
    border-radius: var(--border-radius-large);
    color: var(--white-color);
    font-size: var(--p-font-size);
    font-weight: var(--font-weight-semibold);
    transition: all 0.3s;
    margin-bottom: 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
    background: var(--custom-btn-bg-hover-color);
    border-color: transparent;
}

/*---------------------------------------
  SOCIAL ICON
-----------------------------------------*/
.social-icon {
    margin: 0;
    padding: 0;
}

.social-icon-item {
    list-style: none;
    display: inline-block;
    vertical-align: top;
}

.social-icon-link {
    background: var(--secondary-color);
    border-radius: var(--border-radius-large);
    color: var(--white-color);
    font-size: var(--copyright-font-size);
    display: block;
    margin-right: 10px;
    text-align: center;
    width: 35px;
    height: 35px;
    line-height: 36px;
    transition: background 0.2s, color 0.2s;
}

.social-icon-link:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

/*---------------------------------------
  RESPONSIVE STYLES
-----------------------------------------*/
@media screen and (max-width: 991px) {
    h1 {
        font-size: 48px;
    }

    h2 {
        font-size: 36px;
    }

    h3 {
        font-size: 32px;
    }

    h4 {
        font-size: 28px;
    }

    h5 {
        font-size: 20px;
    }

    h6 {
        font-size: 18px;
    }

    .section-padding {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .navbar {
        background-color: rgba(0, 0, 0, 0.65);
    }

    .navbar-expand-lg .navbar-nav {
        padding-bottom: 20px;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        padding: 0;
    }

    .scrollspy-example-2 .scrollspy-example-item:first-child {
        padding-top: 0;
    }

    .scrollspy-example-item h5 {
        padding-bottom: 5px;
    }

    .book-section-info {
        padding-top: 20px;
        padding-right: 20px;
        padding-left: 20px;
    }

    .ebook-download-form {
        padding: 20px;
    }
}

@media screen and (max-width: 480px) {
    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 26px;
    }

    h4 {
        font-size: 22px;
    }

    h5 {
        font-size: 20px;
    }

    .navbar-brand {
        font-size: var(--p-font-size);
    }

    .navbar-brand-icon {
        width: 30px;
        height: 30px;
        line-height: 30px;
    }

    .navbar-brand-icon::after {
        top: 5px;
    }

    .btn-naira > span,
    .btn-naira .btn-icon {
        font-size: 12px;
        padding: 5px 15px;
    }
}

.inputLabel {
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.heroText {
    padding-top: 1rem;
}

.heroHeading {
    font-size: 1.2rem;
    line-height: 2.5rem;
}

.heroText h4 {
    font-size: 1.1rem;
    color: #444;
    margin-top: 1.4rem;
}

.heroList {
    font-size: 0.9rem;
    line-height: 1.7rem;
    font-weight: 500;
    color: #444;
}

.google img {
    width: 2.5rem;
    margin-right: 1rem;
}
.google {
    font-size: 1.5rem;
    color: #fbbc04;
}

.sectionH {
    font-size: 2.5rem;
    margin-bottom: 3rem !important;
}

.cardLR h4 {
    background-color: rgb(255, 195, 75);
    padding: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.cardLR h6 {
    padding: 0.5rem;
    font-size: 1.2rem;
    text-align: start;
    color: #555;
}

.fa-xmark {
    color: red;
}

.sectionMain {
    font-size: 3.5rem;
    font-weight: 600;
    text-align: center;
    line-height: 5rem;
}

.rowH {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.rowP {
    font-size: 1rem;
    margin-top: 2rem;
    font-weight: 600;
    color: #2d2d2d;
}

.rowImg {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
        rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}
.rowImg2 {
    width: 100%;
    height: auto;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
        rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    margin-bottom: 1rem;
    border: 1px solid pink;
    filter: brightness(1);
}

.cardST {
    padding: 2rem 3rem;
    border-radius: 0.5rem;
    background-color: #fff;
    margin-top: 2rem;
    text-align: center;
}

.cardST h2 {
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.5rem;
}

.cardST li {
    text-align: start;
    font-size: 1.1rem;
    line-height: 2.5rem;
}

.adsCard {
    padding: 2rem 2rem;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
    border-radius: 0.5rem;
    background-color: #fff;
    margin-bottom: 1rem;
}

.adsCard h3 {
    font-size: 1.2rem;
    font-weight: 700;
}

.iconBox img {
    width: 8rem;
    margin-bottom: 1rem;
}

.letsBtn {
    padding: 1rem 2rem;
    background-color: #fff;
    color: #333;
    font-weight: 500;
    border-radius: 3rem;
    box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px, rgba(0, 0, 0, 0.07) 0px 2px 2px,
        rgba(0, 0, 0, 0.07) 0px 4px 4px, rgba(0, 0, 0, 0.07) 0px 8px 8px,
        rgba(0, 0, 0, 0.07) 0px 16px 16px;
}

.letsBtn:hover {
    color: #333;
    transform: scale(0.9);
    letter-spacing: 3px;
    box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px,
        rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px,
        rgba(0, 0, 0, 0.09) 0px 32px 16px;
}

.letsBtn2 {
    padding: 1rem 2rem;
    background-color: rgb(255, 191, 0);
    color: #ffffff;
    font-weight: 600;
    border-radius: 3rem;
    font-size: 1.5rem;
    box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px, rgba(0, 0, 0, 0.07) 0px 2px 2px,
        rgba(0, 0, 0, 0.07) 0px 4px 4px, rgba(0, 0, 0, 0.07) 0px 8px 8px,
        rgba(0, 0, 0, 0.07) 0px 16px 16px;
}

.letsBtn2:hover {
    transform: scale(0.9);
    letter-spacing: 3px;
    color: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px,
        rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px,
        rgba(0, 0, 0, 0.09) 0px 32px 16px;
}

.cardd {
    background-color: #fbbc04;
    /* very light pink */
    padding: 5rem 5rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    text-align: center;
    overflow: hidden;
}

.cardd h2 {
    font-size: 2.5rem;
    color: #fff;
    font-weight: bold;
    margin-bottom: 10px;
}
/*
.description {
  font-size: 16px;
  color: #555;
  line-height: 1.5;
} */

.circle {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #4965e2;
    /* salmon */
}

.circle2 {
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background-color: #34a853;
    /* salmon */
}

.circle.bottom-left {
    bottom: -35px;
    left: -20px;
}

.circle2.top-right {
    top: -10px;
    right: -5px;
}
.description {
    font-size: 1.1rem;
    margin-top: 2rem;
    font-weight: 600;
    text-align: justify;
    color: #333;
}

.formsection h2 {
    font-size: 4rem;
    line-height: 1.3;
    text-align: center;
}

.formsection p {
    font-size: 1.4rem;
    line-height: 2;
    text-align: justify;
    color: #333;
    font-weight: 500;
    margin-top: 2rem;
}

.heroText h6 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
}

.smsg {
    padding: 0.2rem 1rem;
    font-weight: 600;
    border-radius: 1rem;
    font-size: 0.8rem;
    color: #fff;
    background-color: #4c8f5c;
    border-color: #2f8944;
}

.cn {
    font-size: 2.2rem;
}

@media (max-width: 768px) {
    .google img {
        width: 1.8rem;
        margin-right: 1rem;
    }
    .google {
        font-size: 1rem;
        color: #fbbc04;
    }

    .adsCard {
        padding: 2rem 0.5rem;
    }

    .adsCard img {
        width: 5rem !important;
    }
    .adsCard h3 {
        font-size: 0.7rem;
    }
    .letsBtn2 {
        font-size: 1rem;
    }

    .formsection h2 {
        font-size: 2rem;
        line-height: 1.3;
        text-align: center;
    }

    .formsection p {
        font-size: 0.9rem;
        line-height: 1.8;
        text-align: center;
        margin-top: 1rem;
    }

    .cardd {
        padding: 5rem 2rem;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        position: relative;
        text-align: center;
        overflow: hidden;
    }

    .cardd h2 {
        font-size: 1.5rem;
        margin-top: 4rem;
        color: #fff;
        font-weight: bold;
        margin-bottom: 10px;
    }

    .description {
        font-size: 12px;
        line-height: 1.6;
        margin-bottom: -1rem;
        text-align: start;
    }

    .phoneMT {
        margin-top: -10rem;
    }

    .cardST {
        padding: 1rem 1rem;
    }

    .cardST h2 {
        margin-bottom: 1rem;
        font-weight: 700;
        font-size: 1.2rem;
    }

    .cardST li {
        text-align: start;
        font-size: 0.9rem;
        line-height: 2.5rem;
    }

    .rowImg {
        width: 100%;
        margin-top: 1rem;
    }

    .rowP {
        font-size: 0.7rem;
        margin-top: 1rem;
        font-weight: 600;
        color: #2d2d2d;
        text-align: justify;
    }

    .rowH {
        font-size: 1.2rem;
        text-align: center;
    }

    .sectionMain {
        font-size: 1.2rem;
        font-weight: 700;
        text-align: center;
        line-height: 1.8rem;
    }
    .cardLR H4 {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }

    .cardLR h6 {
        font-size: 0.6rem;
        text-align: start;
        line-height: 1.2rem;
        padding: 0;
    }

    .sectionH {
        font-size: 1.2rem;
        margin-bottom: 3rem !important;
    }

    .heroList {
        font-size: 0.8rem;
        line-height: 1.5rem;
    }
    .heroText h4 {
        font-size: 0.9rem;
        line-height: 1.3rem;
        text-align: center;
        /* margin-top: -.5rem; */
    }
    .heroHeading {
        font-size: 1rem;
        line-height: 1.3rem;
        text-align: center;
    }
    .heroText {
        padding-top: 0rem;
    }

    .heroText h6 {
        font-size: 1.8rem;
    }
    .inputLabel {
        font-size: 0.8rem;
        color: #666;
        font-weight: 500;
        margin-bottom: 0.5rem;
    }
    .cn {
        font-size: 1.3rem;
    }
}

.heroBox {
    padding: 1rem;
    border-radius: 0.1px;
    text-align: center;
    background-color: #ffdde8;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 5px;
    margin-top: -1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.1px;
    border: 1px solid pink;
}

.heroBox h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding: 5px 3px;
    border-radius: 1rem;
    background-color: #ffffffa4;
    text-transform: uppercase;
}

.heroBox p {
    line-height: 1.5;
    font-size: 0.9rem;
    color: #000;
    font-weight: 500;
    border-bottom: 1px solid #e3e3e3;
    color: #4c0028;
}

@media (max-width: 768px) {
    .heroBox {
        padding: 0.8rem 0.1rem;
        padding-bottom: 0.1px;
        margin-bottom: 2rem;
        margin-top: 0.5px;
    }

    .heroBox h5 {
        font-size: 0.6rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .heroBox p {
        line-height: 0.9;
        font-size: 0.7rem;
        font-weight: 600;
    }
}

.cardMe {
    width: 100%;
    height: 305px;
    overflow: hidden;
    position: relative;
}
.cardMe .main-content {
    width: 100%;
    height: 100%;
    background-color: #a4508b;
    background-image: linear-gradient(326deg, #a4508b 0%, #5f0a87 74%);
    /* background-image: url('image/11.jpg');
    background-size: cover; */
    border-radius: 3rem;
    border: 1px solid rgb(89, 0, 91);
    text-align: center;
    padding: 1rem .5rem;
}
.cardMe .main-content img {
    width: 30%;
    height: auto;
    margin-top: 2rem;
    filter:invert(3)
}
.cardMe .main-content h3 {
    color: #fff;
    font-size: 1.1rem;
    border-bottom: 1px solid #fff;
}
.cardMe .main-content p {
    color: #fff;
    font-size: .9rem;
}
.cardMe .overlay-content {
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    color: #080808;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: absolute;
    z-index: 1;
    transition: 0.6s;
    top: 0%;
    left: 100%;
    opacity: 1;
    border-radius: 3rem;
    border: 1px solid rgba(90, 0, 91, 0.512);
}
.cardMe:hover .overlay-content {
    /* left: 0; */
    transform: translateX(-100%);
}

.cardMe .overlay-content p {
    text-align: center;
    font-size: 1rem;
    /* margin: 2rem; */
    letter-spacing: 1px;
    line-height: 1.5rem;
    border-bottom: 1px solid #dbdbdb;
    font-weight: 600;
}
.cardMe .overlay-content p span {
    display: block;
    letter-spacing: normal;
    font-size: 1rem;
    font-style: italic;
    margin-top: 1.25rem;
}

.footerP{
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}

.dm{
    background: -webkit-linear-gradient(#73008d, #fb00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 576px) {
    .cardMe {
        width: 100%;
        height: 330px;
        padding: 1rem;
    }
    .footerP{
        font-size: .8rem;
        padding: .5rem;
    }


}
