/*

TemplateMo 590 topic listing

https://templatemo.com/tm-590-topic-listing

*/

/*---------------------------------------
  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;
}

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);
}

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;
}

.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);
}


/*---------------------------------------
  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);
}


/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.sticky-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}

.sticky-wrapper.is-sticky .navbar {
  background-color: var(--white-color);
  box-shadow: 0 2px 20px rgba(19, 84, 122, 0.15);
}

.navbar {
  background: var(--white-color);
  border-bottom: none;
  box-shadow: 0 2px 15px rgba(19, 84, 122, 0.10);
  z-index: 1030;
  position: sticky;
  top: 0;
}

.navbar-brand,
.navbar-brand:hover {
  font-size: var(--h3-font-size);
  font-weight: var(--font-weight-bold);
  display: contents;
}

.navbar-brand span {
  font-family: var(--title-font-family);
}

.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: #444444;
  font-family: var(--title-font-family); 
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  position: relative;
  padding: 24px 12px !important;
}

.navbar-nav .nav-link.active, 
.navbar-nav .nav-link:hover {
  color: var(--primary-color);
}

/* Underline animasi saat hover */
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 12px;
  right: 12px;
  height: 3px;
  background: var(--secondary-color);
  border-radius: 3px 3px 0 0;
  transform: scaleX(0);
  transition: transform 0.25s;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

.navbar .dropdown-menu {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(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: 15px solid var(--white-color);
  position: absolute;
  top: -10px;
  left: 10px;
}

.navbar .dropdown-item {
  display: inline-block;
  color: var(--p-bg-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";
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-size: var(--copyright-font-size);
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  left: 2px;
  border: 0;
}

@media screen and (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    margin-top: 0;
    pointer-events: auto;
  }
}

.navbar-icon {
  background: var(--white-color);
  border-radius: var(--border-radius-large);
  display: inline-block;
  font-size: var(--h5-font-size);
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  transition: all 0.3s ease;
}

.navbar-icon:hover {
  background: var(--primary-color);
  color: var(--white-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;
}

.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(--primary-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(--primary-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}


/*---------------------------------------
  TOP BAR (etripto.in style)
-----------------------------------------*/
.topbar {
  background-color: var(--primary-color);
  padding: 7px 0;
  font-size: 12px;
  color: #e8f8f7;
}

.topbar a {
  color: #e8f8f7;
  text-decoration: none;
  transition: color 0.2s;
}

.topbar a:hover {
  color: var(--secondary-color);
}

.topbar .topbar-left {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.topbar .topbar-left span,
.topbar .topbar-left a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--body-font-family);
  font-size: 12px;
}

.topbar .topbar-left i {
  color: var(--secondary-color);
  font-size: 13px;
}

.topbar .topbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
}

.topbar .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(128, 208, 199, 0.2);
  color: var(--secondary-color);
  font-size: 12px;
  transition: all 0.2s;
}

.topbar .social-links a:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
}

.btn-topbar {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 14px;
  border-radius: var(--border-radius-large);
  font-size: 12px;
  font-family: var(--title-font-family);
  font-weight: var(--font-weight-semibold);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  border: 1.5px solid transparent;
}

.btn-topbar-outline {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
  background: transparent;
}

.btn-topbar-outline:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
}

.btn-topbar-solid {
  background: var(--secondary-color);
  color: var(--primary-color);
}

.btn-topbar-solid:hover {
  background: var(--white-color);
  color: var(--primary-color);
}

/*---------------------------------------
  NAVBAR CTA (etripto.in style)
-----------------------------------------*/
.navbar-brand .brand-icon {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white-color);
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.navbar-brand .brand-text {
  font-family: var(--title-font-family);
  font-size: 22px;
  font-weight: var(--font-weight-bold);
  color: var(--primary-color);
  letter-spacing: -0.5px;
  line-height: 1;
}

.navbar-brand .brand-text span {
  color: var(--secondary-color);
}

.navbar-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}

.navbar-cta .btn-book {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #1a7aad 100%);
  color: var(--white-color);
  font-family: var(--title-font-family);
  font-size: 12px;
  font-weight: var(--font-weight-bold);
  padding: 10px 20px;
  border-radius: var(--border-radius-large);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.25s;
  white-space: nowrap;
  border: none;
}

.navbar-cta .btn-book:hover {
  background: linear-gradient(135deg, #0e3f5c 0%, var(--primary-color) 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(19, 84, 122, 0.3);
  color: var(--white-color);
}

.navbar-cta .phone-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary-color);
  font-family: var(--title-font-family);
  font-size: 12px;
  font-weight: var(--font-weight-bold);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}

.navbar-cta .phone-link i {
  background: var(--secondary-color);
  color: var(--white-color);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.navbar-cta .phone-link:hover {
  color: var(--secondary-color);
}

@media screen and (max-width: 991px) {
  .navbar-cta {
    margin-left: 0;
    flex-wrap: wrap;
    padding: 12px 16px;
    gap: 10px;
  }

  .navbar-nav .nav-link::after {
    display: none;
  }

  .navbar-collapse {
    border-top: 1px solid #ecf3f2;
  }
}


/*---------------------------------------
  OFFCANVAS MOBILE MENU
-----------------------------------------*/
.offcanvas.offcanvas-end {
  width: 300px;
  border-left: none;
  box-shadow: -5px 0 30px rgba(19, 84, 122, 0.15);
}

.offcanvas-header {
  background: var(--primary-color);
  padding: 16px 20px;
}

.offcanvas-header .navbar-brand {
  margin-right: 0;
}

.offcanvas-header .brand-text {
  color: var(--white-color);
}

.offcanvas-header .btn-close {
  filter: invert(1);
  opacity: 0.8;
}

.offcanvas-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.offcanvas-topinfo {
  border-bottom: 1px solid #ecf3f2;
  padding-bottom: 16px;
  margin-bottom: 4px;
}

.offcanvas-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(19, 84, 122, 0.08);
  color: var(--primary-color);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s;
}

.offcanvas-social:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.offcanvas-nav {
  flex: 1;
  margin-bottom: 20px;
}

.offcanvas-nav .nav-link {
  display: flex !important;
  align-items: center;
  gap: 10px;
  font-family: var(--title-font-family);
  font-size: 13px;
  font-weight: var(--font-weight-semibold);
  color: #333 !important;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 13px 4px !important;
  border-bottom: 1px solid #f0f0f0;
  transition: color 0.2s, padding-left 0.2s;
}

.offcanvas-nav .nav-link::after {
  display: none !important;
}

.offcanvas-nav .nav-link i:first-child {
  color: var(--secondary-color);
  font-size: 15px;
  width: 18px;
  text-align: center;
}

.offcanvas-nav .nav-link:hover {
  color: var(--primary-color) !important;
  padding-left: 8px !important;
}

.offcanvas-accordion-toggle {
  justify-content: space-between;
}

.offcanvas-chevron {
  font-size: 11px !important;
  transition: transform 0.25s;
  width: auto !important;
  color: #aaa !important;
}

.offcanvas-accordion-toggle[aria-expanded="true"] .offcanvas-chevron {
  transform: rotate(180deg);
}

.offcanvas-submenu {
  list-style: none;
  padding: 4px 0 4px 28px;
  margin: 0 0 0 4px;
  background: #f9fdfe;
  border-left: 3px solid var(--secondary-color);
}

.offcanvas-submenu li a {
  display: block;
  font-family: var(--title-font-family);
  font-size: 12px;
  font-weight: var(--font-weight-semibold);
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  padding: 9px 8px;
  text-decoration: none;
  transition: color 0.2s;
}

.offcanvas-submenu li a:hover {
  color: var(--primary-color);
}
/* CTA SEARCH BUTTON */

.nav-search-btn{
    background: #f97316;
    color: #fff;
    text-decoration: none;

    padding: 12px 18px;
    border-radius: 12px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;

    transition: 0.3s ease;
}

/* ICON */

.nav-search-btn i{
    font-size: 14px;
}

/* HOVER */

.nav-search-btn:hover{
    background: #ea580c;
    transform: translateY(-2px);
}

/* MOBILE */

@media (max-width: 768px){

    .nav-search-btn{
        padding: 10px 14px;
        font-size: 13px;
        border-radius: 10px;
        gap: 8px;
    }

    .nav-search-btn span{
        display: none;
    }

    .nav-search-btn i{
        font-size: 15px;
    }

}
/* =========================
   TRUST SECTION
========================= */

.trust-section{
    padding:120px 0;
    background:#eef4fb;
}

/* GRID */

.trust-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}

/* CARD */

.trust-item{
    display:flex;
    align-items:flex-start;
    gap:14px;

    background:#ffffff;

    padding:22px 20px;

    border-radius:18px;

    border:1px solid #edf2f7;

    transition:.3s ease;

    box-shadow:
        0 8px 24px rgba(15,23,42,.04);
}

.trust-item:hover{
    transform:translateY(-4px);

    box-shadow:
        0 16px 32px rgba(15,23,42,.07);
}

/* ICON */

.trust-icon{
    width:44px;
    height:44px;

    min-width:44px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:14px;

    background:#eff6ff;

    color:#0b63ce;

    font-size:20px;
}

/* CONTENT */

.trust-content h4{
    font-size:15px;
    line-height:1.4;
    font-weight:700;

    color:#0f172a;

    margin-bottom:6px;
}

.trust-content p{
    margin:0;

    font-size:13px;
    line-height:1.7;

    color:#64748b;
}

/* TABLET */

@media(max-width:991px){

    .trust-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

/* MOBILE */

@media(max-width:767px){

    .trust-section{
        padding:100px 0;
    }

    .trust-grid{
        grid-template-columns:repeat(2,1fr);
        gap:14px;
    }

    .trust-item{
        padding:18px 16px;
        border-radius:16px;
        gap:12px;
    }

    .trust-icon{
        width:40px;
        height:40px;

        min-width:40px;

        font-size:18px;
        border-radius:12px;
    }

    .trust-content h4{
        font-size:14px;
    }

    .trust-content p{
        font-size:12px;
        line-height:1.6;
    }

}
/*---------------------------------------
  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-medium);
  height: 150px;
}


/*---------------------------------------
  SUBSCRIBE FORM               
-----------------------------------------*/
.subscribe-form-wrap {
  padding: 50px;
}

.subscribe-form {
  width: 95%;
}


/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .form-control {
  border-radius: var(--border-radius-large);
  color: var(--p-color);
  margin-bottom: 24px;
  padding-top: 13px;
  padding-bottom: 13px;
  padding-left: 20px;
  outline: none;
}

.form-floating>label {
  padding-left: 20px;
}

.custom-form button[type="submit"] {
  background: var(--custom-btn-bg-color);
  border: none;
  border-radius: var(--border-radius-large);
  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;
}

.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::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);
}


/*---------------------------------------
  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: var(--white-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;
  }
}

