/*=========================================
  Nav Menu 
=========================================*/





:root {
  --color-nav: #ffffff;
  --color-text: #334155;
  --color-text-light: #cbd5e1;
  --color-accent: #009688;
  --color-accent-hover: #4caf50;
  --color-white: #ffffff;
  --color-hover-bg: #f1f5f9;
  --shadow-sm: 0 1px 3px rgb(0 0 0 / 0.08);
  --shadow-lg: 0 12px 36px rgb(0 0 0 / 0.15);
  --radius: 10px;
  --nav-h: 64px;
  --transition: 0.2s ease;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.5, 0, 0.9, 0.4);
  --duration-open: 0.25s;
  --duration-close: 0.18s;
  --delay-close: 0.12s;
}

body {
  min-height: 100vh;
  font-size: 15px;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}



/* Kill ALL transitions during viewport resize to prevent flicker */
.resize-lock,
.resize-lock *,
.resize-lock *::before,
.resize-lock *::after {
  transition: none !important;
  animation: none !important;
}

/* === Navbar === */

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 2rem;
  height: var(--nav-h);
  padding: 0 2rem;
  background: var(--color-nav);
  box-shadow: var(--shadow-sm);
}

.logo {
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-accent);
  flex-shrink: 0;
}

/* === Navbar actions (search + CTA) === */
.navbar__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
  flex-shrink: 0;
}

.btn-search {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: none;
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn-search svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-text);
  transition: stroke 0.2s ease;
}

.btn-search:hover {
  background: var(--color-hover-bg);
}

.btn-search:hover svg {
  stroke: var(--color-accent);
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  background: #304f9b;
  border: 1.5px solid var(--color-accent);
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease,
    box-shadow 0.2s ease, transform 0.15s ease;
}

.btn-cta:hover {
  background: var(--color-accent);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgb(99 102 241 / 0.3);
  transform: translateY(-1px);
}

.btn-cta:active {
  transform: translateY(0);
  box-shadow: none;
}

/* === Navigation List === */
.nav {
  height: 100%;
}

/* Mobile-only actions inside nav — hidden on desktop */
.nav__actions {
  display: none;
}

.nav__list {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 0;
}

/* Each top-level li fills the full navbar height = seamless hover zone */
.nav__list > li {
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
}

/* Mega-menu parents MUST be static so .mega positions from .navbar */
.nav__list > li.has-mega {
  position: static;
}

.nav__list > li > a {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  height: 100%;
  padding: 0 1rem;
  font-weight: 500;
  color: var(--color-text);
  transition: background 0.2s ease, color 0.2s ease;
}

.nav__list > li > a:hover {
  background: var(--color-hover-bg);
  color: var(--color-accent);
}

/* Active-parent: keep top-level link color-highlighted while its submenu is visible */
.nav__list > li.dropdown:hover > a,
.nav__list > li.has-mega:hover > a {
  color: var(--color-accent);
}

/* Chevron icon */
.chevron {
  width: 10px;
  height: 10px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform var(--duration-open) var(--ease-out);
  flex-shrink: 0;
}

/* === Dropdown === */
/* top-level dropdown — position already set on li */

.dropdown__menu,
.dropdown__submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 320px;
  padding: 0.5rem 0;
  background: var(--color-white);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--duration-close) var(--ease-in),
    transform var(--duration-close) var(--ease-in),
    visibility 0s linear var(--duration-close);
  pointer-events: none;
}

.dropdown__menu--right {
  left: auto;
  right: 0;
}

.dropdown__submenu {
  top: 0;
  left: calc(100% - 4px);
  border-radius: var(--radius);
  padding: 0.5rem 0;
}

/* Flip submenu to the left when it would overflow the right edge */
.dropdown__submenu--flip {
  left: auto;
  right: calc(100% - 4px);
}

/* Flip dropdown menu to right-align when it would overflow */
.dropdown__menu--flip {
  left: auto;
  right: 0;
}

/* Invisible bridge so the mouse can travel from parent to submenu */
.dropdown__submenu::before {
  content: "";
  position: absolute;
  top: 0;
  left: -16px;
  width: 16px;
  height: 100%;
}

/* When submenu is flipped left, bridge goes to the right */
.dropdown__submenu--flip::before {
  left: auto;
  right: -16px;
}

.dropdown__menu a,
.dropdown__submenu a {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.65rem 1.2rem;
  color: var(--color-text);
  border-radius: 6px;
  margin: 0 0.4rem;
  transition: background 0.15s ease, color 0.15s ease;
}

.dropdown__menu a:hover,
.dropdown__submenu a:hover {
  background: var(--color-hover-bg);
  color: var(--color-accent);
}

/* Menu icon — inline SVG icons in dropdown items */
.menu-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  stroke: var(--color-accent);
  opacity: 0.8;
  transition: opacity 0.15s ease;
}

a:hover .menu-icon {
  opacity: 1;
}

/* Menu item text block — title + description */
.menu-item__text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.menu-item__title {
  font-weight: 500;
  font-size: 0.9rem;
  line-height: 1.3;
}

.menu-item__desc {
  font-size: 0.8rem;
  color: #94a3b8;
  line-height: 1.35;
  font-weight: 400;
}

/* Nested dropdown parent highlight when its submenu is open */
.dropdown--nested:hover > a {
  color: var(--color-accent);
}

/* Show dropdown on hover — desktop only */
@media (hover: hover) and (min-width: 1025px) {
  .nav__list > li.dropdown:hover > .dropdown__menu,
  .dropdown--nested:hover > .dropdown__submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    transition: opacity var(--duration-open) var(--ease-out),
      transform var(--duration-open) var(--ease-out), visibility 0s linear 0s;
  }

  /* Chevron rotation only on desktop hover */
  .nav__list > li.dropdown:hover > a > .chevron,
  .nav__list > li.has-mega:hover > a > .chevron {
    transform: rotate(180deg);
  }

  .dropdown--nested > a > .chevron {
    transform: rotate(-90deg);
  }

  .dropdown--nested:hover > a > .chevron {
    transform: rotate(0deg);
  }
}

/* Nested dropdown inside menu */
.dropdown--nested {
  position: relative;
}

/* Close-delay: applied via JS only when cursor leaves navbar entirely */
.menu-delay > .dropdown__menu,
.menu-delay > .dropdown__submenu,
.menu-delay > .mega {
  transition: opacity var(--duration-close) var(--ease-in) var(--delay-close),
    transform var(--duration-close) var(--ease-in) var(--delay-close),
    visibility 0s linear calc(var(--duration-close) + var(--delay-close));
}

/* === Mega Menu === */
.mega {
  position: absolute;
  left: 0;
  right: 0;
  top: var(--nav-h);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--duration-close) var(--ease-in),
    transform var(--duration-close) var(--ease-in),
    visibility 0s linear var(--duration-close);
  pointer-events: none;
}

@media (hover: hover) and (min-width: 1025px) {
  .has-mega:hover > .mega {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    transition: opacity var(--duration-open) var(--ease-out),
      transform var(--duration-open) var(--ease-out), visibility 0s linear 0s;
  }
}

.mega__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 2rem 2.5rem;
  background: var(--color-white);
  box-shadow: var(--shadow-lg);
}

/* Resources mega: 2 link columns + featured panel */
.mega__inner--resources {
  grid-template-columns: 1fr 1fr minmax(260px, 1.2fr);
}

.mega__inner--blog {
  grid-template-columns: repeat(4, 1fr);
}

.mega__col {
  min-width: 0;
}

.mega__title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.mega__img-link {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.mega__img-link img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.4s var(--ease-out);
}

.mega__img-link:hover img {
  transform: scale(1.05);
}

.mega__desc {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.5;
}

.mega__links li a {
  display: block;
  padding: 0.35rem 0;
  color: var(--color-text);
  border-left: 2px solid transparent;
  padding-left: 0.75rem;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.mega__links li a:hover {
  border-left-color: var(--color-accent);
  color: var(--color-accent);
}

/* Icon-links list in mega menu (like Untitled UI style) */
.mega__icon-links {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.mega__icon-links li a {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0.75rem;
  border-radius: 8px;
  color: var(--color-text);
  transition: background 0.15s ease, color 0.15s ease;
}

.mega__icon-links li a:hover {
  background: var(--color-hover-bg);
  color: var(--color-accent);
}

/* Featured panel in mega menu (right column) */
.mega__featured {
  background: #f8fafc;
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mega__featured-badge {
  display: inline-block;
  width: fit-content;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-accent);
  background: rgb(99 102 241 / 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}

.mega__featured-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.3;
}

.mega__featured .mega__img-link {
  margin-top: 0.25rem;
}

.mega__featured .mega__img-link img {
  height: 140px;
}

.mega__card {
  display: flex;
  flex-direction: column;
}

.mega__read-more {
  margin-top: auto;
  padding-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-accent);
  transition: color 0.2s ease;
}

.mega__read-more:hover {
  color: var(--color-accent-hover);
}

/* === Burger (hidden on desktop) === */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 110;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* === Overlay === */
.overlay {
  position: fixed;
  inset: 0;
  background: rgb(0 0 0 / 0.5);
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* === Hero === */


/* =============================================
   Responsive: Tablet (≤ 1024px)
   ============================================= */
@media (max-width: 1024px) {
  .navbar {
    padding: 0 1rem;
  }

  .burger {
    display: flex;
    margin-left: auto;
  }

  /* Hide desktop actions — they move inside the nav panel */
  .navbar__actions {
    display: none;
  }

  /* Mobile actions block at bottom of nav panel */
  .nav__actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.25rem;
    margin-top: 0.5rem;
    border-top: 1px solid #e2e8f0;
  }

  .nav__actions .btn-search {
    width: 100%;
    height: auto;
    padding: 0.65rem;
    border-radius: 8px;
    justify-content: center;
    gap: 0.5rem;
    background: var(--color-hover-bg);
  }

  .nav__actions .btn-search::after {
    content: "Search";
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
  }

  .nav__actions .btn-cta {
    width: 100%;
    justify-content: center;
    padding: 0.7rem 1.25rem;
    font-size: 0.95rem;
  }

  /* Nav panel slides from left */
  .nav {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    bottom: 0;
    width: min(320px, 85vw);
    height: auto;
    background: var(--color-white);
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 100;
    padding: 0.5rem 0 5rem;
  }

  .nav.open {
    transform: translateX(0);
  }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    height: auto;
    gap: 0;
  }

  .nav__list > li,
  .nav__list > li.has-mega {
    display: block;
    height: auto;
    position: relative;
  }

  .nav__list > li > a {
    height: auto;
    padding: 0.85rem 1.25rem;
    font-size: 1rem;
  }

  /* All submenus — collapsed by default, toggled via JS .open class */
  .dropdown__menu,
  .dropdown__submenu,
  .mega {
    position: static;
    box-shadow: none;
    border-radius: 0;
    transform: none;
    max-height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: max-height 0.35s var(--ease-out);
    background: #f8fafc;
    left: auto;
    right: auto;
    min-width: 0;
  }

  .dropdown__menu a,
  .dropdown__submenu a {
    padding-left: 1.25rem;
    margin: 0;
    border-radius: 0;
  }

  .dropdown__submenu a {
    padding-left: 2.25rem;
  }

  .dropdown__submenu::before {
    display: none;
  }

  /* Expand when parent has .open */
  .dropdown.open > .dropdown__menu,
  .dropdown--nested.open > .dropdown__submenu,
  .has-mega.open > .mega {
    max-height: 2000px;
  }

  /* Chevron: only rotate when .open, never on hover */
  .chevron {
    margin-left: auto;
  }

  .open > a > .chevron {
    transform: rotate(180deg);
  }

  /* Mobile: highlight parent link when its submenu is expanded */
  .nav__list > li.open > a {
    color: var(--color-accent);
  }

  .dropdown--nested.open > a {
    color: var(--color-accent);
  }

  /* Mega menu single column */
  .mega__inner,
  .mega__inner--blog,
  .mega__inner--resources {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .mega__featured {
    margin-top: 0.5rem;
  }

  .mega__icon-links li a {
    padding: 0.5rem 0.5rem;
  }

  .mega__img-link img {
    height: 180px;
  }
}

/* =============================================
   Responsive: Small tablets / large phones (≤ 768px)
   ============================================= */
@media (max-width: 768px) {
  .mega__inner,
  .mega__inner--blog {
    gap: 1rem;
  }

  .mega__img-link img {
    height: 150px;
  }

  .navbar {
    padding: 0 0.75rem;
    gap: 1rem;
  }
}

/* =============================================
   Responsive: Mobile (≤ 480px)
   ============================================= */
@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }

  .hero__subtitle {
    font-size: 0.95rem;
  }

  .features {
    flex-direction: column;
    align-items: center;
  }

  .mega__img-link img {
    height: 120px;
  }

  .nav {
    width: 100vw;
  }
}

.nav-close {
    display: none;
    position: absolute;
    top: 18px;
    right: 18px;
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    font-size: 32px;
    line-height: 1;
    color: #334155;
    cursor: pointer;
    z-index: 1001;
}

.nav-close:hover {
    color: #009688;
}

@media (max-width:1024px){
    .nav-close{
        display:block;
    }
}




/*--------------------------------------------------------------
  10. Footer
----------------------------------------------------------------*/
.cs_footer.cs_style_1 .cs_footer_content {
  width: 100%;
  max-width: 1410px;
  margin: 0 auto;
}
.cs_footer.cs_style_1 .cs_footer_top .cs_footer_top_content {
  padding: 43px 0 42px;
  /* display: -webkit-box;
  display: -ms-flexbox;
  display: flex; */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 27px;
  /* font-size: 50px; */
  line-height: 1em;
  /* font-weight: 700;*/
  color: #2b2b2b; 
  /* text-transform: uppercase; */
  border-bottom: 1px solid var(--border-color); border: 1px solid red;
}
.cs_footer.cs_style_1 .cs_footer_top .cs_footer_top_img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 128px;
  height: 128px;
  position: relative;
  overflow: hidden;
}
.cs_footer.cs_style_1 .cs_footer_top .cs_footer_top_img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: inherit;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.cs_footer.cs_style_1 .cs_footer_top .cs_footer_top_img span {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.cs_footer.cs_style_1 .cs_footer_top .cs_footer_top_img span img {
  -webkit-transform: translatex(-3px);
          transform: translatex(-3px);
  -webkit-animation: indication-movement 2s linear infinite;
          animation: indication-movement 2s linear infinite;
}
.cs_footer.cs_style_1 .cs_footer_top .cs_footer_top_img:hover > img {
  -webkit-transform: scale(1.06);
          transform: scale(1.06);
}
.cs_footer.cs_style_1 .cs_main_footer {
  padding: 100px 0;
}
.cs_footer.cs_style_1 .cs_main_footer .cs_footer_menu li {
  padding-left: 24px;
  position: relative;
}
.cs_footer.cs_style_1 .cs_main_footer .cs_footer_menu li a {
  color:#2b2b2b;
}
.cs_footer.cs_style_1 .cs_main_footer .cs_footer_menu li:not(:last-child) {
  margin-bottom: 8px;
}
.cs_footer.cs_style_1 .cs_main_footer .cs_footer_menu li::before {
  content: "\f101";
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Font awesome 6 Free";
  font-weight: 900;
  color: #656565
}
.cs_footer.cs_style_1 .cs_main_footer .cs_footer_menu li:hover {
  color: var(--accent-color);
}
.cs_footer.cs_style_1 .cs_footer_text {
  max-width: 296px;
}
.cs_footer.cs_style_1 .cs_footer_links_wrapper {
  -ms-flex-negative: 1;
      flex-shrink: 1;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 30px 110px;
}
.cs_footer.cs_style_1 .cs_footer_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px 110px;
}
.cs_footer.cs_style_1 .cs_footer_widget_title {
  padding-bottom: 14px;color: #656565;
}
.cs_footer.cs_style_1 .cs_footer_widget_title::after {
  content: "";
  width: 84px;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, color-stop(4.85%, #5c86c2), color-stop(96.39%, rgba(234, 112, 16, 0)));
  background: linear-gradient(90deg, #5c86c2 4.85%, rgba(234, 112, 16, 0) 96.39%);
  position: absolute;
  left: 0;
  bottom: 0;
}
.cs_footer.cs_style_1 .cs_footer_bottom {
  padding: 32px 0;
  background-color: #c8c2c2;
}
.cs_footer.cs_style_1 .cs_footer_bottom .cs_footer_bottom_in {
  /* display: -webkit-box;
  display: -ms-flexbox;
  display: flex; */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.cs_footer.cs_style_1 .cs_footer_bottom .cs_footer_copyright a {
  margin-left: 5px;
}
.cs_footer.cs_style_1 .cs_footer_bottom .cs_footer_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.cs_footer.cs_style_1 .cs_footer_newsletter.cs_style_1 .cs_footer_newsletter_form {
  width: 100%;
  max-width: 355px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid var(--border-color);
  position: relative;
}
@media (max-width: 991px) {
  .cs_footer.cs_style_1 .cs_footer_newsletter.cs_style_1 .cs_footer_newsletter_form {
    max-width: 100%;
  }
}
.cs_footer.cs_style_1 .cs_footer_newsletter.cs_style_1 input,
.cs_footer.cs_style_1 .cs_footer_newsletter.cs_style_1 .cs_btn.cs_style_1 {
  border: 0;
  outline: 0;
}
.cs_footer.cs_style_1 .cs_footer_newsletter.cs_style_1 input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 16px 25px;
  border-radius: inherit;
  background-color: transparent;
  color: var(--white-color_2);
}
.cs_footer.cs_style_1 .cs_footer_newsletter.cs_style_1 input::-webkit-input-placeholder {
  color: #BEBEBE;
}
.cs_footer.cs_style_1 .cs_footer_newsletter.cs_style_1 input::-moz-placeholder {
  color: #BEBEBE;
}
.cs_footer.cs_style_1 .cs_footer_newsletter.cs_style_1 input:-ms-input-placeholder {
  color: #BEBEBE;
}
.cs_footer.cs_style_1 .cs_footer_newsletter.cs_style_1 input::-ms-input-placeholder {
  color: #BEBEBE;
}
.cs_footer.cs_style_1 .cs_footer_newsletter.cs_style_1 input::placeholder {
  color: #BEBEBE;
}
.cs_footer.cs_style_1 .cs_footer_newsletter.cs_style_1 .cs_btn.cs_style_1 {
  padding: 17px 18px;
  background-color: var(--accent-color);
  position: absolute;
  top: 5px;
  right: 5px;
}
.cs_footer.cs_style_1 .cs_footer_newsletter.cs_style_1 .cs_btn.cs_style_1::before {
  background-color: var(--blue-color);
}
.cs_footer.cs_style_1 .cs_img_gallery {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 10px;
  position: relative;
}
.cs_footer.cs_style_1 .cs_img_gallery .cs_instagram_thumb {
  position: relative;
}
.cs_footer.cs_style_1 .cs_img_gallery .cs_instagram_thumb::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: inherit;
  visibility: hidden;
  opacity: 0;
  background: linear-gradient(181deg, rgba(234, 112, 16, 0) -19.24%, #EA7010 98.98%);
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.cs_footer.cs_style_1 .cs_img_gallery .cs_instagram_thumb:hover::before {
  visibility: visible;
  opacity: 0.7;
}
.cs_footer.cs_style_1 .cs_img_gallery .cs_instagram_thumb:hover .cs_instagram_icon {
  -webkit-transform: translate(-50%, -50%) scaleX(1);
          transform: translate(-50%, -50%) scaleX(1);
}
.cs_footer.cs_style_1 .cs_img_gallery img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: inherit;
}
.cs_footer.cs_style_1 .cs_img_gallery .cs_instagram_icon {
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.cs_footer.cs_style_1.cs_type_1 .cs_footer_top {
  padding: 120px 0 63px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.cs_footer.cs_style_1.cs_type_1 .cs_footer_top_content_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px 62px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.cs_footer.cs_style_1.cs_type_1 .cs_iconbox_wrapper {
  -ms-flex-negative: 1;
      flex-shrink: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px 60px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.cs_footer.cs_style_1.cs_type_1 .cs_main_footer {
  padding: 34px 0 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.cs_footer.cs_style_1.cs_type_1 .cs_footer_row {
  gap: 30px 88px;
}
.cs_footer.cs_style_1.cs_type_1 .cs_footer_links_wrapper {
  gap: 30px 100px;
}
.cs_footer.cs_style_1.cs_type_1 .cs_social_btns.cs_style_1 a {
  background-color: transparent;
  border: 0;
}
.cs_footer.cs_style_1.cs_type_1 .cs_social_btns.cs_style_1 a:hover {
  color: var(--accent-color);
}
.cs_footer.cs_style_1.cs_type_1 .cs_footer_widget_title {
  padding-bottom: 14px;
}
.cs_footer.cs_style_1.cs_type_1 .cs_footer_widget_title::after {
  width: 20px;
  height: 1px;
  background-color: var(--accent-color);
}
.cs_footer.cs_style_1.cs_type_1 .cs_footer_widget_title::before {
  content: "";
  width: 63px;
  height: 1px;
  background-color: var(--white-color);
  position: absolute;
  bottom: 0;
  left: 30px;
}
.cs_footer.cs_style_1.cs_type_1 .cs_footer_bottom {
  background-color: transparent;
}
@media (min-width: 1450px) {
  .cs_footer.cs_style_1 .cs_footer_row {
    gap: 30px 130px;
  }
  .cs_footer.cs_style_1 .cs_footer_links_wrapper {
    /* gap: 30px 160px; */
  }
}
@media (max-width: 1399px) {
  .cs_footer.cs_style_1 .cs_footer_row {
    gap: 30px 70px;
  }
  .cs_footer.cs_style_1 .cs_footer_links_wrapper {
    gap: 30px 80px;
  }
  .cs_footer.cs_style_1.cs_type_1 .cs_footer_links_wrapper {
    gap: 30px 100px;
  }
}
@media (max-width: 1199px) {
  .cs_footer.cs_style_1 .cs_footer_top .cs_footer_top_content {
    font-size: 120px;
  }
  .cs_footer.cs_style_1 .cs_footer_top .cs_footer_top_img {
    width: 120px;
    height: 120px;
  }
  .cs_footer.cs_style_1 .cs_footer_row {
    gap: 30px 25px;
  }
  .cs_footer.cs_style_1 .cs_footer_links_wrapper {
    gap: 30px 45px;
  }
  .cs_footer.cs_style_1.cs_type_1 .cs_footer_row {
    gap: 30px 15px;
  }
  .cs_footer.cs_style_1.cs_type_1 .cs_footer_links_wrapper {
    gap: 30px 30px;
  }
}
@media (max-width: 991px) {
  .cs_footer.cs_style_1 .cs_footer_top .cs_footer_top_content {
    padding: 60px 0;
    font-size: 100px;
  }
  .cs_footer.cs_style_1 .cs_footer_top .cs_footer_top_img {
    width: 100px;
    height: 100px;
  }
  .cs_footer.cs_style_1 .cs_main_footer {
    padding: 60px 0;
  }
  .cs_footer.cs_style_1 .cs_footer_text {
    max-width: 100%;
  }
  .cs_footer.cs_style_1 .cs_footer_row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }


  .season_tabs {
    position: relative;
    height: 1666px;
    clear: both;
    margin: 25px 0;
}

.season_tab {
    float: left;
    clear: both;
    width: 100%!important;
}

.season_content {
    position: relative!important;
    top: 0;
  left: 0px!important; 
    background: white;
    right: 0;
    bottom: 0;
    padding: 20px;
    /* border: 1px solid #ccc; */
    width: 100%;

}

}
@media (max-width: 767px) {
  .cs_footer.cs_style_1 .cs_footer_top .cs_footer_top_content {
    font-size: 75px;
  }
  .cs_footer.cs_style_1 .cs_footer_top .cs_footer_top_img {
    width: 80px;
    height: 80px;
  }
  .cs_footer.cs_style_1 .cs_footer_links_wrapper {
    grid-template-columns: repeat(1, auto);
  }
  .cs_footer.cs_style_1 .cs_img_gallery .cs_instagram_thumb {
    width: auto;
  }

.season_tabs {
    position: relative;
    height: 1743px;
    clear: both;
    margin: 25px 0;
}

.season_tab {
    float: left;
    clear: both;
    width: 100%!important;
}

.season_content {
    position: relative!important;
    top: 0;
  left: 0px!important; 
    background: white;
    right: 0;
    bottom: 0;
    padding: 20px;
    /* border: 1px solid #ccc; */
    width: 100%;

}



}
@media (max-width: 575px) {
  .cs_footer.cs_style_1 .cs_footer_top .cs_footer_top_content {
    font-size: 56px;
  }
  .cs_footer.cs_style_1 .cs_footer_top .cs_footer_top_img {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 440px) {
  .cs_footer.cs_style_1 .cs_footer_top .cs_footer_top_content {
    font-size: 38px;
  }
  .cs_footer.cs_style_1 .cs_footer_top .cs_footer_top_img {
    width: 40px;
    height: 40px;
  }
}

.cs_footer_shape_1 {
  top: 0;
  left: 0;
}

.cs_footer_shape_2 {
  top: 120px;
  right: 0;
  -webkit-transform: rotatey(180deg);
          transform: rotatey(180deg);
}

.cs_social_btns.cs_style_1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.cs_social_btns.cs_style_1 a {
  width: 36px;
  height: 36px;
 border: 1px solid #454750;
    color: #2b2b2b;
}
.cs_social_btns.cs_style_1 a:hover {
  color: var(--white-color);
  background-color:#3863ca;
  border-color: #3863ca;
}



.cs_btn.cs_style_1 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  padding: 16px 21px;
  background-color: #30509e;
  line-height: 1em;
  color: #fff;
  border-radius: 8px;
  gap: 8px;
  position: relative;
  overflow: hidden;
  font-weight: 400; letter-spacing: .6px;
}
.cs_btn.cs_style_1 > * {
  position: relative;
  z-index: 1;
}
.cs_btn.cs_style_1::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color:#3863ca;
  border-radius: inherit;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  -webkit-transition-duration: 0.6s;
          transition-duration: 0.6s;
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.6);
          transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.6);
}
.cs_btn.cs_style_1:hover::before {
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}

.cs_radius_50 {
    border-radius: 50%;
}
.cs_center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
    .cs_height_80 {
        height: 80px;
    }

    .cs_fs_24 {
    font-size: 24px;
    line-height: 1.4em;
}

.cs_fs_30 {
    font-size: 30px;
    line-height: 1.533em;color: rgb(43, 43, 43);font-weight: 700;
}

.cs_semibold {
    font-weight: 600;
}

.cs_footer.cs_style_1 .cs_main_footer .cs_footer_widget li {
    margin-bottom: 8px;
}
/*--------------------------------------------------------------
  05. Spacing
----------------------------------------------------------------*/
.cs_mb_1 {
  margin-bottom: 1px;
}

.cs_mb_2 {
  margin-bottom: 2px;
}

.cs_mb_3 {
  margin-bottom: 3px;
}

.cs_mb_4 {
  margin-bottom: 4px;
}

.cs_mb_5 {
  margin-bottom: 5px;
}

.cs_mb_6 {
  margin-bottom: 6px;
}

.cs_mb_7 {
  margin-bottom: 7px;
}

.cs_mb_8 {
  margin-bottom: 8px;
}

.cs_mb_9 {
  margin-bottom: 9px;
}

.cs_mb_10 {
  margin-bottom: 10px;
}

.cs_mb_11 {
  margin-bottom: 11px;
}

.cs_mb_12 {
  margin-bottom: 12px;
}

.cs_mb_13 {
  margin-bottom: 13px;
}

.cs_mb_14 {
  margin-bottom: 14px;
}

.cs_mb_15 {
  margin-bottom: 15px;
}

.cs_mb_16 {
  margin-bottom: 16px;
}

.cs_mb_17 {
  margin-bottom: 17px;
}

.cs_mb_18 {
  margin-bottom: 18px;
}

.cs_mb_19 {
  margin-bottom: 19px;
}

.cs_mb_20 {
  margin-bottom: 20px;
}

.cs_mb_21 {
  margin-bottom: 21px;
}

.cs_mb_22 {
  margin-bottom: 22px;
}

.cs_mb_23 {
  margin-bottom: 23px;
}

.cs_mb_24 {
  margin-bottom: 24px;
}

.cs_mb_25 {
  margin-bottom: 25px;
}

.cs_mb_26 {
  margin-bottom: 26px;
}

.cs_mb_27 {
  margin-bottom: 27px;
}

.cs_mb_28 {
  margin-bottom: 28px;
}

.cs_mb_29 {
  margin-bottom: 29px;
}

.cs_mb_30 {
  margin-bottom: 30px;
}

.cs_mb_31 {
  margin-bottom: 31px;
}

.cs_mb_32 {
  margin-bottom: 32px;
}

.cs_mb_33 {
  margin-bottom: 33px;
}

.cs_mb_34 {
  margin-bottom: 34px;
}

.cs_mb_35 {
  margin-bottom: 35px;
}

.cs_mb_36 {
  margin-bottom: 36px;
}

.cs_mb_37 {
  margin-bottom: 37px;
}

.cs_mb_38 {
  margin-bottom: 38px;
}

.cs_mb_39 {
  margin-bottom: 39px;
}

.cs_mb_40 {
  margin-bottom: 40px;
}

.cs_mb_41 {
  margin-bottom: 41px;
}

.cs_mb_42 {
  margin-bottom: 42px;
}

.cs_mb_43 {
  margin-bottom: 43px;
}

.cs_mb_44 {
  margin-bottom: 44px;
}

.cs_mb_45 {
  margin-bottom: 45px;
}

.cs_mb_46 {
  margin-bottom: 46px;
}

.cs_mb_47 {
  margin-bottom: 47px;
}

.cs_mb_48 {
  margin-bottom: 48px;
}

.cs_mb_49 {
  margin-bottom: 49px;
}

.cs_mb_50 {
  margin-bottom: 50px;
}

.cs_mb_51 {
  margin-bottom: 51px;
}

.cs_mb_52 {
  margin-bottom: 52px;
}

.cs_mb_53 {
  margin-bottom: 53px;
}

.cs_mb_54 {
  margin-bottom: 54px;
}

.cs_mb_55 {
  margin-bottom: 55px;
}

.cs_mb_56 {
  margin-bottom: 56px;
}

.cs_mb_57 {
  margin-bottom: 57px;
}

.cs_mb_58 {
  margin-bottom: 58px;
}

.cs_mb_59 {
  margin-bottom: 59px;
}

.cs_mb_60 {
  margin-bottom: 60px;
}