
        @import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;700;800&display=swap");

        * {
          box-sizing: border-box;
          margin: 0;
          padding: 0;
        }

        body {
          font-family: "Inter", sans-serif;
          color: #111;
        }

        a, button {
          color: #4fc08d;
        }

        .cities-carousel {
          width: min(980px, 85%);
          margin: 0 auto;
          min-height: 100vh;
          display: flex;
          flex-direction: column;
          justify-content: center;
          padding-block: min(20vh, 5em);
        }

        .cities-carousel .header {
          margin-bottom: 55px;
        }

        .cities-carousel .header h1 {
          font-weight: 800;
          font-size: 3rem;
          margin: 5px -5px 15px;
        }

        .cities-carousel .header span {
          text-transform: uppercase;
          letter-spacing: 1px;
          display: inline-block;
          font-weight: 700;
          font-size: 14px;
          color: #471aa0;
        }

        .cities-carousel .header p {
          max-width: min(40ch, 100% - 2rem);
          line-height: 1.6;
          color: #565656;
        }

        .cities-carousel .owl-carousel .item {
          width: 100%;
          height: 400px;
          position: relative;
          border-radius: 12px;
          overflow: hidden;
        }

        .cities-carousel .owl-carousel .item img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          position: absolute;
          inset: 0;
        }

        .cities-carousel .owl-carousel .item .overlay1 {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          padding: 28px 25px;
          color: #fff;
          background: linear-gradient(0deg, #020024 0%, #000032a1 3%, #17d9ff00 100%);
          display: flex;
          flex-direction: column;
          justify-content: space-between;
          align-items: flex-start;
        }

        .cities-carousel .owl-carousel .item .overlay1 span {
          background: rgba(255, 255, 255, 0.25);
          backdrop-filter: blur(4px);
          -webkit-backdrop-filter: blur(4px);
          border-radius: 60px;
          padding: 10px 20px;
          display: inline-block;
        }

        .cities-carousel .owl-carousel .item .overlay1 > div h2 {
          letter-spacing: 0.5px;
          margin-bottom: 5px;
        }

        .cities-carousel .owl-nav {
          position: absolute;
          top: -100px;
          right: 0;
        }

        .cities-carousel .owl-nav button {
          background: #fff !important;
          width: 45px;
          height: 45px;
          font-size: 25px !important;
          box-shadow: 0px 0px 17px #00000005;
          border-radius: 50%;
        }

        .cities-carousel .owl-nav button:nth-of-type(1) {
          margin-right: 13px;
        }
        