  @media(max-width: 768px) {
      a.full-width {
          width: 100% !important;
      }

      button.full-width {
          width: 100% !important;
      }

      input.full-width {
          width: 100% !important;
      }

      select.full-width {
          width: 100% !important;
      }

      .width-75 {
          width: 75%;
          top: 25%;
          left: 12.5%;
      }
  }

  .anim {
      animation-name: example;
      animation-duration: 2s;
      animation-iteration-count: infinite;
  }

  @keyframes example {
      from {
          opacity: 10%;
      }

      to {
          opacity: 100%;
      }
  }

  .mybg {
      background-color: #f5821f;
  }

  .mytext {
      color: #f5821f !important;
  }

  .gradient {
      background: rgb(65, 182, 73);
      background: radial-gradient(circle, rgba(65, 182, 73, 1) 0%, rgba(245, 132, 34, 1) 48%, rgba(41, 50, 145, 1) 100%);
  }

  .gradient-stripe {
      background: rgb(66, 182, 74);
      background: linear-gradient(90deg, rgba(66, 182, 74, 1) 0%, rgba(13, 139, 140, 1) 49%, rgba(236, 130, 0, 1) 100%);
  }

  .gradient-text {
      background: linear-gradient(90deg, rgba(66, 182, 74, 1) 0%, rgba(13, 139, 140, 1) 49%, rgba(236, 130, 0, 1) 100%);
      background-clip: text;
      color: transparent;
      -webkit-background-clip: text;
  }

  .bg-image {
      background-image: url(/assets/images/domestic/kerala-bg.jpg);
      background-repeat: no-repeat;
      background-size: inherit;
      background-color: rgba(0, 0, 0, 0.5);
      /* Tint color */
      background-blend-mode: multiply;
  }

  .bg-image-manali {
      background-image: url(/assets/images/domestic/himachal/manali-bg.jpg);
      background-repeat: no-repeat;
      background-size: cover;
      background-color: rgba(0, 0, 0, 0.5);
      /* Tint color */
      background-blend-mode: multiply;
  }

  .ut-bg-image {
      background-image: url(/assets/images/domestic/uk-bg.jpg);
      background-repeat: no-repeat;
      background-size: cover;
      background-color: rgba(0, 0, 0, 0.5);
      /* Tint color */
      background-blend-mode: multiply;
  }

  .ld-bg-image {
      background-image: url(/assets/images/ladakh-bg.jpg);
      background-repeat: no-repeat;
      background-size: cover;
      background-color: rgba(0, 0, 0, 0.5);
      /* Tint color */
      background-blend-mode: multiply;
  }

  .km-bg-image {
      background-image: url(/assets/images/domestic/kashmir2.jpg);
      background-repeat: no-repeat;
      background-size: cover;
      background-color: rgba(0, 0, 0, 0.5);
      /* Tint color */
      background-blend-mode: multiply;
  }