      @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');
      @import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');


      /* GLOBAL */
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Manrope', sans-serif;
      }

      body {
        color: #111;
      }

      /* HERO */
      .tx-hero {
        height: 100vh;
        position: relative;
      }

      .tx-swiper {
        height: 100%;
      }

      .tx-slide {
        background-size: cover;
        background-position: center;
      }

      .tx-slide1 {
        background-image: url("../images/banner-main.jpg");
      }

      .tx-slide2 {
        background-image: url("../images/banner-main2.jpg");
      }

      .tx-slide3 {
        background-image: url("../images/banner-main3.jpg");
      }

      /* OVERLAY */
      .tx-overlay {
        position: absolute;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.75);
        z-index: 1;
      }

      /* HERO CONTENT */
      .tx-hero-content {
          position: absolute;
          top: 53%;
          transform: translateY(-50%);
          width: 44%;
          left: 5%;
          z-index: 2;
          max-width: 1600px;
      }

      .tx-hero-content p{
        color: #000;
        font-family: "Manrope", sans-serif;
        font-size: 18px;
        font-weight: 600;
        line-height: 140%;
        text-align: justify;
      }

      .tx-hero h1 {
        font-family: "Manrope", sans-serif;
        font-size: 38px;
        font-weight: 300;
        margin-bottom: 20px;
        color: #000;
        letter-spacing: 3px;
      }

      .tx-hero h1 span {
        font-weight: 800;
        letter-spacing: 3px;
      }

      .tx-desc {
        margin-top: 15px;
        color: #555;
      }

      .tx-btn {
        margin-top: 25px;
        padding: 12px 22px;
        border: 2px solid #b30000;
        background: #fff;
        font-weight: 600;
        cursor: pointer;
        transition: .3s;
      }

      .tx-btn:hover {
        background: #b30000;
        color: #fff;
      }

      /* HERO FOOTER */
      .tx-hero-footer {
          position: absolute;
          bottom: 77px;
          width: 90%;
          left: 5%;
          display: flex;
          justify-content: space-between;
          border-top: 1px solid #ccc;
          padding-top: 45px;
          z-index: 2;
      }

      .tx-hero-footer-txt p{
        color: #000;
        font-family: "Manrope", sans-serif;
        font-size: 18px;
        font-weight: 600;
        line-height: 140%;
        text-align: justify;
      }



      /* SWIPER */
      .swiper-button-prev,
      .swiper-button-next {
        color: #b30000;
      }

      .swiper-button-prev::after,
      .swiper-button-next::after {
        font-size: 22px;
      }

      /* HEADER */
      .tx-header {
        position: absolute;
        top: 0;
        width: 100%;
        z-index: 999;
      }

      .tx-container {
        max-width: 1920px;
        width: 90%;
        margin: auto;
        padding: 15px 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid #000;
      }

      /* LOGO */
      .tx-logo  a{
        display: flex;
        align-items: center;
        text-decoration: none;

        gap: 10px;
      }

      .tx-logo img {
        width: 88px;
      }

      .tx-logo a span {
        font-size: 30px;
        font-weight: 800;
        color: #c00000;
        text-decoration: none;
      }

      /* NAV */
      .tx-nav-menu {
        display: flex;
        list-style: none;
        gap: 60px;
      }

      .tx-nav-menu li {
        position: relative;
      }

      .tx-nav-menu a {
        text-decoration: none;
        color: #000;
        font-size: 16px;
        font-weight: 600;
        transition: .3s;
      }

      .tx-nav-menu a:hover {
        color: #c00000;
      }

      /* DROPDOWN */
      .tx-dropdown-menu,
      .tx-sub-menu {
        list-style: none;
      }

      .tx-dropdown-menu {
        position: absolute;
        top: 120%;
        left: -110px;
        background: #0a0a0a;
        border-radius: 8px;
        padding: 10px 0;
        min-width: max-content;
        display: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
      }

      .tx-dropdown:hover .tx-dropdown-menu {
        display: block;
        top: 100%;
      }

      .tx-dropdown-menu a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 18px;
        color: #eee;
        font-size: 14px;
      }

      .tx-dropdown-menu a:hover {
        background: #141414;
        color: #ff2a2a;
      }

      .tx-sub-menu {
        position: absolute;
        left: 100%;
        top: 0;
        background: #111;
        border-radius: 8px;
        min-width: max-content;
        display: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
      }

      .tx-sub-dropdown:hover .tx-sub-menu {
        display: block;
      }

      .tx-sub-dropdown>a::after {
        content: "›";
        opacity: .6;
      }

      /* ANIMATION */
      .tx-dropdown-menu,
      .tx-sub-menu {
        opacity: 0;
        transform: translateY(10px);
        pointer-events: none;
        transition: .25s ease;
      }

      .tx-dropdown:hover .tx-dropdown-menu,
      .tx-sub-dropdown:hover .tx-sub-menu {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
      }

      /* HAMBURGER */
      .tx-menu-toggle {
        display: none;
        font-size: 28px;
        cursor: pointer;
      }

      @media(max-width:1480px) {

        .tx-hero h1 {
        font-size: 24px;
    }

    .tx-hero-footer {
    padding-top: 20px;
}

      }

      @media(max-width:1366px) {
      .tx-hero-content {
        width: 70%;
      }

      .tx-hero-content p{
        font-size: 16px;
      }

      .tx-hero h1 {
          font-size: 28px;
      }

      .tx-hero-footer {
          bottom: 25px;
      }


      }

      @media(max-width:1000px) {
        .tx-logo span {
            font-size: 22px;
        }

        .tx-logo img {
            width: 74px;
        }

        .tx-hero h1 {
            font-size: 30px;
        }


      }

      /* MOBILE */



      @media(max-width:900px) {
        .tx-menu-toggle {
          display: block;
        }


        .tx-nav {
          position: absolute;
          top: 98px;
          left: 0;
          width: 100%;
          background: #000;
          display: none;
        }

        .tx-nav.active {
          display: block;
        }

        .tx-nav-menu {
          flex-direction: column;
           gap: 0px; 
        }

        .tx-nav-menu li {
          border-bottom: 1px solid #222;
        }

        .tx-nav-menu a {
          display: block;
          padding: 15px;
          color: #fff;
        }

        .tx-dropdown-menu {
          position: static;
          display: none;
          background: #111;
          max-height: 300px;
          overflow-y: auto;
        }

        .tx-dropdown.active .tx-dropdown-menu {
          display: block;
        }

        .tx-sub-menu {
          position: static;
          max-height: 250px;
          overflow-y: auto;
        }

        .tx-sub-dropdown>a::after {
            margin-left: 35px;
            font-size: 18px;
        }

         /* FIX HEADER */
        .tx-header{
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          background: #fff; /* important for visibility */
          z-index: 9999;
        }

        /* PUSH CONTENT DOWN (VERY IMPORTANT) */
        .tx-hero{
          margin-top: 98px; /* same as header height */
        }

        /* NAV POSITION BELOW FIXED HEADER */
        .tx-nav{
          top: 98px;
        }

      }

      @media(max-width:800px) {

      .tx-hero h1 {
        font-size: 28px;
      }

      .tx-hero-content {
        width: 90%;
      }

      }

      @media(max-width:800px) {

      .tx-hero-content p {
          text-align: center;
      }

      .tx-hero h1 {
        text-align: center;
      }

      }

      @media (max-width: 700px) {

      .tx-hero-content {
    top: 40%;
}
}

      @media (max-width: 600px) {

        .tx-hero-footer-txt p {
    font-size: 15px;
}

          .tx-hero-content {
              padding: 20px;
          }

          .tx-hero-footer {
              bottom: 30px;
              flex-direction: column;
          }

              .tx-hero h1 {
              font-size: 22px;
          }

          .tx-hero-content p {
              font-size: 16px;
          }

          .tx-logo span {
              font-size: 18px;
          }

      }