html,
body {
  height: 100%;
  font-family: "Play", sans-serif;
  -webkit-font-smoothing: antialiased;
}

html {
  scrollbar-width: thin;
  scrollbar-color: #c70000 #595c5e;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: #111111;
  font-weight: bold;
  font-family: "Play", sans-serif;
}

h1 {
  font-size: 70px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  font-size: 16px;
  font-family: "onest", sans-serif;
  color: #adadad;
  font-weight: 400;
  line-height: 26px;
  margin: 0 0 15px 0;
}

img {
  max-width: 100%;
}

input:focus,
select:focus,
button:focus,
textarea:focus {
  outline: none;
}

a:hover,
a:focus {
  text-decoration: none;
  outline: none;
  color: #fff;
}

ul,
ol {
  padding: 0;
  margin: 0;
}

/*---------------------
  Helper CSS
-----------------------*/
.btn-grad {
  background-image: linear-gradient(to right, #870000 0%, #190A05 51%, #870000 100%)
}

.btn-grad {
  margin: 10px;
  padding: 15px 45px;
  text-align: center;
  transition: 0.5s;
  background-size: 200% auto;
  color: white;
  border: 1px solid #c70000;
  border-radius: 20px;
  display: inline-block;
  box-shadow: 0 0 20px rgba(199, 0, 0, 0.5);
}

.btn-grad:hover {
  background-position: right center;
  /* change the direction of the change here */
  color: #fff;
  text-decoration: none;
  box-shadow: 0 0 30px rgba(199, 0, 0, 0.8);
}


.btn-grad2 {
  background-image: linear-gradient(to right, #403A3E 0%, #BE5869 51%, #403A3E 100%)
}

.btn-grad2 {
  margin: 10px;
  padding: 15px 45px;
  text-align: center;
  transition: 0.5s;
  background-size: 200% auto;
  color: white;
  border: 1px solid #BE5869;
  border-radius: 20px;
  display: inline-block;
  box-shadow: 0 0 20px rgba(190, 88, 105, 0.5);
}

.btn-grad2:hover {
  background-position: right center;
  /* change the direction of the change here */
  color: #fff;
  text-decoration: none;
}




.hero2 {
  background: radial-gradient(circle at top left, rgba(139, 0, 0, 0.5) 10%, rgba(0, 0, 0, 0.9) 50%),
    radial-gradient(circle at bottom right, rgba(139, 0, 0, 0.5) 10%, rgba(0, 0, 0, 0.9) 50%);
  background-color: #000;
  /* Fallback */
  background-blend-mode: overlay;
  color: white;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.styles_btn {
  white-space: nowrap;
  border: 1px solid #c70000;
  z-index: 1;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: url(/img/btn.png) no-repeat;
  background-size: auto;
  background-size: cover;
  transition: background .5s;
}

.styles_btn::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #c70000;
  opacity: 0;
  transition: opacity .5s;
}

.styles_btn:hover::after {
  opacity: 1;
}

.styles_btn button {
  cursor: pointer;
  border: 0;
  background-color: transparent;
  color: inherit;
}

.styles_btn span {
  z-index: 2;
  position: relative;
}

.section-title {
  margin-bottom: 40px;
}

.section-title.center-title {
  text-align: center;
}

.section-title.center-title h2:after {
  right: 0;
  margin: 0 auto;
}

.section-title span {
  color: #ffffff;
  display: block;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.section-title h2 {
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 25px;
}

.section-title h2:after {
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 5px;
  width: 70px;
  background: #c70000;
  content: "";
  transform: translateX(-50%);
}

.set-bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}

.spad {
  padding-top: 100px;
  padding-bottom: 100px;
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p,
.text-white span,
.text-white li,
.text-white a {
  color: #fff;
}



/* scroll to top area */
.scroll-to-top {
  display: inline-block;
background: linear-gradient(135deg, #7b68eb 0%, #6c5bd9 55%, #4f3eb1 100%);
  width: 40px;
  height: 60px;
  line-height: 45px;
  color: #ffffff;
  text-align: center;
  border-radius: 50px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border: 0;
  position: fixed;
  bottom: -60px;
  right: 30px;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  font-size: 18px;
  z-index: 99;
  cursor: pointer;
  transition: all 0.4s ease-out 0s;
}

.scroll-to-top span {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
}

.scroll-to-top::after {
  position: absolute;
  z-index: -1;
  content: "";
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 1;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  bottom: 0px;
}

/* Preloder */
#preloder {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999999;
  background: #000;
}

.loader {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -13px;
  margin-left: -13px;
  border-radius: 60px;
  animation: loader 0.8s linear infinite;
  -webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    border: 4px solid #f44336;
    border-left-color: transparent;
  }

  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    border: 4px solid #673ab7;
    border-left-color: transparent;
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    border: 4px solid #f44336;
    border-left-color: transparent;
  }
}

@-webkit-keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    border: 4px solid #f44336;
    border-left-color: transparent;
  }

  50% {
    -webkit-transform: rotate(180deg);
    border: 4px solid #673ab7;
    border-left-color: transparent;
  }

  100% {
    -webkit-transform: rotate(360deg);
    border: 4px solid #f44336;
    border-left-color: transparent;
  }
}

/*---------------------
  Header
-----------------------*/
.mobile-menu-icon {
  display: none;
}

@media(max-width: 992px) {
  .mobile-menu-icon {
    display: block;
    position: relative;
    z-index: 10001;
  }

  .logo-menu-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

.mobile-menu-icon img {
    max-width: 34px;
    display: block;
    padding: 10px;
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(128, 112, 224, 0.26), rgba(76, 61, 164, 0.18));
    border: 1px solid rgba(154, 141, 234, 0.28);
    box-shadow: 0 12px 28px rgba(30, 22, 79, 0.3);
  }
}

.header {
  width: 100%;
  background:
    linear-gradient(135deg, rgba(34, 28, 78, 0.95), rgba(66, 54, 145, 0.88)),
    rgba(28, 22, 64, 0.8);
  border-bottom: 1px solid rgba(180, 171, 242, 0.16);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 18px 45px rgba(20, 15, 52, 0.35);
  z-index: 9999;
}

.header .container {
  position: relative;
}

.header .row {
  align-items: center;
}

.header__logo {
  padding: 18px 0;
  max-width: 240px;
}

.header__logo a {
  display: inline-flex;
  align-items: center;
  color: #ffffff;
}

.brand-title {
  font-family: "Play", sans-serif;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #ffffff;
  text-shadow: 0 10px 24px rgba(18, 14, 48, 0.28);
}

.header__nav__option {
  text-align: right;
  padding: 18px 0;
}

.header__nav__menu {
  display: inline-block;
  margin-right: 0;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(188, 180, 244, 0.16);
  box-shadow: inset 0 1px 0 rgba(227, 222, 255, 0.08);
}

.header__nav__menu ul li {
  list-style: none;
  display: inline-block;
  margin-right: 6px;
  position: relative;
}

.header__nav__menu ul li.active a:after {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.header__nav__menu ul li:hover a:after {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.header__nav__menu ul li:hover .dropdown {
  top: 34px;
  opacity: 1;
  visibility: visible;
}

.header__nav__menu ul li:last-child {
  margin-right: 0;
}

.header__nav__menu ul li .dropdown {
  position: absolute;
  left: 0;
  top: 60px;
  width: 140px;
  background: #ffffff;
  text-align: left;
  padding: 2px 0;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all, 0.3s;
  -o-transition: all, 0.3s;
  transition: all, 0.3s;
}

.header__nav__menu ul li .dropdown li {
  display: block;
  margin-right: 0;
}

.header__nav__menu ul li .dropdown li a {
  font-size: 14px;
  color: #111111;
  padding: 8px 20px;
  text-transform: capitalize;
}

.header__nav__menu ul li .dropdown li a:after {
  display: none;
}

.header__nav__menu ul li a {
  font-size: 13px;
  font-family: "Josefin Sans", sans-serif;
  color: rgba(244, 242, 255, 0.86);
  display: block;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  position: relative;
  padding: 12px 20px;
  border-radius: 999px;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.header__nav__menu ul li a:after {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 8px;
  width: auto;
  height: calc(100% - 16px);
  background: linear-gradient(135deg, rgba(108, 91, 217, 0.94), rgba(146, 131, 235, 0.8));
  content: "";
  border-radius: 999px;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  transform-origin: center;
  z-index: -1;
  -webkit-transition: all, 0.3s;
  -o-transition: all, 0.3s;
  transition: all, 0.3s;
}

.header__nav__menu ul li.active a,
.header__nav__menu ul li:hover a {
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(108, 91, 217, 0.24);
}

.header__nav__social {
  display: inline-block;
  position: relative;
  padding-left: 50px;
}

.header__nav__social:before {
  position: absolute;
  left: 0;
  top: 4px;
  height: 13px;
  width: 1px;
  background: rgba(225, 225, 225, 0.2);
  content: "";
}

.header__nav__social a {
  color: #ffffff;
  font-size: 15px;
  margin-right: 18px;
}

.header__nav__social a:last-child {
  margin-right: 0;
}

.sidepanel {
  width: 0;
  position: fixed;
  z-index: 10000;
  height: 100vh;
  top: 76px;
  left: 0;
  background:
    linear-gradient(180deg, rgba(32, 26, 74, 0.98), rgba(71, 59, 154, 0.96) 55%, rgba(24, 19, 56, 0.98));
  overflow-x: hidden;
  transition: 0.4s ease;
  padding-top: 110px;
}

.sidepanel .mobile-menu-item {
  margin: 0 18px 10px;
  padding: 14px 18px;
  font-size: 18px;
  font-weight: 600;
  font-family: "Josefin Sans", sans-serif;
  letter-spacing: 0.8px;
  color: rgba(248, 246, 255, 0.92);
  text-decoration: none;
  display: block;
  transition: 0.3s ease;
  border: 1px solid rgba(190, 182, 244, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
}

.sidepanel .mobile-menu-item:hover {
  background: linear-gradient(135deg, rgba(108, 91, 217, 0.26), rgba(154, 141, 234, 0.16));
  color: #ffffff;
  transform: translateX(6px);
}

.sidepanel .closebtn {
  position: absolute;
  top: 26px;
  right: 24px;
  font-size: 44px;
  color: white;
  cursor: pointer;
  line-height: 1;
}

.sidepanel .closebtn:hover {
  color: #b8adff;
}


/*---------------------
  Hero
-----------------------*/
.hero {
  background:
    radial-gradient(circle at 20% 20%, rgba(145, 127, 244, 0.24) 0%, rgba(145, 127, 244, 0) 32%),
    radial-gradient(circle at 80% 18%, rgba(108, 91, 217, 0.2) 0%, rgba(108, 91, 217, 0) 26%),
    radial-gradient(circle at center 80%, #5a4ac2 0%, #221c4e 52%, #17123a 100%);
}

.hero .container {
  padding-top: 110px;
}

.hero img {
  padding-bottom: 45px;
}

.hero-brand-lockup {
  padding: 38px 0 26px;
}

.hero-brand-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  padding: 8px 18px 6px;
  border-radius: 999px;
  font-family: "Josefin Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(247, 245, 255, 0.88);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(180, 168, 245, 0.08));
  border: 1px solid rgba(194, 185, 247, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  animation: heroKickerWave 3.8s ease-in-out infinite;
}

.hero-brand-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-radius: 50%;
  background: #b8adff;
  box-shadow: 0 0 0 rgba(184, 173, 255, 0.55);
  animation: heroDotPulse 1.8s ease-out infinite;
}

.hero-brand-title {
  margin: 0;
  font-family: "Play", sans-serif;
  font-size: clamp(72px, 12vw, 138px);
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 0.95;
  background: linear-gradient(180deg, #ffffff 0%, #e7e1ff 28%, #b9adff 62%, #8774f0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 18px 34px rgba(23, 17, 57, 0.34);
}

@keyframes heroDotPulse {
  0% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(184, 173, 255, 0.45);
  }

  70% {
    transform: scale(1.15);
    box-shadow: 0 0 0 14px rgba(184, 173, 255, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(184, 173, 255, 0);
  }
}

@keyframes heroKickerWave {
  0%,
  100% {
    transform: translateY(0);
  }

  25% {
    transform: translateY(-3px);
  }

  50% {
    transform: translateY(1px);
  }

  75% {
    transform: translateY(-2px);
  }
}

.hero h1 {
  line-height: 70px;
  padding-bottom: 20px;
}

.hero p {
  font-weight: 600;
  color: rgba(232, 227, 255, 0.82);
  font-size: 18px;
  line-height: 30px;
}

.hero-actions-row {
  margin-top: 14px;
}

.btn-grad,
.btn-grad2 {
  min-width: 230px;
  margin: 10px 14px;
  padding: 18px 34px 17px;
  border-radius: 999px;
  font-family: "Josefin Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.9px;
  text-transform: uppercase;
  border-width: 1px;
  border-style: solid;
  background-size: 100% 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
  box-shadow: 0 18px 30px rgba(8, 11, 34, 0.22);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease, color 0.28s ease;
  isolation: isolate;
}

.btn-grad::before,
.btn-grad2::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.08) 38%, rgba(255, 255, 255, 0));
  pointer-events: none;
}

.btn-grad::after,
.btn-grad2::after {
  content: "";
  position: absolute;
  top: 8%;
  left: -22%;
  width: 42%;
  height: 84%;
  border-radius: inherit;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.06));
  opacity: 0.34;
  transform: skewX(-24deg);
  transition: transform 0.42s ease, opacity 0.28s ease;
  pointer-events: none;
}

.btn-grad {
  color: #251100;
  background: linear-gradient(135deg, #fff3b0 0%, #ffd86b 28%, #ffb93f 58%, #ff9820 100%);
  border-color: rgba(255, 231, 170, 0.88);
  box-shadow: 0 18px 38px rgba(255, 163, 46, 0.34), 0 0 0 1px rgba(255, 238, 190, 0.18);
}

.btn-grad2 {
  color: #fff6e4;
  background: linear-gradient(135deg, #5e0b15 0%, #9f1239 24%, #d62839 52%, #f59e0b 100%);
  border-color: rgba(255, 205, 124, 0.9);
  box-shadow: 0 18px 34px rgba(181, 42, 54, 0.3), 0 0 0 1px rgba(255, 220, 154, 0.24);
}

.btn-grad:hover,
.btn-grad2:hover {
  transform: translateY(-4px);
}

.btn-grad:hover {
  color: #1e0d00;
  border-color: rgba(255, 244, 205, 0.98);
  background: linear-gradient(135deg, #fff7c9 0%, #ffe283 30%, #ffc34f 58%, #ffa022 100%);
  box-shadow: 0 24px 44px rgba(255, 163, 46, 0.42), 0 0 22px rgba(255, 210, 109, 0.34);
}

.btn-grad2:hover {
  color: #fffaf0;
  border-color: rgba(255, 229, 176, 1);
  background: linear-gradient(135deg, #7a0f1d 0%, #b91c3c 26%, #e23d36 54%, #ffbf47 100%);
  box-shadow: 0 24px 42px rgba(181, 42, 54, 0.36), 0 0 20px rgba(255, 186, 77, 0.34);
}

.btn-grad:hover::after,
.btn-grad2:hover::after {
  opacity: 0.5;
  transform: translateX(240%) skewX(-24deg);
}

@media(max-width: 992px) {
  .hero .container {
    padding-top: 110px;
  }

  .hero-brand-lockup {
    padding: 28px 0 18px;
  }

  .btn-grad,
  .btn-grad2 {
    min-width: 205px;
  }
}

@media(max-width: 576px) {

  .hero-brand-kicker {
    font-size: 10px;
    letter-spacing: 2.2px;
    padding: 7px 14px 5px;
  }

  .hero-brand-title {
    font-size: clamp(52px, 16vw, 74px);
    letter-spacing: 1px;
  }

  .hero p {
    font-size: 16px;
    line-height: 26px;
  }

  .hero .btn-grad,
  .hero .btn-grad2 {
    min-width: 0;
    width: 100%;
    max-width: 290px;
    margin: 8px auto;
    display: block;
  }

  .hero h1 {
    font-size: 30px;
    line-height: 40px;
  }
}


.hero__text span {
  color: #ffffff;
  display: block;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
  position: relative;
  top: 100px;
  opacity: 0;
  -webkit-transition: all, 0.3s;
  -o-transition: all, 0.3s;
  transition: all, 0.3s;
}

.hero__text h2 {
  color: #ffffff;
  font-size: 60px;
  font-weight: 700;
  line-height: 70px;
  text-transform: uppercase;
  margin-bottom: 38px;
  position: relative;
  top: 100px;
  opacity: 0;
  -webkit-transition: all, 0.5s;
  -o-transition: all, 0.5s;
  transition: all, 0.5s;
}

.hero__text .primary-btn {
  position: relative;
  top: 100px;
  opacity: 0;
  -webkit-transition: all, 0.7s;
  -o-transition: all, 0.7s;
  transition: all, 0.7s;
}

/*---------------------
  Reach
-----------------------*/
.reach-section {
  padding: 28px 0 40px;
  background:
    radial-gradient(circle at 50% 0%, rgba(137, 121, 238, 0.12), rgba(137, 121, 238, 0) 38%),
    linear-gradient(180deg, #17123a 0%, #120f2f 100%);
}

.reach-panel {
  position: relative;
  overflow: hidden;
  padding: 42px 0 40px;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(222, 235, 255, 0.96), rgba(179, 211, 247, 0.92));
  border: 1px solid rgba(237, 242, 255, 0.4);
  box-shadow: 0 26px 60px rgba(16, 12, 45, 0.26);
}

.reach-panel__glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108, 91, 217, 0.22), rgba(108, 91, 217, 0));
  pointer-events: none;
}

.reach-panel__glow--left {
  top: -120px;
  left: -80px;
}

.reach-panel__glow--right {
  right: -100px;
  bottom: -120px;
}

.reach-section__header {
  position: relative;
  z-index: 2;
  margin-bottom: 18px;
}

.reach-section__eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 16px 6px;
  border-radius: 999px;
  background: rgba(108, 91, 217, 0.1);
  color: #5d4cc7;
  font-family: "Josefin Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.reach-section__header h2 {
  color: #2c3e63;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.12;
}

.reach-map {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 310px;
  margin: 18px auto 30px;
  width: min(100%, 980px);
}

.reach-map__image {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  max-width: 980px;
  height: auto;
  filter: drop-shadow(0 22px 34px rgba(34, 53, 93, 0.12));
}

.reach-map__pulse {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #64f0dd;
  box-shadow: 0 0 0 rgba(100, 240, 221, 0.5);
  z-index: 3;
  animation: reachPulse 2.8s ease-out infinite;
}

.reach-map__pulse--one {
  top: 22%;
  left: 34%;
}

.reach-map__pulse--two {
  top: 35%;
  right: 33%;
  animation-delay: 0.4s;
}

.reach-map__pulse--three {
  top: 48%;
  left: 28%;
  animation-delay: 0.9s;
}

.reach-map__pulse--four {
  bottom: 25%;
  right: 29%;
  animation-delay: 1.3s;
}

.reach-map__pulse--five {
  bottom: 34%;
  left: 38%;
  animation-delay: 1.7s;
}

.reach-map__pulse--six {
  top: 28%;
  right: 41%;
  animation-delay: 2.1s;
}

.country-loop {
  position: relative;
  z-index: 2;
  overflow: hidden;
  width: 100%;
  padding: 6px 0;
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.country-loop__track {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  animation: countryLoop 22s linear infinite;
}

.country-pill {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(195, 212, 241, 0.9);
  box-shadow: 0 16px 34px rgba(44, 62, 99, 0.08);
}

.country-pill__flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
}

.country-pill span {
  color: #2d3f63;
  font-family: "Josefin Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.reach-section__action {
  margin-top: 24px;
}

.reach-section__button {
  display: inline-block;
  padding: 17px 34px 15px;
  border-radius: 999px;
  background: linear-gradient(135deg, #7b68eb 0%, #6c5bd9 55%, #5948bd 100%);
  color: #ffffff;
  font-family: "Josefin Sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.6px;
  border: 1px solid rgba(213, 204, 255, 0.24);
  box-shadow: 0 18px 30px rgba(77, 63, 171, 0.28);
  transition: transform 0.28s ease, box-shadow 0.28s ease, color 0.28s ease;
}

.reach-section__button:hover {
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 24px 38px rgba(77, 63, 171, 0.34);
}

@keyframes countryLoop {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes reachPulse {
  0% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(100, 240, 221, 0.4);
  }

  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 18px rgba(100, 240, 221, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(100, 240, 221, 0);
  }
}

/*---------------------
  Methods Showcase
-----------------------*/
.methods-showcase {
  padding: 28px 0 42px;
  background:
    radial-gradient(circle at 50% 0%, rgba(137, 121, 238, 0.12), rgba(137, 121, 238, 0) 38%),
    linear-gradient(180deg, #17123a 0%, #120f2f 100%);
}

.methods-showcase__panel {
  position: relative;
  overflow: hidden;
  padding: 44px 42px;
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(228, 243, 248, 0.98), rgba(188, 229, 239, 0.94));
  border: 1px solid rgba(238, 247, 250, 0.7);
  box-shadow: 0 26px 60px rgba(16, 12, 45, 0.26);
}

.methods-showcase__panel::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 47%;
  width: 1px;
  background: linear-gradient(180deg, rgba(114, 171, 197, 0), rgba(114, 171, 197, 0.35), rgba(114, 171, 197, 0));
}

.methods-showcase__panel::after {
  content: "";
  position: absolute;
  top: -90px;
  right: -50px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.methods-copy {
  position: relative;
  z-index: 2;
  max-width: 430px;
}

.methods-copy__eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 16px 6px;
  border-radius: 999px;
  background: rgba(61, 121, 154, 0.12);
  color: #3a6d86;
  font-family: "Josefin Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.methods-copy h2 {
  color: #263b5a;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 18px;
}

.methods-copy p {
  max-width: 360px;
  color: #385169;
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 0;
}

.methods-marquee {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  height: 390px;
  padding-left: 28px;
}

.methods-marquee::before,
.methods-marquee::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 0;
  z-index: 3;
  pointer-events: none;
}

.methods-marquee::before {
  top: 0;
  height: 72px;
  background: linear-gradient(180deg, rgba(194, 231, 240, 0.95), rgba(194, 231, 240, 0));
}

.methods-marquee::after {
  bottom: 0;
  height: 72px;
  background: linear-gradient(0deg, rgba(194, 231, 240, 0.95), rgba(194, 231, 240, 0));
}

.methods-column {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.methods-track {
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: methodsScrollUp 20s linear infinite;
  will-change: transform;
}

.methods-column--reverse .methods-track {
  animation-name: methodsScrollDown;
  animation-duration: 22s;
}

.methods-item {
  min-height: 92px;
  padding: 20px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(212, 229, 236, 0.96);
  box-shadow: 0 14px 30px rgba(57, 93, 118, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.methods-item img {
  max-width: 100%;
  max-height: 52px;
  width: auto;
  object-fit: contain;
  filter: saturate(1.02);
}

@keyframes methodsScrollUp {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(calc(-50% - 9px));
  }
}

@keyframes methodsScrollDown {
  0% {
    transform: translateY(calc(-50% - 9px));
  }

  100% {
    transform: translateY(0);
  }
}

@media(max-width: 1199px) {
  .methods-showcase__panel {
    padding: 38px 30px;
  }

  .methods-copy h2 {
    font-size: clamp(30px, 4vw, 44px);
  }

  .methods-copy p {
    font-size: 20px;
  }
}

@media(max-width: 991px) {
  .methods-showcase__panel {
    padding: 34px 24px;
    border-radius: 28px;
  }

  .methods-showcase__panel::before {
    display: none;
  }

  .methods-copy {
    max-width: none;
    margin-bottom: 28px;
    text-align: center;
  }

  .methods-copy p {
    max-width: none;
  }

  .methods-marquee {
    padding-left: 0;
    height: 320px;
  }

  .methods-marquee::before,
  .methods-marquee::after {
    left: 0;
  }
}

@media(max-width: 767px) {
  .methods-showcase {
    padding-top: 16px;
  }

  .methods-showcase__panel {
    padding: 28px 18px;
    border-radius: 24px;
  }

  .methods-copy__eyebrow {
    font-size: 10px;
    letter-spacing: 2.2px;
  }

  .methods-copy h2 {
    font-size: 30px;
  }

  .methods-copy p {
    font-size: 18px;
  }

  .methods-marquee {
    gap: 12px;
    height: 280px;
  }

  .methods-item {
    min-height: 80px;
    padding: 16px 12px;
    border-radius: 16px;
  }

  .methods-item img {
    max-height: 42px;
  }
}

@media(max-width: 479px) {
  .methods-copy h2 {
    font-size: 27px;
  }

  .methods-marquee {
    gap: 10px;
    height: 240px;
  }

  .methods-track {
    gap: 12px;
  }

  .methods-item {
    min-height: 72px;
    padding: 14px 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .methods-track {
    animation: none;
  }

  .industry-lane__track {
    animation: none;
  }
}

/*---------------------
  Media Feature
-----------------------*/
.media-feature {
  padding: 12px 0 46px;
  background:
    radial-gradient(circle at 80% 20%, rgba(102, 215, 255, 0.08), rgba(102, 215, 255, 0) 24%),
    linear-gradient(180deg, #17123a 0%, #120f2f 100%);
}

.media-feature__panel {
  position: relative;
  overflow: hidden;
  padding: 40px 36px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(29, 23, 71, 0.96), rgba(43, 34, 102, 0.94));
  border: 1px solid rgba(171, 157, 245, 0.16);
  box-shadow: 0 28px 58px rgba(10, 7, 31, 0.34);
}

.media-feature__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 15%, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0) 22%),
    radial-gradient(circle at 90% 85%, rgba(126, 222, 255, 0.08), rgba(126, 222, 255, 0) 24%);
  pointer-events: none;
}

.media-feature__header,
.media-feature__grid {
  position: relative;
  z-index: 2;
}

.media-feature__header {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.media-feature__eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 16px 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(193, 184, 247, 0.16);
  color: #cfc8ff;
  font-family: "Josefin Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.media-feature__header h2 {
  color: #ffffff;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.08;
  margin-bottom: 16px;
}

.media-feature__header p {
  color: rgba(230, 225, 255, 0.8);
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 0;
}

.media-feature__grid {
  row-gap: 24px;
}

.media-card {
  height: 100%;
  padding: 20px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(187, 176, 243, 0.14);
  box-shadow: 0 22px 42px rgba(8, 6, 24, 0.24);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.media-card:hover {
  transform: translateY(-6px);
  border-color: rgba(214, 206, 255, 0.22);
  box-shadow: 0 28px 48px rgba(8, 6, 24, 0.3);
}

.media-card--square {
  min-height: 100%;
}

.media-card__image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  margin-bottom: 20px;
  background: rgba(12, 10, 35, 0.22);
}

.media-card--square .media-card__image-wrap {
  aspect-ratio: 1 / 1;
}

.media-card--landscape .media-card__image-wrap {
  aspect-ratio: 1080 / 532;
}

.media-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.media-card__content {
  padding: 2px 4px 4px;
}

.media-card__tag {
  display: inline-block;
  margin-bottom: 12px;
  color: rgba(203, 195, 255, 0.82);
  font-family: "Josefin Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.6px;
  text-transform: uppercase;
}

.media-card__content h3 {
  color: #ffffff;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.18;
  margin-bottom: 12px;
}

.media-card__content p {
  margin-bottom: 0;
  color: rgba(230, 225, 255, 0.76);
  font-size: 16px;
  line-height: 1.75;
}

@media(max-width: 991px) {
  .media-feature__panel {
    padding: 34px 24px;
    border-radius: 28px;
  }

  .media-feature__header {
    margin-bottom: 24px;
  }
}

@media(max-width: 767px) {
  .media-feature {
    padding-bottom: 38px;
  }

  .media-feature__panel {
    padding: 28px 18px;
    border-radius: 24px;
  }

  .media-feature__eyebrow {
    font-size: 10px;
    letter-spacing: 2.2px;
  }

  .media-feature__header h2 {
    font-size: 30px;
  }

  .media-feature__header p {
    font-size: 16px;
    line-height: 1.7;
  }

  .media-card {
    padding: 16px;
    border-radius: 22px;
  }

  .media-card__image-wrap {
    border-radius: 18px;
    margin-bottom: 16px;
  }

  .media-card__content h3 {
    font-size: 24px;
  }
}

/*---------------------
  Industry Marquee
-----------------------*/
.industry-marquee {
  padding: 12px 0 44px;
  background:
    radial-gradient(circle at 20% 30%, rgba(131, 95, 219, 0.12), rgba(131, 95, 219, 0) 28%),
    linear-gradient(180deg, #120f2f 0%, #1a143f 100%);
}

.industry-marquee__panel {
  position: relative;
  overflow: hidden;
  padding: 42px 36px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(30, 23, 71, 0.96), rgba(51, 38, 116, 0.92));
  border: 1px solid rgba(165, 148, 241, 0.18);
  box-shadow: 0 28px 60px rgba(9, 7, 30, 0.34);
}

.industry-marquee__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 24%, rgba(183, 172, 255, 0.12), rgba(183, 172, 255, 0) 24%),
    radial-gradient(circle at 86% 80%, rgba(126, 222, 255, 0.08), rgba(126, 222, 255, 0) 28%);
  pointer-events: none;
}

.industry-copy {
  position: relative;
  z-index: 2;
  max-width: 360px;
}

.industry-copy__eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 16px 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(193, 184, 247, 0.14);
  color: #cbc3ff;
  font-family: "Josefin Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.industry-copy h2 {
  color: #ffffff;
  font-size: clamp(32px, 3.9vw, 52px);
  line-height: 1.1;
  margin-bottom: 16px;
}

.industry-copy p {
  color: rgba(228, 224, 255, 0.82);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.industry-copy__button {
  display: inline-block;
  min-width: 180px;
  padding: 16px 28px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #7b68eb 0%, #6c5bd9 55%, #4c3baa 100%);
  border: 1px solid rgba(213, 204, 255, 0.22);
  box-shadow: 0 18px 32px rgba(18, 13, 53, 0.32);
  color: #ffffff;
  font-family: "Josefin Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: transform 0.28s ease, box-shadow 0.28s ease, color 0.28s ease;
}

.industry-copy__button:hover {
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 24px 38px rgba(18, 13, 53, 0.38);
}

.industry-curved-board {
  position: relative;
  z-index: 2;
  padding: 26px;
  border-radius: 42px;
  background: linear-gradient(135deg, #d8f3f4 0%, #bce7ef 100%);
  min-height: 470px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
  overflow: hidden;
}

.industry-curved-board::before,
.industry-curved-board::after {
  content: "";
  position: absolute;
  inset-inline: 20px;
  height: 76px;
  z-index: 3;
  pointer-events: none;
}

.industry-curved-board::before {
  top: 0;
}

.industry-curved-board::after {
  bottom: 0;
}

.industry-curved-board__inner {
  width: 120%;
  margin: 0 auto;
  position: absolute;
  left: -50px !important;
  inset: 28px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  transform: rotate(-17deg) scale(1.08);
  transform-origin: center;
}

.industry-lane {
  overflow: hidden;
}

.industry-lane--one {
  margin-left: 46px;
}

.industry-lane--two {
  margin-left: -26px;
}

.industry-lane--three {
  margin-left: 18px;
}

.industry-lane--four {
  margin-left: -36px;
}

.industry-lane--five {
  margin-left: 38px;
}

.industry-lane__track {
  display: flex;
  align-items: center;
  gap: 14px;
  width: max-content;
  animation: industryLaneLeft 24s linear infinite;
  will-change: transform;
}

.industry-lane--two .industry-lane__track,
.industry-lane--four .industry-lane__track {
  animation-name: industryLaneRight;
  animation-duration: 27s;
}

.industry-lane--three .industry-lane__track {
  animation-duration: 22s;
}

.industry-lane--five .industry-lane__track {
  animation-duration: 26s;
}

.industry-pill {
  flex: 0 0 auto;
  min-width: 158px;
  height: 66px;
  padding: 14px 22px;
  border-radius: 18px;
  background: #20345c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 24px rgba(18, 30, 55, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}

.industry-pill img {
  max-width: 100%;
  max-height: 34px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

@keyframes industryLaneLeft {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes industryLaneRight {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media(max-width: 1199px) {
  .industry-marquee__panel {
    padding: 36px 28px;
  }

  .industry-curved-board {
    min-height: 420px;
  }

  .industry-curved-board__inner {
    transform: rotate(-16deg) scale(1.03);
  }
}

@media(max-width: 991px) {
  .industry-copy {
    max-width: none;
    margin-bottom: 28px;
    text-align: center;
  }

  .industry-copy p {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }

  .industry-curved-board {
    min-height: 390px;
  }

  .industry-curved-board__inner {
    inset: 24px 14px;
    transform: rotate(-13deg) scale(1);
  }

  .industry-pill {
    min-width: 138px;
    height: 60px;
    padding: 12px 18px;
  }
}

@media(max-width: 767px) {
  .industry-marquee {
    padding-bottom: 36px;
  }

  .industry-marquee__panel {
    padding: 28px 18px;
    border-radius: 24px;
  }

  .industry-copy__eyebrow {
    font-size: 10px;
    letter-spacing: 2.2px;
  }

  .industry-copy h2 {
    font-size: 30px;
  }

  .industry-copy p {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .industry-copy__button {
    min-width: 160px;
    padding: 14px 24px 12px;
  }

  .industry-curved-board {
    min-height: 320px;
    padding: 18px;
    border-radius: 28px;
  }

  .industry-curved-board__inner {
    inset: 20px 8px;
    gap: 12px;
    transform: rotate(-11deg) scale(0.98);
  }

  .industry-lane--one,
  .industry-lane--two,
  .industry-lane--three,
  .industry-lane--four,
  .industry-lane--five {
    margin-left: 0;
  }

  .industry-lane__track {
    gap: 10px;
  }

  .industry-pill {
    min-width: 112px;
    height: 50px;
    padding: 10px 14px;
    border-radius: 14px;
  }

  .industry-pill img {
    max-height: 26px;
  }
}

@media(max-width: 479px) {
  .industry-copy h2 {
    font-size: 26px;
  }

  .industry-curved-board {
    min-height: 270px;
  }

  .industry-curved-board__inner {
    transform: rotate(-9deg) scale(0.96);
  }

  .industry-pill {
    min-width: 96px;
    height: 38px;
    padding: 8px 12px;
  }

  .industry-pill img {
    max-height: 22px;
  }
}

/*---------------------
  Counter
-----------------------*/
.counter {
  padding: 38px 0 52px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 22%, rgba(139, 120, 245, 0.14), rgba(139, 120, 245, 0) 28%),
    radial-gradient(circle at 85% 20%, rgba(103, 218, 255, 0.08), rgba(103, 218, 255, 0) 24%),
    linear-gradient(180deg, #17123a 0%, #110d2b 100%);
}

.counter__panel {
  position: relative;
  overflow: hidden;
  padding: 44px 42px 36px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(29, 23, 71, 0.96), rgba(46, 36, 111, 0.94));
  border: 1px solid rgba(171, 157, 245, 0.16);
  box-shadow: 0 28px 58px rgba(10, 7, 31, 0.34);
}

.counter__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0) 24%),
    radial-gradient(circle at 90% 100%, rgba(126, 222, 255, 0.08), rgba(126, 222, 255, 0) 28%);
  pointer-events: none;
}

.counter__intro,
.counter__visual,
.counter__stats {
  position: relative;
  z-index: 2;
}

.counter__eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 16px 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(193, 184, 247, 0.16);
  color: #cfc8ff;
  font-family: "Josefin Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.counter__intro h2 {
  color: #ffffff;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  margin-bottom: 18px;
}

.counter__intro p {
  max-width: 520px;
  color: rgba(230, 225, 255, 0.82);
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 0;
}

.counter__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.counter__visual img {
  width: min(100%, 470px);
  height: auto;
  filter: drop-shadow(0 24px 36px rgba(9, 7, 28, 0.28));
}

.counter__stats {
  margin-top: 34px;
}

.counter__item {
  height: 100%;
  min-height: 220px;
  padding: 28px 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(187, 176, 243, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.counter__item:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 191, 255, 0.22);
  box-shadow: 0 22px 34px rgba(8, 6, 24, 0.22);
}

.counter__item__icon {
  width: 78px;
  height: 78px;
  margin-bottom: 20px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(123, 104, 235, 0.24), rgba(104, 214, 255, 0.16));
  border: 1px solid rgba(198, 189, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 30px rgba(9, 7, 28, 0.18);
}

.counter__item__icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.counter__item h3 {
  font-size: clamp(42px, 4vw, 56px);
  color: #ffffff;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 12px;
}

.counter__item p {
  margin-bottom: 0;
  color: rgba(229, 223, 255, 0.76);
  font-size: 17px;
  line-height: 1.5;
}

@media(max-width: 1199px) {
  .counter__panel {
    padding: 38px 30px 32px;
  }

  .counter__item {
    min-height: 200px;
    padding: 24px 18px;
  }
}

@media(max-width: 991px) {
  .counter {
    padding: 32px 0 42px;
  }

  .counter__panel {
    padding: 32px 24px 28px;
    border-radius: 28px;
  }

  .counter__intro {
    text-align: center;
    margin-bottom: 26px;
  }

  .counter__intro p {
    margin-left: auto;
    margin-right: auto;
  }

  .counter__visual {
    margin-bottom: 10px;
  }

  .counter__stats {
    margin-top: 26px;
    row-gap: 18px;
  }
}

@media(max-width: 767px) {
  .counter {
    padding: 26px 0 34px;
  }

  .counter__panel {
    padding: 28px 18px 24px;
    border-radius: 24px;
  }

  .counter__eyebrow {
    font-size: 10px;
    letter-spacing: 2.2px;
  }

  .counter__intro h2 {
    font-size: 30px;
  }

  .counter__intro p {
    font-size: 16px;
    line-height: 1.7;
  }

  .counter__stats {
    margin-top: 22px;
  }

  .counter__item {
    min-height: 180px;
    border-radius: 20px;
  }

  .counter__item__icon {
    width: 68px;
    height: 68px;
    margin-bottom: 16px;
    border-radius: 18px;
  }

  .counter__item__icon img {
    width: 32px;
    height: 32px;
  }

  .counter__item p {
    font-size: 16px;
  }
}


/*---------------------
  Call To Active
-----------------------*/
.callto {
  padding-top: 130px;
}

.callto.sp__callto {
  padding-top: 0;
  background: #100028;
}

.callto__text h2 {
  color: #ffffff;
  font-size: 42px;
  font-weight: 700;
  line-height: 55px;
  margin-bottom: 22px;
}

.callto__text p {
  font-size: 15px;
  color: #ffffff;
  opacity: 0.7;
  text-transform: uppercase;
  margin-bottom: 55px;
}

.callto__text a {
  color: #ffffff;
  background: #00bfe7;
  font-size: 15px;
  font-weight: 700;
  font-family: "Play", sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  padding: 14px 32px 12px;
}

/*---------------------
  Footer
-----------------------*/
.footer {
  background:
    radial-gradient(circle at 15% 20%, rgba(131, 95, 219, 0.12), rgba(131, 95, 219, 0) 28%),
    linear-gradient(135deg, #130f31 0%, #1d1747 55%, #120d2d 100%);
}

.footer__top {
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__top__logo {
  line-height: 40px;
}

.footer__top__logo a {
  display: inline-block;
}

.footer__top__social {
  text-align: right;
}

.footer__top__social a {
  display: inline-block;
  font-size: 15px;
  color: #ffffff;
  height: 40px;
  width: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  line-height: 44px;
  text-align: center;
  margin-right: 6px;
}

.footer__top__social a:last-child {
  margin-right: 0;
}

.footer__option {
  padding-bottom: 35px;
  padding-top: 75px;
}

.footer__option__item {
  margin-bottom: 35px;
}

.footer__option__item h5 {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 35px;
}

.footer__option__item p {
  font-weight: 300;
  margin-bottom: 20px;
}

.footer__option__item .read__more {
  font-size: 16px;
  color: #ffffff;
}

.footer__option__item .read__more span {
  font-size: 16px;
  color: #ffffff;
  opacity: 0.5;
  position: relative;
  top: 4px;
  margin-left: 5px;
}

.footer__option__item ul li {
  list-style: none;
}

.footer__option__item ul li a {
  color: #adadad;
  font-size: 16px;
  font-weight: 300;
  line-height: 32px;
}

.footer__option__item form {
  position: relative;
}

.footer__option__item form input {
  height: 50px;
  width: 100%;
  padding-left: 20px;
  border: 1px solid #544E5E;
  background: transparent;
  font-size: 16px;
  color: #adadad;
}

.footer__option__item form input::-webkit-input-placeholder {
  color: #adadad;
}

.footer__option__item form input::-moz-placeholder {
  color: #adadad;
}

.footer__option__item form input:-ms-input-placeholder {
  color: #adadad;
}

.footer__option__item form input::-ms-input-placeholder {
  color: #adadad;
}

.footer__option__item form input::placeholder {
  color: #adadad;
}

.footer__option__item form button {
  font-size: 20px;
  color: #ffffff;
  border: none;
  height: 50px;
  width: 50px;
  background: #00bfe7;
  line-height: 50px;
  text-align: center;
  position: absolute;
  right: 0;
  top: 0;
}

.footer__copyright {
  border-top: 1px solid rgba(193, 184, 247, 0.14);
  padding: 18px 0;
}

.footer__copyright__text {
  margin-bottom: 0;
  font-weight: 300;
  color: rgba(229, 223, 255, 0.74);
}

.footer__copyright__text i {
  color: #8d7cff;
}

.footer__copyright__text a {
  color: #8d7cff;
}

/*---------------------
  Breadcrumb
-----------------------*/
.breadcrumb-option {
  padding-top: 180px;
  background: radial-gradient(circle at center 80%, #5d030d 0%, #230004 100%);
}

.breadcrumb__text h2 {
  color: #ffffff;
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 12px;
}

.breadcrumb__links a {
  font-size: 16px;
  color: #ffffff;
  font-weight: 300;
  display: inline-block;
  margin-right: 32px;
  position: relative;
}

.breadcrumb__links a:after {
  position: absolute;
  right: -22px;
  top: -3px;
  content: "/";
  color: #adadad;
  font-size: 20px;
}

.breadcrumb__links span {
  font-size: 16px;
  color: #adadad;
  font-weight: 300;
  display: inline-block;
}

/*---------------------
  Services
-----------------------*/

.services {
  padding-bottom: 72px;
  padding-top: 56px;
  position: relative;
  background-size: cover;
  background-position: center;
  scroll-margin-top: 100px;
}

.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg, rgba(18, 14, 48, 0.94), rgba(40, 31, 99, 0.9)),
    radial-gradient(circle at 15% 20%, rgba(125, 105, 236, 0.16), rgba(125, 105, 236, 0) 28%),
    radial-gradient(circle at 85% 18%, rgba(102, 215, 255, 0.12), rgba(102, 215, 255, 0) 26%);
}

.benefits-row {
  display: flex;
  align-items: center;
  margin-bottom: 34px;
}

@media(max-width: 576px) {
  .section-title h2 {
    font-size: 20px;
  }

  .section-title h1 {
    font-size: 40px;
    line-height: 45px;
  }
}

.services .container {
  position: relative;
  z-index: 2;
}

.services__visual {
  position: relative;
  padding: 26px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(190, 181, 245, 0.14);
  box-shadow: 0 28px 50px rgba(8, 6, 24, 0.26);
}

.services__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.services__visual img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 36px rgba(8, 6, 24, 0.2));
}

.services__title {
  max-width: 520px;
  margin-left: auto;
}

.services__eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 16px 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(193, 184, 247, 0.14);
  color: #cbc3ff;
  font-family: "Josefin Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.services__title h2 {
  color: #ffffff;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.08;
  margin-bottom: 18px;
}

.services__title p {
  margin-bottom: 0;
  color: rgba(230, 225, 255, 0.8);
  font-size: 18px;
  line-height: 1.75;
}

.services__grid {
  row-gap: 24px;
}

.services__item {
  height: 100%;
  padding: 30px 28px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(190, 181, 245, 0.14);
  box-shadow: 0 22px 42px rgba(8, 6, 24, 0.24);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.services__item:hover {
  transform: translateY(-6px);
  border-color: rgba(214, 206, 255, 0.22);
  box-shadow: 0 28px 48px rgba(8, 6, 24, 0.3);
}

.services__item .services__item__icon {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

.services__item .services__item__icon img {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  width: 34px;
}

.services__item h4 {
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 14px;
  text-transform: capitalize;
}

.services__item p {
  margin-bottom: 0;
  color: rgba(230, 225, 255, 0.76);
  line-height: 1.75;
}

.services__item__icon {
  position: relative;
  height: 74px;
  width: 74px;
  line-height: 74px;
  text-align: center;
  border-radius: 22px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(123, 104, 235, 0.26), rgba(104, 214, 255, 0.16));
  border: 1px solid rgba(198, 189, 255, 0.16);
  box-shadow: 0 18px 30px rgba(9, 7, 28, 0.18);
}

.services__item__kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: rgba(203, 195, 255, 0.82);
  font-family: "Josefin Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.6px;
  text-transform: uppercase;
}

.services__item__icon:after {
  display: none;
}

@media(max-width: 991px) {
  .services {
    padding-top: 44px;
    padding-bottom: 56px;
  }

  .benefits-row {
    margin-bottom: 28px;
  }

  .services__title {
    max-width: none;
    margin-left: 0;
    margin-top: 26px;
    text-align: center;
  }

  .services__title p {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media(max-width: 767px) {
  .services {
    padding-top: 34px;
    padding-bottom: 44px;
  }

  .services__visual {
    padding: 18px;
    border-radius: 24px;
  }

  .services__eyebrow {
    font-size: 10px;
    letter-spacing: 2.2px;
  }

  .services__title h2 {
    font-size: 30px;
  }

  .services__title p {
    font-size: 16px;
    line-height: 1.7;
  }

  .services__grid {
    row-gap: 18px;
  }

  .services__item {
    padding: 24px 20px;
    border-radius: 22px;
  }

  .services__item__icon {
    width: 66px;
    height: 66px;
    line-height: 66px;
    border-radius: 18px;
    margin-bottom: 16px;
  }

  .services__item .services__item__icon img {
    width: 30px;
  }

  .services__item h4 {
    font-size: 22px;
  }
}

@media(max-width: 576px) {
  .services .section-title h2 {
    font-size: inherit;
  }

  .services .section-title h1 {
    font-size: inherit;
    line-height: inherit;
  }
}

/*---------------------
  Sports Bonus Page
-----------------------*/
.sports-bonus .col-lg-12 {
  padding-right: 0;
  padding-left: 0;
}

/*---------------------
  Services Page
-----------------------*/
.services-page {
  background: #100028;
  padding-bottom: 50px;
}

/*---------------------
  Logo
-----------------------*/
.logo {
  background: #100028;
  padding: 100px 20px;
}

.logo__carousel.owl-carousel .owl-item img {
  width: auto;
  display: inline-block;
}

/*---------------------
    Blog
-----------------------*/

.pagination__option {
  text-align: center;
  padding-top: 20px;
}

.pagination__option.blog__pagi {
  padding-top: 5px;
}

.pagination__option .arrow__pagination {
  font-size: 15px;
  color: #ffffff;
  display: inline-block;
  text-transform: uppercase;
}

.pagination__option .arrow__pagination.left__arrow {
  margin-right: 26px;
}

.pagination__option .arrow__pagination.right__arrow {
  margin-left: 18px;
}

.pagination__option .arrow__pagination span {
  opacity: 0.5;
}

.pagination__option .number__pagination {
  font-size: 18px;
  color: #ffffff;
  height: 50px;
  width: 50px;
  background: rgba(242, 242, 242, 0.1);
  line-height: 50px;
  text-align: center;
  display: inline-block;
  margin-right: 6px;
}

.blog {
  background: #230004;
}

.blog__item {
  border: 1px solid #222222;
  padding: 40px 48px 35px 30px;
  position: relative;
  z-index: 1;
  margin-bottom: 45px;
}

.blog__item:hover {
  border: 1px solid transparent !important;
  background: url(../img/blog/blog-2.jpg) no-repeat;
  background-size: cover;
}

.blog__item:hover ul li {
  color: #ffffff;
}

.blog__item:hover p {
  color: #ffffff;
}

.blog__item h4 {
  color: #ffffff;
  font-weight: 700;
  line-height: 31px;
  margin-bottom: 18px;
}

.blog__item ul {
  margin-bottom: 20px;
}

.blog__item ul li {
  color: #777777;
  list-style: none;
  font-size: 14px;
  font-weight: 300;
  margin-right: 25px;
  position: relative;
  display: inline-block;
}

.blog__item ul li:after {
  position: absolute;
  right: -16px;
  top: 0px;
  content: "/";
}

.blog__item ul li:last-child {
  margin-right: 0;
}

.blog__item ul li:last-child:after {
  display: none;
}

.blog__item p {
  font-weight: 300;
  line-height: 29px;
  margin-bottom: 22px;
}

.blog__item a {
  font-size: 16px;
  color: #ffffff;
}

.blog__item a span {
  font-size: 16px;
  color: #ffffff;
  opacity: 0.5;
  position: relative;
  top: 4px;
  margin-left: 5px;
}

/*---------------------
  Blog Details Hero
-----------------------*/
.blog-hero {
  padding: 300px 0 230px;
}

.blog__hero__text {
  text-align: center;
}

.blog__hero__text h2 {
  color: #ffffff;
  font-weight: 700;
  line-height: 47px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.blog__hero__text ul li {
  font-size: 14px;
  color: #ffffff;
  font-weight: 300;
  list-style: none;
  display: inline-block;
  margin-right: 25px;
  position: relative;
}

.blog__hero__text ul li:after {
  position: absolute;
  right: -18px;
  top: 0;
  content: "/";
}

.blog__hero__text ul li:last-child {
  margin-right: 0;
}

.blog__hero__text ul li:last-child:after {
  display: none;
}

.blog__hero__text ul li span {
  text-transform: uppercase;
}

/*---------------------
  Blog Details
-----------------------*/
.blog-details {
  background: #100028;
}

.blog__details__text {
  margin-bottom: 30px;
}

.blog__details__text p {
  font-size: 18px;
  line-height: 29px;
  font-weight: 300;
  margin-bottom: 20px;
}

.blog__details__text p:last-child {
  margin-bottom: 0;
}

.blog__details__quote {
  border: 1px solid rgba(225, 225, 225, 0.8);
  padding: 35px 90px 35px 40px;
  position: relative;
  margin-bottom: 35px;
}

.blog__details__quote p {
  font-size: 22px;
  font-weight: 300;
  line-height: 35px;
  font-style: italic;
  margin-bottom: 10px;
}

.blog__details__quote h6 {
  font-size: 15px;
  color: #adadad;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #ffffff;
}

.blog__details__quote i {
  font-size: 36px;
  color: #00bfe7;
  position: absolute;
  right: 30px;
  bottom: 25px;
}

.blog__details__desc {
  margin-bottom: 50px;
}

.blog__details__desc p {
  font-size: 18px;
  line-height: 29px;
  font-weight: 300;
  margin-bottom: 20px;
}

.blog__details__desc p:last-child {
  margin-bottom: 0;
}

.blog__details__tags {
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 65px;
}

.blog__details__tags span {
  display: inline-block;
  font-size: 15px;
  color: #ffffff;
  font-weight: 300;
  margin-right: 25px;
}

.blog__details__tags a {
  font-size: 16px;
  font-weight: 300;
  color: #ffffff;
  display: inline-block;
  margin-right: 11px;
  padding: 8px 15px 7px;
  margin-bottom: 5px;
  background: rgba(255, 255, 255, 0.1);
}

.blog__details__option {
  margin-bottom: 40px;
}

.blog__details__option__item {
  margin-bottom: 30px;
  overflow: hidden;
  display: block;
}

.blog__details__option__item h5 {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.blog__details__option__item h5 i {
  font-size: 18px;
  margin-right: 5px;
}

.blog__details__option__item.blog__details__option__item--right h5 {
  text-align: right;
}

.blog__details__option__item.blog__details__option__item--right h5 i {
  margin-right: 0;
  margin-left: 5px;
}

.blog__details__option__item.blog__details__option__item--right .blog__details__option__item__img {
  float: right;
  margin-right: 0;
  margin-left: 25px;
}

.blog__details__option__item.blog__details__option__item--right .blog__details__option__item__text {
  margin-right: 25px;
  text-align: right;
  float: none;
}

.blog__details__option__item__img {
  float: left;
  margin-right: 25px;
}

.blog__details__option__item__text {
  overflow: hidden;
}

.blog__details__option__item__text h6 {
  color: #ffffff;
  line-height: 21px;
  font-weight: 700;
  margin-bottom: 5px;
}

.blog__details__option__item__text span {
  font-size: 14px;
  color: #777777;
  font-weight: 300;
}

.blog__details__recent {
  margin-bottom: 60px;
}

.blog__details__recent h4 {
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 35px;
  text-align: center;
}

.blog__details__recent__item {
  margin-bottom: 30px;
}

.blog__details__recent__item img {
  min-width: 100%;
  margin-bottom: 20px;
}

.blog__details__recent__item h5 {
  color: #ffffff;
  font-weight: 700;
  line-height: 23px;
  margin-bottom: 4px;
}

.blog__details__recent__item span {
  color: #777777;
  font-size: 14px;
  font-weight: 300;
}

.blog__details__comment h4 {
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 35px;
  text-align: center;
}

.blog__details__comment form textarea {
  height: 120px;
  width: 100%;
  border: 1px solid rgba(225, 225, 225, 0.5);
  background: transparent;
  font-size: 16px;
  color: #adadad;
  padding-top: 12px;
  padding-left: 20px;
  font-weight: 300;
  margin-bottom: 14px;
  resize: none;
}

.blog__details__comment form textarea:placeholder {
  color: #adadad;
}

.input__list {
  margin-right: -20px;
  overflow: hidden;
}

.input__list input {
  height: 50px;
  width: calc(33.33% - 20px);
  float: left;
  border: 1px solid rgba(225, 225, 225, 0.5);
  background: transparent;
  font-size: 16px;
  color: #adadad;
  padding-left: 20px;
  font-weight: 300;
  margin-right: 20px;
  margin-bottom: 20px;
}

.input__list input:placeholder {
  color: #adadad;
}

/*---------------------
  Contact Widget
-----------------------*/
.contact-widget {
  background: #100028;
  padding-bottom: 70px;
}

.contact__widget__item {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(193, 184, 247, 0.12);
}


.contact__widget__item__icon {
  height: 56px;
  width: 56px;
  border: 1px solid rgba(193, 184, 247, 0.18);
  line-height: 56px;
  text-align: center;
  border-radius: 18px;
  float: left;
  margin-right: 14px;
  background: linear-gradient(135deg, rgba(123, 104, 235, 0.22), rgba(104, 214, 255, 0.14));
  box-shadow: 0 14px 28px rgba(9, 7, 28, 0.16);
}


.contact__widget__item__icon i {
  font-size: 20px;
  color: #d8d1ff;
}

.contact__widget__item__text {
  overflow: hidden;
  padding-top: 0;
}

.contact__widget__item__text span {
  display: block;
  margin-bottom: 4px;
  color: rgba(203, 195, 255, 0.78);
  font-family: "Josefin Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.contact__widget__item__text p {
  font-size: 20px;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 0;
}

.contact__widget__item__text a {
  color: #ffffff;
}

@media(max-width: 576px) {
  .contact__widget__item__text p {
    font-size: 16px;
    margin-bottom: 0;
  }
}


/*---------------------
  Contact
-----------------------*/
.contact {
  background:
    radial-gradient(circle at 15% 20%, rgba(131, 95, 219, 0.12), rgba(131, 95, 219, 0) 28%),
    linear-gradient(180deg, #100d29 0%, #0c0a1d 100%);
  padding: 46px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  scroll-margin-top: 100px;
}

.contact__info-panel {
  padding: 30px 26px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(187, 176, 243, 0.14);
  box-shadow: 0 22px 42px rgba(8, 6, 24, 0.24);
}

.contact__info-eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 16px 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(193, 184, 247, 0.16);
  color: #cfc8ff;
  font-family: "Josefin Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.contact__info-panel h3 {
  color: #ffffff;
  font-size: clamp(30px, 3.6vw, 42px);
  line-height: 1.12;
  margin-bottom: 16px;
}

.contact__info-panel>p {
  color: rgba(230, 225, 255, 0.8);
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 26px;
}

.contact__info-image {
  margin-top: 24px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(193, 184, 247, 0.12);
}

.contact__submit {
  min-width: 220px;
  padding: 16px 28px 15px;
  border-radius: 999px;
  border: 1px solid rgba(213, 204, 255, 0.24);
  background: linear-gradient(135deg, #7b68eb 0%, #6c5bd9 55%, #4f3eb1 100%);
  color: #ffffff;
  font-family: "Josefin Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  box-shadow: 0 18px 32px rgba(18, 13, 53, 0.3);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.contact__submit:hover {
  color: #ffffff;
  transform: translateY(-3px);
  border-color: rgba(230, 224, 255, 0.34);
  box-shadow: 0 24px 38px rgba(18, 13, 53, 0.36);
}

select.form-control option {
  background-color: #f0f0f0;
  color: #333;
}

select.form-control option:hover {
  background-color: #4CAF50;
  color: white;
}

select.form-control option:checked {
  background-color: #4CAF50;
  color: white;
}

.entryarea {
  position: relative;
  height: 50px;
  line-height: 50px;
  width: 80%;
  margin: 0 auto;
  margin-bottom: 30px;
}

@media(max-width: 576px) {
  .entryarea {
    width: 100%;
  }

  .contact__info-panel {
    padding: 24px 18px;
    border-radius: 22px;
    margin-bottom: 26px;
  }

  .contact__info-eyebrow {
    font-size: 10px;
    letter-spacing: 2.2px;
  }

  .contact__info-panel h3 {
    font-size: 28px;
  }

  .contact__info-panel>p {
    font-size: 16px;
    line-height: 1.7;
  }

  .contact__widget__item {
    padding: 14px 14px;
    border-radius: 18px;
  }

  .contact__widget__item__icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 16px;
  }

  .contact__submit {
    width: 100%;
    max-width: 280px;
  }
}

.entryarea input,
.entryarea textarea,
.entryarea select {
  position: absolute;
  width: 100%;
  outline: none;
  font-size: 1.5em;
  padding: 0 15px;
  line-height: 50px;
  border-radius: 10px;
  border: 1px solid #f0ffff;
  background: transparent;
  transition: 0.1s ease;
  z-index: 1111;
}

.entryarea .labelline {
  position: absolute;
  font-size: 1.2em;
  color: #f0ffff;
  padding: 0 5px;
  margin: 0 20px;
  background-color: #0e0c24;
  transition: 0.2s ease;
}

.entryarea input:focus,
.entryarea input:valid {
  color: #66ff00;
  border: 1px solid #66ff00;
}

.entryarea select:focus,
.entryarea select:valid {
  color: #66ff00;
  border: 1px solid #66ff00;
}

.entryarea textarea:focus,
.entryarea textarea:valid {
  color: #66ff00;
  border: 1px solid #66ff00;
}

.entryarea select:focus,
.entryarea select:valid {
  color: #66ff00;
  border: 1px solid #66ff00;
}

.entryarea input:focus+.labelline,
.entryarea input:valid+.labelline {
  color: #66ff00;
  height: 30px;
  line-height: 30px;
  padding: 0 12px;
  transform: translate(-15px, -16px) scale(0.88);
  z-index: 1111;
}

.entryarea textarea:focus+.labelline,
.entryarea textarea:valid+.labelline {
  color: #66ff00;
  height: 30px;
  line-height: 30px;
  padding: 0 12px;
  transform: translate(-15px, -16px) scale(0.88);
  z-index: 1111;
}

.entryarea select:focus+.labelline,
.entryarea select:valid+.labelline {
  color: #66ff00;
  height: 30px;
  line-height: 30px;
  padding: 0 12px;
  transform: translate(-15px, -16px) scale(0.88);
  z-index: 1111;
}

.entryarea textarea:not(:focus):not(:valid)+.labelline {
  color: #f0ffff;
  height: 50px;
  line-height: 50px;
  padding: 0 5px;
  transform: translate(0, 0) scale(1);
  z-index: 1;
}

.entryarea select:not(:focus):not(:valid)+.labelline {
  color: #f0ffff;
  height: 50px;
  line-height: 50px;
  padding: 0 5px;
  transform: translate(0, 0) scale(1);
  z-index: 1;
}


/*--------------------------------- Responsive Media Quaries -----------------------------*/
@media only screen and (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}

/* Medium Device = 1200px */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header__nav__menu {
    margin-right: 25px;
  }

  .header__nav__menu ul li {
    margin-right: 25px;
  }

  .header__nav__social {
    padding-left: 25px;
  }

  .hero__slider.owl-carousel .owl-dots {
    max-width: 930px !important;
  }
}

/* Tablet Device = 768px */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero__slider.owl-carousel .owl-dots {
    max-width: 690px !important;
  }

  .services__title {
    margin-bottom: 50px;
  }

  .slicknav_menu {
    background: transparent;
    padding: 0;
    display: block;
  }

  .slicknav_nav ul {
    margin: 0;
    padding: 10px 30px;
  }

  .slicknav_nav .slicknav_row,
  .slicknav_nav a {
    padding: 7px 0;
    margin: 0;
    color: #ffffff;
    font-weight: 600;
  }

  .slicknav_nav .slicknav_row:hover {
    border-radius: 0;
    background: transparent;
    color: #111111;
  }

  .slicknav_nav a:hover {
    border-radius: 0;
    background: transparent;
    color: #111111;
  }

  .slicknav_nav {
    background: #222222;
  }

  .slicknav_btn {
    position: absolute;
    right: 10px;
    top: 26px;
    background: #00bfe7;
  }

  .header .container {
    position: relative;
  }

  .header__nav__option {
    display: none;
  }
}

/* Wide Mobile = 480px */
@media only screen and (max-width: 767px) {
  .services__title {
    margin-bottom: 50px;
  }

  .slicknav_menu {
    background: transparent;
    padding: 0;
    display: block;
  }

  .slicknav_nav ul {
    margin: 0;
    padding: 10px 30px;
  }

  .slicknav_nav .slicknav_row,
  .slicknav_nav a {
    padding: 7px 0;
    margin: 0;
    color: #ffffff;
    font-weight: 600;
  }

  .slicknav_nav .slicknav_row:hover {
    border-radius: 0;
    background: transparent;
    color: #111111;
  }

  .slicknav_nav a:hover {
    border-radius: 0;
    background: transparent;
    color: #111111;
  }

  .slicknav_nav {
    background: #222222;
  }

  .slicknav_btn {
    position: absolute;
    right: 10px;
    top: 26px;
    background: #00bfe7;
  }

  .header .container {
    position: relative;
  }

  .header__nav__option {
    display: none;
  }

  .brand-title {
    font-size: 32px;
  }

  .hero__text h2 {
    font-size: 40px;
    line-height: 40px;
  }

  .footer__top__social {
    text-align: left;
    padding-top: 30px;
  }


  .input__list {
    margin-right: 0;
  }

  .input__list input {
    width: 100%;
    margin-right: 0;
  }

  .contact__map {
    margin-bottom: 40px;
  }

  .blog__details__quote {
    padding: 30px 45px 35px 35px;
  }
}

/* Small Device = 320px */
@media only screen and (max-width: 479px) {
  .header__logo {
    max-width: none;
  }

  .brand-title {
    font-size: 26px;
  }

  .hero__text h2 {
    font-size: 30px;
    line-height: 40px;
  }

  .grid-sizer {
    width: 100%;
  }

  .blog__details__quote {
    padding: 30px 40px 35px 35px;
  }

  .pagination__option .arrow__pagination.left__arrow {
    margin-right: 15px;
  }

  .pagination__option .arrow__pagination.right__arrow {
    margin-left: 10px;
  }
}
