/*

TemplateMo 590 topic listing

https://templatemo.com/tm-590-topic-listing

*/

/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/

@font-face {
    font-family: "Montserrat";
    src: url("/fonts/Montserrat/Montserrat.ttf");
    font-weight: 100 900;
    font-stretch: 75% 125%;
    font-style: normal;
}
: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;

    --success: #4caf50;
    --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;
}

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

/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

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);
}
p.small {
    font-size: var(--menu-font-size);
}
.title {
    text-transform: capitalize;
}

ul li {
    color: var(--p-color);
    font-size: var(--p-font-size);
    font-weight: var(--font-weight-normal);
}
.center {
    display: flex;
    align-items: center;
    justify-content: center;
}

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);
}
.with-fit {
    width: fit-content;
}

.shadow-md {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
/*---------------------------------------
  pop up              
-----------------------------------------*/
.pop-up {
    position: fixed;
    height: 100%;
    width: 100%;
    background: #000000a2;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pop-up-container {
    background: #fff;
    width: 100%;
    height: fit-content;
    padding: 25px;
    max-width: 470px;
    margin: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    border-radius: 5px;
    color: #000000;
    text-align: center;
    gap: 5px;
    font-size: 3rem;
}

.circle {
    color: var(--secondary-color);
}
.pop-up-container .bi-x-lg {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.2rem;
    cursor: pointer;
}

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

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

.section-overlay {
    background-image: linear-gradient(15deg, #13547a 0%, #80d0c7 100%);
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    width: 100%;
    height: 100%;
    opacity: 0.85;
}

.section-overlay + .container {
    position: relative;
}

.tab-content {
    background-color: var(--white-color);
    border-radius: var(--border-radius-medium);
}

.nav-tabs {
    border-bottom: 1px solid #ecf3f2;
    margin-bottom: 40px;
    justify-content: center;
}

.nav-tabs .nav-link {
    border-radius: 0;
    border-top: 0;
    border-right: 0;
    border-left: 0;
    color: var(--p-color);
    font-family: var(--title-font-family);
    font-size: var(--btn-font-size);
    font-weight: var(--font-weight-medium);
    padding: 15px 25px;
    transition: all 0.3s;
}

.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);
}
.news-contaniner {
    align-items: center;
}
.w-full {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.read-more-news {
    padding: 10px 25px;
    border-radius: 4px;
    background-color: var(--secondary-color);
    color: var(--white-color);
    margin-top: 60px;
}
/*---------------------------------------
  CUSTOM ICON COLOR               
-----------------------------------------*/
.custom-icon {
    color: var(--secondary-color);
}

/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
    background: var(--custom-btn-bg-color);
    border: 2px solid transparent;
    border-radius: var(--border-radius-large);
    color: var(--white-color);
    font-size: var(--btn-font-size);
    font-weight: var(--font-weight-semibold);
    line-height: normal;
    transition: all 0.3s;
    padding: 10px 20px;
}

.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);
}

/*---------------------------------------
  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);
}
.dropdown,
.dropdown-center,
.dropend,
.dropstart,
.dropup,
.dropup-center {
    padding: 20px;
    text-align: center;
}

/*---------------------------------------
  HERO        
-----------------------------------------*/
.hero-section {
    background-image: linear-gradient(15deg, #13547a 0%, #80d0c7 100%);
    position: relative;
    overflow: hidden;
    padding-top: 150px;
    padding-bottom: 150px;
}
.search-location-section {
    background-image: linear-gradient(15deg, #13547a 0%, #80d0c7 100%);
    position: relative;
    overflow: hidden;
    padding-top: 150px;
    padding-bottom: 100px;
}
.hero-section .input-group {
    background-color: var(--white-color);
    border-radius: var(--border-radius-large);
    padding: 10px 15px;
}

.hero-section .input-group-text {
    background-color: transparent;
    border: 0;
}

.hero-section input[type="text"] {
    border: 0;
    box-shadow: none;
    margin-bottom: 0;
}

.hero-section button[type="submit"] {
    background-color: var(--primary-color);
    border: 0;
    border-radius: var(--border-radius-large) !important;
    color: var(--white-color);
    max-width: 150px;
}

/*---------------------------------------
  TOPICS              
-----------------------------------------*/
.featured-section {
    background-color: var(--secondary-color);
    border-radius: 0 0 100px 100px;
    padding-bottom: 100px;
}
.location-featured-section {
    background-color: var(--secondary-color);
    border-radius: 0 0;
    padding-bottom: 100px;
}

.featured-section .row {
    position: relative;
    bottom: 100px;
    margin-bottom: -100px;
}

.custom-block {
    border-radius: var(--border-radius-medium);
    position: relative;
    overflow: hidden;
    padding: 30px;
    transition: all 0.3s ease;
    height: 100%;
}

.custom-block:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.custom-block > a {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.custom-block-image {
    display: block;
    width: 100%;
    height: 200px;
    object-fit: contain;
    border-radius: 8px;
    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;
}

.custom-block-overlay {
    height: 100%;
    min-height: 350px;
    padding: 0;
}

.custom-block-overlay > a {
    height: 100%;
}

.custom-block-overlay .custom-block-image {
    border-radius: var(--border-radius-medium);
    display: block;
    height: 100%;
    margin-top: 0;
}

.custom-block-overlay-text {
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    left: 0;
    padding: 30px;
}

.no-location {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(var(--bs-white-rgb)) !important;
}
.no-location img,
.no-location svg {
    width: 50px;
}

.social-share {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 2;
    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-graphic {
    background-color: #00bfa6;
}

.bg-advertising {
    background-color: #f50057;
}

.bg-finance {
    background-color: #536dfe;
}

.bg-music {
    background-color: #f9a826;
}

.bg-education {
    background-color: #00bfa6;
}

/*---------------------------------------
  TOPICS               
-----------------------------------------*/
.topics-detail-block {
    border-radius: var(--border-radius-medium);
    position: relative;
    overflow: hidden;
}

.topics-detail-block-image {
    display: block;
    border-radius: var(--border-radius-medium);
}

blockquote {
    background-color: 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;
    margin: 30px;
    padding: 40px;
}

.topics-listing-page .site-header {
    padding-bottom: 65px;
}

.custom-block-topics-listing-info {
    margin: 30px 20px 20px 30px;
}

.custom-block-topics-listing {
    height: inherit;
}

.custom-block-topics-listing .custom-block-image {
    width: 200px;
}

/*---------------------------------------
  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-color: 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-color: var(--section-bg-color);
    border-radius: var(--border-radius-small);
}

.active > .page-link,
.page-link.active {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

/*---------------------------------------
  TIMELINE              
-----------------------------------------*/
.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 {
    width: 8px;
    height: 87%;
    background-color: var(--primary-color);
    position: absolute;
    left: 52px;
    top: 0;
    overflow: hidden;
}

.timeline-container .vertical-scrollable-timeline .list-progress .inner {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 100%;
    background-color: var(--secondary-color);
    width: 100%;
}

.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;
    width: 104px;
    height: 104px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--secondary-color);
    border-radius: 50%;
    z-index: 1;
    transition: 0.4s all;
}

.timeline-container .vertical-scrollable-timeline li .icon-holder::before {
    content: "";
    width: 80px;
    height: 80px;
    border: 4px solid #fff;
    position: absolute;
    background-color: var(--secondary-color);
    border-radius: 50%;
    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;
    height: 100%;
    width: 8px;
    background-color: transparent;
    left: 52px;
    z-index: 0;
}

.timeline-container .vertical-scrollable-timeline li.active .icon-holder {
    background-color: var(--primary-color);
}

.timeline-container
    .vertical-scrollable-timeline
    li.active
    .icon-holder::before {
    background-color: var(--primary-color);
}

/*---------------------------------------
  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;
}

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

/*---------------------------------------
  CONTACT               
-----------------------------------------*/
.google-map {
    border-radius: var(--border-radius-medium);
}

.contact-form .form-floating > textarea {
    border-radius: var(--border-radius-small);
    height: 150px;
}

/*---------------------------------------
  SUBSCRIBE FORM               
-----------------------------------------*/
.subscribe-form-wrap {
    padding: 50px;
}

.subscribe-form {
    width: 95%;
}

/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .form-control {
    border-radius: var(--border-radius-small);
    color: var(--p-color);
    padding-top: 13px;
    padding-bottom: 13px;
    padding-left: 20px;
    outline: none;
}
.form-floating {
    margin-bottom: 20px;
}

.form-floating > label {
    padding-left: 20px;
}

.custom-form button[type="submit"] {
    background: var(--custom-btn-bg-color);
    border: none;
    border-radius: var(--border-radius-small);
    color: var(--white-color);
    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;
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
}

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

/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
.site-footer {
    border-bottom: 10px solid var(--secondary-color);
    position: relative;
}
.site-footer .logo {
    max-width: 100px;
    width: 100vw;
    min-width: 75px;
}

.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) transparent;
    pointer-events: none;
}

.site-footer-title {
    color: var(--primary-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-color: var(--secondary-color);
    border-color: var(--white-color);
}

.site-footer .dropdown-toggle:hover {
    background-color: 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);
}

/*---------------------------------------
  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);
}

.loading-container {
    --uib-size: 15px;
    --uib-color: #fff;
    --uib-speed: 2s;
    --uib-bg-opacity: 0;
    height: var(--uib-size);
    width: var(--uib-size);
    transform-origin: center;
    animation: rotate var(--uib-speed) linear infinite;
    will-change: transform;
    overflow: visible;
}
.loading-container.black {
    --uib-color: #000000;
}

.car {
    fill: none;
    stroke: var(--uib-color);
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    stroke-linecap: round;
    animation: stretch calc(var(--uib-speed) * 0.75) ease-in-out infinite;
    will-change: stroke-dasharray, stroke-dashoffset;
    transition: stroke 0.5s ease;
}

.track {
    fill: none;
    stroke: var(--uib-color);
    opacity: var(--uib-bg-opacity);
    transition: stroke 0.5s ease;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes stretch {
    0% {
        stroke-dasharray: 0, 150;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 75, 150;
        stroke-dashoffset: -25;
    }

    100% {
        stroke-dashoffset: -100;
    }
}

.no-result {
    width: 100%;
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 1rem;
    margin-block: 2rem;
}
.no-result h4 {
    font-size: 1.5rem;
}
.no-result svg {
    width: 40px;
}
.error {
    color: red;
    font-size: 0.75rem;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

th,
td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #c3c3c3;
    color: rgb(44, 44, 44);
    font-weight: bold;
}

tr:hover {
    background-color: #f1f1f1;
}

/* Responsive Table */
@media (max-width: 600px) {
    th,
    td {
        padding: 8px;
    }
}

/* calculate fee */

.calculate-fee {
    position: relative;
    min-height: 730px;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding-inline: 10vw;
    font-size: 18px;
    font-weight: 500;
    color: #333;
    line-height: 1.6;
    letter-spacing: 0.5px;
    width: 100%;
    max-width: 1440px;
    margin: auto;
}
.calculate-fee img {
    max-width: 80vw;
}
.calculate-fee .text {
    max-width: 550px;
}

.calculate-fee form {
    margin-top: 2rem;
    min-width: 200px;
    max-width: 360px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
}
.calculate-fee .input-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-block: 20px;
}
.input-container.language {
    display: flex;
    align-items: flex-end;
    margin-top: 50px;
}
:is(.calculate-fee .input-container) input,
select {
    border: 1px solid #d4d4d4;
    padding: 0.75rem 1rem;
    border-radius: 9999rem;
    min-width: 160px;
    width: 100%;
}
.calculate-fee .input input:focus {
    outline: none;
}
.calculate-fee [type="submit"] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: none;
    background: rgb(115 187 179);
    color: white;
}
.calculate-fee [type="submit"]:hover {
    background: rgb(125, 201, 192);
}
.calculate-fee .form-contaner-fee {
    background-color: #fff;
    border-radius: 10px;
    width: 40%;
}
span {
    color: rgb(125, 201, 192);
}

.calculate-fee h2 {
    font-size: 44px;
    color: #333;
}
.calculate-fee h1 {
    font-size: 2rem;
    color: #333;
    margin-bottom: -20px;
}

.calculate-fee .input-container {
    margin-bottom: 20px;
}

.calculate-fee .input-container label {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    display: block;
    margin-bottom: 8px;
}

.calculate-fee .input-container select,
.calculate-fee .input-container input {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background-color: #f5f5f5; /* Light gray background */
    transition: border 0.3s ease;
}

.calculate-fee .input-container select:focus,
.calculate-fee .input-container input:focus {
    border-color: rgb(115, 187, 179); /* Primary color */
    outline: none;
    box-shadow: 0 0 8px rgba(52, 152, 219, 0.3);
}

.calculate-fee .error {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 5px;
}

.calculate-fee [input="submit"] {
    background-color: rgb(115, 187, 179) !important;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    width: 100%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.calculate-fee [input="submit"]:hover {
    background-color: rgb(132, 216, 206);
}

.calculate-fee [input="submit"]:disabled {
    background-color: #bdc3c7;
    cursor: not-allowed;
}

.calculate-fee .loading-container {
    margin-right: 10px;
}

.calculate-fee .no-result {
    text-align: center;
    margin-top: 30px;
}

.result {
    position: absolute;
    width: 100%;
    height: fit-content;
    max-width: 750px;
    background-color: rgb(239 239 239);
    top: 0;
    left: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    padding: 1.5rem;
    border-radius: 0.75rem;
    margin-bottom: 50%;
    margin-left: 50%;
    translate: -50% 50%;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    animation: popin 0.2s linear;
    padding-top: 2rem;
}
.result .save {
    width: fit-content !important;
}
@keyframes popin {
    from {
        scale: 0;
    }
    to {
        scale: 1;
    }
}
.result .close {
    border-radius: 999rem;
    position: absolute;
    top: 2rem;
    right: 2rem;
    background-color: #e74c3c !important;
    color: white;

    width: fit-content;
    height: 3rem;
    width: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
}
.btn {
    padding: 0.5rem 0.75rem;
    background-color: rgb(115, 187, 179) !important;
    border-radius: 8px;
    cursor: pointer;
    color: #fff;
    border: none;
}
.btn:active {
    background-color: rgb(112, 189, 180);
}
.btn:hover {
    background-color: rgb(112, 189, 180);
    color: #fff;
}
.object-cover {
    object-fit: cover;
}

/* learn */

/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (max-width: 991px) {
    .calculate-fee .form-contaner-fee {
        width: 100%;
    }
    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: 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: 0;
    }

    .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;
    }

    .custom-block-topics-listing .custom-block-image {
        width: auto;
    }

    .custom-block-topics-listing > .d-flex,
    .custom-block-topics-listing-info,
    .custom-block-topics-listing a {
        flex-direction: column;
    }

    .timeline-container .vertical-scrollable-timeline .list-progress {
        height: 75%;
    }

    .timeline-container .vertical-scrollable-timeline li {
        padding-left: 135px;
    }

    .subscribe-form-wrap {
        padding-top: 30px;
        padding-bottom: 0;
    }
}

@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;
    }
}
