/* CUSTOM PROPERTIES ( VARIABLES ) */
:root {
    --white-color:                  #ffffff;
    --primary-color:                #13547a;
    --secondary-color:              #80d0c7;
    --section-bg-color:             #f0f8ff;
    --custom-btn-bg-color:          #80d0c7;
    --custom-btn-bg-hover-color:    #13547a;
    --dark-color:                   #000000;
    --p-color:                      #717275;
    --border-color:                 #7fffd4;
    --link-hover-color:             #13547a;

    --body-font-family:             'Open Sans', sans-serif;
    --title-font-family:            'Montserrat', sans-serif;

    --h1-font-size:                 58px;
    --h2-font-size:                 46px;
    --h3-font-size:                 32px;
    --h4-font-size:                 28px;
    --h5-font-size:                 24px;
    --h6-font-size:                 22px;
    --p-font-size:                  20px;
    --menu-font-size:               14px;
    --btn-font-size:                18px;
    --copyright-font-size:          16px;

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

    --font-weight-normal:           400;
    --font-weight-medium:           500;
    --font-weight-semibold:         600;
    --font-weight-bold:             700;
}

/* Start Globle Rule */
body {
    background-color: var(--white-color);
    font-family: var(--body-font-family); 
}

html {
    scroll-behavior: smooth;
}
/* End Globale Rule */

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--title-font-family); 
    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(--primary-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);
}

/* Custom Icon */
.custom-icon {
    color: var(--secondary-color);
}

/* Custom Button */
.custom-btn {
    background: var(--custom-btn-bg-color);
    color: var(--white-color);
    border: 2px solid transparent;
    border-radius: var(--border-radius-large);
    font-size: var(--btn-font-size);
    font-weight: var(--font-weight-semibold);
    line-height: normal;
    padding: 10px 20px;
    transition: all 0.3s;
}
.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);
}

/* Start Navigation */
.navbar {
    background: transparent;
    border-bottom: 1px solid rgba(128, 208, 199, 0.35);
    z-index: 9;
    width: 100%;
    position: fixed;
    transition: 100ms;
    &.onScroll {
        background: var(--secondary-color);
    }
}
.navbar-brand {
    font-size: var(--h3-font-size);
    font-weight: var(--font-weight-bold);
    display: block;
}
.navbar-brand span {
    font-family: var(--title-font-family);
    margin-left: 10px;
}
.navbar-nav .nav-link {
    display: inline-block;
    color: var(--white-color);
    font-family: var(--title-font-family);
    font-size: var(--menu-font-size);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-right: 15px;
}
.navbar-nav .nav-link.active, 
.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}
.navbar .dropdown-menu {
    background: var(--white-color);
    box-shadow:  0 1rem 3rem rgba(0, 0, 0, 0.175);
    border: 0;
    display: inherit;
    opacity: 0;
    min-width: 9rem;
    margin-top: 20px;
    padding: 13px 0 10px 0;
    transition: all 0.3s;
    pointer-events: none;
}
.navbar .dropdown-menu::before {
    content: "";
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 20px solid var(--white-color);
    position: absolute;
    top: -10px;
    left: 10px;
}
.navbar .dropdown-item {
    display: inline-block;
    color: var(--p-color);
    font-family: var(--title-font-family);
    font-size: var(--menu-font-size);
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}
.navbar .dropdown-item.active,
.navbar .dropdown-item:active,
.navbar .dropdown-item:focus,
.navbar .dropdown-item:hover {
    background: transparent;
    color: var(--primary-color);
}
.navbar .dropdown-toggle::after {
    content: "\f282";
    font-family: bootstrap-icons !important;
    display: inline-block;
    font-size: var(--copyright-font-size);
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: -0.125em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    border: 0;
    left: 2px;
}
@media screen and (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        opacity: 1;
        margin-top: 0;
        pointer-events: auto;
    }
}
@media screen and (max-width: 991px) {
    .navbar-nav .dropdown-menu {
        position: relative;
        opacity: 1;
        left: 10px;
        pointer-events: auto;
        max-width: 155px;
        margin-top: 10px;
        margin-bottom: 15px;
    }
    .navbar {
        background: var(--secondary-color);
    }
}
.navbar-icon {
    background: var(--white-color);
    border-radius: var(--border-radius-large);
    width: 40px;
    height: 40px;
    display: inline-block;
    font-size: var(--h5-font-size);
    line-height: 40px;
    text-align: center;
    transition: all 0.3s ease;
}
.navbar .navbar-icon:hover {
    background: var(--primary-color);
    color: var(--white-color);
}
.navbar-toggler {
    border: 0;
    margin: 0;
    padding: 0;
    cursor: pointer;
    width: 30px;
    height: 35px;
    outline: none;
}
.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}
.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;
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    background: var(--white-color);
    width: 30px;
    height: 2px;
}
.navbar-toggler .navbar-toggler-icon::before {
    top: -8px;
}
.navbar-toggler .navbar-toggler-icon::after {
    top: 8px;
}
/* End Navigation */

/* Start Hero Section */
.hero-section {
    background-image: linear-gradient(15deg, #13547a 0%, #80d0c7 100%);
    position: relative;
    overflow: hidden;
    padding-top: 150px;
    padding-bottom: 150px;
}
.hero-section .input-group {
    padding: 10px 15px;
    background: var(--white-color);
    border-radius: var(--border-radius-large);
}
.hero-section .input-group-text {
    background: transparent;
    border: 0;
}
.hero-section .learn {
    color: var(--primary-color);
}
.hero-section input[type="search"] {
    border: 0;
    box-shadow: none;
    margin-bottom: 0;
    margin-left: 0;
}
.hero-section button[type="submit"]{
    background: var(--secondary-color);
    color: var(--white-color);
    max-width: 150px;
    border: 0;
    border-radius: var(--border-radius-large) !important;
}
.hero-section button[type="submit"]:hover {
    background: var(--primary-color);
}
/* End Hero Section */

/* Start Featured Section */
/* Block 01 */
.featured-section {
    background: var(--secondary-color);
    border-radius: 0 0 100px 100px;
    padding-bottom: 100px;
}
.featured-section .row {
    position: relative;
    bottom: 100px;
    margin-bottom: -100px;
}
.custom-block {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-medium);
    height: 100%;
    padding: 30px;
    transition: all 0.3s ease;
}
.custom-block:hover {
    /* background: var(--secondary-color); */
    transform: translateY(-3px);
}
.custom-block > a {
    width: 100%;
}
.custom-block-image {
    display: block;
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-top: 35px;
}
.custom-block .rounded-pill {
    border-radius: 5px !important;
    display: flex;
    justify-content: center;
    text-align: center;
    width: 30px;
    height: 30px;
    line-height: 20px;
}

/* Block 02 */
.custom-block-overlay {
    height: 100%;
    min-height: 350px;
    padding: 0;
}
.custom-block-overlay > a {
    height: 100%;
}
.custom-block-overlay .custom-block-image {
    display: block;
    border-radius: var(--border-radius-medium);
    height: 100%;
    margin-top: 0;
}
.section-overlay {
    background-image: linear-gradient(15deg, #13547a 0%, #80d0c7 100%);
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.85;
    top: 0;
    left: 0;
    pointer-events: none;
}
.section-overlay + .container {
    position: relative;
}
.custom-block-overlay-text {
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    left: 0;
    padding: 30px;
}
.custom-block-overlay-text .rounded-pill {
    position: absolute;
    top: 30px;
    right: 30px;
}
.social-share {
    position: absolute;
    z-index: 2;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 20px 35px;
}
.social-share .bi-bookmark {
    color: var(--white-color);
    font-size: var(--h5-font-size);
}
.social-share .bi-bookmark:hover {
    color: var(--secondary-color);
}
.bg-design {
    background-color: #00B0FF;
}
.bg-finance {
    background-color: #536DFE;
}
.bg-graphic {
    background-color: #00BFA6;
}
.bg-advertising {
    background-color: #F50057;
}
.bg-music {
    background-color: #F9A826;
}
.bg-education {
    background-color: #00BFA6;
}

/* 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);
    color: var(--white-color);
    width: 35px;
    height: 35px;
    border-radius: var(--border-radius-large);
    font-size: var(--copyright-font-size);
    display: block;
    text-align: center;
    margin-right: 10px;
    line-height: 36px;
    transition: background 0.2s, color 0.2s;
}
.social-icon-link:hover {
    background: var(--primary-color);
    color: var(--white-color);
}
/* End Featured Section */

/* Start Section Browse Topic */
.section-padding {
    padding-top: 100px;
    padding-bottom: 100px;
}
.section-bg {
    background: var(--section-bg-color);
}
.nav-tabs {
    border-bottom: 1px solid #ecf3f2;
    margin-bottom: 40px;
}
.nav-tabs .nav-link {
    color: var(--p-color);
    font-family: var(--title-font-family);
    font-size: var(--btn-font-size);
    font-weight: var(--font-weight-medium);
    border-top: 0;
    border-right: 0;
    border-left: 0;
    padding: 15px 25px;
}
.nav-tabs .nav-link:first-child {
    margin-right: 20px;
}
.nav-tabs .nav-item.show .nav-link, 
.nav-tabs .nav-link.active,
.nav-tabs .nav-link:focus, 
.nav-tabs .nav-link:hover {
    border-bottom-color: var(--primary-color);
    color: var(--primary-color);
}
.tab-content {
    background: var(--white-color);
    border-radius: var(--border-radius-medium);
}
/* End Section Browse Topic */

/* Start Section How It Work */
.timeline-section {
    background-image: url('../../images/colleagues-working-cozy-office-medium-shot.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
}
.timeline-container .vertical-scrollable-timeline {
    list-style-type: none;
    position: relative;
    padding-left: 0;
}
.timeline-container .vertical-scrollable-timeline .list-progress {
    position: absolute;
    width: 8px;
    height: 87%;
    /* background: var(--secondary-color); */
    background: var(--primary-color);
    left: 52px;
    top: 0;
    overflow: hidden;
}
.timeline-container .vertical-scrollable-timeline .list-progress .inner {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
}
.timeline-container .vertical-scrollable-timeline li {
    position: relative;
    padding: 20px 0px 65px 145px;
}
.timeline-container .vertical-scrollable-timeline li:last-child {
    padding-bottom: 0;
}
.timeline-container .vertical-scrollable-timeline li p {
    line-height: 40px;
}
.timeline-container .vertical-scrollable-timeline li p:last-child {
    margin-bottom: 0;
}
.timeline-container .vertical-scrollable-timeline li .icon-holder {
    position: absolute;
    left: 0;
    top: 0;
    background: var(--secondary-color);
    width: 104px;
    height: 104px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    transition: 0.4s all;
}
.timeline-container .vertical-scrollable-timeline li .icon-holder::before {
    content: "";
    position: absolute;
    width: 80px;
    height: 80px;
    border: 4px solid var(--white-color);
    border-radius: 50%;
    background-color: var(--secondary-color);
    z-index: -1;
    transition: 0.4s all;
}
.timeline-container .vertical-scrollable-timeline li .icon-holder i {
    font-size: 25px;
    color: var(--white-color);
}
.timeline-container .vertical-scrollable-timeline li::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 100%;
    background: transparent;
    left: 52px;
    z-index: 0;
}
.timeline-container .vertical-scrollable-timeline li.active .icon-holder {
    background: var(--primary-color);
}
.timeline-container .vertical-scrollable-timeline li.active .icon-holder::before {
    background: var(--primary-color);
}
/* End Section How It Work */

/* Start Section FAQS */
.faq-section .accordion-item {
    border: 0;
}
.faq-section .accordion-button {
    font-size: var(--h6-font-size);
    font-weight: var(--font-weight-semibold);
}
.faq-section .accordion-item:first-of-type .accordion-button {
    border-radius: var(--border-radius-large);
}
.faq-section .accordion-button:not(.collapsed) {
    border-radius: var(--border-radius-large);
    box-shadow: none;
    color: var(--primary-color);
}
.faq-section .accordion-body {
    color: var(--p-color);
    font-size: var(--btn-font-size);
    line-height: 40px;
}
/* End Section FAQS */

/* Start Section Contact */
.google-map {
    border-radius: var(--border-radius-medium);
}
.num-tel {
    color: var(--secondary-color);
    font-size: var(--copyright-font-size);
    font-weight: var(--font-weight-medium);
    line-height: normal;
}
/* End Section Contact */

/* Start Footer */
.site-footer {
    border-bottom: 10px solid  var(--secondary-color);
    position: relative;
}
.site-footer::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 200px 200px;
    border-color: transparent transparent var(--secondary-color);
    pointer-events: none;
}
.site-footer-title {
    color: var(--primary-color);
}
/* .site-footer .dropdown .btn {
    background: var(--secondary-color);
} */
.site-footer .dropdown-menu {
    padding: 0;
}
.site-footer .dropdown-item {
    color: var(--p-color);
    font-size: var(--menu-font-size);
    font-weight: var(--font-weight-medium);
    padding: 4px 18px;
}
.site-footer .dropdown-item:hover {
    background-color: transparent;
    color: var(--primary-color);
}
.site-footer .dropdown-menu li:first-child .dropdown-item {
    padding-top: 10px;
}
.site-footer .dropdown-menu li:last-child .dropdown-item {
    padding-bottom: 12px;
}
.site-footer .dropdown-toggle {
    background: var(--secondary-color);
    border-color: var(--white-color);
}
.site-footer .dropdown-toggle:hover {
    background: var(--primary-color);
    border-color: transparent;
}
.site-footer-links {
    padding-left: 0;
}
.site-footer-link-item {
    display: block;
    list-style: none;
    line-height: normal;
}
.site-footer-link {
    color: var(--secondary-color);
    font-size: var(--copyright-font-size);
    font-weight: var(--font-weight-medium);
    line-height: normal;
}
.copyright-text {
    font-size: var(--copyright-font-size);
}
/* End Footer */

/* ************************* */
/* Topics Detail Page */
/* ************************* */
/* Start Site Header */
.site-header {
    background-image: linear-gradient(15deg, #13547a 0%, #80d0c7 100%);
    padding-top: 150px;
    padding-bottom: 80px;
}
.site-header .container {
    height: 100%;
}
.breadcrumb-item+.breadcrumb-item::before,
.breadcrumb-item a:hover,
.breadcrumb-item.active {
    color: var(--white-color);
}
.site-header .custom-icon {
    color: var(--white-color);
    font-size: var(--h4-font-size);
}
.site-header .custom-icon:hover {
    color: var(--secondary-color);
}
.topics-detail-block {
    position: relative;
    border-radius: var(--border-radius-medium);
    overflow: hidden;
}
.topics-detail-block-image {
    display: block;
    border-radius: var(--border-radius-medium);
}
/* End Site Header */

/* Start Section 01 */
/* blockquote */
blockquote {
    background: var(--section-bg-color);
    border-radius: var(--border-radius-small);
    font-family: var(--title-font-family);
    font-size: var(--h4-font-size);
    font-weight: var(--font-weight-bold);
    display: inline-block;
    text-align: center;
    padding: 40px;
    margin: 30px;
}
/* End Section 01 */

/* Start Section 02 */
/* newsletter image */
.newsletter-image {
    border-radius: var(--border-radius-medium);
}

/* Subscribe Form */
.subscribe-form-wrap {
    padding: 50px;
}
.subscribe-form {
    width: 95%;
}
/* End Section 02 */

/* ****************************** */
/* Topics Listing Page */
/* ****************************** */
/* Start Header */
.topics-listing-page {
    padding-bottom: 65px;
}
/* End Header */

/* Start Section 01 */
.custom-block-topics-listing {
    height: inherit;
}
.custom-block-topics-listing .custom-block-image {
    width: 200px;
}
.custom-block-topics-listing-info {
    margin: 30px 20px 20px 30px;
}
.custom-block-topics-listing-info .rounded-pill {
    position: absolute;
    top: 60px;
    right: 20px;
}

/* Start Pagination */
.pagination {
    margin-top: 40px;
}
.page-link {
    border: 0;
    border-radius: var(--border-radius-small);
    color: var(--p-color);
    font-family: var(--title-font-family);
    margin: 0 5px;
    padding: 10px 20px;
}
.page-link:hover,
.page-item:first-child .page-link:hover,
.page-item:last-child .page-link:hover {
    background: var(--secondary-color);
    color: var(--white-color);
}
.page-item:first-child .page-link {
    margin-right: 10px;
}
.page-item:first-child .page-link,
.page-item:last-child .page-link {
    background: var(--section-bg-color);
    border-radius: var(--border-radius-small);
}
.active>.page-link,
.page-link.active {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}
/* End Pagination */
/* End Section 01 */

/* ***************************** */
/* Conatct Page */
/* ***************************** */
/* Start Section 01 */
/* Start Custom Form */
.custom-form .form-control {
    color: var(--p-color);
    border-radius: var(--border-radius-large);
    margin-bottom: 24px;
    padding: 13px 0 13px 20px;
    outline: none;
}
.form-floating>label {
    padding-left: 20px;
}
.contact-form .form-floating>textarea {
    border-radius: var(--border-radius-medium);
    height: 150px;
}
.custom-form button[type="submit"] {
    background: var(--custom-btn-bg-color);
    color: var(--white-color);
    border: none;
    /* border-radius: var(--border-radius-large); */
    font-family: var(--title-font-family);
    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;
}
/* End Custom Form */
/* End Section 01 */

/* *************************** */
/* 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: var(--secondary-color);
    }
    .navbar-nav .dropdown-menu {
        position: relative;
        left: 10px;
        opacity: 1;
        pointer-events: auto;
        max-width: 155px;
        margin-top: 10px;
        margin-bottom: 15px;
    }
    .navbar-expand-lg .navbar-nav {
        padding-bottom: 20px;
    }
    .navbar-expand-lg .navbar-nav .nav-link {
        padding: 5px;
    }
    .nav-tabs .nav-link:first-child {
        margin-right: 5px;
    }
    .nav-tabs .nav-link {
        font-size: var(--copyright-font-size);
        padding: 10px;
    }
    .featured-section {
        border-radius: 0 0 80px 80px;
        padding-bottom: 50px;
    }
    .timeline-container .vertical-scrollable-timeline .list-progress {
        height: 75%;
    }
    .timeline-container .vertical-scrollable-timeline li {
        padding-left: 135px;
    }
}
@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;
    }
    .custom-block .text-small {
        font-size: 17px;
    }
    .timeline-container .vertical-scrollable-timeline li p {
        line-height: 25px;
        font-size: 15px;
    }
    .social-share {
        position: absolute;
        z-index: 2;
        bottom: -10px;
        right: -10px;
        left: -6px;
        padding: 20px 35px;
    }
    .timeline-section .custom-border-btn {
        margin-top: 10px;
        margin-right: 15px;
    }
    .copyright-text {
        font-size: 15px;
    }
    .site-footer::after {
        bottom: -8px;
    }
    /* ************************* */
    /* Topics Detail Page */
    /* ************************* */
    .topics-detail-section h3 {
        font-size: 20px;
    }
    blockquote {
        margin: 0;font-size: var(--p-font-size);
    }
    .custom-form h4 {
        text-align: center;
    }
    .custom-form button[type="submit"] {
        padding-right: 15px;
    }
    /* ************************* */
    /* Topics Listing Page */
    /* ************************* */
    .custom-block-topics-listing .topics-listing-small {
        flex-wrap: wrap;
    }
    .custom-block-topics-listing .topics-listing-small-item {
        margin: -25px;
    }
    .pagination {
        display: flex;
        flex-wrap: wrap;
    }
    .pagination .page-item {
        margin-bottom: 20px;
    }
    /* ************************* */
    /* Contact Form Page */
    /* ************************* */
    .section-padding .contact-text-small {
        font-size: var(--h6-font-size);
    }
    .contact-form .custom-btn-contact {
        padding-right: 25px !important;
    }
}