@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");

:root {
  --body: #fff;
  --black: #000;
  --white: #fff;
  --theme: #E32682;
  --header: #000D44;
  --text: #788094;
  --border: #CAD2D2;
  --bg: #000D44;
  --box-shadow: 0px 1px 14px 0px rgba(0, 0, 0, 0.13);
}

.theme-btn {
  position: relative;
  z-index: 2;
  overflow: hidden;
  vertical-align: middle;
  display: inline-block;
  border: none;
  text-transform: uppercase;
  text-align: center;
  border-radius: 50px;
  background: var(--theme);
  font-family: "DM Sans", sans-serif;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  padding: 20px 35px;
}

.theme-btn i {
  margin-left: 10px;
  transition: all 0.4s ease-in-out;
  color: var(--white);
}

.theme-btn::before {
  content: "";
  position: absolute;
  height: 100%;
  bottom: 0;
  left: 0;
  width: 0;
  background-color: var(--header);
  z-index: -1;
  transition: all 0.4s ease-out;
  border-radius: inherit;
}

.theme-btn:hover {
  color: var(--white);
  box-shadow: none;
}

.theme-btn:hover::before {
  width: 100%;
}

/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */
body {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: var(--text);
  background-color: var(--white);
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

button {
  border: none;
  background-color: transparent;
  padding: 0;
}

input:focus {
  color: var(--white);
  outline: none;
}

input {
  color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Bricolage Grotesque", sans-serif;
  margin: 0px;
  padding: 0;
  color: var(--header);
  transition: all 0.4s ease-in-out;
}

h1 {
  font-size: 80px;
  font-weight: 500;
  line-height: 105%;
}

@media (max-width: 1899px) {
  h1 {
    font-size: 78px;
  }
}

@media (max-width: 1600px) {
  h1 {
    font-size: 70px;
  }
}

@media (max-width: 1399px) {
  h1 {
    font-size: 60px;
    line-height: 110%;
  }
}

@media (max-width: 1199px) {
  h1 {
    font-size: 55px;
  }
}

@media (max-width: 991px) {
  h1 {
    font-size: 60px;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 55px;
  }
}

@media (max-width: 575px) {
  h1 {
    font-size: 43px;
  }
}

@media (max-width: 470px) {
  h1 {
    font-size: 36px;
  }
}

h2 {
  font-size: 48px;
  font-weight: 600;
  line-height: 112%;
}

@media (max-width: 1399px) {
  h2 {
    font-size: 45px;
  }
}

@media (max-width: 1199px) {
  h2 {
    font-size: 42px;
  }
}

@media (max-width: 991px) {
  h2 {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  h2 {
    font-size: 38px;
  }
}

@media (max-width: 575px) {
  h2 {
    font-size: 32px;
  }
}

h3 {
  font-size: 30px;
  font-weight: 600;
  line-height: 133%;
}

@media (max-width: 1899px) {
  h3 {
    font-size: 26px;
  }
}

@media (max-width: 1600px) {
  h3 {
    font-size: 23px;
  }
}

@media (max-width: 1399px) {
  h3 {
    font-size: 22px;
  }
}

@media (max-width: 1199px) {
  h3 {
    font-size: 20px;
  }
}

h4 {
  font-size: 20px;
  font-weight: 600;
  line-height: 150%;
}

@media (max-width: 1199px) {
  h4 {
    font-size: 20px;
  }
}

h5 {
  font-size: 18px;
  font-weight: 500;
  line-height: 167%;
}

h6 {
  font-size: 14px;
  font-weight: 600;
}

a {
  text-decoration: none;
  outline: none !important;
  cursor: pointer;
  color: var(--header);
  transition: all 0.4s ease-in-out;
}

p {
  margin: 0px;
  transition: all 0.4s ease-in-out;
}

span {
  margin: 0px;
}

.about-wrapper .about-image-items .about-image1 {
  padding-left: 15px;
  position: relative;
}

@media (max-width: 575px) {
  .about-wrapper .about-image-items .about-image1 {
    padding-left: 0;
  }
}

.about-wrapper .about-image-items .about-image1::before {
  position: absolute;
  width: calc(100% - 20px);
  height: 100%;
  top: 20px;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  border: 2px solid var(--theme);
  border-radius: 100px 0px 100px 100px;
}

@media (max-width: 575px) {
  .about-wrapper .about-image-items .about-image1::before {
    display: none;
  }
}

.about-wrapper .about-image-items .about-image1 img {
  width: 100%;
  height: 100%;
  border-radius: 100px 0px 100px 100px;
}

.about-wrapper .about-image-items .about-counters {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
}

@media (max-width: 575px) {
  .about-wrapper .about-image-items .about-counters {
    display: none;
  }
}

.about-wrapper .about-image-items .about-counters h2 {
  font-size: 65px;
  font-weight: 600;
  color: var(--theme);
}

.about-wrapper .about-image-items .about-counters p {
  color: #000D44;
  font-size: 20px;
  font-weight: 600;
  margin-left: 10px;
}

.about-wrapper .about-image-items .about-image-2 img {
  width: 100%;
  height: 100%;
  border-radius: 100px 100px 100px 0px;
}

.about-wrapper .about-image-items .about-image-3 {
  margin-top: 30px;
}

.about-wrapper .about-image-items .about-image-3 img {
  width: 100%;
  height: 100%;
  border-radius: 100px 0px 100px 100px;
}

.about-wrapper .about-content {
  margin-left: 40px;
}

@media (max-width: 1399px) {
  .about-wrapper .about-content {
    margin-left: 0;
  }
}

.about-wrapper .about-content .about-text {
  margin-top: 25px;
  color: var(--text);
}

.about-wrapper .about-content .icon-items-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}

@media (max-width: 1199px) {
  .about-wrapper .about-content .icon-items-area {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.about-wrapper .about-content .icon-items-area .icon-items {
  display: flex;
  align-items: center;
  gap: 20px;
}

.about-wrapper .about-content .icon-items-area .icon-items .icon {
  background-color: rgb(241, 236, 255);
  width: 64px;
  height: 64px;
  text-align: center;
  line-height: 64px;
  border-radius: 10px;
}

.about-wrapper .about-content .icon-items-area .icon-items .icon img {
  transition: all 0.4s ease-in-out;
  display: inline-block;
}

.about-wrapper .about-content .icon-items-area .icon-items h4 {
  max-width: 177px;
}

.about-wrapper .about-content .icon-items-area .icon-items:hover .icon img {
  transform: scaleX(-1) !important;
}

.about-wrapper .about-content .about-text-2 {
  font-weight: 500;
  color: var(--header);
  margin-top: 30px;
}

.about-wrapper .about-content .about-bottom-area {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 30px;
}

@media (max-width: 1199px) {
  .about-wrapper .about-content .about-bottom-area {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.about-wrapper .about-content .about-bottom-area .client-phn-area {
  display: flex;
  align-items: center;
  gap: 40px;
}

.about-wrapper .about-content .about-bottom-area .client-phn-area .client-image {
  position: relative;
}

.about-wrapper .about-content .about-bottom-area .client-phn-area .client-image .phone-icon {
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  background-color: var(--theme);
  border-radius: 50%;
  color: var(--white);
  border: 2px solid var(--white);
  position: absolute;
  top: 6px;
  right: -30px;
}

.about-wrapper .about-content .about-bottom-area .client-phn-area .client-content p {
  color: var(--text);
}

.about-wrapper .about-content .about-bottom-area .client-phn-area .client-content a {
  color: var(--header);
  font-size: 14px;
  font-weight: 700;
}

.about-wrapper-2 .top-area {
  margin-left: 300px;
}

@media (max-width: 1199px) {
  .about-wrapper-2 .top-area {
    margin-left: 0;
  }
}

.about-wrapper-2 .top-area h2 {
  font-size: 36px;
  font-weight: 600;
}

@media (max-width: 1199px) {
  .about-wrapper-2 .top-area h2 br {
    display: none;
  }
}

@media (max-width: 1199px) {
  .about-wrapper-2 .top-area h2 {
    font-size: 32px;
  }
}

@media (max-width: 575px) {
  .about-wrapper-2 .top-area h2 {
    font-size: 28px;
  }
}

@media (max-width: 470px) {
  .about-wrapper-2 .top-area h2 {
    font-size: 25px;
  }
}

.about-wrapper-2 .about-main-content {
  border-top: 1px solid rgb(216, 221, 225);
  padding-top: 60px;
  margin-top: 40px;
  border-bottom: 1px solid rgb(216, 221, 225);
  padding-bottom: 60px;
  position: relative;
}

.about-wrapper-2 .about-main-content::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 56%;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  content: "";
  background: #D8DDE1;
}

@media (max-width: 1399px) {
  .about-wrapper-2 .about-main-content::before {
    display: none;
  }
}

.about-wrapper-2 .about-main-content .frist-content .about-image {
  margin-top: 80px;
}

.about-wrapper-2 .about-main-content .middle-content .about-text {
  margin-left: 60px;
}

.about-wrapper-2 .about-main-content .middle-content .about-client-img-area {
  margin-top: 70px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.about-wrapper-2 .about-main-content .middle-content .about-client-img-area h3 {
  font-size: 24px;
}

.about-wrapper-2 .about-main-content .about-last-content .about-img {
  position: relative;
}

.about-wrapper-2 .about-main-content .about-last-content .about-img img {
  width: 100%;
  height: 100%;
}

.about-wrapper-2 .about-main-content .about-last-content .about-img .theme-btn {
  position: absolute;
  bottom: 4px;
  right: -6px;
  font-size: 13px;
  padding: 18px 30px;
}

@media (max-width: 1399px) {
  .about-wrapper-2 .about-main-content .about-last-content .about-img .theme-btn {
    padding: 18px 22px;
  }
}

@media (max-width: 991px) {
  .about-wrapper-2 .about-main-content .about-last-content .about-img .theme-btn {
    position: static;
    margin-top: 30px;
  }
}

.about-wrapper-2 .about-main-content .about-last-content p {
  margin-top: 20px;
}

.about-creativity-wrapper .about-creativity-left-items {
  margin-right: 20px;
}

@media (max-width: 1199px) {
  .about-creativity-wrapper .about-creativity-left-items {
    margin-right: 0;
  }
}

.about-creativity-wrapper .about-creativity-left-items .creativity-text {
  margin-top: 25px;
}

.about-creativity-wrapper .about-creativity-left-items .theme-btn {
  margin-top: 30px;
}

.about-creativity-wrapper .about-creativity-left-items .list-items {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-top: 40px;
  border-top: 1px solid rgb(216, 221, 225);
  padding-top: 30px;
}

@media (max-width: 1399px) {
  .about-creativity-wrapper .about-creativity-left-items .list-items {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.about-creativity-wrapper .about-creativity-left-items .list-items ul li {
  font-size: 16px;
  font-weight: 500;
  padding-left: 20px;
  color: var(--header);
  font-family: "Bricolage Grotesque", sans-serif;
  position: relative;
}

.about-creativity-wrapper .about-creativity-left-items .list-items ul li::before {
  width: 8px;
  height: 8px;
  content: "";
  background-color: var(--theme);
  border-radius: 100%;
  position: absolute;
  top: 10px;
  left: 0;
}

.about-creativity-wrapper .about-creativity-left-items .list-items ul li:not(:last-child) {
  margin-bottom: 5px;
}

.about-creativity-wrapper .about-creativity-right-items .thumb {
  position: relative;
}

.about-creativity-wrapper .about-creativity-right-items .thumb img {
  width: 100%;
  height: 100%;
}

.about-creativity-wrapper .about-creativity-right-items .thumb .sm-thumb {
  position: absolute;
  bottom: 10px;
  right: 0;
}

@media (max-width: 991px) {
  .about-creativity-wrapper .about-creativity-right-items .thumb .sm-thumb {
    display: none;
  }
}

.about-creativity-wrapper .about-creativity-right-items p {
  margin-top: 20px;
}

.achieve-success-wrapper .achieve-left-thumb {
  position: relative;
}

.achieve-success-wrapper .achieve-left-thumb img {
  width: 100%;
  height: 100%;
}

.achieve-success-wrapper .achieve-left-thumb .sm-thumb {
  position: absolute;
  bottom: -80px;
  right: 0;
}

@media (max-width: 767px) {
  .achieve-success-wrapper .achieve-left-thumb .sm-thumb {
    max-width: 200px;
    display: none;
  }
}

.achieve-success-wrapper .achieve-right-content {
  margin-left: 40px;
}

@media (max-width: 1199px) {
  .achieve-success-wrapper .achieve-right-content {
    margin-left: 0;
  }
}

.achieve-success-wrapper .achieve-right-content .achieve-text {
  margin-top: 25px;
}

.achieve-success-wrapper .achieve-right-content ul {
  margin-top: 30px;
}

.achieve-success-wrapper .achieve-right-content ul li {
  display: flex;
  align-items: center;
  gap: 25px;
}

@media (max-width: 767px) {
  .achieve-success-wrapper .achieve-right-content ul li {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.achieve-success-wrapper .achieve-right-content ul li .icon img {
  transition: all 0.4s ease-in-out;
  display: inline-block;
}

.achieve-success-wrapper .achieve-right-content ul li .content {
  max-width: 404px;
}

.achieve-success-wrapper .achieve-right-content ul li:not(:last-child) {
  margin-bottom: 20px;
}

.achieve-success-wrapper .achieve-right-content h3 {
  font-size: 24px;
  margin-top: 25px;
}

@media (max-width: 767px) {
  .achieve-success-wrapper .achieve-right-content h3 {
    font-size: 20px;
  }
}

.achieve-success-wrapper .achieve-right-content .theme-btn {
  margin-top: 30px;
}

@-webkit-keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}

@keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}

@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes rounded {
  50% {
    transform: rotate(15deg);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@-webkit-keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

@keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

@-webkit-keyframes letters-loading {

  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

@keyframes letters-loading {

  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

@keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes tpswing {
  0% {
    -webkit-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    transform: rotate(20deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes width {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

@-webkit-keyframes width {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

@-webkit-keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes loaderpulse {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.2);
  }
}

@keyframes rounded {
  50% {
    transform: rotate(20deg);
  }
}

@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}

.float-bob-y {
  -webkit-animation-name: float-bob-y;
  animation-name: float-bob-y;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}

@keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}

.float-bob-x {
  -webkit-animation-name: float-bob-x;
  animation-name: float-bob-x;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(30px);
  }

  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}

@keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }

  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}

@keyframes bounce-x {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  50% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }

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

.bounce-x {
  -webkit-animation: bounce-x 7s infinite linear;
  animation: bounce-x 7s infinite linear;
}

@keyframes criss-cross-left {
  0% {
    left: -20px;
  }

  50% {
    left: 50%;
    width: 20px;
    height: 20px;
  }

  100% {
    left: 50%;
    width: 375px;
    height: 375px;
  }
}

@keyframes criss-cross-right {
  0% {
    right: -20px;
  }

  50% {
    right: 50%;
    width: 20px;
    height: 20px;
  }

  100% {
    right: 50%;
    width: 375px;
    height: 375px;
  }
}

@keyframes rotated2 {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(-360deg);
  }
}

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

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

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

@keyframes zoom {
  0% {
    transform: scale(0.5);
  }

  50% {
    transform: scale(1);
  }

  100% {
    transform: scale(0.5);
  }
}

@keyframes translateY2 {
  0% {
    -webkit-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -o-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  100% {
    -webkit-transform: translateY(20px);
    -moz-transform: translateY(20px);
    -ms-transform: translateY(20px);
    -o-transform: translateY(20px);
    transform: translateY(20px);
  }
}

@keyframes translateX2 {
  0% {
    -webkit-transform: translateX(-30px);
    -moz-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    -o-transform: translateX(-30px);
    transform: translateX(-30px);
  }

  100% {
    -webkit-transform: translatXY(20px);
    -moz-transform: translateX(20px);
    -ms-transform: translateX(20px);
    -o-transform: translateX(20px);
    transform: translateX(20px);
  }
}

@keyframes moving {
  0% {
    transform: translatey(0px);
  }

  20% {
    transform: translateX(-50px);
  }

  50% {
    transform: translatey(-40px);
  }

  100% {
    transform: translatey(0px);
  }
}

/*img-animation**********************/
.img-custom-anim-right {
  animation: img-anim-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-right {
  0% {
    transform: translateX(5%);
    clip-path: inset(0 0 0 100%);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

.img-custom-anim-left {
  animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-left {
  0% {
    transform: translateX(-5%);
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

.img-custom-anim-top {
  animation: img-anim-top 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
}

@keyframes img-anim-top {
  0% {
    transform: translateY(-5%);
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes shine {
  0% {
    left: -100%;
  }

  50% {
    left: 100%;
  }

  100% {
    left: 100%;
  }
}

.animation-infinite {
  animation: ShapeAnim 80s linear infinite;
  height: 30px;
  width: 100%;
  background-repeat: repeat;
  overflow: hidden;
}

.img-custom-anim-bottom {
  animation: img-anim-bottom 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
}

@keyframes img-anim-bottom {
  0% {
    transform: translateY(5%);
    clip-path: inset(100% 0 0 0);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

@keyframes sparkle {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }

  50% {
    opacity: 1;
    transform: scale(1.5);
  }

  100% {
    opacity: 0;
    transform: scale(0.5);
  }
}

@keyframes borderAnim {
  0% {
    width: 0;
  }

  100% {
    width: 44px;
  }
}

@keyframes dance {
  0% {
    -webkit-transform: scale(0.8);
  }

  100% {
    -webkit-transform: scale(1);
  }
}

@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

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

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

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

  100% {
    transform: translateY(-60%);
  }
}

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

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

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.img_left_animation {
  animation: left-animation 2000ms forwards cubic-bezier(0.4, 0.98, 0.52, 0.99);
  opacity: 0;
}

@keyframes left-animation {
  0% {
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }

  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

.img_right_animation {
  animation: right-animation 2000ms forwards cubic-bezier(0.4, 0.98, 0.52, 0.99);
  opacity: 0;
}

@keyframes right-animation {
  0% {
    clip-path: inset(0 0 0 100%);
    opacity: 0;
  }

  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

.img_top_animation {
  animation: top-animation 2000ms forwards cubic-bezier(0.4, 0.98, 0.52, 0.99);
  opacity: 0;
}

@keyframes top-animation {
  0% {
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }

  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

.img_bottom_animation {
  animation: bottom-animation 2000ms forwards cubic-bezier(0.4, 0.98, 0.52, 0.99);
  opacity: 0;
}

@keyframes bottom-animation {
  0% {
    clip-path: inset(100% 0 0 0);
    opacity: 0;
  }

  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

.brand-box {
  height: 150px;
  line-height: 150px;
  border: 1px solid rgb(216, 221, 225);
  text-align: center;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.brand-box .brand-img-1 {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-box .brand-img-1 img {
  /* opacity: 0.4; */
  transition: all 0.6s ease;
  transform: translateY(0);
}

.brand-box .brand-img-1:last-child img {
  /* transform: translateY(-350%);
  opacity: 0; */
}

.brand-box:hover .brand-img-1:first-child img {
  transform: translateY(100%);
  opacity: 0;
}

.brand-box:hover .brand-img-1:last-child img {
  transform: translateY(0);
  opacity: 1;
}

.brand-section .section-title {
  margin-bottom: 60px;
}

.brand-section-2 .brand-top-text {
  margin-bottom: 30px;
}

.brand-section-2 .brand-top-text p b {
  color: var(--theme);
}

.location-left-content .location-text {
  margin-top: 20px;
}

.location-left-content ul {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 25px;
}

@media (max-width: 991px) {
  .location-left-content ul {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.location-left-content ul li img {
  margin-right: 10px;
}

.location-left-content .location-line {
  margin-top: 15px;
}

.location-left-content .location-line h4 img {
  margin-right: 10px;
}

.location-left-content .theme-btn {
  margin-top: 30px;
}

.map-section-contact {
  margin-left: 40px;
}

@media (max-width: 1199px) {
  .map-section-contact {
    margin-left: 0;
  }
}

.map-section-contact .google-map iframe {
  width: 744px;
  height: 478px;
  border-radius: 10px;
}

.location-left-content-inner .location-text {
  margin-top: 20px;
}

@media (max-width: 1399px) {
  .location-left-content-inner br {
    display: none;
  }
}

.location-left-content-inner .contact-list {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-top: 20px;
}

@media (max-width: 1199px) {
  .location-left-content-inner .contact-list {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.location-left-content-inner .contact-list ul li span {
  font-size: 16px;
  font-weight: 500;
  color: var(--header);
}

.location-left-content-inner .contact-list ul li .social-icon {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
}

.location-left-content-inner .contact-list ul li .social-icon a {
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  display: inline-block;
  border-radius: 50%;
  border: 1px solid rgb(216, 221, 225);
  color: var(--header);
}

.location-left-content-inner .contact-list ul li .social-icon a:hover {
  background-color: var(--theme);
  color: var(--white);
}

.location-left-content-inner .contact-list ul li p a {
  color: var(--text);
}

.location-left-content-inner .contact-list ul li p a:hover {
  color: var(--theme);
}

.location-left-content-inner .contact-list ul li:not(:last-child) {
  margin-bottom: 20px;
}

.map-section-contact-inner {
  margin-left: 20px;
}

@media (max-width: 1199px) {
  .map-section-contact-inner {
    margin-left: 0;
  }
}

.map-section-contact-inner .google-map iframe {
  width: 100%;
  height: 478px;
  border-radius: 10px;
}

.contact-form-box {
  border-radius: 30px;
  background: rgb(245, 248, 253);
  padding: 35px;
  border: 1px solid rgb(216, 221, 225);
}

@media (max-width: 767px) {
  .contact-form-box {
    padding: 28px;
  }
}

.contact-form-box h3 {
  margin-bottom: 30px;
  text-align: center;
  font-size: 36px;
}

.contact-form-box .form-clt {
  position: relative;
}

.contact-form-box .form-clt .icon {
  position: absolute;
  right: 25px;
  top: 16px;
}

.contact-form-box .form-clt input,
.contact-form-box .form-clt textarea {
  line-height: 1;
  padding: 20px 20px;
  width: 100%;
  text-transform: capitalize;
  color: var(--header);
  border-radius: 100px;
  border: 1px solid rgb(216, 221, 225);
  background: var(--white);
}

.contact-form-box .form-clt input::placeholder,
.contact-form-box .form-clt textarea::placeholder {
  color: var(--header);
}

.contact-form-box .form-clt .single-select {
  line-height: 1;
  height: initial;
  padding: 20px 20px;
  width: 100%;
  text-transform: capitalize;
  color: var(--header);
  border-radius: 100px;
  border: 1px solid rgb(216, 221, 225);
  background: var(--white);
}

.contact-form-box .form-clt .single-select::after {
  right: 25px;
}

.contact-form-box .form-clt .single-select .list {
  width: 100%;
}

.contact-form-box .form-clt textarea {
  padding-bottom: 60px;
  border-radius: 30px;
}

.contact-form-box .contact-button {
  text-align: center;
}

.cta-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1199px) {
  .cta-wrapper {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    text-align: center;
  }
}

.cta-wrapper .title {
  font-size: 36px;
  font-weight: 600;
  color: var(--white);
}

@media (max-width: 1199px) {
  .cta-wrapper .title {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .cta-wrapper .title {
    font-size: 28px;
  }
}

@media (max-width: 575px) {
  .cta-wrapper .title {
    font-size: 26px;
  }
}

.cta-wrapper form {
  position: relative;
  max-width: 550px;
  width: 100%;
}

.cta-wrapper form input {
  width: 100%;
  outline: none;
  border: none;
  background-color: var(--white);
  color: var(--text);
  line-height: 1;
  padding: 18px 24px;
  border-radius: 40px;
}

.cta-wrapper form input::placeholder {
  color: var(--text);
}

.cta-wrapper form .theme-btn {
  position: absolute;
  top: 4px;
  right: 4px;
  bottom: 4px;
}

.cta-wrapper .theme-btn {
  padding: 16px 22px;
}

.cta-section {
  padding: 80px 0;
}

.cta-countdown-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .cta-countdown-wrapper {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    text-align: center;
  }
}

.cta-countdown-wrapper .cooming-soon-items .coming-soon-time {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  justify-content: center;
}

.cta-countdown-wrapper .cooming-soon-items .coming-soon-time .timer-content {
  text-align: center;
  width: 80px;
  height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--theme);
  color: var(--white);
  border-radius: 10px;
  position: relative;
}

.cta-countdown-wrapper .cooming-soon-items .coming-soon-time .timer-content h2 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  color: var(--white);
}

.cta-countdown-wrapper .cooming-soon-items .coming-soon-time .timer-content h2 span {
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  text-transform: uppercase;
}

@media (max-width: 1199px) {
  .cta-countdown-wrapper .cooming-soon-items .coming-soon-time .timer-content h2 span {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .cta-countdown-wrapper .cooming-soon-items .coming-soon-time .timer-content h2 span {
    font-size: 14px;
  }
}

.cta-video-section-2 {
  position: relative;
  z-index: 9;
}

.cta-video-section-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(97.54deg, rgba(25, 0, 177, 0.81) 14.32%, rgba(227, 38, 130, 0.405) 153.15%);
  z-index: -1;
}

.cta-video-section-2 .video-btn {
  width: 100px;
  height: 100px;
  line-height: 100px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.25);
  color: var(--theme);
  text-align: center;
  border-radius: 100%;
  font-size: 20px;
  z-index: 9;
  position: absolute;
  top: 120px;
  right: 315px;
}

@media (max-width: 1199px) {
  .cta-video-section-2 .video-btn {
    position: relative;
    top: initial;
    right: initial;
  }
}

.cta-video-section-2 .video-btn::before {
  width: 60px;
  height: 60px;
  line-height: 60px;
  content: "";
  right: 0;
  bottom: 0;
  background-color: var(--white);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: -1;
  transition: all 0.4s ease-in-out;
}

.cta-video-section-2 .video-btn:hover::before {
  background-color: var(--theme);
}

.cta-video-section-2 .video-btn:hover i {
  color: var(--white);
}

.cta-video-content-2 {
  margin-top: 208px;
}

@media (max-width: 1199px) {
  .cta-video-content-2 {
    margin-top: 40px;
  }
}

.cta-video-content-2 .cta-text {
  color: var(--white);
  margin-top: 20px;
}

.cta-video-content-2 .theme-btn {
  margin-top: 40px;
}

.event-box-wrapper-2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgb(216, 221, 225);
  padding: 30px;
  border-radius: 30px;
  margin-top: 30px;
}

@media (max-width: 1199px) {
  .event-box-wrapper-2 {
    flex-wrap: wrap;
    gap: 30px;
  }
}

@media (max-width: 991px) {
  .event-box-wrapper-2 {
    display: block;
    padding: 20px;
  }
}

.event-box-wrapper-2 .event-content-area {
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 991px) {
  .event-box-wrapper-2 .event-content-area {
    display: block;
  }
}

.event-box-wrapper-2 .event-content-area .event-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

@media (max-width: 991px) {
  .event-box-wrapper-2 .event-content-area .event-thumb {
    height: 450px;
  }
}

.event-box-wrapper-2 .event-content-area .event-thumb img {
  border-radius: 20px;
  position: relative;
  display: block;
  object-fit: cover;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

@media (max-width: 991px) {
  .event-box-wrapper-2 .event-content-area .event-thumb img {
    width: 100%;
    height: 100%;
  }
}

.event-box-wrapper-2 .event-content-area .event-thumb img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  -webkit-transform: translateX(50%) scaleX(2);
  transform: translate(50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.event-box-wrapper-2 .event-content-area .event-content {
  max-width: 437px;
}

@media (max-width: 991px) {
  .event-box-wrapper-2 .event-content-area .event-content {
    margin: 25px 0;
  }
}

.event-box-wrapper-2 .event-content-area .event-content .date-item i {
  color: var(--theme);
}

.event-box-wrapper-2 .event-content-area .event-content h3 {
  margin-top: 10px;
}

.event-box-wrapper-2 .event-content-area .event-content h3 a:hover {
  color: var(--theme);
}

.event-box-wrapper-2 .event-content-area .event-content p {
  margin-top: 6px;
}

.event-box-wrapper-2 .event-content-area .event-content .theme-btn {
  margin-top: 20px;
}

.event-box-wrapper-2 .event-content-area:hover .event-thumb img:first-child {
  -webkit-transform: translateX(0) scaleX(1);
  transform: translate(0) scaleX(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}

.event-box-wrapper-2 .event-content-area:hover .event-thumb img:nth-child(2) {
  -webkit-transform: translateX(-50%) scaleX(2);
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.event-box-wrapper-2 .line {
  background-color: rgb(216, 221, 225);
  width: 1px;
  height: 280px;
}

@media (max-width: 1399px) {
  .event-box-wrapper-2 .line {
    display: none;
  }
}

.event-box-wrapper-2 .client-info-area .client-info {
  margin-top: 25px;
}

.event-box-wrapper-2 .client-info-area .client-info li {
  display: flex;
  gap: 12px;
}

.event-box-wrapper-2 .client-info-area .client-info li .content p {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  color: var(--header);
  max-width: 271px;
}

.event-box-wrapper-2 .client-info-area .client-info li .content p span {
  color: var(--text);
  font-weight: 400;
}

.event-box-wrapper-2 .client-info-area .client-info li:not(:last-child) {
  margin-bottom: 8px;
}

.event-venue-section-2 {
  position: relative;
  z-index: 9;
}

.event-venue-section-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 13, 68, 0.8);
  z-index: -1;
}

.event-venue-section-2::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: var(--white);
  z-index: -1;
  top: 82%;
}

.event-venue-section-2 .event-navs {
  background-color: var(--white);
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.1);
  border-radius: 1000px;
  padding: 20px;
  max-width: 895px;
  margin: 100px auto 30px;
}

@media (max-width: 991px) {
  .event-venue-section-2 .event-navs {
    border-radius: 10px;
  }
}

.event-venue-section-2 .nav {
  border: 1px solid #D8DDE1;
  border-radius: 100px;
  padding: 0;
}

@media (max-width: 991px) {
  .event-venue-section-2 .nav {
    border-radius: 10px;
  }
}

@media (max-width: 575px) {
  .event-venue-section-2 .nav {
    display: block;
  }
}

.event-venue-section-2 .nav .nav-item .nav-link {
  height: 110px;
  padding: 0 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.event-venue-section-2 .nav .nav-item .nav-link .text-items {
  text-align: center;
}

.event-venue-section-2 .nav .nav-item .nav-link .text-items .text1 {
  display: block;
  font-size: 24px;
  font-weight: 600;
  color: var(--header);
  font-family: "Bricolage Grotesque", sans-serif;
}

.event-venue-section-2 .nav .nav-item .nav-link .text-items .text2 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  display: inline-block;
  margin-top: 10px;
}

.event-venue-section-2 .nav .nav-item .nav-link.active {
  background-color: var(--theme);
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
}

@media (max-width: 991px) {
  .event-venue-section-2 .nav .nav-item .nav-link.active {
    border-radius: 10px;
  }
}

.event-venue-section-2 .nav .nav-item .nav-link.active .text-items .text1 {
  color: var(--white);
}

.event-venue-section-2 .nav .nav-item .nav-link.active .text-items .text2 {
  color: var(--white);
}

.event-venue-section-2 .nav .nav-item:last-child .nav-link.active {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
}

@media (max-width: 991px) {
  .event-venue-section-2 .nav .nav-item:last-child .nav-link.active {
    border-radius: 10px;
  }
}

.event-venue-wrapper-2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .event-venue-wrapper-2 {
    flex-wrap: wrap;
    gap: 30px;
  }

  .event-venue-wrapper-2 .section-title {
    margin-bottom: 0;
  }
}

.event-venue-wrapper-2 .event-right-items li {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(9.5px);
  border-radius: 100px;
  padding: 8px;
  padding-right: 47px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.event-venue-wrapper-2 .event-right-items li .icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  background-color: var(--theme);
  color: var(--white);
  text-align: center;
  border-radius: 50%;
}

.event-venue-wrapper-2 .event-right-items li .content h4 {
  color: var(--white);
}

.event-venue-wrapper-2 .event-right-items li .content p {
  color: var(--white);
}

.event-venue-wrapper-2 .event-right-items li:not(:last-child) {
  margin-bottom: 20px;
}

.event-signle-list-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #D8DDE1;
  padding: 40px 0;
}

@media (max-width: 1199px) {
  .event-signle-list-items {
    padding: 30px 0;
    flex-wrap: wrap;
    gap: 30px;
  }
}

.event-signle-list-items .event-left-items {
  display: flex;
  align-items: center;
  gap: 60px;
}

@media (max-width: 1399px) {
  .event-signle-list-items .event-left-items {
    gap: 30px;
  }
}

@media (max-width: 1199px) {
  .event-signle-list-items .event-left-items {
    flex-wrap: wrap;
  }
}

@media (max-width: 991px) {
  .event-signle-list-items .event-left-items {
    display: grid;
  }
}

.event-signle-list-items .event-left-items .date-text {
  display: flex;
  align-items: center;
  gap: 20px;
}

.event-signle-list-items .event-left-items .date-text h2 {
  font-size: 64px;
  font-weight: 700;
}

.event-signle-list-items .event-left-items .date-text span {
  font-size: 20px;
  font-weight: 600;
}

.event-signle-list-items .event-left-items .thumb {
  border-radius: 30px;
  max-width: 275px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.event-signle-list-items .event-left-items .thumb img {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  position: relative;
  display: block;
  object-fit: cover;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.event-signle-list-items .event-left-items .thumb img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  -webkit-transform: translateX(50%) scaleX(2);
  transform: translate(50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.event-signle-list-items .event-left-items .content h3 {
  font-size: 24px;
  font-weight: 600;
}

.event-signle-list-items .event-left-items .content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}

.event-signle-list-items .event-left-items .content h3 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}

.event-signle-list-items .event-left-items .content ul {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
  margin-bottom: 22px;
}

@media (max-width: 991px) {
  .event-signle-list-items .event-left-items .content ul {
    flex-wrap: wrap;
  }
}

.event-signle-list-items .event-left-items .content ul li {
  font-size: 14px;
  font-weight: 400;
  color: #000D44;
  display: flex;
  align-items: center;
  gap: 8px;
}

.event-signle-list-items .event-left-items:hover .thumb img:first-child {
  -webkit-transform: translateX(0) scaleX(1);
  transform: translate(0) scaleX(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}

.event-signle-list-items .event-left-items:hover .thumb img:nth-child(2) {
  -webkit-transform: translateX(-50%) scaleX(2);
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.event-signle-list-items .theme-btn {
  background-color: var(--header);
}

.event-signle-list-items .theme-btn::before {
  background-color: var(--theme);
}

.event-section-3 {
  background-color: #F5F7FA;
}

.event-section-3 .section-title-area {
  border-bottom: 1px solid #D8DDE1;
  padding-bottom: 60px;
  margin-bottom: 30px;
}

.event-section-3 .section-title-area .nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.event-section-3 .section-title-area .nav .nav-item .nav-link {
  display: inline-block;
  padding: 20px 30px;
  line-height: 1;
  background-color: var(--white);
  border-radius: 10px;
  color: #000D44;
  font-size: 20px;
  font-weight: 600;
  font-family: "Bricolage Grotesque", sans-serif;
}

.event-section-3 .section-title-area .nav .nav-item .nav-link.active {
  background-color: var(--theme);
  color: var(--white);
}

.event-details-wrapper .details-image {
  border-radius: 50px;
}

@media (max-width: 767px) {
  .event-details-wrapper .details-image .fix {
    border-radius: 50px;
    height: 400px;
  }
}

.event-details-wrapper .details-image img {
  width: 100%;
  height: 100%;
  border-radius: 50px;
  object-fit: cover;
}

.event-details-wrapper .details-content {
  margin-top: 30px;
}

.event-details-wrapper .details-content .info-list {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 20px;
}

@media (max-width: 1199px) {
  .event-details-wrapper .details-content .info-list {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.event-details-wrapper .details-content .info-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--header);
}

.event-details-wrapper .details-content .info-list li i {
  color: var(--theme);
}

.event-details-wrapper .details-content h2 {
  font-size: 36px;
  font-weight: 600;
}

@media (max-width: 1199px) {
  .event-details-wrapper .details-content h2 {
    font-size: 29px;
  }
}

@media (max-width: 767px) {
  .event-details-wrapper .details-content h2 {
    font-size: 27px;
  }
}

@media (max-width: 575px) {
  .event-details-wrapper .details-content h2 {
    font-size: 25px;
  }
}

.event-details-wrapper .details-content .event-list-items {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 40px;
}

@media (max-width: 1199px) {
  .event-details-wrapper .details-content .event-list-items {
    flex-wrap: wrap;
  }
}

.event-details-wrapper .details-content .event-list-items .thumb {
  max-width: 255px;
}

.event-details-wrapper .details-content .event-list-items .thumb img {
  width: 100%;
  height: 100%;
  border-radius: 30px;
}

.event-details-wrapper .details-content .event-list-items .list-items li {
  font-size: 18px;
  font-weight: 500;
  color: var(--header);
  position: relative;
  padding-left: 15px;
}

.event-details-wrapper .details-content .event-list-items .list-items li:not(:last-child) {
  margin-bottom: 5px;
}

.event-details-wrapper .details-content .event-list-items .list-items li::before {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 7px;
  background-color: var(--theme);
  transform: translateY(-50%);
}

.event-details-wrapper .details-content .details-image-2 img {
  width: 100%;
  height: 100%;
  border-radius: 30px;
}

.event-details-wrapper .details-content .details-button-info {
  padding: 40px 0;
  border-top: 1px solid #D8DDE1;
  border-bottom: 1px solid #D8DDE1;
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 1199px) {
  .event-details-wrapper .details-content .details-button-info {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.event-details-wrapper .details-content .details-button-info .client-infos {
  display: flex;
  align-items: center;
  gap: 16px;
}

.event-details-wrapper .details-content .details-button-info .client-infos .icon {
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--header);
  color: var(--white);
}

.event-details-wrapper .details-content .details-button-info .client-infos .cont h4 {
  font-size: 20px;
  font-weight: 600;
}

.event-details-wrapper .details-content .event-speaker-info-wrapper {
  margin-top: 60px;
}

@media (max-width: 991px) {
  .event-details-wrapper .details-content .event-speaker-info-wrapper .event-speaker-info-items {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }

  .event-details-wrapper .details-content .event-speaker-info-wrapper .event-speaker-info-items .speaker-header {
    flex-direction: column;
    gap: 20px;
  }

  .event-details-wrapper .details-content .event-speaker-info-wrapper .event-speaker-info-items .social-icons {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .event-details-wrapper .details-content .event-speaker-info-wrapper .event-speaker-info-items .speaker-image-area .image-circle {
    width: 140px;
    height: 140px;
  }
}

.event-details-wrapper .details-content .event-speaker-info-wrapper h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 25px;
}

@media (max-width: 1199px) {
  .event-details-wrapper .details-content .event-speaker-info-wrapper h2 {
    font-size: 29px;
  }
}

@media (max-width: 767px) {
  .event-details-wrapper .details-content .event-speaker-info-wrapper h2 {
    font-size: 27px;
  }
}

@media (max-width: 575px) {
  .event-details-wrapper .details-content .event-speaker-info-wrapper h2 {
    font-size: 25px;
  }
}

.event-details-wrapper .details-content .event-speaker-info-wrapper .event-speaker-info-items {
  background: #ffffff;
  border: 1px solid #D8DDE1;
  border-radius: 30px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
  transition: 0.3s;
}

.event-details-wrapper .details-content .event-speaker-info-wrapper .event-speaker-info-items .speaker-image-area {
  flex-shrink: 0;
}

.event-details-wrapper .details-content .event-speaker-info-wrapper .event-speaker-info-items .speaker-image-area .image-circle {
  width: 170px;
  height: 170px;
  background: #d8f0f3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.event-details-wrapper .details-content .event-speaker-info-wrapper .event-speaker-info-items .speaker-image-area .image-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.event-details-wrapper .details-content .event-speaker-info-wrapper .event-speaker-info-items .speaker-content {
  flex-grow: 1;
}

.event-details-wrapper .details-content .event-speaker-info-wrapper .event-speaker-info-items .speaker-content .speaker-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.event-details-wrapper .details-content .event-speaker-info-wrapper .event-speaker-info-items .speaker-content .speaker-header .name-info h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.event-details-wrapper .details-content .event-speaker-info-wrapper .event-speaker-info-items .speaker-content .speaker-header .name-info p {
  margin: 5px 0 0;
}

.event-details-wrapper .details-content .event-speaker-info-wrapper .event-speaker-info-items .speaker-content .speaker-header .social-icons {
  display: flex;
  gap: 10px;
}

.event-details-wrapper .details-content .event-speaker-info-wrapper .event-speaker-info-items .speaker-content .speaker-header .social-icons a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0px 1px 4px rgba(12, 12, 13, 0.1), 0px 1px 4px rgba(12, 12, 13, 0.05);
  color: var(--header);
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.event-details-wrapper .details-content .event-speaker-info-wrapper .event-speaker-info-items .speaker-content .speaker-header .social-icons a:hover {
  background-color: var(--theme);
  color: #ffffff;
}

.event-details-wrapper .details-content .event-speaker-info-wrapper .event-speaker-info-items .speaker-content .divider {
  border-top: 1px solid #D8DDE1;
  opacity: 1;
  margin: 20px 0;
}

.event-details-wrapper .details-content .event-speaker-info-wrapper .event-speaker-info-items .speaker-content .speaker-bio {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

.event-details-wrapper .event-details-info {
  background: #ffffff;
  border: 1px solid #D8DDE1;
  border-radius: 30px;
  padding: 40px;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  margin-top: 30px;
}

@media (max-width: 991px) {
  .event-details-wrapper .event-details-info {
    margin-top: 0;
  }
}

.event-details-wrapper .event-details-info h3 {
  font-size: 24px;
  margin-top: 0;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.event-details-wrapper .event-details-info h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 50px;
  height: 3px;
  background-color: var(--theme);
}

.event-details-wrapper .event-details-info .info-list .info-item {
  display: flex;
  padding: 15px 0;
  border-bottom: 1px solid #D8DDE1;
}

.event-details-wrapper .event-details-info .info-list .info-item.border-none {
  border: none;
}

.event-details-wrapper .event-details-info .info-list .info-item .label {
  font-weight: 500;
  color: var(--header);
  width: 100px;
  font-size: 16px;
  font-family: "Bricolage Grotesque", sans-serif;
}

.event-details-wrapper .event-details-info .info-list .info-item .value {
  font-size: 16px;
  font-family: "Bricolage Grotesque", sans-serif;
}

.event-details-wrapper .event-purchase-ticket-items {
  background: #ffffff;
  border: 1px solid #D8DDE1;
  border-radius: 30px;
  padding: 30px;
}

.event-details-wrapper .event-purchase-ticket-items h3 {
  font-size: 24px;
  margin-top: 0;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}

.event-details-wrapper .event-purchase-ticket-items h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 50px;
  height: 3px;
  background-color: var(--theme);
}

.event-details-wrapper .event-purchase-ticket-items .ticket-card {
  background-color: #F5F8FD;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
}

.event-details-wrapper .event-purchase-ticket-items .ticket-card .ticket-header {
  padding: 15px 20px;
  font-weight: bold;
  font-size: 16px;
  color: var(--header);
}

.event-details-wrapper .event-purchase-ticket-items .ticket-card .ticket-header .sub-text {
  font-weight: normal;
  font-size: 14px;
  color: var(--text);
}

.event-details-wrapper .event-purchase-ticket-items .ticket-card .ticket-body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px 20px;
}

.event-details-wrapper .event-purchase-ticket-items .ticket-card .ticket-body .column {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.event-details-wrapper .event-purchase-ticket-items .ticket-card .ticket-body .column .caption {
  font-size: 13px;
  color: #788094;
  margin-bottom: 10px;
}

.event-details-wrapper .event-purchase-ticket-items .ticket-card .ticket-body .column .amount {
  font-weight: bold;
  color: var(--header);
}

.event-details-wrapper .event-purchase-ticket-items .ticket-card .ticket-body .column .quantity-control {
  display: flex;
  align-items: center;
  border: 1px solid #D8DDE1;
  border-radius: 20px;
  background: #fff;
  padding: 2px 10px;
}

.event-details-wrapper .event-purchase-ticket-items .ticket-card .ticket-body .column .quantity-control button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
}

.event-details-wrapper .event-purchase-ticket-items .ticket-card .ticket-body .column .quantity-control input {
  width: 25px;
  text-align: center;
  border: none;
  font-weight: bold;
  color: var(--header);
  outline: none;
}

.event-details-wrapper .event-purchase-ticket-items .total-summary {
  background-color: #F5F8FD;
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 25px;
}

.event-details-wrapper .event-purchase-ticket-items .total-summary p {
  margin: 0;
  font-weight: bold;
  color: var(--header);
  margin-bottom: 10px;
}

.event-details-wrapper .event-purchase-ticket-items .total-summary hr {
  border: none;
  border-top: 1px solid #D8DDE1;
  margin: 10px 0;
}

.event-details-wrapper .event-purchase-ticket-items .total-summary h4 {
  margin: 0;
  color: var(--header);
  font-size: 18px;
}

.event-join-box-items {
  margin-top: 30px;
}

.event-join-box-items .icon {
  background-color: var(--theme);
  width: 64px;
  height: 64px;
  text-align: center;
  line-height: 64px;
  border-radius: 10px;
}

.event-join-box-items .icon img {
  transition: all 0.4s ease-in-out;
  display: inline-block;
}

.event-join-box-items h3 {
  color: var(--white);
  margin-top: 30px;
}

.event-join-box-items p {
  color: var(--white);
  margin-top: 10px;
}

.event-join-box-items:hover .icon img {
  transform: scaleX(-1) !important;
}

.faq-wrapper-2 .faq-left-content {
  margin-right: 30px;
}

@media (max-width: 1199px) {
  .faq-wrapper-2 .faq-left-content {
    margin-right: 0;
  }
}

.faq-wrapper-2 .faq-left-content .faq-page-items {
  margin-top: 60px;
}

@media (max-width: 767px) {
  .faq-wrapper-2 .faq-left-content .faq-page-items {
    margin-top: 30px;
  }
}

.faq-wrapper-2 .faq-left-content .faq-page-items .accordion-box {
  position: relative;
  border-bottom: 1px solid rgb(216, 221, 225);
  padding-bottom: 10px;
}

.faq-wrapper-2 .faq-left-content .faq-page-items .accordion-box .block {
  position: relative;
  background-color: transparent;
  line-height: 1;
  border-top: 1px solid rgb(216, 221, 225);
  padding: 22px 0;
}

@media (max-width: 575px) {
  .faq-wrapper-2 .faq-left-content .faq-page-items .accordion-box .block {
    padding: 18px;
  }
}

.faq-wrapper-2 .faq-left-content .faq-page-items .accordion-box .block .acc-btn {
  position: relative;
  font-size: 20px;
  color: var(--header);
  font-weight: 600;
  font-family: "Bricolage Grotesque", sans-serif;
  cursor: pointer;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

@media (max-width: 575px) {
  .faq-wrapper-2 .faq-left-content .faq-page-items .accordion-box .block .acc-btn {
    font-size: 17px;
    line-height: 1.5;
    padding-right: 40px;
  }
}

.faq-wrapper-2 .faq-left-content .faq-page-items .accordion-box .block .acc-btn .icon {
  position: absolute;
  right: 0;
  top: 0;
  width: 30px;
  height: 30px;
  background-color: var(--header);
  font-size: 16px;
  line-height: 30px;
  color: var(--white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  text-align: center;
  border-radius: 50%;
}

.faq-wrapper-2 .faq-left-content .faq-page-items .accordion-box .block .acc-content {
  position: relative;
  display: none;
  margin-top: 22px;
}

@media (max-width: 470px) {
  .faq-wrapper-2 .faq-left-content .faq-page-items .accordion-box .block .acc-content {
    margin-top: 10px;
  }
}

.faq-wrapper-2 .faq-left-content .faq-page-items .accordion-box .block .acc-content .content {
  position: relative;
}

.faq-wrapper-2 .faq-left-content .faq-page-items .accordion-box .block .acc-content .content .text {
  line-height: 175%;
  font-size: 16px;
  font-weight: 400;
  color: rgb(120, 128, 148);
  max-width: 605px;
}

@media (max-width: 1199px) {
  .faq-wrapper-2 .faq-left-content .faq-page-items .accordion-box .block .acc-content .content .text {
    font-size: 14px;
  }
}

@media (max-width: 470px) {
  .faq-wrapper-2 .faq-left-content .faq-page-items .accordion-box .block .acc-content .content .text {
    font-size: 13px;
  }
}

.faq-wrapper-2 .faq-left-content .faq-page-items .accordion-box .block .acc-content.current {
  display: block;
}

.faq-wrapper-2 .faq-left-content .faq-page-items .accordion-box .block .acc-btn.active .icon:before {
  content: "\f068";
  font-family: "Font Awesome 6 Pro";
}

.faq-wrapper-2 .faq-left-content .faq-page-items .accordion-box .block .acc-btn.active .icon {
  background-color: var(--theme);
}

.faq-wrapper-2 .faq-left-content .faq-page-items .accordion-box .block:last-child {
  margin-bottom: 0;
}

.faq-wrapper-2 .faq-right-thumb {
  position: relative;
}

.faq-wrapper-2 .faq-right-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 30px;
}

.faq-wrapper-2 .faq-right-thumb .support-text-area {
  background: #FFFFFF;
  border-radius: 50px 0px 0px 0px;
  padding: 40px;
  padding-bottom: 0;
  position: absolute;
  bottom: 0;
  right: 0;
}

@media (max-width: 767px) {
  .faq-wrapper-2 .faq-right-thumb .support-text-area {
    padding: 25px;
  }
}

.faq-wrapper-2 .faq-right-thumb .support-text-area .icon img {
  width: initial;
  height: initial;
}

.faq-wrapper-2 .faq-right-thumb .support-text-area h3 {
  font-size: 74px;
  font-weight: 700;
  margin-top: 5px;
}

@media (max-width: 767px) {
  .faq-wrapper-2 .faq-right-thumb .support-text-area h3 {
    font-size: 42px;
  }
}

.faq-wrapper-2 .faq-right-thumb .support-text-area p {
  font-size: 20px;
  font-weight: 600;
}

.experience-content .experience-text {
  margin-top: 25px;
  color: var(--white);
}

.experience-content .theme-btn {
  margin-top: 35px;
}

.experience-section {
  position: relative;
  z-index: 9;
}

.experience-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 13, 68, 0.3);
  z-index: -1;
}

.experience-section .shape-bg {
  position: absolute;
  top: 0;
  left: 0;
}

.feature-box-items {
  box-shadow: 0px 9px 30px rgba(0, 0, 0, 0.1);
  background-color: var(--white);
  padding: 40px 30px;
  text-align: center;
  position: relative;
  border-radius: 30px;
  margin-top: 30px;
}

.feature-box-items .box-shape {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.feature-box-items .box-shape img {
  width: 100%;
  height: 100%;
}

.feature-box-items .icon {
  background-color: var(--theme);
  width: 64px;
  height: 64px;
  text-align: center;
  line-height: 64px;
  border-radius: 10px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.feature-box-items .icon img {
  transition: all 0.4s ease-in-out;
  display: inline-block;
}

.feature-box-items .content {
  margin-top: 30px;
  position: relative;
  z-index: 1;
}

.feature-box-items .content p {
  margin-top: 10px;
}

.feature-box-items .content .link-btn {
  color: var(--header);
  margin-top: 20px;
  display: inline-block;
  transition: all 0.4s ease-in-out;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  font-family: "Bricolage Grotesque", sans-serif;
}

.feature-box-items .content .link-btn i {
  margin-left: 7px;
}

.feature-box-items .content .link-btn:hover {
  color: var(--theme);
}

.feature-box-items:hover .icon img {
  transform: scaleX(-1) !important;
}

.reasons-wrapper .reasons-left-video-thumb {
  position: relative;
}

@media (max-width: 1899px) {
  .reasons-wrapper .reasons-left-video-thumb {
    height: 755px;
  }
}

@media (max-width: 1199px) {
  .reasons-wrapper .reasons-left-video-thumb {
    height: 500px;
  }
}

.reasons-wrapper .reasons-left-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reasons-wrapper .reasons-left-video-thumb .video-btn {
  width: 60px;
  height: 60px;
  line-height: 60px;
  display: inline-block;
  background: var(--white);
  color: var(--theme);
  text-align: center;
  border-radius: 100%;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
}

.reasons-wrapper .reasons-right-content {
  margin-left: 40px;
  position: relative;
}

@media (max-width: 1199px) {
  .reasons-wrapper .reasons-right-content {
    margin-right: 30px;
  }
}

.reasons-wrapper .reasons-right-content .reasons-bg-shape {
  position: absolute;
  top: -15%;
  left: -73%;
}

.reasons-wrapper .reasons-right-content .reasons-text {
  margin-top: 25px;
  max-width: 569px;
  color: var(--white);
}

.reasons-wrapper .reasons-right-content .list-items {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-top: 30px;
}

@media (max-width: 1199px) {
  .reasons-wrapper .reasons-right-content .list-items {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.reasons-wrapper .reasons-right-content .list-items ul li {
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
}

.reasons-wrapper .reasons-right-content .list-items ul li:not(:last-child) {
  margin-bottom: 20px;
}

.reasons-wrapper .reasons-right-content .list-items ul li img {
  margin-right: 10px;
}

.reasons-wrapper .reasons-right-content .counter-items-area {
  margin-top: 55px;
  display: flex;
  align-items: center;
  gap: 65px;
}

@media (max-width: 1199px) {
  .reasons-wrapper .reasons-right-content .counter-items-area {
    flex-wrap: wrap;
    gap: 30px;
  }
}

@media (max-width: 767px) {
  .reasons-wrapper .reasons-right-content .counter-items-area {
    margin-top: 30px;
  }
}

.reasons-wrapper .reasons-right-content .counter-items-area .counter-items {
  text-align: center;
}

.reasons-wrapper .reasons-right-content .counter-items-area .counter-items .icon {
  position: relative;
}

.reasons-wrapper .reasons-right-content .counter-items-area .counter-items .icon h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  color: var(--white);
  transform: translate(-50%, -50%);
  font-size: 36px;
}

.reasons-wrapper .reasons-right-content .counter-items-area .counter-items h5 {
  color: var(--white);
  margin-top: 30px;
}

.reasons-feature-section {
  position: relative;
}

@media (max-width: 1199px) {
  .reasons-feature-section {
    padding-bottom: 100px;
  }
}

@media (max-width: 991px) {
  .reasons-feature-section {
    padding-bottom: 80px;
  }
}

.reasons-feature-section .shape-1 {
  position: absolute;
  bottom: 0;
  right: 50px;
}

.feature-dream-wrapper-2 .feature-dream-thumb img {
  width: 100%;
  height: 100%;
}

.feature-dream-wrapper-2 .feature-dream-content {
  margin-left: 50px;
}

@media (max-width: 1199px) {
  .feature-dream-wrapper-2 .feature-dream-content {
    margin-left: 0;
  }
}

.feature-dream-wrapper-2 .feature-dream-content .feature-dream-list {
  border-top: 1px solid rgb(216, 221, 225);
  padding-top: 25px;
  margin-top: 25px;
}

.feature-dream-wrapper-2 .feature-dream-content .feature-dream-list li h5 img {
  margin-right: 10px;
}

.feature-dream-wrapper-2 .feature-dream-content .feature-dream-list li p {
  margin-top: 10px;
}

.feature-dream-wrapper-2 .feature-dream-content .feature-dream-list li:not(:last-child) {
  margin-bottom: 20px;
}

.feature-award-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1199px) {
  .feature-award-wrapper {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.feature-award-wrapper .feature-award-wrap {
  display: flex;
  align-items: center;
  gap: 32px;
}

@media (max-width: 767px) {
  .feature-award-wrapper .feature-award-wrap {
    margin-left: 30px;
  }
}

.feature-award-wrapper .feature-award-wrap .number {
  font-size: 65px;
  font-weight: 700;
  font-family: "Bricolage Grotesque", sans-serif;
  color: #788094;
  transition: all 0.4s ease-in-out;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

@media (max-width: 767px) {
  .feature-award-wrapper .feature-award-wrap .number {
    font-size: 50px;
  }
}

.feature-award-wrapper .feature-award-wrap .feature-award-items .icon img {
  transition: all 0.4s ease-in-out;
  display: inline-block;
}

.feature-award-wrapper .feature-award-wrap .feature-award-items h3 {
  font-size: 36px;
  margin-top: 20px;
  max-width: 194px;
}

@media (max-width: 991px) {
  .feature-award-wrapper .feature-award-wrap .feature-award-items h3 {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .feature-award-wrapper .feature-award-wrap .feature-award-items h3 {
    font-size: 24px;
  }
}

.feature-award-wrapper .feature-award-wrap .feature-award-items:hover .icon img {
  transform: scaleX(-1) !important;
}

.feature-award-wrapper .line {
  background: rgb(216, 221, 225);
  height: 160px;
  width: 1px;
  margin-left: 20px;
  display: inline-block;
}

@media (max-width: 1199px) {
  .feature-award-wrapper .line {
    display: none;
  }
}

.footer-section {
  position: relative;
  z-index: 9;
}

.footer-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 13, 68, 0.9);
  z-index: -1;
}

.footer-wrappper {
  padding: 50px 0 20px;
}

.footer-wrappper .footer-widget-items {
  margin-top: 10px;
}

.footer-wrappper .footer-widget-items .widget-head {
  margin-bottom: 10px;
}

.footer-wrappper .footer-widget-items .widget-head h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
}

.footer-wrappper .footer-widget-items .widget-head .line {
  width: 75px;
  height: 1px;
  background-color: var(--theme);
  margin-top: 15px;
}

.footer-wrappper .footer-widget-items .footer-content {
  margin-top: 30px;
}

.footer-wrappper .footer-widget-items .footer-content p {
  color: var(--white);
  max-width: 350px;
}

.footer-wrappper .footer-widget-items .footer-content .social-icon {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.footer-wrappper .footer-widget-items .footer-content .social-icon a {
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  display: inline-block;
  border-radius: 50%;
  border: 1px solid var(--white);
  color: var(--white);
}

.footer-wrappper .footer-widget-items .footer-content .social-icon a:hover {
  background-color: var(--theme);
  color: var(--white);
  border: 1px solid var(--theme);
}

.footer-wrappper .footer-widget-items .list-area li {
  transition: all 0.4s ease-in-out;
  font-size: 16px;
  font-weight: 400;
}

.footer-wrappper .footer-widget-items .list-area li i {
  margin-right: 9px;
  font-size: 14px;
  color: var(--white);
  transition: all 0.4s ease-in-out;
}

.footer-wrappper .footer-widget-items .list-area li:not(:last-child) {
  margin-bottom: 15px;
}

.footer-wrappper .footer-widget-items .list-area li a {
  color: var(--white);
}

.footer-wrappper .footer-widget-items .list-area li:hover {
  margin-left: 5px;
}

.footer-wrappper .footer-widget-items .list-area li:hover i {
  color: var(--theme);
}

.footer-wrappper .footer-widget-items .list-area li:hover a {
  color: var(--theme);
}

.footer-wrappper .footer-widget-items .icon-area li {
  display: flex;
  align-items: center;
  gap: 30px;
}

.footer-wrappper .footer-widget-items .icon-area li .icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background-color: var(--theme);
  border: 3px solid var(--white);
  border-radius: 50%;
}

.footer-wrappper .footer-widget-items .icon-area li .content p {
  color: var(--white);
  margin-bottom: 5px;
}

.footer-wrappper .footer-widget-items .icon-area li .content a {
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
}

.footer-wrappper .footer-widget-items .icon-area li .content a:hover {
  color: var(--theme);
}

.footer-wrappper .footer-widget-items .icon-area li:not(:last-child) {
  margin-bottom: 20px;
}

.footer-wrappper .footer-widget-items .recent-post li {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-wrappper .footer-widget-items .recent-post li .thumb img {
  border-radius: 8px;
}

.footer-wrappper .footer-widget-items .recent-post li .content p {
  color: var(--white);
}

.footer-wrappper .footer-widget-items .recent-post li .content p i {
  margin-right: 5px;
}

.footer-wrappper .footer-widget-items .recent-post li .content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-top: 8px;
}

.footer-wrappper .footer-widget-items .recent-post li .content h4 a {
  color: var(--white);
}

.footer-wrappper .footer-widget-items .recent-post li .content h4 a:hover {
  color: var(--theme);
}

.footer-wrappper .footer-widget-items .recent-post li:not(:last-child) {
  margin-bottom: 30px;
}

.footer-bottom {
  background: var(--theme);
  position: relative;
  z-index: 9;
  padding: 15px 0;
}

.footer-bottom .footer-bottom-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .footer-bottom .footer-bottom-wrapper {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    text-align: center;
  }
}

@media (max-width: 786px) {
  .footer-bottom .footer-bottom-wrapper {
    margin-bottom: 20px !important;
  }
}

.footer-bottom .footer-bottom-wrapper p {
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
}

.footer-bottom .footer-bottom-wrapper .footer-menu {
  display: flex;
  align-items: center;
  gap: 25px;
}

.footer-bottom .footer-bottom-wrapper .footer-menu li a {
  color: var(--white);
  background-image: linear-gradient(var(--white), var(--white));
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline-block;
  transition: all 0.4s ease-in-out;
  font-weight: 500;
}

.footer-bottom .footer-bottom-wrapper .footer-menu li a:hover {
  background-size: 100% 1px;
  color: var(--white);
}

@media (max-width: 1199px) {
  .menu-thumb {
    display: none !important;
  }
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  position: relative;
}

.header-main .main-menu ul {
  margin-bottom: 0;
}

.header-main .main-menu ul .menu-thumb {
  position: inherit;
}

.header-main .main-menu ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  margin-inline-end: 60px;
}

@media (max-width: 1600px) {
  .header-main .main-menu ul li {
    margin-inline-end: 40px;
  }
}

@media (max-width: 1399px) {
  .header-main .main-menu ul li {
    margin-inline-end: 30px;
  }
}

.header-main .main-menu ul li:last-child {
  margin-inline-end: 0;
}

.header-main .main-menu ul li a {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: #000D44;
  font-family: "Bricolage Grotesque", sans-serif;
  padding: 20px 0;
  text-align: left;
  position: relative;
  text-transform: uppercase;
  transition: all 0.4s ease-in-out;
}

.header-main .main-menu ul li a i {
  margin-left: 4px;
  font-size: 12px;
}

.header-main .main-menu ul li a:hover {
  color: var(--theme) !important;
}

.header-main .main-menu ul li .submenu {
  position: absolute;
  top: 100%;
  inset-inline-start: 0;
  min-width: 320px;
  background: var(--white);
  padding: 20px 0;
  border-radius: 10px;
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  transform-origin: top center;
  color: #000D44;
  transform: translateY(-10px);
  transition: all 0.4s ease-in-out;
  border-top: 4px solid var(--theme);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.header-main .main-menu ul li .submenu li {
  display: block;
  width: 100%;
  margin: 0;
}

.header-main .main-menu ul li .submenu li a {
  position: relative;
  z-index: 11;
  font-size: 16px;
  font-weight: 500;
  color: #000D44;
  line-height: 38px;
  padding: 0px 0px 0px 32px;
  padding-right: 22px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-main .main-menu ul li .submenu li a::before {
  content: "";
  position: absolute;
  width: 0px;
  height: 2px;
  background: var(--theme);
  left: 14px;
  bottom: 18px;
  transition: all 0.4s ease-in-out;
}

.header-main .main-menu ul li .submenu li a:hover {
  color: var(--theme) !important;
}

.header-main .main-menu ul li .submenu li:last-child a {
  border: none;
}

.header-main .main-menu ul li .submenu li .submenu {
  inset-inline-start: 100%;
  top: 0;
  visibility: hidden;
  opacity: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.header-main .main-menu ul li .submenu li:hover>a {
  color: var(--theme) !important;
  margin-left: 10px;
}

.header-main .main-menu ul li .submenu li:hover>a::before {
  width: 10px;
}

.header-main .main-menu ul li .submenu li:hover>a::after {
  color: var(--theme);
}

.header-main .main-menu ul li .submenu li:hover>.submenu {
  -webkit-transform: translateY(1);
  -moz-transform: translateY(1);
  -ms-transform: translateY(1);
  -o-transform: translateY(1);
  transform: translateY(1);
  visibility: visible;
  opacity: 1;
}

.header-main .main-menu ul li .submenu li.has-dropdown>a::after {
  position: absolute;
  top: 50%;
  inset-inline-end: 25px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  color: var(--theme);
}

.header-main .main-menu ul li:hover>a {
  color: var(--theme);
}

.header-main .main-menu ul li:hover>a::after {
  color: var(--theme);
}

.header-main .main-menu ul li:hover>.submenu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
}

.header-main .sidebar__toggle {
  color: var(--header);
}

.header-main .header-right {
  gap: 30px;
}

@media (max-width: 1399px) {
  .header-main .header-right {
    gap: 20px;
  }
}

.header-main .sidebar__toggle {
  cursor: pointer;
  font-size: 20px;
}

.header-1 {
  position: relative;
  z-index: 9999;
}

@media (max-width: 1199px) {
  .header-1 {
    margin-top: 20px;
  }
}

.header-1 .mega-menu-wrapper {
  background-color: var(--white);
  padding: 0 30px;
  border-radius: 100px;
}

.header-1 .header-main {
  padding: 15px 0;
}

@media (max-width: 1399px) {
  .header-1 .header-main {
    padding: 15px 0;
  }
}

.header-1 .header-left {
  display: flex;
  align-items: center;
  gap: 130px;
}

@media (max-width: 1399px) {
  .header-1 .header-left {
    gap: 30px;
  }
}

@media (max-width: 1199px) {
  .header-1 .header-left {
    gap: 0;
  }
}

.header-1 .search-toggler {
  width: 55px;
  height: 55px;
  line-height: 55px;
  border: 1px solid #D8DDE1;
  text-align: center;
  border-radius: 50%;
  color: var(--header);
}

.header-1 .search-toggler:hover {
  background-color: var(--theme);
  color: var(--white);
  border: 1px solid var(--theme);
}

.header-1 .header-right {
  gap: 20px !important;
}

.header-1 .theme-btn {
  padding: 22px 35px;
}

@media (max-width: 1199px) {
  .header-1 .theme-btn {
    display: none;
  }
}

.header-section {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
}

.header-section .container {
  max-width: 1536px;
}

.header-top-wrapper {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1199px) {
  .header-top-wrapper {
    display: none;
  }
}

.header-top-wrapper ul {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header-top-wrapper ul li {
  display: flex;
  align-items: center;
  font-weight: 400;
  color: var(--white);
  gap: 10px;
}

.header-top-wrapper ul li a {
  color: var(--white);
}

.header-top-wrapper ul .line {
  display: inline-block;
  width: 1px;
  height: 20px;
  opacity: 0.2;
  border: 1px solid #FFFFFF;
}

.header-top-wrapper ul .social-icon {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-top-wrapper ul .social-icon a {
  color: var(--white);
}

.header-top-wrapper ul .social-icon a:hover {
  color: var(--theme);
}

.header-2 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99999;
  width: 100%;
}

.header-2 .container {
  max-width: 1560px;
}

.header-2 .header-main .main-menu ul li a {
  color: #fff;
}

.header-2 .header-main .main-menu ul li a:hover {
  color: var(--theme) !important;
}

.header-2 .header-main .main-menu ul li .submenu {
  color: #000D44;
}

.header-2 .header-main .main-menu ul li .submenu li a {
  color: #000D44;
}

.header-2 .header-main .main-menu ul li .submenu li a:hover {
  color: var(--theme) !important;
}

.header-2 .header-main .main-menu ul li .submenu li:hover>a {
  color: var(--theme) !important;
}

.header-2 .header-main .main-menu ul li .submenu li:hover>a::after {
  color: var(--theme);
}

.header-2 .header-main .main-menu ul li .submenu li.has-dropdown>a::after {
  color: var(--theme);
}

.header-2 .header-main .main-menu ul li:hover>a {
  color: var(--theme);
}

.header-2 .header-main .main-menu ul li:hover>a::after {
  color: var(--theme);
}

.header-2 .header-main .sidebar__toggle {
  color: var(--white);
}

.header-2 .header-main .header-right {
  gap: 30px;
}

@media (max-width: 1399px) {
  .header-2 .header-main .header-right {
    gap: 20px;
  }
}

.header-2 .header-main .sidebar__toggle {
  cursor: pointer;
  font-size: 20px;
}

.header-2 .header-right {
  gap: 20px !important;
}

.header-2 .theme-btn {
  padding: 22px 35px;
}

@media (max-width: 1199px) {
  .header-2 .theme-btn {
    display: none;
  }
}

.header-2 .search-toggler {
  width: 55px;
  height: 55px;
  line-height: 55px;
  border: 1px solid #D8DDE1;
  text-align: center;
  border-radius: 50%;
  color: var(--white);
}

.header-2 .search-toggler:hover {
  background-color: var(--theme);
  color: var(--white);
  border: 1px solid var(--theme);
}

.header-2.header-inner {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.header-2.header-inner .container {
  max-width: 1621px;
}

.header-2.header-inner .sidebar__toggle {
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid var(--white);
  transition: all 0.4s ease-in-out;
}

.header-2.header-inner .sidebar__toggle:hover {
  background-color: var(--theme);
  border: 1px solid var(--theme);
}

.sticky {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 9999;
  transition: all 0.9s;
  background-color: #fff;
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.sticky.header-1 .header-main {
  padding: 15px 0;
}

.sticky.header-1 .mega-menu-wrapper {
  padding: 0 0;
}

@media (max-width: 1199px) {
  .sticky.header-1 {
    margin-top: 0;
  }
}

.sticky.header-2 .header-main .main-menu ul li a {
  color: #000D44;
}

.sticky.header-2 .header-main .main-menu ul li a:hover {
  color: var(--theme) !important;
}

.sticky.header-2 .header-main .main-menu ul li .submenu {
  color: #000D44;
}

.sticky.header-2 .header-main .main-menu ul li .submenu li a {
  color: #000D44;
}

.sticky.header-2 .header-main .main-menu ul li .submenu li a:hover {
  color: var(--theme) !important;
}

.sticky.header-2 .header-main .main-menu ul li .submenu li:hover>a {
  color: var(--theme) !important;
}

.sticky.header-2 .header-main .main-menu ul li .submenu li:hover>a::after {
  color: var(--theme);
}

.sticky.header-2 .header-main .main-menu ul li .submenu li.has-dropdown>a::after {
  color: var(--theme);
}

.sticky.header-2 .header-main .main-menu ul li:hover>a {
  color: var(--theme);
}

.sticky.header-2 .header-main .main-menu ul li:hover>a::after {
  color: var(--theme);
}

.sticky.header-2 .header-main .sidebar__toggle {
  color: var(--header);
}

.sticky.header-2 .search-toggler {
  color: var(--header);
}

.sticky.header-2 .search-toggler:hover {
  background-color: var(--theme);
  color: var(--white);
  border: 1px solid var(--theme);
}

.sticky.header-inner .logo {
  display: none;
}

.sticky.header-inner .logo2 {
  display: block !important;
}

.sticky.header-inner .sidebar__toggle {
  border: 1px solid #D8DDE1;
}

.sticky.header-inner .sidebar__toggle svg path {
  fill: var(--header);
  transition: all 0.4s ease-in-out;
}

.sticky.header-inner .sidebar__toggle:hover {
  background-color: var(--theme);
  border: 1px solid var(--theme);
}

.sticky.header-inner .sidebar__toggle:hover svg path {
  fill: var(--white);
}

.offcanvas__info {
  background: var(--white) none repeat scroll 0 0;
  border-left: 2px solid var(--theme);
  position: fixed;
  right: 0;
  top: 0;
  width: 400px;
  height: 100%;
  -webkit-transform: translateX(calc(100% + 80px));
  -moz-transform: translateX(calc(100% + 80px));
  -ms-transform: translateX(calc(100% + 80px));
  -o-transform: translateX(calc(100% + 80px));
  transform: translateX(calc(100% + 80px));
  -webkit-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  -moz-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  z-index: 999999;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}

.offcanvas__info.info-open {
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

.offcanvas__logo a img {
  width: 150px;
}

.offcanvas__wrapper {
  position: relative;
  height: 100%;
  padding: 30px 30px;
}

.offcanvas__wrapper .offcanvas-title {
  font-size: 32px;
  margin-bottom: 15px;
}

.offcanvas__wrapper .offcanvas__content p {
  color: var(--header);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme);
  position: relative;
  z-index: 9;
  cursor: pointer;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close i {
  color: var(--white);
}

.offcanvas__wrapper .offcanvas__content .social-icon {
  margin-top: 30px;
  gap: 10px;
  margin-bottom: 30px;
}

.offcanvas__wrapper .offcanvas__content .social-icon a {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border-radius: 50%;
  font-size: 16px;
  display: block;
  background: transparent;
  color: var(--header);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-align: center;
  border: 1px solid var(--border);
}

.offcanvas__wrapper .offcanvas__content .social-icon a:hover {
  background-color: var(--theme);
  color: var(--white);
  border: 1px solid var(--theme);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact {
  margin-top: 20px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact span {
  text-transform: initial;
}

.offcanvas__wrapper .offcanvas__content .theme-btn {
  width: 100%;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact {
  margin-top: 20px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul {
  margin-top: 20px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li {
  font-size: 16px;
  font-weight: 500;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li a {
  color: var(--header);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li:not(:last-child) {
  margin-bottom: 15px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon {
  margin-right: 20px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon i {
  color: var(--theme);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact span {
  text-transform: initial;
}

.offcanvas__wrapper .offcanvas__content .offcanvas-button {
  margin-top: 300px;
  display: flex;
  align-items: center;
  gap: 20px;
}

@media (max-width: 1399px) {
  .offcanvas__wrapper .offcanvas__content .offcanvas-button {
    margin-top: 30px;
  }
}

@media (max-width: 575px) {
  .offcanvas__wrapper .offcanvas__content .offcanvas-button {
    margin-top: 20px;
    margin-bottom: 10px;
  }
}

.offcanvas__overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #151515;
  z-index: 900;
  top: 0;
  opacity: 0;
  visibility: hidden;
  right: 0;
}

.offcanvas__overlay.overlay-open {
  opacity: 0.8;
  visibility: visible;
}

@media (max-width: 450px) {
  .offcanvas__info {
    width: 350px;
  }
}

@media (max-width: 575px) {
  .offcanvas__wrapper {
    padding: 20px;
  }
}

.breadcrumb-wrapper {
  position: relative;
}

.breadcrumb-wrapper::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(90deg, rgba(25, 0, 177, 0.6) 55.84%, rgba(11, 0, 75, 0) 100%);
}

.breadcrumb-wrapper .page-heading {
  padding: 200px 0 100px;
  position: relative;
  text-align: center;
}

@media (max-width: 1199px) {
  .breadcrumb-wrapper .page-heading {
    padding-top: 200px;
  }
}

@media (max-width: 767px) {
  .breadcrumb-wrapper .page-heading {
    text-align: center;
    padding-top: 175px;
    padding-bottom: 140px;
  }
}

.breadcrumb-wrapper .page-heading .breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-top: 10px;
}

@media (max-width: 767px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-list {
    justify-content: center;
  }
}

.breadcrumb-wrapper .page-heading .breadcrumb-list li {
  font-weight: 600;
  color: var(--white);
  text-transform: capitalize;
  font-family: "Bricolage Grotesque", sans-serif;
}

@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-list li {
    font-size: 14px;
  }
}

.breadcrumb-wrapper .page-heading .breadcrumb-list li a {
  color: var(--white);
  position: relative;
}

.breadcrumb-wrapper .page-heading .breadcrumb-list li a:hover {
  color: var(--theme);
}

.breadcrumb-wrapper .page-heading .breadcrumb-title {
  font-size: 64px;
  font-weight: 700;
  color: var(--white);
  font-family: "Bricolage Grotesque", sans-serif;
}

@media (max-width: 767px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-title {
    font-size: 48px;
  }
}

@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-title {
    font-size: 44px;
  }
}

.error-items {
  text-align: center;
}

.error-items .error-image {
  max-width: 967px;
  margin: 0 auto 50px;
  text-align: center;
}

.error-items .error-image img {
  width: 100%;
  height: 100%;
}

.error-items h2 {
  margin-bottom: 15px;
  font-size: 60px;
  font-weight: 600;
}

@media (max-width: 767px) {
  .error-items h2 {
    font-size: 48px;
  }
}

@media (max-width: 575px) {
  .error-items h2 {
    font-size: 42px;
  }
}

.error-items h2 span {
  color: var(--theme);
  font-weight: 400;
}

.error-items p {
  font-size: 18px;
  margin-bottom: 30px;
}

.error-items .theme-btn i {
  margin-right: 10px;
  margin-left: 0;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px var(--bg);
  border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--theme);
  border-radius: 10px;
}

.fix {
  overflow: hidden;
}

.ralt {
  position: relative;
}

.ripple {
  position: relative;
}

.ripple::before,
.ripple::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 30px;
  height: 30px;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(21, 57, 238, 0.6);
  -webkit-animation: rippleOne 3s infinite;
  animation: rippleOne 3s infinite;
}

.ripple::before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}

.ripple::after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}

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

.slide-transtion {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}

.brand-slide-element {
  width: auto;
  display: inline-block;
}

.container-2 {
  max-width: 1320px;
}

@media (max-width: 767px) {
  br {
    display: none;
  }
}

.text_invert>div {
  background-image: linear-gradient(to right, rgb(137, 137, 137) 50%, rgb(137, 137, 137) 50%);
  background-size: 200% 100%;
  background-position-x: 100%;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
}

.text_invert-2>div {
  background-image: linear-gradient(to right, rgb(25, 42, 25) 50%, rgb(137, 137, 137) 50%);
  background-size: 200% 100%;
  background-position-x: 100%;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
}

.mt-15 {
  margin-top: 15px;
}

.page-nav-wrap {
  margin-top: 60px;
}

.page-nav-wrap ul li {
  display: inline-block;
}

.page-nav-wrap ul li.active .page-numbers {
  background-color: var(--theme);
  color: var(--white);
  border: 1px solid var(--theme);
}

.page-nav-wrap ul li .page-numbers {
  display: inline-block;
  width: 48px;
  height: 48px;
  text-align: center;
  line-height: 48px;
  border-radius: 100px;
  border: 1px solid var(--theme);
  background: transparent;
  color: var(--header);
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s ease-in-out;
  margin: 0 5px;
}

.page-nav-wrap ul li .page-numbers.current {
  background-color: var(--theme);
  color: var(--white);
}

.page-nav-wrap ul li .page-numbers i {
  margin-top: 2px;
}

.page-nav-wrap ul li .page-numbers:hover {
  background-color: var(--theme);
  color: var(--white);
  border: 1px solid var(--theme);
}

.hero-1 {
  padding: 210px 0 0;
  position: relative;
  z-index: 9;
}

.hero-1 .hero-light {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.hero-1 .hero-light2 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.hero-1::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 13, 68, 0.85);
  z-index: -1;
}

.hero-1 .container {
  max-width: 1536px;
}

.hero-1 .hero-content {
  margin-top: -120px;
  position: relative;
  z-index: 9;
}

@media (max-width: 991px) {
  .hero-1 .hero-content {
    margin-top: 0;
    text-align: center;
  }
}

.hero-1 .hero-content h1 {
  font-size: 130px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 1.5px;
}

@media (max-width: 1399px) {
  .hero-1 .hero-content h1 {
    font-size: 110px;
  }
}

@media (max-width: 1199px) {
  .hero-1 .hero-content h1 {
    font-size: 100px;
  }
}

@media (max-width: 767px) {
  .hero-1 .hero-content h1 {
    font-size: 88px;
  }
}

@media (max-width: 575px) {
  .hero-1 .hero-content h1 {
    font-size: 70px;
  }
}

@media (max-width: 470px) {
  .hero-1 .hero-content h1 {
    font-size: 52px;
    margin-top: 10px;
  }
}

.hero-1 .hero-content h2 {
  font-size: 30px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 2.5px;
}

@media (max-width: 1399px) {
  .hero-1 .hero-content h2 {
    font-size: 25px;
  }
}

@media (max-width: 1199px) {
  .hero-1 .hero-content h2 {
    font-size: 25px;
  }
}

@media (max-width: 767px) {
  .hero-1 .hero-content h2 {
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .hero-1 .hero-content h2 {
    font-size: 28px;
  }
}

.hero-1 .hero-content .hero-text {
  font-size: 130px;
  font-weight: 800;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 10px;
}

@media (max-width: 1199px) {
  .hero-1 .hero-content .hero-text {
    line-height: 1;
  }
}

@media (max-width: 991px) {
  .hero-1 .hero-content .hero-text {
    font-size: 100px;
    line-height: 1;
    justify-content: center;
  }
}

.hero-1 .hero-content .hero-text .svg-text {
  top: -7px;
  position: relative;
}

.hero-1 .hero-content .year-area {
  display: flex;
  align-items: center;
  gap: 100px;
  margin-top: 10px;
}

@media (max-width: 1399px) {
  .hero-1 .hero-content .year-area {
    gap: 40px;
  }
}

@media (max-width: 1199px) {
  .hero-1 .hero-content .year-area {
    flex-wrap: wrap;
  }
}

@media (max-width: 991px) {
  .hero-1 .hero-content .year-area {
    display: grid;
    justify-content: center;
    gap: 30px;
  }
}

.hero-1 .hero-content .year-area .year-content {
  max-width: 450px;
}

.hero-1 .hero-content .year-area .year-content h4 {
  font-size: 36px;
  font-weight: 600;
  color: var(--white);
}

.hero-1 .hero-content .year-area .year-content h4 span {
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
}

.hero-1 .hero-content .year-area .year-content h5 {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
}

@media (max-width: 767px) {
  .hero-1 .hero-content .year-area .year-content h5 {
    font-size: 16px;
  }
}

.hero-1 .hero-content .hero-bottom {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

@media (max-width: 991px) {
  .hero-1 .hero-content .hero-bottom {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.hero-1 .hero-content .hero-bottom .theme-btn::before {
  background-color: var(--white);
}

.hero-1 .hero-content .hero-bottom .theme-btn:hover {
  color: var(--theme);
}

.hero-1 .hero-content .hero-bottom .theme-btn:hover i {
  color: var(--theme);
}

.hero-1 .hero-content .hero-bottom .client-image {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-1 .hero-content .hero-bottom .client-image p {
  font-weight: 500;
  font-family: "Bricolage Grotesque", sans-serif;
  color: var(--white);
}

.hero-1 .hero-image {
  margin-left: -200px;
}

@media (max-width: 1600px) {
  .hero-1 .hero-image {
    margin-left: -260px;
  }
}

@media (max-width: 1399px) {
  .hero-1 .hero-image {
    margin-left: -360px;
  }
}

@media (max-width: 1199px) {
  .hero-1 .hero-image {
    margin-left: -280px;
  }
}

@media (max-width: 991px) {
  .hero-1 .hero-image {
    margin-left: 0;
  }

  .hero-1 .hero-image img {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 991px) {
  .hero-1 .hero-image {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 0;
  }
}

.hero-2 {
  padding: 150px 0;
  position: relative;
  z-index: 9;
}

.hero-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 13, 68, 0.7);
  z-index: -1;
}

.hero-2 .container {
  max-width: 1560px;
}

.hero-2 .hero-content h1 {
  font-size: 200px;
  font-weight: 800;
  color: var(--theme);
}

@media (max-width: 1600px) {
  .hero-2 .hero-content h1 {
    font-size: 170px;
  }
}

@media (max-width: 1399px) {
  .hero-2 .hero-content h1 {
    font-size: 150px;
  }
}

@media (max-width: 1199px) {
  .hero-2 .hero-content h1 {
    font-size: 130px;
  }
}

@media (max-width: 991px) {
  .hero-2 .hero-content h1 {
    font-size: 90px;
  }
}

@media (max-width: 575px) {
  .hero-2 .hero-content h1 {
    font-size: 56px;
    line-height: 1;
  }
}

.hero-2 .hero-content h1 .hero-text {
  font-size: 200px;
  font-weight: 800;
  color: var(--white);
}

@media (max-width: 1600px) {
  .hero-2 .hero-content h1 .hero-text {
    font-size: 170px;
  }
}

@media (max-width: 1399px) {
  .hero-2 .hero-content h1 .hero-text {
    font-size: 150px;
  }
}

@media (max-width: 1199px) {
  .hero-2 .hero-content h1 .hero-text {
    font-size: 130px;
  }
}

@media (max-width: 991px) {
  .hero-2 .hero-content h1 .hero-text {
    font-size: 90px;
  }
}

@media (max-width: 575px) {
  .hero-2 .hero-content h1 .hero-text {
    font-size: 56px;
  }
}

@media (max-width: 1199px) {
  .hero-2 .hero-content h1 .hero-sm-img {
    display: none;
  }
}

.hero-2 .hero-content h1 .hero-sm-img img {
  border-radius: 100px;
}

.hero-2 .hero-countdown-wrapper {
  max-width: 1020px;
  margin: 0 auto;
  padding-left: 148px;
}

@media (max-width: 1199px) {
  .hero-2 .hero-countdown-wrapper {
    padding-left: 0;
  }
}

.hero-2 .hero-countdown-wrapper .cooming-soon-items {
  margin-top: 20px;
}

.hero-2 .hero-countdown-wrapper .cooming-soon-items .coming-soon-time {
  display: flex;
  align-items: center;
  gap: 30px;
  position: relative;
  justify-content: center;
}

@media (max-width: 1199px) {
  .hero-2 .hero-countdown-wrapper .cooming-soon-items .coming-soon-time {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: start;
  }
}

.hero-2 .hero-countdown-wrapper .cooming-soon-items .coming-soon-time .timer-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  border-top: 2px solid var(--theme);
  backdrop-filter: blur(27px);
  border-radius: 20px;
  max-width: 200px;
  height: 125px;
  width: 100%;
}

@media (max-width: 575px) {
  .hero-2 .hero-countdown-wrapper .cooming-soon-items .coming-soon-time .timer-content {
    max-width: 160px;
  }
}

.hero-2 .hero-countdown-wrapper .cooming-soon-items .coming-soon-time .timer-content h2 {
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
  color: var(--white);
}

.hero-2 .hero-countdown-wrapper .cooming-soon-items .coming-soon-time .timer-content h2 span {
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  text-transform: uppercase;
}

.hero-2 .hero-countdown-wrapper .hero-bottom-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 25px;
}

@media (max-width: 1199px) {
  .hero-2 .hero-countdown-wrapper .hero-bottom-area {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: start;
  }
}

.hero-2 .hero-countdown-wrapper .hero-bottom-area .frist-text p {
  color: var(--white);
}

.hero-2 .hero-countdown-wrapper .hero-bottom-area .frist-text h3 {
  font-size: 24px;
  color: var(--white);
}

.hero-2 .hero-countdown-wrapper .hero-bottom-area .middle-text h3 {
  font-size: 24px;
  color: var(--white);
}

.hero-2 .hero-countdown-wrapper .hero-bottom-area .middle-text p {
  color: var(--white);
  margin-top: 7px;
}

.mean-container a.meanmenu-reveal {
  display: none;
}

.mean-container .mean-nav {
  background: none;
  margin-top: 0;
}

.mean-container .mean-bar {
  padding: 0;
  min-height: auto;
  background: none;
}

.mean-container .mean-nav>ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: block !important;
}

.mean-container a.meanmenu-reveal {
  display: none !important;
}

.mean-container .mean-nav ul li a {
  width: 100%;
  padding: 10px 0;
  color: #000D44;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  text-transform: uppercase;
  border-bottom: 1px solid #E5E5E5 !important;
  border: none;
  font-family: "Bricolage Grotesque", sans-serif;
}

.mean-container .mean-nav ul li a:hover {
  color: var(--theme);
}

.mean-container .mean-nav ul li a:last-child {
  border-bottom: 0;
}

.mean-container .mean-nav ul li a:hover {
  color: var(--theme);
}

.mean-container .mean-nav ul li a.mean-expand {
  margin-top: 5px;
  padding: 0 !important;
}

.mean-container .mean-nav ul li>a>i {
  display: none;
}

.mean-container .mean-nav ul li>a.mean-expand i {
  display: inline-block;
  font-size: 16px;
}

.mean-container .mean-nav>ul>li:first-child>a {
  border-top: 0;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
  transition: all 0.4s ease-in-out;
}

.mean-container .mean-nav ul li .mega-menu li a {
  height: 200px;
  width: 100%;
  padding: 0;
  border-top: 0;
  margin-bottom: 20px;
}

.news-box-items {
  margin-top: 30px;
}

.news-box-items .news-thumb {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
}

.news-box-items .news-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  position: relative;
  display: block;
  object-fit: cover;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-box-items .news-thumb img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  -webkit-transform: translateX(50%) scaleX(2);
  transform: translate(50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.news-box-items .news-thumb .post-date {
  width: 60px;
  height: 60px;
  padding: 2px;
  text-align: center;
  background-color: var(--theme);
  border-radius: 10px;
  color: var(--white);
  position: absolute;
  top: 20px;
  left: 20px;
  padding-top: 5px;
  z-index: 11;
}

.news-box-items .news-thumb .post-date h4 {
  color: var(--white);
  line-height: 1.3;
}

.news-box-items .news-thumb .post-date p {
  line-height: 1;
}

.news-box-items .news-content {
  margin-top: 20px;
}

.news-box-items .news-content p {
  color: var(--theme);
}

.news-box-items .news-content h3 {
  margin-top: 7px;
  font-size: 24px;
}

.news-box-items .news-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}

.news-box-items .news-content h3 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}

.news-box-items .news-content .link-btn {
  color: var(--header);
  margin-top: 20px;
  display: inline-block;
  transition: all 0.4s ease-in-out;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  font-family: "Bricolage Grotesque", sans-serif;
}

.news-box-items .news-content .link-btn i {
  margin-left: 7px;
}

.news-box-items .news-content .link-btn:hover {
  color: var(--theme);
}

.news-box-items:hover .news-thumb img:first-child {
  -webkit-transform: translateX(0) scaleX(1);
  transform: translate(0) scaleX(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}

.news-box-items:hover .news-thumb img:nth-child(2) {
  -webkit-transform: translateX(-50%) scaleX(2);
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.news-box-items-2 {
  margin-top: 30px;
}

.news-box-items-2 .news-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.news-box-items-2 .news-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  position: relative;
  display: block;
  object-fit: cover;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-box-items-2 .news-thumb img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  -webkit-transform: translateX(50%) scaleX(2);
  transform: translate(50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.news-box-items-2 .content {
  margin-top: 20px;
}

.news-box-items-2 .content ul {
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 1600px) {
  .news-box-items-2 .content ul {
    gap: 20px;
  }
}

@media (max-width: 1399px) {
  .news-box-items-2 .content ul {
    flex-wrap: wrap;
    gap: 10px;
  }
}

.news-box-items-2 .content ul li i {
  margin-right: 6px;
  color: rgb(0, 13, 68);
}

.news-box-items-2 .content h3 {
  margin-top: 7px;
  font-size: 30px;
}

@media (max-width: 1399px) {
  .news-box-items-2 .content h3 {
    font-size: 20px;
  }
}

.news-box-items-2 .content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}

.news-box-items-2 .content h3 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}

.news-box-items-2 .content .link-btn {
  color: var(--header);
  margin-top: 20px;
  display: inline-block;
  transition: all 0.4s ease-in-out;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  font-family: "Bricolage Grotesque", sans-serif;
}

.news-box-items-2 .content .link-btn i {
  margin-left: 7px;
}

.news-box-items-2 .content .link-btn:hover {
  color: var(--theme);
}

.news-box-items-2:hover .news-thumb img:first-child {
  -webkit-transform: translateX(0) scaleX(1);
  transform: translate(0) scaleX(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}

.news-box-items-2:hover .news-thumb img:nth-child(2) {
  -webkit-transform: translateX(-50%) scaleX(2);
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.news-box-items-2.style-2 .content h3 {
  font-size: 24px;
}

@media (max-width: 1399px) {
  .news-box-items-2.style-2 .content h3 {
    font-size: 18px;
  }
}

.news-left-content-inner .news-items {
  margin-bottom: 30px;
  background-color: rgb(245, 248, 253);
  padding: 20px;
  border-radius: 30px;
}

.news-left-content-inner .news-items .news-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 30px;
}

.news-left-content-inner .news-items .news-content {
  margin-top: 25px;
}

.news-left-content-inner .news-items .news-content ul {
  display: flex;
  align-items: center;
  gap: 35px;
}

@media (max-width: 1199px) {
  .news-left-content-inner .news-items .news-content ul {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.news-left-content-inner .news-items .news-content ul li i {
  color: var(--theme);
  margin-right: 6px;
}

.news-left-content-inner .news-items .news-content h3 {
  margin-top: 8px;
  font-size: 36px;
}

@media (max-width: 1199px) {
  .news-left-content-inner .news-items .news-content h3 {
    font-size: 29px;
  }
}

@media (max-width: 767px) {
  .news-left-content-inner .news-items .news-content h3 {
    font-size: 27px;
  }
}

@media (max-width: 575px) {
  .news-left-content-inner .news-items .news-content h3 {
    font-size: 25px;
  }
}

.news-left-content-inner .news-items .news-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}

.news-left-content-inner .news-items .news-content h3 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}

.news-left-content-inner .news-items .news-content p {
  margin-top: 10px;
}

.news-left-content-inner .news-items .news-content .theme-btn {
  margin-top: 30px;
}

.main-sidebar .single-sidebar-widget {
  padding: 40px 30px;
  background-color: rgb(245, 248, 253);
  margin-bottom: 30px;
  border-radius: 30px;
}

@media (max-width: 575px) {
  .main-sidebar .single-sidebar-widget {
    padding: 28px;
  }
}

.main-sidebar .single-sidebar-widget .wid-title {
  margin-bottom: 25px;
}

.main-sidebar .single-sidebar-widget .wid-title h3 {
  position: relative;
  padding-bottom: 15px;
  display: inline-block;
  font-size: 22px;
  font-weight: 600;
}

@media (max-width: 575px) {
  .main-sidebar .single-sidebar-widget .wid-title h3 {
    font-size: 20px;
  }
}

.main-sidebar .single-sidebar-widget .wid-title h3::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 2px;
  content: "";
  background-color: var(--header);
}

.main-sidebar .single-sidebar-widget .wid-title h3::before {
  position: absolute;
  bottom: 0;
  left: 30px;
  width: 63px;
  height: 2px;
  content: "";
  background-color: var(--theme);
}

.main-sidebar .single-sidebar-widget .search-widget form {
  width: 100%;
  position: relative;
}

.main-sidebar .single-sidebar-widget .search-widget form input {
  background-color: var(--white);
  font-size: 16px;
  font-weight: 400;
  padding: 20px;
  width: 100%;
  border: none;
  color: var(--text);
  border-radius: 30px;
}

.main-sidebar .single-sidebar-widget .search-widget form button {
  position: absolute;
  right: 9px;
  top: 9px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background-color: var(--theme);
  color: var(--white);
  text-align: center;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
}

.main-sidebar .single-sidebar-widget .search-widget form button:hover {
  background-color: var(--header);
}

.main-sidebar .single-sidebar-widget .news-widget-categories ul li a {
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 25px;
  background-color: var(--white);
  font-weight: 400;
  transition: all 0.4s ease-in-out;
  border-radius: 30px;
  font-size: 16px;
  line-height: 1;
  border: 1px solid rgb(216, 221, 225);
}

@media (max-width: 575px) {
  .main-sidebar .single-sidebar-widget .news-widget-categories ul li a {
    font-size: 14px;
    padding: 20px 22px;
  }
}

.main-sidebar .single-sidebar-widget .news-widget-categories ul li a .arrow {
  transition: all 0.4s ease-in-out;
}

.main-sidebar .single-sidebar-widget .news-widget-categories ul li a .arrow i {
  color: var(--theme);
  transition: all 0.4s ease-in-out;
}

.main-sidebar .single-sidebar-widget .news-widget-categories ul li:not(:last-child) {
  margin-bottom: 12px;
}

.main-sidebar .single-sidebar-widget .news-widget-categories ul li:hover a {
  background-color: var(--theme);
  color: var(--white);
}

.main-sidebar .single-sidebar-widget .news-widget-categories ul li:hover a .arrow i {
  color: var(--white);
}

.main-sidebar .single-sidebar-widget .recent-post-area .recent-items {
  display: flex;
  align-items: center;
  gap: 20px;
}

.main-sidebar .single-sidebar-widget .recent-post-area .recent-items:not(:last-child) {
  margin-bottom: 20px;
}

.main-sidebar .single-sidebar-widget .recent-post-area .recent-items .recent-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 15px;
}

.main-sidebar .single-sidebar-widget .recent-post-area .recent-items .recent-content ul {
  margin-bottom: 8px;
}

.main-sidebar .single-sidebar-widget .recent-post-area .recent-items .recent-content ul li {
  font: 16px;
  font-weight: 400;
  color: rgb(120, 128, 148);
}

.main-sidebar .single-sidebar-widget .recent-post-area .recent-items .recent-content h6 {
  font-size: 20px;
  font-weight: 600;
  max-width: 214px;
}

.main-sidebar .single-sidebar-widget .recent-post-area .recent-items .recent-content h6 a:hover {
  color: var(--theme);
}

.main-sidebar .single-sidebar-widget .tagcloud a {
  display: inline-block;
  padding: 11px 20px;
  line-height: 1;
  font-size: 14px;
  font-weight: 500;
  background: var(--white);
  margin-right: 5px;
  text-transform: capitalize;
  margin-bottom: 10px;
  border-radius: 0;
  transition: all 0.4s ease-in-out;
  color: var(--text);
  border-radius: 20px;
}

.main-sidebar .single-sidebar-widget .tagcloud a:last-child {
  margin-right: 0;
}

.main-sidebar .single-sidebar-widget .tagcloud a:hover {
  background-color: var(--theme);
  color: var(--white);
}

.blog-post-details .single-blog-post .post-featured-thumb {
  height: 460px;
  border-radius: 30px;
}

.blog-post-details .single-blog-post .post-content {
  margin-top: 30px;
}

.blog-post-details .single-blog-post .post-content ul {
  display: flex;

  gap: 23px;
}

@media (max-width: 1199px) {
  .blog-post-details .single-blog-post .post-content ul {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.blog-post-details .single-blog-post .post-content ul li i {
  color: var(--theme);
  margin-right: 6px;
}

.blog-post-details .single-blog-post .post-content h3 {
  margin-bottom: 20px;
  margin-top: 15px;
  font-size: 30px;
  font-weight: 700;
}

@media (max-width: 575px) {
  .blog-post-details .single-blog-post .post-content h3 {
    font-size: 24px;
  }
}

.blog-post-details .single-blog-post .post-content h3 a:hover {
  color: var(--theme);
}

.blog-post-details .single-blog-post .post-content p {
  font-weight: 400;
}

.blog-post-details .single-blog-post .post-content .hilight-text {
  border-left: 4px solid var(--theme);
  padding: 40px;
  background-color: rgb(245, 248, 253);
  border-radius: 10px;
}

@media (max-width: 767px) {
  .blog-post-details .single-blog-post .post-content .hilight-text {
    padding: 28px;
  }
}

.blog-post-details .single-blog-post .post-content .hilight-text p {
  font-weight: 600;
  text-transform: capitalize;
  font-style: italic;
  line-height: 26px;
  color: var(--header);
  font-size: 18px;
  max-width: 700px;
}

.blog-post-details .single-blog-post .post-content .hilight-text svg {
  float: right;
  margin-top: -30px;
}

@media (max-width: 1199px) {
  .blog-post-details .single-blog-post .post-content .hilight-text svg {
    display: none;
  }
}

.blog-post-details .single-blog-post .post-content .details-image img {
  width: 100%;
  height: 100%;
  border-radius: 30px;
}

.blog-post-details .tag-share-wrap {
  border-top: 1px solid rgb(216, 221, 225);
  border-bottom: 1px solid rgb(216, 221, 225);
  padding: 30px 0;
}

.blog-post-details .tag-share-wrap .tagcloud span {
  display: inline-block;
  font-weight: 600;
  color: var(--header);
  margin-right: 15px;
}

.blog-post-details .tag-share-wrap .tagcloud a {
  display: inline-block;
  padding: 12px 26px;
  line-height: 1;
  background: transparent;
  border: 1px solid rgb(216, 221, 225);
  border-radius: 30px;
  margin-right: 8px;
  text-transform: capitalize;
  font-weight: 500;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 575px) {
  .blog-post-details .tag-share-wrap .tagcloud a {
    margin-bottom: 5px;
  }
}

.blog-post-details .tag-share-wrap .tagcloud a:hover {
  background-color: var(--theme);
  color: var(--white);
}

.blog-post-details .tag-share-wrap .social-share span {
  font-size: 16px;
  color: var(--header);
  font-weight: 600;
}

.blog-post-details .tag-share-wrap .social-share a {
  font-size: 16px;
  color: var(--header);
}

.blog-post-details .tag-share-wrap .social-share a:not(:last-child) {
  margin-right: 10px;
}

.blog-post-details .tag-share-wrap .social-share a:hover {
  color: var(--theme);
}

.blog-post-details .comments-area {
  margin-top: 40px;
}

.blog-post-details .comments-area .comments-heading {
  margin-bottom: 30px;
}

@media (max-width: 575px) {
  .blog-post-details .comments-area .comments-heading {
    margin-bottom: 20px;
  }
}

.blog-post-details .comments-area .comments-heading h3 {
  font-size: 24px;
  font-weight: 700;
}

@media (max-width: 575px) {
  .blog-post-details .comments-area .comments-heading h3 {
    font-size: 22px;
  }
}

.blog-post-details .comments-area .blog-single-comment {
  border-bottom: 1px solid #F2F5FA;
}

@media (max-width: 575px) {
  .blog-post-details .comments-area .blog-single-comment {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.blog-post-details .comments-area .blog-single-comment .content .head {
  margin-bottom: 10px;
}

.blog-post-details .comments-area .blog-single-comment .content .head .con h5 {
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 20px;
}

.blog-post-details .comments-area .blog-single-comment .content .head .star i {
  color: var(--theme);
  font-size: 14px;
}

.blog-post-details .comments-area .blog-single-comment .content .reply {
  padding: 5px 15px;
  font-weight: 400;
  background-color: var(--theme);
  color: var(--white);
  transition: all 0.4s ease-in-out;
  border-radius: 6px;
}

.blog-post-details .comments-area .blog-single-comment .content .reply:hover {
  background-color: var(--header);
}

.blog-post-details .comments-area .blog-single-comment .content .reply.color-2 {
  background-color: var(--header);
}

.blog-post-details .comments-area .blog-single-comment .content .reply.color-2:hover {
  background-color: var(--theme);
}

.blog-post-details .comment-form-wrap h3 {
  font-size: 24px;
  margin-bottom: 30px;
}

@media (max-width: 575px) {
  .blog-post-details .comment-form-wrap h3 {
    margin-bottom: 20px;
  }
}

.blog-post-details .comment-form-wrap .form-clt span {
  color: var(--header);
  display: inline-block;
  margin-bottom: 10px;
}

.blog-post-details .comment-form-wrap .form-clt input,
.blog-post-details .comment-form-wrap .form-clt textarea {
  width: 100%;
  outline: none;
  border: none;
  background-color: transparent;
  border: 1px solid rgb(216, 221, 225);
  padding: 16px 20px;
  font-weight: 500;
  color: var(--text);
  border-radius: 100px;
}

.blog-post-details .comment-form-wrap .form-clt input::placeholder,
.blog-post-details .comment-form-wrap .form-clt textarea::placeholder {
  color: var(--text);
}

.blog-post-details .comment-form-wrap .form-clt textarea {
  padding-bottom: 100px;
  border-radius: 30px;
}

.blog-post-details .comment-form-wrap .theme-btn {
  width: 100%;
}

.preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999999;
  background: var(--white);
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader .spinner-wrap {
  width: 180px;
  height: 180px;
  position: relative;
}

.preloader .spinner-wrap .preloader-logo {
  width: 75%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.preloader .spinner-wrap .spinner {
  position: relative;
  width: 100%;
  height: 100%;
  border: 2px solid var(--bg);
  border-top: 3px solid var(--theme);
  border-radius: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  animation: spin 2s infinite linear;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.back-to-top {
  border-radius: 10px;
  background-color: var(--theme);
  width: 50px;
  height: 50px;
  line-height: 50px;
  color: var(--white);
  font-size: 18px;
  position: fixed;
  display: inline-block;
  z-index: 999;
  right: 30px;
  bottom: 30px;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.back-to-top:hover {
  background-color: var(--header);
  color: var(--white);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translate(0);
}

.cursor-outer {
  -webkit-margin-start: -12px;
  margin-inline-start: -12px;
  margin-top: -12px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--theme);
  background-color: var(--theme);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 10000000;
  opacity: 0.34;
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}

.cursor-outer.cursor-hover {
  opacity: 0.14;
}

.cursor-outer.cursor-big {
  opacity: 0;
}

.mouseCursor {
  position: fixed;
  top: 0;
  inset-inline-start: 0;
  inset-inline-end: 0;
  bottom: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
  text-align: center;
}

.mouseCursor.cursor-big {
  width: 20px;
  height: 20px;
  -webkit-margin-start: -12px;
  margin-inline-start: -12px;
  margin-top: -12px;
}

.cursor-inner {
  -webkit-margin-start: -3px;
  margin-inline-start: -3px;
  margin-top: -3px;
  width: 10px;
  height: 10px;
  z-index: 10000001;
  background-color: var(--theme);
  opacity: 1;
  -webkit-transition: all 0.24s ease-out 0s;
  transition: all 0.24s ease-out 0s;
}

.cursor-inner span {
  color: var(--text);
  line-height: 60px;
  opacity: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
}

.cursor-inner.cursor-big span {
  opacity: 1;
}

.cursor-inner.cursor-hover {
  -webkit-margin-start: -10px;
  margin-inline-start: -10px;
  margin-top: -10px;
  width: 30px;
  height: 30px;
  background-color: var(--theme);
  border: 1px solid #686363;
  opacity: 0;
}

.search-popup {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -2;
  -webkit-transition: all 1s ease;
  -khtml-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.search-popup__overlay {
  position: fixed;
  width: 224vw;
  height: 224vw;
  top: calc(90px - 112vw);
  right: calc(50% - 112vw);
  z-index: 3;
  display: block;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-transform: scale(0);
  -khtml-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transition: transform 0.8s ease-in-out;
  -khtml-transition: transform 0.8s ease-in-out;
  -moz-transition: transform 0.8s ease-in-out;
  -ms-transition: transform 0.8s ease-in-out;
  -o-transition: transform 0.8s ease-in-out;
  transition: transform 0.8s ease-in-out;
  transition-delay: 0s;
  transition-delay: 0.3s;
  -webkit-transition-delay: 0.3s;
  background-color: #000000;
  opacity: 0.7;
  cursor: url(../../assets/img/close.png), auto;
}

@media (max-width: 767px) {
  .search-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: none;
    width: 100%;
    height: 100%;
    border-radius: 0;
    transform: translateY(-110%);
  }
}

.search-popup__content {
  position: fixed;
  width: 0;
  max-width: 560px;
  padding: 30px 15px;
  left: 50%;
  top: 50%;
  opacity: 0;
  z-index: 3;
  -webkit-transform: translate(-50%, -50%);
  -khtml-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -khtml-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -moz-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -ms-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -o-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  transition-delay: 0s, 0.8s, 0s;
  transition-delay: 0s, 0.4s, 0s;
  transition-delay: 0.2s;
  -webkit-transition-delay: 0.2s;
}

.search-popup__form {
  position: relative;
}

.search-popup__form input[type=search],
.search-popup__form input[type=text] {
  width: 100%;
  height: 66px;
  border: none;
  outline: none;
  padding-left: 20px;
  background-color: var(--white);
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  transition: all 500ms ease;
}

.search-popup__form input[type=search]:focus,
.search-popup__form input[type=text]:focus {
  color: var(--header);
}

.search-popup__form .search-btn {
  padding: 0;
  width: 66px;
  height: 66px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  right: -1px;
  border-radius: 0;
  font-size: 20px;
  color: var(--white);
  background-color: var(--theme);
  transition: all 0.4s ease-in-out;
}

.search-popup__form .search-btn:hover {
  background-color: var(--header);
}

.search-popup__form .eolexi-btn svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.search-popup.active {
  z-index: 999999;
}

.search-popup.active .search-popup__overlay {
  top: auto;
  bottom: calc(90px - 112vw);
  -webkit-transform: scale(1);
  -khtml-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  transition-delay: 0s;
  -webkit-transition-delay: 0s;
  opacity: 0.7;
  -webkit-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -khtml-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -moz-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -ms-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -o-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
}

@media (max-width: 767px) {
  .search-popup.active .search-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: none;
    width: 100%;
    height: 100%;
    border-radius: 0;
    transform: translateY(0%);
  }
}

.search-popup.active .search-popup__content {
  width: 100%;
  opacity: 1;
  transition-delay: 0.7s;
  -webkit-transition-delay: 0.7s;
}

.pricing-box-items {
  margin-top: 30px;
  border: 1px solid rgb(216, 221, 225);
  background-color: var(--white);
  padding: 60px 30px 30px 30px;
  border-radius: 30px;
  position: relative;
}

.pricing-box-items span {
  position: absolute;
  top: 20px;
  right: 20px;
  font-weight: 600;
  color: var(--header);
}

.pricing-box-items .pricing-header {
  border-bottom: 1px solid rgb(216, 221, 225);
  padding-bottom: 25px;
}

.pricing-box-items .pricing-header p {
  margin-top: 5px;
}

.pricing-box-items .pricing-header h2 {
  font-size: 36px;
  font-weight: 600;
  margin-top: 15px;
}

@media (max-width: 1199px) {
  .pricing-box-items .pricing-header h2 {
    font-size: 46px;
  }
}

.pricing-box-items .pricing-header h2 sub {
  font-size: 16px;
  font-weight: 500;
  margin-left: -5px;
}

.pricing-box-items h4 {
  font-size: 16px;
  font-weight: 800;
  margin-top: 25px;
}

.pricing-box-items .pricing-list {
  margin-top: 20px;
  transition: all 0.4s ease-in-out;
}

.pricing-box-items .pricing-list li {
  transition: all 0.4s ease-in-out;
  color: rgb(0, 13, 68);
}

.pricing-box-items .pricing-list li.style-2 {
  color: rgb(120, 128, 148);
}

.pricing-box-items .pricing-list li i {
  color: var(--theme);
  margin-right: 10px;
  transition: all 0.4s ease-in-out;
}

.pricing-box-items .pricing-list li i.color-2 {
  color: rgb(120, 128, 148);
}

.pricing-box-items .pricing-list li:not(:last-child) {
  margin-bottom: 15px;
}

.pricing-box-items .theme-btn {
  background-color: transparent;
  border: 1px solid rgb(216, 221, 225);
  width: 100%;
  color: var(--header);
  margin-top: 30px;
}

@media (max-width: 1199px) {
  .pricing-box-items .theme-btn {
    padding: 18px 22px;
  }
}

.pricing-box-items .theme-btn i {
  color: var(--header);
}

.pricing-box-items .theme-btn::before {
  background-color: var(--theme);
}

.pricing-box-items .theme-btn:hover {
  color: var(--white);
}

.pricing-box-items .theme-btn:hover i {
  color: var(--white);
}

.pricing-box-items.style-2 {
  border: none;
}

.pricing-box-items.style-2 span {
  background-color: var(--theme);
  color: var(--white);
  padding: 10px 12px;
  line-height: 1;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
}

.pricing-box-items.style-2 .pricing-header {
  border-bottom: none;
  padding-bottom: 0;
}

.pricing-box-items.style-2 .pricing-header h2 {
  border-top: 1px solid rgb(216, 221, 225);
  padding-top: 25px;
  margin-top: 20px;
}

.pricing-box-items.style-2 .theme-btn {
  background-color: var(--header);
  color: var(--white);
}

.pricing-box-items.style-2 .theme-btn i {
  color: var(--white);
}

.pricing-box-items.style-2 .theme-btn.color-2 {
  background-color: var(--theme);
}

.pricing-box-items.style-2 .theme-btn.color-2::before {
  background-color: var(--header);
}

.pricing-box-items.active .theme-btn {
  color: var(--white);
  background-color: var(--theme);
}

.pricing-box-items.active .theme-btn i {
  color: var(--white);
}

.pricing-box-items.active .theme-btn::before {
  background-color: var(--header);
}

.section-title {
  position: relative;
  z-index: 99;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .section-title {
    margin-bottom: 0;
  }
}

.section-title .sub-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--theme);
  font-family: "Bricolage Grotesque", sans-serif;
  margin-bottom: 15px;
  text-transform: uppercase;
  display: inline-block;
  position: relative;
}

.section-title .sub-title .line-1 {
  padding-right: 40px;
  position: relative;
}

.section-title .sub-title .line-1::before {
  position: absolute;
  bottom: 5px;
  left: 0;
  content: "";
  width: 30px;
  height: 1px;
  background-color: var(--theme);
}

.section-title .sub-title .line-1::after {
  position: absolute;
  bottom: 10px;
  left: 0;
  content: "";
  width: 20px;
  height: 1px;
  background-color: #7546FF;
}

.section-title .sub-title .line-2 {
  padding-left: 40px;
  position: relative;
}

.section-title .sub-title .line-2::before {
  position: absolute;
  bottom: 5px;
  right: 0;
  content: "";
  width: 30px;
  height: 1px;
  background-color: var(--theme);
}

.section-title .sub-title .line-2::after {
  position: absolute;
  bottom: 10px;
  left: 10px;
  content: "";
  width: 20px;
  height: 1px;
  background-color: #7546FF;
}

@media (max-width: 1399px) {
  .section-title .sub-title {
    font-size: 17px;
  }
}

@media (max-width: 1199px) {
  .section-title .sub-title {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .section-title .sub-title {
    font-size: 16px;
  }
}

@media (max-width: 470px) {
  .section-title .sub-title {
    font-size: 14px;
  }
}

.section-title h2 {
  font-family: "Bricolage Grotesque", sans-serif;
}

.section-title-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 9;
  margin-bottom: 30px;
}

.section-title-area .section-title {
  margin-bottom: 0;
}

@media (max-width: 1199px) {
  .section-title-area {
    flex-wrap: wrap;
    gap: 30px;
  }
}

@media (max-width: 767px) {
  .section-title-area {
    margin-bottom: 0;
  }
}

.center {
  text-align: center;
  margin: 0 auto;
}

.section-bg {
  background-color: var(--bg);
}

.section-padding {
  padding: 80px 0;
}

@media (max-width: 1199px) {
  .section-padding {
    padding: 100px 0;
  }
}

@media (max-width: 991px) {
  .section-padding {
    padding: 80px 0;
  }
}

.service-section {
  padding-left: 95px;
  padding-right: 95px;
}

@media (max-width: 1899px) {
  .service-section {
    padding-left: 45px;
    padding-right: 45px;
  }
}

@media (max-width: 1600px) {
  .service-section {
    padding-left: 36px;
    padding-right: 36px;
  }
}

@media (max-width: 1399px) {
  .service-section {
    padding-left: 28px;
    padding-right: 28px;
  }
}

@media (max-width: 1199px) {
  .service-section {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.service-section .nav {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .service-section .nav {
    margin-bottom: 30px;
  }
}

.service-section .nav .nav-item .nav-link {
  display: inline-block;
  padding: 20px 30px;
  line-height: 1;
  background-color: var(--white);
  border-radius: 10px;
  color: #000D44;
  font-size: 20px;
  font-weight: 600;
  font-family: "Bricolage Grotesque", sans-serif;
}

.service-section .nav .nav-item .nav-link.active {
  background-color: var(--theme);
  color: var(--white);
}

.service-box-items {
  background-color: var(--white);
  padding: 30px;
  border-radius: 30px;
  margin-top: 30px;
}

@media (max-width: 1600px) {
  .service-box-items {
    padding: 26px;
  }
}

.service-box-items .service-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.service-box-items .service-thumb img {
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
  border-radius: 20px;
  object-fit: cover;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.service-box-items .service-thumb img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  -webkit-transform: translateX(50%) scaleX(2);
  transform: translate(50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.service-box-items .service-thumb .date-item {
  font-size: 14px;
  font-weight: 400;
  background-color: var(--white);
  padding: 10px 22px;
  position: absolute;
  top: 20px;
  left: 20px;
  border-radius: 50px;
  line-height: 1;
  color: var(--header);
  z-index: 9;
}

.service-box-items .service-thumb .date-item i {
  margin-right: 6px;
  color: var(--theme);
}

.service-box-items .service-content {
  margin-top: 25px;
}

@media (max-width: 767px) {
  .service-box-items .service-content h3 {
    font-size: 18px;
  }
}

@media (max-width: 575px) {
  .service-box-items .service-content h3 {
    font-size: 20px;
  }
}

.service-box-items .service-content h3 a:hover {
  color: var(--theme);
}

.service-box-items .service-content ul {
  margin-top: 15px;
}

.service-box-items .service-content ul li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-box-items .service-content ul li .content p {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  color: var(--header);
}

.service-box-items .service-content ul li .content p span {
  color: var(--text);
}

.service-box-items .service-content ul li:not(:last-child) {
  margin-bottom: 8px;
}

.service-box-items .service-content .service-bottom-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}

@media (max-width: 1399px) {
  .service-box-items .service-content .service-bottom-area {
    flex-wrap: wrap;
    gap: 15px;
  }
}

@media (max-width: 1899px) {
  .service-box-items .service-content .service-bottom-area .client-img img {
    width: 120px;
  }
}

.service-box-items .service-content .service-bottom-area .events-btn {
  display: flex;
  align-items: center;
  gap: 16px;
}

.service-box-items .service-content .service-bottom-area .events-btn .icon {
  width: 40px;
  height: 40px;
  display: inline-block;
  line-height: 40px;
  text-align: center;
  border-radius: 10px;
  color: var(--header);
  transition: all 0.4s ease-in-out;
  background-color: #F8F8F8;
}

.service-box-items .service-content .service-bottom-area .events-btn .text {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--header);
  transition: all 0.4s ease-in-out;
}

.service-box-items .service-content .service-bottom-area .events-btn:hover .icon {
  background-color: var(--theme);
  color: var(--white);
}

.service-box-items .service-content .service-bottom-area .events-btn:hover .text {
  color: var(--theme);
}

.service-box-items:hover .service-thumb img:first-child {
  -webkit-transform: translateX(0) scaleX(1);
  transform: translate(0) scaleX(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}

.service-box-items:hover .service-thumb img:nth-child(2) {
  -webkit-transform: translateX(-50%) scaleX(2);
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.team-wraper {
  margin-top: 60px;
}

.team-wraper .team-left-content {
  background: #F5F7FA;
  border-radius: 30px 30px 150px 30px;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 30px;
}

@media (max-width: 767px) {
  .team-wraper .team-left-content {
    border-radius: 30px;
  }
}

@media (max-width: 575px) {
  .team-wraper .team-left-content {
    flex-wrap: wrap;
  }
}

.team-wraper .team-left-content .team-image {
  position: relative;
  z-index: 99;
  overflow: hidden;
}

.team-wraper .team-left-content .team-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  position: relative;
  display: block;
  object-fit: cover;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.team-wraper .team-left-content .team-image img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  -webkit-transform: translateX(50%) scaleX(2);
  transform: translate(50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.team-wraper .team-left-content .team-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  border: 1px solid var(--theme);
  border-radius: 20px;
  top: 13px;
  left: 7px;
  z-index: 1;
  width: 250px;
  height: 272px;
  z-index: 11;
}

.team-wraper .team-left-content .team-content h3 {
  font-size: 24px;
}

.team-wraper .team-left-content .team-content h3 a:hover {
  color: var(--theme);
}

.team-wraper .team-left-content .team-content p {
  color: var(--theme);
  margin-top: 5px;
}

.team-wraper .team-left-content .team-content .line {
  width: 75px;
  height: 1px;
  background-color: var(--theme);
  margin-top: 13px;
  margin-bottom: 15px;
}

.team-wraper .team-left-content .team-content .call-number {
  color: #788094;
}

.team-wraper .team-left-content .team-content .call-number:hover {
  color: var(--theme);
}

.team-wraper .team-left-content .team-content .social-icon {
  gap: 7px;
  margin-top: 20px;
}

.team-wraper .team-left-content .team-content .social-icon a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background-color: #7546FF;
  color: var(--white);
}

.team-wraper .team-left-content .team-content .social-icon a:hover {
  background-color: var(--header);
}

.team-wraper .team-left-content .team-content .social-icon a.color-2 {
  background-color: var(--theme);
}

.team-wraper .team-left-content .team-content .social-icon a.color-2:hover {
  background-color: var(--header);
}

.team-wraper .team-left-content:hover .team-image img:first-child {
  -webkit-transform: translateX(0) scaleX(1);
  transform: translate(0) scaleX(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}

.team-wraper .team-left-content:hover .team-image img:nth-child(2) {
  -webkit-transform: translateX(-50%) scaleX(2);
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.team-wraper .team-right-items .team-thumb-box {
  position: relative;
  height: 358px;
  overflow: hidden;
  border-radius: 30px;
}

.team-wraper .team-right-items .team-thumb-box img {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  object-fit: cover;
  position: relative;
  display: block;
  object-fit: cover;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.team-wraper .team-right-items .team-thumb-box img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  -webkit-transform: translateX(50%) scaleX(2);
  transform: translate(50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.team-wraper .team-right-items .team-thumb-box .team-icon {
  gap: 10px;
  position: absolute;
  top: 40%;
  right: 0;
  transform: translateY(-50%);
  right: 20px;
  z-index: 9;
}

.team-wraper .team-right-items .team-thumb-box .team-icon li {
  transform: scaleX(0);
  transition: 0.4s ease-in-out;
  cursor: pointer;
}

.team-wraper .team-right-items .team-thumb-box .team-icon li a {
  background-color: var(--theme);
  width: 37px;
  height: 37px;
  line-height: 37px;
  display: inline-block;
  color: var(--white);
  text-align: center;
  transition: all 0.4s ease-in-out;
  border-radius: 50%;
}

.team-wraper .team-right-items .team-thumb-box .team-icon li a:hover {
  background-color: var(--header);
}

.team-wraper .team-right-items .team-thumb-box .content {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  line-height: 1;
  background-color: var(--white);
  padding: 15px 39px;
  border-radius: 25px;
  z-index: 99;
  text-align: center;
}

@media (max-width: 1399px) {
  .team-wraper .team-right-items .team-thumb-box .content {
    padding: 15px 30px;
    left: 20px;
    right: 20px;
  }
}

.team-wraper .team-right-items .team-thumb-box .content h3 {
  font-size: 22px;
}

.team-wraper .team-right-items .team-thumb-box .content h3 a:hover {
  color: var(--theme);
}

.team-wraper .team-right-items .team-thumb-box:hover .team-icon li {
  transform: scaleX(1);
}

.team-wraper .team-right-items .team-thumb-box:hover img:first-child {
  -webkit-transform: translateX(0) scaleX(1);
  transform: translate(0) scaleX(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}

.team-wraper .team-right-items .team-thumb-box:hover img:nth-child(2) {
  -webkit-transform: translateX(-50%) scaleX(2);
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.team-box-items-3 {
  text-align: center;
}

.team-box-items-3 .thumb {
  border-radius: 50%;
  position: relative;
  overflow: hidden;
}

.team-box-items-3 .thumb .social-icon {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  position: absolute;
  bottom: 40px;
  transform: scale(0.8);
  left: 0;
  right: 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}

.team-box-items-3 .thumb .social-icon a {
  color: var(--white);
  transition: all 0.3s ease;
}

.team-box-items-3 .thumb .social-icon a:hover {
  color: var(--theme);
}

.team-box-items-3 .thumb::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, rgba(70, 42, 153, 0) 0%, rgba(101, 60, 220, 0.658022) 65.8%, rgba(109, 65, 237, 0.824115) 82.41%, #7546FF 100%);
  z-index: 11;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}

.team-box-items-3 .thumb img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: relative;
  display: block;
  object-fit: cover;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.team-box-items-3 .thumb img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  -webkit-transform: translateX(50%) scaleX(2);
  transform: translate(50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.team-box-items-3 .content {
  margin-top: 20px;
}

.team-box-items-3 .content h3 {
  font-size: 24px;
  font-weight: 600;
}

.team-box-items-3 .content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}

.team-box-items-3 .content h3 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}

.team-box-items-3:hover .thumb::before {
  opacity: 1;
  visibility: visible;
}

.team-box-items-3:hover .thumb .social-icon {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.team-box-items-3:hover .thumb img:first-child {
  -webkit-transform: translateX(0) scaleX(1);
  transform: translate(0) scaleX(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}

.team-box-items-3:hover .thumb img:nth-child(2) {
  -webkit-transform: translateX(-50%) scaleX(2);
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.team-box-items-3.style-2 {
  margin-top: 30px;
}

.team-details-wrapper {
  background: #F5F8FD;
  border-radius: 50px;
  padding: 60px;
}

@media (max-width: 1199px) {
  .team-details-wrapper {
    padding: 35px;
  }
}

@media (max-width: 991px) {
  .team-details-wrapper {
    padding: 32px;
  }
}

@media (max-width: 767px) {
  .team-details-wrapper {
    padding: 28px;
  }
}

.team-details-wrapper .team-details-image {
  border-radius: 20px;
  width: 500px;
}

@media (max-width: 1399px) {
  .team-details-wrapper .team-details-image {
    width: initial;
  }
}

.team-details-wrapper .team-details-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.team-details-wrapper .team-details-content {
  margin-left: 65px;
}

@media (max-width: 1399px) {
  .team-details-wrapper .team-details-content {
    margin-left: 0;
  }
}

.team-details-wrapper .team-details-content .details-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

@media (max-width: 1199px) {
  .team-details-wrapper .team-details-content .details-head {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.team-details-wrapper .team-details-content .details-head .content h3 {
  font-size: 36px;
  font-weight: 600;
}

@media (max-width: 1199px) {
  .team-details-wrapper .team-details-content .details-head .content h3 {
    font-size: 29px;
  }
}

@media (max-width: 767px) {
  .team-details-wrapper .team-details-content .details-head .content h3 {
    font-size: 27px;
  }
}

@media (max-width: 575px) {
  .team-details-wrapper .team-details-content .details-head .content h3 {
    font-size: 25px;
  }
}

.team-details-wrapper .team-details-content .details-head .content span {
  color: var(--theme);
  font-size: 14px;
  font-weight: 500;
}

.team-details-wrapper .team-details-content .details-head .social-icon {
  display: flex;
  align-items: center;
  gap: 6px;
}

.team-details-wrapper .team-details-content .details-head .social-icon a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background-color: #D8DDE1;
  color: var(--header);
}

.team-details-wrapper .team-details-content .details-head .social-icon a:hover {
  background-color: var(--theme);
  color: var(--white);
}

.team-details-wrapper .team-details-content .details-contact-info {
  border: 1px solid #D8DDE1;
  border-radius: 30px;
  padding: 27px 30px;
  margin-top: 20px;
  position: relative;
  margin-bottom: 30px;
}

.team-details-wrapper .team-details-content .details-contact-info::before {
  position: absolute;
  top: 0;
  left: 51%;
  transform: translateX(-50%);
  content: "";
  width: 1px;
  height: 100%;
  background: #D8DDE1;
}

@media (max-width: 1399px) {
  .team-details-wrapper .team-details-content .details-contact-info::before {
    display: none;
  }
}

.team-details-wrapper .team-details-content .details-contact-info::after {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  content: "";
  width: 100%;
  height: 1px;
  background: #D8DDE1;
}

@media (max-width: 1399px) {
  .team-details-wrapper .team-details-content .details-contact-info::after {
    display: none;
  }
}

.team-details-wrapper .team-details-content .details-contact-info ul li {
  display: flex;
  align-items: center;
  gap: 20px;
}

.team-details-wrapper .team-details-content .details-contact-info ul li:not(:last-child) {
  margin-bottom: 60px;
}

@media (max-width: 1399px) {
  .team-details-wrapper .team-details-content .details-contact-info ul li:not(:last-child) {
    margin-bottom: 20px;
  }
}

.team-details-wrapper .team-details-content .details-contact-info ul li .icon {
  max-width: 50px;
  width: 100%;
  height: 50px;
  background-color: var(--white);
  border-radius: 50%;
  line-height: 50px;
  text-align: center;
}

.team-details-wrapper .team-details-content .details-contact-info ul li .content span {
  font-weight: 500;
}

.team-details-wrapper .team-details-content .details-contact-info ul li .content h4 {
  font-size: 18px;
  font-weight: 500;
}

.team-details-wrapper .team-details-content .details-contact-info ul li .content h4 a {
  color: var(--header);
}

.personal-skills-items {
  margin-top: 60px;
}

.personal-skills-items h3 {
  font-size: 36px;
  font-weight: 600;
}

@media (max-width: 1199px) {
  .personal-skills-items h3 {
    font-size: 29px;
  }
}

@media (max-width: 767px) {
  .personal-skills-items h3 {
    font-size: 27px;
  }
}

@media (max-width: 575px) {
  .personal-skills-items h3 {
    font-size: 25px;
  }
}

.personal-skills-items .skill-feature-items {
  margin-top: 20px;
}

.personal-skills-items .skill-feature-items .skill-feature:not(:last-child) {
  margin-bottom: 20px;
}

.personal-skills-items .skill-feature-items .skill-feature .box-title {
  font-size: 16px;
  font-weight: 500;
}

.personal-skills-items .skill-feature-items .skill-feature .progress-value {
  margin-bottom: 10px;
  color: var(--header);
  text-transform: capitalize;
}

.personal-skills-items .skill-feature-items .skill-feature .progress {
  position: relative;
  height: 10px;
  background-color: #F5F8FD;
  border-radius: 10px;
  overflow: visible;
  margin-top: 15px;
}

.personal-skills-items .skill-feature-items .skill-feature .progress-bar {
  background-color: var(--theme);
  height: 10px;
  margin: 0;
  border-radius: inherit;
  overflow: visible;
  position: relative;
  margin-top: 0;
  border-radius: 10px;
}

.personal-skills-items .skill-feature-items .skill-feature .progress-value {
  position: absolute;
  top: -38px;
  right: -8px;
  font-size: 18px;
  font-weight: 600;
  color: var(--theme);
}

.gallery-card-item-inner .gallery-image {
  position: relative;
}

.gallery-card-item-inner .gallery-image img {
  width: 100%;
  height: 100%;
}

.gallery-card-item-inner .gallery-image::before {
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transform: scale(0.7);
  content: "";
  position: absolute;
  background: linear-gradient(99.96deg, rgba(108, 32, 123, 0.87) 0.93%, rgba(227, 38, 130, 0.87) 100%);
  z-index: 1;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}

.gallery-card-item-inner .gallery-image .icon {
  position: absolute;
  font-size: 38px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
  color: var(--white);
  opacity: 0;
  transition: all 0.4s ease-in-out;
}

.gallery-card-item-inner:hover .gallery-image::before {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}

.gallery-card-item-inner:hover .gallery-image .icon {
  opacity: 1;
}

.gallery-thumb-2 {
  position: relative;
  border-radius: 30px;
}

.gallery-thumb-2 img {
  width: 100%;
  height: 100%;
  border-radius: 30px;
}

.gallery-thumb-2::before {
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transform: scale(0.7);
  content: "";
  position: absolute;
  background: linear-gradient(99.96deg, rgba(108, 32, 123, 0.87) 0.93%, rgba(227, 38, 130, 0.87) 100%);
  z-index: 1;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
  border-radius: 30px;
}

.gallery-thumb-2 .icon {
  position: absolute;
  font-size: 38px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
  color: var(--white);
  opacity: 0;
  transition: all 0.4s ease-in-out;
}

.gallery-thumb-2:hover::before {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}

.gallery-thumb-2:hover .icon {
  opacity: 1;
}

.testimonial-wrapper-2 {
  position: relative;
  z-index: 8;
}

@media (max-width: 1199px) {
  .testimonial-wrapper-2 {
    padding-top: 0 !important;
  }
}

.testimonial-wrapper-2 .testi-bg-shape {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

@media (max-width: 1199px) {
  .testimonial-wrapper-2 .section-title {
    margin: 0 30px;
  }
}

.testimonial-wrapper-2 .testimonial-left-thumb {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
}

@media (max-width: 1899px) {
  .testimonial-wrapper-2 .testimonial-left-thumb {
    max-width: 900px;
  }
}

@media (max-width: 1600px) {
  .testimonial-wrapper-2 .testimonial-left-thumb {
    max-width: 700px;
  }
}

@media (max-width: 1399px) {
  .testimonial-wrapper-2 .testimonial-left-thumb {
    max-width: 600px;
  }
}

@media (max-width: 1199px) {
  .testimonial-wrapper-2 .testimonial-left-thumb {
    position: static;
    max-width: initial;
    height: 500px;
  }
}

.testimonial-wrapper-2 .testimonial-left-thumb img {
  border-radius: 0px 376px 0px 0px;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

@media (max-width: 1600px) {
  .testimonial-wrapper-2 .testimonial-left-thumb img {
    border-radius: 0px 230px 0px 0px;
  }
}

@media (max-width: 1399px) {
  .testimonial-wrapper-2 .testimonial-left-thumb img {
    border-radius: 0;
  }
}

.testimonial-wrapper-2 .testimonial-right-content {
  margin-left: -130px;
  margin-right: -80px;
}

@media (max-width: 1199px) {
  .testimonial-wrapper-2 .testimonial-right-content {
    margin: 0 30px;
  }
}

.testimonial-wrapper-2 .testimonial-right-content .testimonial-box-items-2 {
  background-color: var(--white);
  padding: 30px;
  border-radius: 30px;
  margin-top: 60px;
}

@media (max-width: 767px) {
  .testimonial-wrapper-2 .testimonial-right-content .testimonial-box-items-2 {
    margin-top: 30px;
  }
}

.testimonial-wrapper-2 .testimonial-right-content .testimonial-box-items-2 .top-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.testimonial-wrapper-2 .testimonial-right-content .testimonial-box-items-2 .top-area .star {
  color: rgb(255, 102, 51);
}

.testimonial-wrapper-2 .testimonial-right-content .testimonial-box-items-2 h5 {
  margin-top: 25px;
}

.testimonial-wrapper-2 .testimonial-right-content .testimonial-box-items-2 .client-info {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.testimonial-wrapper-2 .testimonial-right-content .testimonial-box-items-2 .client-info .content h4 {
  font-size: 24px;
}

@media (max-width: 1199px) {
  .testimonial-wrapper-2 .testimonial-right-content .testimonial-box-items-2 .client-info .content h4 {
    font-size: 20px;
  }
}

.white-text {
  color: var(--white) !important;
}

.white-btn {
  color: var(--black) !important;
  background: var(--white);
}

.white-btn i {
  color: var(--black) !important;
}

.white-btn:hover {
  color: var(--black) !important;
  background: var(--theme) !important;
}

.text-justify {
  text-align: justify !important;
}

/* ============================================
             CSS VARIABLES & RESET
             ============================================ */
:root {
  --ifbe-accent: #E32682;
  --ifbe-dark: #000D44;
  --ifbe-white: #ffffff;
  --ifbe-light-gray: #f4f4f4;
  --ifbe-shadow: 0 15px 40px rgba(0, 13, 68, 0.1);
  --ifbe-shadow-hover: 0 25px 50px rgba(227, 38, 130, 0.2);
  --ifbe-transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: var(--ifbe-white);
  line-height: 1.6;
}

/* ============================================
             MAIN SECTION CONTAINER
             ============================================ */
.ifbe-section {
  width: 100%;
  padding: 0px 5%;
  background: var(--ifbe-white);
  position: relative;
  overflow: hidden;
}

/* Background decoration circles */
.ifbe-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227, 38, 130, 0.03) 0%, transparent 70%);
  z-index: 0;
}

.ifbe-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 13, 68, 0.03) 0%, transparent 70%);
  z-index: 0;
}

.ifbe-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ============================================
             HEADER SECTION
             ============================================ */
.ifbe-header {
  text-align: center;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.ifbe-header.ifbe-animate {
  opacity: 1;
  transform: translateY(0);
}

.ifbe-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--ifbe-dark);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.ifbe-heading::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 5px;
  background: linear-gradient(90deg, var(--ifbe-dark), var(--ifbe-accent));
  border-radius: 3px;
}

.ifbe-highlight {
  margin-top: 10px;
  font-size: 1.3rem;
  color: #555;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.ifbe-highlight-text {
  color: var(--ifbe-accent);
  font-weight: 700;
  /* display: block; */
  margin-top: 10px;
  font-size: 1.4rem;
}

/* ============================================
             CARDS GRID
             ============================================ */
.ifbe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 15px;
  margin-bottom: 70px;
}

.ifbe-card {
  background: var(--ifbe-white);
  border-radius: 20px;
  padding: 45px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--ifbe-shadow);
  transition: var(--ifbe-transition);
  cursor: pointer;
  opacity: 0;
  transform: translateY(60px);
  border: 1px solid rgba(0, 13, 68, 0.05);
}

.ifbe-card.ifbe-animate {
  opacity: 1;
  transform: translateY(0);
}

/* Top accent bar */
.ifbe-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--ifbe-dark), var(--ifbe-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.ifbe-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--ifbe-shadow-hover);
}

.ifbe-card:hover::before {
  transform: scaleX(1);
}

/* Icon container */
.ifbe-icon-box {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(227, 38, 130, 0.08) 0%, rgba(0, 13, 68, 0.05) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  position: relative;
  transition: var(--ifbe-transition);
}

.ifbe-icon-box::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--ifbe-accent);
  opacity: 0;
  transform: scale(1.2);
  transition: all 0.4s ease;
}

.ifbe-card:hover .ifbe-icon-box::after {
  opacity: 0.3;
  transform: scale(1);
}

.ifbe-icon-box i {
  font-size: 2.5rem;
  color: var(--ifbe-dark);
  transition: var(--ifbe-transition);
}

.ifbe-card:hover .ifbe-icon-box {
  background: var(--ifbe-accent);
  transform: rotateY(360deg);
}

.ifbe-card:hover .ifbe-icon-box i {
  color: var(--ifbe-white);
}

.ifbe-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ifbe-dark);
  margin-bottom: 0;
  transition: var(--ifbe-transition);
}

.ifbe-card:hover .ifbe-card-title {
  color: var(--ifbe-accent);
}

/* ============================================
             BOTTOM CALLOUT
             ============================================ */
.ifbe-callout {
  background: linear-gradient(135deg, var(--ifbe-dark) 0%, #00155c 100%);
  border-radius: 25px;
  padding: 50px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.95) translateY(30px);
  transition: opacity 0.8s ease 0.5s, transform 0.8s ease 0.5s;
  box-shadow: 0 20px 50px rgba(0, 13, 68, 0.25);
}

.ifbe-callout.ifbe-animate {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.ifbe-callout::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle, rgba(227, 38, 130, 0.15) 0%, transparent 50%);
  animation: ifbe-pulse 4s ease-in-out infinite;
}

@keyframes ifbe-pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.ifbe-callout-content {
  position: relative;
  z-index: 1;
}

.ifbe-callout-icon {
  width: 70px;
  height: 70px;
  background: rgba(227, 38, 130, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  animation: ifbe-bounce 2s ease-in-out infinite;
}

@keyframes ifbe-bounce {

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

  50% {
    transform: translateY(-10px);
  }
}

.ifbe-callout-icon i {
  font-size: 1.8rem;
  color: var(--ifbe-accent);
}

.ifbe-callout-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--ifbe-white);
  margin-bottom: 10px;
}

.ifbe-callout-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
             RESPONSIVE DESIGN
             ============================================ */
@media (max-width: 1024px) {
  .ifbe-section {
    padding: 80px 4%;
  }

  .ifbe-heading {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .ifbe-section {
    padding: 60px 4%;
  }

  .ifbe-heading {
    font-size: 2.2rem;
  }

  .ifbe-highlight {
    font-size: 1.1rem;
  }

  .ifbe-highlight-text {
    font-size: 1.2rem;
  }

  .ifbe-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .ifbe-card {
    padding: 35px 25px;
  }

  .ifbe-callout {
    padding: 40px 25px;
    border-radius: 20px;
  }

  .ifbe-callout-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .ifbe-section {
    padding: 50px 3%;
  }

  .ifbe-heading {
    font-size: 1.8rem;
  }

  .ifbe-heading::after {
    width: 60px;
    height: 4px;
  }

  .ifbe-highlight {
    font-size: 1rem;
  }

  .ifbe-highlight-text {
    font-size: 1.1rem;
  }

  .ifbe-card {
    padding: 30px 20px;
  }

  .ifbe-icon-box {
    width: 85px;
    height: 85px;
  }

  .ifbe-icon-box i {
    font-size: 2rem;
  }

  .ifbe-card-title {
    font-size: 1.1rem;
  }

  .ifbe-callout {
    padding: 35px 20px;
  }

  .ifbe-callout-title {
    font-size: 1.3rem;
  }

  .ifbe-callout-text {
    font-size: 1rem;
  }
}

.ifbe-event-list-container {
  max-width: 500px;
  margin: 0 auto;
  background: var(--ifbe-white);
  border-radius: 20px;
  padding: 40px 35px;
  box-shadow: var(--ifbe-shadow);
  border: 1px solid rgba(0, 13, 68, 0.05);
}

.ifbe-list-header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(227, 38, 130, 0.1);
}

.ifbe-list-header h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ifbe-dark);
  margin-bottom: 5px;
}

.ifbe-list-header p {
  font-size: 0.9rem;
  color: #888;
}

/* ============================================
                       LIST STYLES
                       ============================================ */
.ifbe-event-list {
  list-style: none;
}

.ifbe-event-list li {
  margin-bottom: 15px;
}

.ifbe-event-list li:last-child {
  margin-bottom: 0;
}

.ifbe-event-link {
  display: flex;
  align-items: center;
  padding: 18px 20px;
  background: var(--ifbe-light-bg);
  border-radius: 12px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: var(--ifbe-transition);
}

.ifbe-event-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: linear-gradient(180deg, var(--ifbe-accent), var(--ifbe-dark));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease;
}

.ifbe-event-link:hover {
  background: var(--ifbe-white);
  box-shadow: var(--ifbe-shadow-hover);
  transform: translateX(8px);
}

.ifbe-event-link:hover::before {
  transform: scaleY(1);
}

/* ============================================
                       ICONS
                       ============================================ */
.ifbe-icon-wrapper {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: linear-gradient(135deg, var(--ifbe-dark) 0%, #001a66 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 18px;
  position: relative;
  transition: var(--ifbe-transition);
}

.ifbe-icon-wrapper::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  border: 2px solid var(--ifbe-accent);
  opacity: 0;
  transform: scale(1.2);
  transition: var(--ifbe-transition);
}

.ifbe-event-link:hover .ifbe-icon-wrapper::after {
  opacity: 0.5;
  transform: scale(1);
}

.ifbe-icon-wrapper i {
  font-size: 1.3rem;
  color: var(--ifbe-white);
  transition: var(--ifbe-transition);
}

.ifbe-event-link:hover .ifbe-icon-wrapper {
  background: var(--ifbe-accent);
  transform: rotateY(360deg);
}

.ifbe-event-link:hover .ifbe-icon-wrapper i {
  color: var(--ifbe-white);
}

/* ============================================
                       TEXT CONTENT
                       ============================================ */
.ifbe-text-content {
  flex: 1;
}

.ifbe-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ifbe-accent);
  margin-bottom: 4px;
}

.ifbe-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ifbe-dark);
  line-height: 1.4;
}

/* Special styling for multi-line content */
.ifbe-value.multiline {
  font-size: 0.95rem;
}

/* ============================================
                       ARROW ICON
                       ============================================ */
.ifbe-arrow {
  width: 30px;
  height: 30px;
  background: rgba(227, 38, 130, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 15px;
  transition: var(--ifbe-transition);
}

.ifbe-arrow i {
  font-size: 0.9rem;
  color: var(--ifbe-accent);
  transition: var(--ifbe-transition);
}

.ifbe-event-link:hover .ifbe-arrow {
  background: var(--ifbe-accent);
}

.ifbe-event-link:hover .ifbe-arrow i {
  color: var(--ifbe-white);
  transform: translateX(3px);
}

/* ============================================
                       ANIMATIONS
                       ============================================ */
@keyframes ifbe-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ifbe-event-list-container {
  animation: ifbe-fadeInUp 0.6s ease forwards;
}

.ifbe-event-list li {
  opacity: 0;
  animation: ifbe-fadeInUp 0.5s ease forwards;
}

.ifbe-event-list li:nth-child(1) {
  animation-delay: 0.1s;
}

.ifbe-event-list li:nth-child(2) {
  animation-delay: 0.2s;
}

.ifbe-event-list li:nth-child(3) {
  animation-delay: 0.3s;
}

/* ============================================
                       RESPONSIVE DESIGN
                       ============================================ */
@media (max-width: 576px) {
  body {
    padding: 30px 15px;
  }

  .ifbe-event-list-container {
    padding: 30px 25px;
    border-radius: 16px;
  }

  .ifbe-list-header h3 {
    font-size: 1.3rem;
  }

  .ifbe-event-link {
    padding: 15px;
  }

  .ifbe-icon-wrapper {
    width: 45px;
    height: 45px;
    min-width: 45px;
    margin-right: 12px;
  }

  .ifbe-icon-wrapper i {
    font-size: 1.1rem;
  }

  .ifbe-label {
    font-size: 0.7rem;
  }

  .ifbe-value {
    font-size: 0.9rem;
  }

  .ifbe-value.multiline {
    font-size: 0.85rem;
  }

  .ifbe-arrow {
    display: none;
  }
}

@media (max-width: 400px) {
  .ifbe-event-list-container {
    padding: 25px 20px;
  }

  .ifbe-event-link {
    flex-wrap: wrap;
  }

  .ifbe-arrow {
    display: none;
  }
}

.ifbe-callout {
  background: linear-gradient(135deg, #000D44 0%, #00155c 50%, #000D44 100%);
  border-radius: 30px;
  padding: 60px 50px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 25px 60px rgba(0, 13, 68, 0.35);
}

.ifbe-callout.ifbe-animate {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Background Animated Shapes */
.ifbe-callout-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.ifbe-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.ifbe-shape-1 {
  width: 300px;
  height: 300px;
  background: var(--ifbe-accent);
  top: -100px;
  right: -50px;
  animation: ifbe-float 8s ease-in-out infinite;
}

.ifbe-shape-2 {
  width: 200px;
  height: 200px;
  background: var(--ifbe-white);
  bottom: -80px;
  left: 20%;
  animation: ifbe-float 6s ease-in-out infinite reverse;
}

.ifbe-shape-3 {
  width: 150px;
  height: 150px;
  background: var(--ifbe-accent);
  top: 50%;
  left: -50px;
  animation: ifbe-float 7s ease-in-out infinite 1s;
}

@keyframes ifbe-float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

/* Main Content Layout */
.ifbe-callout-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 50px;
}

/* Left Side Content */
.ifbe-callout-left {
  flex: 1;
}

.ifbe-callout-badge {
  display: inline-block;
  background: rgba(227, 38, 130, 0.2);
  color: var(--ifbe-accent);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(227, 38, 130, 0.3);
  animation: ifbe-pulse 2s ease-in-out infinite;
}

@keyframes ifbe-pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(227, 38, 130, 0.4);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(227, 38, 130, 0);
  }
}

.ifbe-callout-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--ifbe-white);
  margin-bottom: 15px;
  line-height: 1.2;
}

.ifbe-callout-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 30px;
}

/* Stats Row */
.ifbe-stats-row {
  display: flex;
  align-items: center;
  gap: 25px;
}

.ifbe-stat-item {
  text-align: center;
}

.ifbe-stat-number {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--ifbe-accent);
}

.ifbe-stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ifbe-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

/* Right Side Buttons */
.ifbe-callout-right {
  flex-shrink: 0;
}

.ifbe-btn-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.ifbe-btn {
  display: flex;
  align-items: center;
  padding: 20px 30px;
  border-radius: 16px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  min-width: 280px;
}

/* Primary Button (Buyer Registration) */
.ifbe-btn-primary {
  background: linear-gradient(135deg, var(--ifbe-accent) 0%, #ff4d9e 100%);
  box-shadow: 0 10px 30px rgba(227, 38, 130, 0.4);
}

.ifbe-btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.ifbe-btn-primary:hover::before {
  left: 100%;
}

.ifbe-btn-primary:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 40px rgba(227, 38, 130, 0.5);
}

/* Secondary Button (Exhibit with Us) */
.ifbe-btn-secondary {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.ifbe-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-5px) scale(1.02);
}

/* Button Icon */
.ifbe-btn-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 18px;
  transition: all 0.4s ease;
}

.ifbe-btn-primary .ifbe-btn-icon {
  background: rgba(255, 255, 255, 0.25);
}

.ifbe-btn-secondary .ifbe-btn-icon {
  background: rgba(227, 38, 130, 0.3);
}

.ifbe-btn-icon i {
  font-size: 1.4rem;
  color: var(--ifbe-white);
  transition: all 0.4s ease;
}

.ifbe-btn:hover .ifbe-btn-icon {
  transform: scale(1.1) rotate(5deg);
}

/* Button Text */
.ifbe-btn-text {
  flex: 1;
  text-align: left;
}

.ifbe-btn-small {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 3px;
}

.ifbe-btn-large {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ifbe-white);
}

/* Button Arrow */
.ifbe-btn-arrow {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.ifbe-btn-arrow i {
  font-size: 1rem;
  color: var(--ifbe-white);
  transition: all 0.4s ease;
}

.ifbe-btn:hover .ifbe-btn-arrow {
  background: var(--ifbe-white);
}

.ifbe-btn-primary:hover .ifbe-btn-arrow i {
  color: var(--ifbe-accent);
  transform: translateX(5px);
}

.ifbe-btn-secondary:hover .ifbe-btn-arrow i {
  transform: translateX(5px);
  color: var(--ifbe-accent);
}

/* CTA Note */
.ifbe-cta-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.ifbe-cta-note i {
  color: #4ade80;
}

/* ============================================
                           RESPONSIVE DESIGN
                           ============================================ */
@media (max-width: 1024px) {
  .ifbe-callout {
    padding: 50px 40px;
  }

  .ifbe-callout-content {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .ifbe-callout-left {
    width: 100%;
  }

  .ifbe-callout-title {
    font-size: 2rem;
  }

  .ifbe-stats-row {
    justify-content: center;
  }

  .ifbe-callout-right {
    width: 100%;
  }

  .ifbe-btn-container {
    align-items: center;
  }

  .ifbe-btn {
    width: 100%;
    max-width: 350px;
  }
}

@media (max-width: 768px) {
  .ifbe-callout {
    padding: 40px 30px;
    border-radius: 24px;
  }

  .ifbe-callout-title {
    font-size: 1.6rem;
  }

  .ifbe-callout-text {
    font-size: 1rem;
  }

  .ifbe-stats-row {
    gap: 15px;
  }

  .ifbe-stat-number {
    font-size: 1.4rem;
  }

  .ifbe-stat-label {
    font-size: 0.75rem;
  }

  .ifbe-btn {
    padding: 18px 24px;
    min-width: auto;
  }

  .ifbe-btn-icon {
    width: 45px;
    height: 45px;
    margin-right: 12px;
  }

  .ifbe-btn-icon i {
    font-size: 1.2rem;
  }

  .ifbe-btn-large {
    font-size: 1rem;
  }

  .ifbe-btn-arrow {
    width: 35px;
    height: 35px;
  }
}

@media (max-width: 480px) {
  .ifbe-callout {
    padding: 35px 25px;
    border-radius: 20px;
  }

  .ifbe-callout-badge {
    font-size: 0.75rem;
    padding: 6px 16px;
  }

  .ifbe-callout-title {
    font-size: 1.4rem;
  }

  .ifbe-callout-text {
    font-size: 0.9rem;
    margin-bottom: 25px;
  }

  .ifbe-stats-row {
    flex-wrap: wrap;
    gap: 20px;
  }

  .ifbe-stat-divider {
    display: none;
  }

  .ifbe-btn {
    padding: 16px 20px;
  }

  .ifbe-btn-icon {
    width: 40px;
    height: 40px;
    margin-right: 10px;
  }

  .ifbe-btn-icon i {
    font-size: 1rem;
  }

  .ifbe-btn-small {
    font-size: 0.65rem;
  }

  .ifbe-btn-large {
    font-size: 0.95rem;
  }

  .ifbe-btn-arrow {
    display: none;
  }

  .ifbe-cta-note {
    font-size: 0.8rem;
  }
}


:root {
  --exhibitor-accent: #E32682;
  --exhibitor-dark: #000D44;
  --exhibitor-white: #ffffff;
  --exhibitor-dark-accent: #0a1a5c;
  --exhibitor-gradient: linear-gradient(135deg, #000D44 0%, #0a1a5c 50%, #000D44 100%);
  --exhibitor-light: linear-gradient(135deg, #FFFFFF 0%, #FAFBFF 50%, #FFFFFF 100%);
  --exhibitor-shadow: 0 20px 50px rgba(0, 13, 68, 0.4);
  --exhibitor-shadow-hover: 0 30px 60px rgba(227, 38, 130, 0.3);
  --exhibitor-transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}


.exhibitor-section {
  background: var(--exhibitor-light);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

/* Animated Background Grid */
.exhibitor-bg-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(227, 38, 130, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(227, 38, 130, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: exhibitor-grid-move 20s linear infinite;
}

@keyframes exhibitor-grid-move {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(60px);
  }
}

/* Floating Orbs */
.exhibitor-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: exhibitor-float 8s ease-in-out infinite;
}

.exhibitor-orb-1 {
  width: 400px;
  height: 400px;
  background: var(--exhibitor-accent);
  top: -150px;
  left: -100px;
}

.exhibitor-orb-2 {
  width: 300px;
  height: 300px;
  background: #4169E1;
  bottom: -100px;
  right: -50px;
  animation-delay: -3s;
}

.exhibitor-orb-3 {
  width: 200px;
  height: 200px;
  background: var(--exhibitor-accent);
  top: 50%;
  left: 50%;
  animation-delay: -5s;
}

@keyframes exhibitor-float {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  25% {
    transform: translate(20px, -20px) scale(1.05);
  }

  50% {
    transform: translate(-10px, 10px) scale(0.95);
  }

  75% {
    transform: translate(15px, 15px) scale(1.02);
  }
}

.exhibitor-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
  position: relative;
  z-index: 1;
}

.exhibitor-header {
  text-align: center;
  margin-bottom: 70px;
  opacity: 0;
  transform: translateY(40px);
}

.exhibitor-header.exhibitor-animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.exhibitor-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(227, 38, 130, 0.15);
  border: 1px solid rgba(227, 38, 130, 0.3);
  padding: 10px 25px;
  border-radius: 50px;
  margin-bottom: 25px;
}

.exhibitor-badge i {
  color: var(--exhibitor-accent);
  font-size: 1rem;
}

.exhibitor-badge span {
  color: var(--exhibitor-accent);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.exhibitor-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--exhibitor-dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.exhibitor-heading span {
  color: var(--exhibitor-accent);
}

.exhibitor-subtitle {
  font-size: 1.2rem;
  color: var(--exhibitor-dark-accent);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}


.exhibitor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

/* Card Styles */
.exhibitor-card {
  background: var(--exhibitor-gradient);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  transition: var(--exhibitor-transition);
  opacity: 0;
  transform: translateY(60px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.exhibitor-card.exhibitor-animate {
  opacity: 1;
  transform: translateY(0);
}

/* Image Container */
.exhibitor-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.exhibitor-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--exhibitor-transition);
}

.exhibitor-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 13, 68, 0.9) 100%);
}

.exhibitor-card-number {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 45px;
  height: 45px;
  background: rgba(227, 38, 130, 0.9);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--exhibitor-white);
  z-index: 2;
}

.exhibitor-card-icon {
  position: absolute;
  bottom: -25px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: var(--exhibitor-accent);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(227, 38, 130, 0.4);
  z-index: 2;
  transition: var(--exhibitor-transition);
}

.exhibitor-card-icon i {
  font-size: 1.5rem;
  color: var(--exhibitor-white);
}

/* Card Content */
.exhibitor-card-content {
  padding: 35px 25px 30px;
  position: relative;
}

.exhibitor-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--exhibitor-white);
  margin-bottom: 12px;
  transition: var(--exhibitor-transition);
}

.exhibitor-card-description {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 20px;
}

.exhibitor-card-features {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.exhibitor-card-features li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(227, 38, 130, 0.1);
  padding: 6px 12px;
  border-radius: 20px;
}

.exhibitor-card-features li i {
  color: var(--exhibitor-accent);
  font-size: 0.7rem;
}

/* Hover Effects */
.exhibitor-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--exhibitor-shadow-hover);
  border-color: rgba(227, 38, 130, 0.3);
}

.exhibitor-card:hover .exhibitor-card-image img {
  transform: scale(1.1);
}

.exhibitor-card:hover .exhibitor-card-icon {
  transform: translateY(-10px) rotate(10deg);
  box-shadow: 0 15px 40px rgba(227, 38, 130, 0.5);
}

.exhibitor-card:hover .exhibitor-card-title {
  color: var(--exhibitor-accent);
}


.exhibitor-cta {
  background: var(--exhibitor-gradient);
  border-radius: 30px;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.05);
  opacity: 0;
  transform: scale(0.95);
}

.exhibitor-cta.exhibitor-animate {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.8s ease 0.5s, transform 0.8s ease 0.5s;
}

.exhibitor-cta-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--exhibitor-white);
  margin-bottom: 10px;
}

.exhibitor-cta-content p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
}

.exhibitor-cta-buttons {
  display: flex;
  gap: 15px;
}

.exhibitor-cta-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 30px;
  border-radius: 14px;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--exhibitor-transition);
}

.exhibitor-cta-btn-primary {
  background: var(--exhibitor-accent);
  color: var(--exhibitor-white);
  box-shadow: 0 10px 30px rgba(227, 38, 130, 0.4);
}

.exhibitor-cta-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(227, 38, 130, 0.5);
}

.exhibitor-cta-btn-secondary {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--exhibitor-white);
}

.exhibitor-cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}

.exhibitor-cta-btn i {
  font-size: 1.1rem;
}


@media (max-width: 1200px) {
  .exhibitor-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .exhibitor-section {
    padding: 70px 0;
  }

  .exhibitor-heading {
    font-size: 2.8rem;
  }

  .exhibitor-cta {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .exhibitor-cta-buttons {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .exhibitor-section {
    padding: 60px 0;
  }

  .exhibitor-heading {
    font-size: 2.2rem;
  }

  .exhibitor-subtitle {
    font-size: 1rem;
  }

  .exhibitor-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .exhibitor-card-image {
    height: 200px;
  }

  .exhibitor-card-title {
    font-size: 1.2rem;
  }

  .exhibitor-cta {
    padding: 35px 25px;
    border-radius: 20px;
  }

  .exhibitor-cta-content h3 {
    font-size: 1.5rem;
  }

  .exhibitor-cta-btn {
    padding: 15px 25px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .exhibitor-section {
    padding: 50px 0;
  }

  .exhibitor-heading {
    font-size: 1.8rem;
  }

  .exhibitor-badge {
    padding: 8px 20px;
  }

  .exhibitor-badge span {
    font-size: 0.8rem;
  }

  .exhibitor-grid {
    gap: 20px;
  }

  .exhibitor-card-image {
    height: 180px;
  }

  .exhibitor-card-content {
    padding: 25px 20px;
  }

  .exhibitor-card-title {
    font-size: 1.1rem;
  }

  .exhibitor-card-description {
    font-size: 0.9rem;
  }

  .exhibitor-card-features {
    flex-direction: column;
    gap: 6px;
  }

  .exhibitor-cta {
    padding: 30px 20px;
  }

  .exhibitor-cta-content h3 {
    font-size: 1.3rem;
  }

  .exhibitor-cta-content p {
    font-size: 0.9rem;
  }

  .exhibitor-cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .exhibitor-cta-btn {
    justify-content: center;
  }
}


.theme-btn.color-2 {
  background-color: var(--header);
  color: var(--white);
}

.theme-btn.color-2::before {
  background-color: var(--theme);

}




/*  */




:root {
  /* Brand Colors */
  --tpn-primary: #E32682;
  --tpn-secondary: #000D44;
  --tpn-accent: #FF6B9D;
  --tpn-dark: #0A0F2C;
  --tpn-light: #FFFFFF;

  /* Gradients */
  --tpn-gradient-primary: linear-gradient(135deg, #E32682 0%, #FF6B9D 100%);
  --tpn-gradient-secondary: linear-gradient(135deg, #000D44 0%, #1A237E 100%);
  --tpn-gradient-overlay: linear-gradient(180deg, rgba(0, 13, 68, 0.4) 0%, rgba(0, 13, 68, 0.8) 100%);

  /* Typography */
  --tpn-font-heading: 'Playfair Display', serif;
  --tpn-font-body: 'Outfit', sans-serif;

  /* Shadows */
  --tpn-shadow-soft: 0 4px 30px rgba(0, 0, 0, 0.1);
  --tpn-shadow-glow: 0 0 40px rgba(227, 38, 130, 0.3);
  --tpn-shadow-card: 0 20px 60px rgba(0, 0, 0, 0.3);

  /* Transitions */
  --tpn-transition-fast: 0.3s ease;
  --tpn-transition-medium: 0.5s ease;
  --tpn-transition-slow: 0.8s ease;
}



#tpn-premium-slider {
  width: 100%;
  height: 100vh;
  min-height: 900px;
  position: relative;
  overflow: hidden;
  font-family: var(--tpn-font-body);
  background: var(--tpn-dark);
}

#tpn-slider-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

/* ==========================================================================
   Slide Styles
   ========================================================================== */
.tpn-slide-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s ease;
}

.tpn-slide-item.active {
  opacity: 1;
  visibility: visible;
}

/* Background Image with Zoom Effect */
.tpn-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 8s ease;
}

.tpn-slide-item.active .tpn-slide-bg {
  transform: scale(1.15);
}

/* ==========================================================================
   Overlay Layers
   ========================================================================== */
.tpn-overlay-primary {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--tpn-secondary);
  opacity: 0.6;
  z-index: 1;
}

.tpn-overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--tpn-gradient-overlay);
  opacity: 0.9;
  z-index: 2;
}

.tpn-overlay-vignette {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 3;
}

/* ==========================================================================
   Decorative Shapes
   ========================================================================== */
.tpn-decor-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  z-index: 4;
  animation: tpn-float 20s infinite ease-in-out;
}

.tpn-shape-1 {
  width: 400px;
  height: 400px;
  background: var(--tpn-primary);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.tpn-shape-2 {
  width: 300px;
  height: 300px;
  background: #4A00E0;
  bottom: -50px;
  left: -50px;
  animation-delay: -5s;
}

.tpn-shape-3 {
  width: 200px;
  height: 200px;
  background: var(--tpn-accent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -10s;
}

@keyframes tpn-float {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  25% {
    transform: translate(30px, -30px) scale(1.1);
  }

  50% {
    transform: translate(-20px, 20px) scale(0.95);
  }

  75% {
    transform: translate(20px, 10px) scale(1.05);
  }
}

/* ==========================================================================
   Content Container
   ========================================================================== */
.tpn-content-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  padding: 40px;
  /* padding-top: 170px; */
}

.tpn-content-box {
  max-width: 1200px;
  text-align: center;
  color: var(--tpn-light);
}

/* ==========================================================================
   Badge Styles
   ========================================================================== */
.tpn-badge-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 5px 24px;
  border-radius: 50px;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease 0.2s;
}

.tpn-slide-item.active .tpn-badge-wrapper {
  opacity: 1;
  transform: translateY(0);
}

.tpn-badge-icon {
  width: 32px;
  height: 32px;
  background: var(--tpn-gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.tpn-badge-text {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ==========================================================================
   Heading Styles
   ========================================================================== */
.tpn-heading-primary {
  font-family: var(--tpn-font-heading);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 25px;
  color: var(--body);
}

.tpn-heading-line {
  /* display: block; */
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease 0.4s;
}

.tpn-slide-item.active .tpn-heading-line {
  opacity: 1;
  transform: translateY(0);
}

.tpn-heading-accent {
  background: var(--tpn-gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ==========================================================================
   Subtitle Styles
   ========================================================================== */
.tpn-subtitle {
  font-size: 1.25rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
  margin: 0 auto 40px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease 0.6s;
}

.tpn-slide-item.active .tpn-subtitle {
  opacity: 1;
  transform: translateY(0);
}

.tpn-highlight {
  color: var(--tpn-accent);
  font-weight: 600;
}

/* ==========================================================================
   Button Styles
   ========================================================================== */
.tpn-btn-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 50px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease 0.8s;
}

.tpn-slide-item.active .tpn-btn-group {
  opacity: 1;
  transform: translateY(0);
}

.tpn-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  background: var(--tpn-gradient-primary);
  color: var(--tpn-light);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s ease;
  box-shadow: var(--tpn-shadow-glow);
  position: relative;
  overflow: hidden;
}

.tpn-btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.tpn-btn-primary:hover::before {
  left: 100%;
}

.tpn-btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(227, 38, 130, 0.4);
}

.tpn-btn-primary i {
  transition: transform 0.3s ease;
}

.tpn-btn-primary:hover i {
  transform: translateX(5px);
}

.tpn-btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: transparent;
  color: var(--tpn-light);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.4s ease;
}

.tpn-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--tpn-light);
  transform: translateY(-5px);
}

/* ==========================================================================
   Features Row (Slide 1)
   ========================================================================== */
.tpn-features-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease 1s;
}

.tpn-slide-item.active .tpn-features-row {
  opacity: 1;
  transform: translateY(0);
}

.tpn-feature-item {
  text-align: center;
}

.tpn-feature-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--tpn-gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tpn-feature-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.7;
}

.tpn-feature-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.3);
}

/* ==========================================================================
   Services Grid (Slide 2)
   ========================================================================== */
.tpn-services-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease 1s;
}

.tpn-slide-item.active .tpn-services-grid {
  opacity: 1;
  transform: translateY(0);
}

.tpn-service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 25px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.tpn-service-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.tpn-service-item i {
  color: var(--tpn-primary);
  font-size: 1.2rem;
}

.tpn-service-item span {
  font-weight: 500;
}

/* ==========================================================================
   Process Row (Slide 3)
   ========================================================================== */
.tpn-process-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease 1s;
}

.tpn-slide-item.active .tpn-process-row {
  opacity: 1;
  transform: translateY(0);
}

.tpn-process-item {
  text-align: center;
  padding: 20px;
}

.tpn-process-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-size: 1.5rem;
  color: var(--tpn-primary);
  border: 2px solid rgba(227, 38, 130, 0.3);
  transition: all 0.3s ease;
}

.tpn-process-item:hover .tpn-process-icon {
  background: var(--tpn-gradient-primary);
  color: white;
  transform: scale(1.1);
}

.tpn-process-item span {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
}

.tpn-process-arrow {
  color: var(--tpn-primary);
  font-size: 1.2rem;
  opacity: 0.5;
}

/* ==========================================================================
   Navigation Controls
   ========================================================================== */
.tpn-nav-controls {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 30px;
  z-index: 20;
}

.tpn-nav-btn {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tpn-nav-btn:hover {
  background: var(--tpn-gradient-primary);
  border-color: transparent;
  transform: scale(1.1);
}

.tpn-progress-bar {
  width: 200px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  overflow: hidden;
}

.tpn-progress-fill {
  height: 100%;
  width: 33.33%;
  background: var(--tpn-gradient-primary);
  border-radius: 2px;
  transition: width 0.5s ease;
}

/* ==========================================================================
   Slide Indicators
   ========================================================================== */
.tpn-indicators {
  position: absolute;
  bottom: 40px;
  right: 40px;
  display: flex;
  gap: 12px;
  z-index: 20;
}

.tpn-indicator {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
}

.tpn-indicator::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  border: 2px solid var(--tpn-primary);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tpn-indicator:hover::before {
  opacity: 1;
}

.tpn-indicator.active {
  background: var(--tpn-primary);
  transform: scale(1.2);
}

/* ==========================================================================
   Scroll Indicator
   ========================================================================== */
.tpn-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  z-index: 20;
}

.tpn-scroll-line {
  width: 40px;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.tpn-scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--tpn-primary);
  animation: tpn-scroll-line 2s infinite;
}

@keyframes tpn-scroll-line {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1200px) {
  .tpn-heading-primary {
    font-size: 3rem;
  }
}

@media (max-width: 992px) {
  .tpn-heading-primary {
    font-size: 3rem;
  }

  .tpn-services-grid {
    flex-wrap: wrap;
  }

  .tpn-features-row {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  #tpn-premium-slider {
    height: 100vh;
    min-height: 700px;
  }

  .tpn-content-container {
    padding: 20px;
    align-items: flex-start;
    padding-top: 130px;
  }

  .tpn-content-box {
    text-align: center;
  }

  .tpn-heading-primary {
    font-size: 2.2rem;
    line-height: 1.2;
  }

  .tpn-subtitle {
    font-size: 1rem;
    line-height: 1.6;
  }

  .tpn-btn-group {
    flex-direction: column;
    align-items: center;
  }

  .tpn-btn-primary,
  .tpn-btn-secondary {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .tpn-features-row {
    flex-direction: column;
    gap: 20px;
  }

  .tpn-feature-divider {
    width: 50%;
    height: 1px;
    margin: 0 auto;
  }

  .tpn-services-grid {
    flex-direction: column;
    align-items: center;
  }

  .tpn-process-row {
    flex-wrap: wrap;
  }

  .tpn-process-arrow {
    transform: rotate(90deg);
  }

  .tpn-nav-controls {
    bottom: 140px;
    left: 50%;
    transform: translateX(-50%);
  }

  .tpn-indicators {
    bottom: 100px;
    right: 50%;
    transform: translateX(50%);
  }

  .tpn-scroll-indicator {
    display: none;
  }

  .tpn-decor-shape {
    opacity: 0.2;
  }
}

@media (max-width: 480px) {
  .tpn-heading-primary {
    font-size: 1.8rem;
  }

  .tpn-badge-wrapper {
    flex-direction: column;
    gap: 8px;
    padding: 15px 20px;
  }

  .tpn-badge-text {
    font-size: 12px;
  }

  .tpn-progress-bar {
    width: 120px;
  }
}

.d-none {
  display: none;
}

@media (max-width:786px) {
  .hide-in-mobile {
    display: none !important;
  }
}



.fs-30px {
  font-size: 30px !important;
}

/* Professional Contact List Styling */
.cf-contact-list {
  background-color: #ffffff;
  border-radius: 12px;


  max-width: 400px;
}

.cf-contact-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cf-contact-item {
  display: flex;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 13, 68, 0.1);
  transition: all 0.3s ease;
}

.cf-contact-item:last-child {
  border-bottom: none;
}

.cf-contact-item:hover {
  background-color: rgba(227, 38, 130, 0.03);
  padding-left: 10px;
}

.cf-icon-wrapper {
  background: linear-gradient(135deg, #E32682, #c51e6b);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cf-icon-wrapper i {
  color: #ffffff;
  font-size: 20px;
}

.cf-contact-item:hover .cf-icon-wrapper {
  transform: scale(1.1);
  box-shadow: 0 5px 20px rgba(227, 38, 130, 0.4);
}

.cf-contact-content {
  flex: 1;
}

.cf-contact-label {
  display: block;
  color: #000D44;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.cf-contact-value {
  color: #000D44;
  font-size: 16px;
  margin: 0;
  line-height: 1.6;
}


.cf-contact-link {
  color: #000D44;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.cf-contact-link:hover {
  color: #E32682;
}

.cf-contact-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #E32682;
  transition: width 0.3s ease;
}

.cf-contact-link:hover::after {
  width: 100%;
}

/* Social Icons Styling */
.cf-social-icons {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.cf-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(0, 13, 68, 0.1);
  color: #000D44;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cf-social-link i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.cf-social-link:hover {
  background-color: #E32682;
  color: #ffffff;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(227, 38, 130, 0.3);
}

.cf-social-link:hover i {
  transform: scale(1.2);
}

/* Icon Animation Keyframes */
@keyframes cf-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(227, 38, 130, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(227, 38, 130, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(227, 38, 130, 0);
  }
}

.cf-icon-wrapper {
  animation: cf-pulse 2s infinite;
}

.cf-icon-wrapper:hover {
  animation: none;
}

/* Responsive Design */
@media (max-width: 480px) {
  .cf-contact-list {
    padding: 20px;
  }

  .cf-contact-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .cf-icon-wrapper {
    margin-bottom: 15px;
  }

  .cf-social-icons {
    flex-wrap: wrap;
  }
}

/* Entrance Animation Enhancement */
.wow.fadeInUp {
  animation: cf-fadeInUp 0.8s ease forwards;
  opacity: 0;
}

@keyframes cf-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Staggered Animation for List Items */
.cf-contact-item:nth-child(1) {
  animation-delay: 0.1s;
}

.cf-contact-item:nth-child(2) {
  animation-delay: 0.2s;
}

.cf-contact-item:nth-child(3) {
  animation-delay: 0.3s;
}

.cf-contact-item:nth-child(4) {
  animation-delay: 0.4s;
}

.pt-30 {
  padding-top: 30px !important;
}

@media (max-width: 575px) {
  .fs-22pn {
    font-size: 22px !important;
  }
}

html {
  scroll-behavior: smooth;
}


/* blog css  */
.icon-list li {
  list-style: none;
  display: flex;
  gap: 10px;
}

.icon-list i {
  color: #E32682;
  margin-top: 4px;
}

.blog-list {
  display: flex;
  flex-direction: column;
  /* 👈 row se column */
  gap: 12px;
  padding-left: 0;
}

.blog-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  list-style: none;
}

.blog-list li i {
  color: #E32682;
  margin-top: 4px;
}


/* card details  */
.contact-widget {
  background: rgb(245, 248, 253);
  padding: 30px;
  border-radius: 18px;
  color: #fff;
}

.contact-title {
  font-size: 28px;
  margin-bottom: 25px;
}

.contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-item .icon {
  width: 44px;
  height: 44px;
  background: #e32682;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
}

.contact-item .text span {
  display: block;
  font-size: 14px;
  color: #aaa;
}

.contact-item .text a {
  color: #e32682;
  font-weight: 600;
  text-decoration: none;
}

.contact-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 25px;
}

.contact-actions.light {
  margin-top: 15px;
}

.btn-yellow {
  background: #e32682;
  color: white;
  padding: 5px 22px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-white {
  background: black;
  color: white;
  padding: 5px 22px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
}

.btn-circle {
  width: 46px;
  height: 46px;
  background: #e32682;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 16px;
}

.btn-circle.white {
  background: #fff;
}

.footer-logo img {
  width: 270px !important;
}

.logo img {
  width: 230px !important;
}




/* ==========================================================================
   Bharatiya Vyapar Mahotsav (BVM) Section v3 - Premium Redesign
   ========================================================================== */
.bvm-premium-section {
  background: #ffffff;
  position: relative;
  overflow: hidden;
  padding: 70px 0;
}

/* Background Layers */
.bvm-bg-glow-1 {
  position: absolute;
  top: -10%;
  left: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 13, 68, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}

.bvm-bg-glow-2 {
  position: absolute;
  bottom: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(227, 38, 130, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}

.bvm-wafer-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 1;
  pointer-events: none;
}

.bvm-premium-wrapper {
  position: relative;
  z-index: 2;
}

/* Typography & Content */
.bvm-tag-premium {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 13, 68, 0.06);
  color: #000D44;
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  border: 1px solid rgba(0, 13, 68, 0.1);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #E32682;
  border-radius: 50%;
  display: inline-block;
  animation: bvm-pulse 1.5s infinite;
}

@keyframes bvm-pulse {
  0% {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(227, 38, 130, 0.4);
  }

  70% {
    transform: scale(1.5);
    opacity: 0;
    box-shadow: 0 0 0 10px rgba(227, 38, 130, 0);
  }

  100% {
    transform: scale(1);
    opacity: 0;
  }
}

.bvm-title-v3 {
  font-size: 40px !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
  color: #000D44;
}

.gradient-text-alt {
  background: linear-gradient(90deg, #E32682 0%, #000D44 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bvm-lead {
  font-size: 18px;
  line-height: 1.7;
  color: #555;
  max-width: 90%;
}

/* Feature Grid v3 */
.bvm-feature-grid-v3 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.bvm-feature-card-v3 {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.bvm-icon-v3 {
  width: 45px;
  height: 45px;
  background: #000D44;
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.bvm-text-v3 h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #000D44;
}

.bvm-text-v3 p {
  font-size: 13px;
  line-height: 1.4;
  margin-bottom: 0;
  color: #666;
}

/* CTA & Stats Row */
.bvm-cta-v3 {
  display: flex;
  align-items: center;
  gap: 30px;
}

.bvm-btn-magnetic {
  padding: 20px 30px !important;
  font-size: 15px !important;
  background: #000D44 !important;
  border-radius: 100px;
  color: #fff !important;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: background 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 13, 68, 0.2);
}

.bvm-btn-magnetic:hover {
  background: #E32682 !important;
}

.stat-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #000D44;
  background: rgba(227, 38, 130, 0.08);
  padding: 8px 18px;
  border-radius: 50px;
}

/* Visual Components v3 */
.bvm-visual-premium-v3 {
  position: relative;
  perspective: 1500px;
}

.bvm-main-frame-v3 {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  z-index: 2;
  transform-style: preserve-3d;
}

.bvm-main-img-v3 {
  width: 100%;
  transition: transform 0.5s ease;
}

.frame-rim-light {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  pointer-events: none;
  z-index: 3;
}

/* Crystalline Card */
.bvm-crystalline-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 240px;
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 25px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  z-index: 4;
  overflow: hidden;
}

.card-glass-top {
  padding: 25px;
  text-align: center;
  background: linear-gradient(135deg, rgba(227, 38, 130, 0.1), rgba(0, 13, 68, 0.1));
}

.card-glass-top .day {
  display: block;
  font-size: 42px;
  font-weight: 800;
  color: #E32682;
  line-height: 1;
}

.card-glass-top .month {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #000D44;
  letter-spacing: 2px;
}

.card-glass-footer {
  padding: 15px;
  background: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: #555;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.card-glass-footer i {
  color: #E32682;
}

/* Floating Decor */
.bvm-float-circle-1 {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #E32682, transparent);
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.3;
  animation: bvm-float 5s ease-in-out infinite;
}

.bvm-float-circle-2 {
  position: absolute;
  bottom: 20%;
  right: -40px;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #000D44, transparent);
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.2;
  animation: bvm-float 7s ease-in-out infinite alternate;
}

@keyframes bvm-float {

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

  50% {
    transform: translateY(-20px);
  }
}

/* Responsive */
@media (max-width: 991px) {
  .bvm-premium-section {
    padding: 60px 0;
  }

  .bvm-title-v3 {
    font-size: 38px !important;
  }

  .bvm-feature-grid-v3 {
    grid-template-columns: 1fr;
  }

  .bvm-crystalline-card {
    position: relative;
    right: 0;
    bottom: 0;
    margin-top: 30px;
    width: 100%;
  }

  .bvm-cta-v3 {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/* BVM Detail Page Premium Styles */
.bvm-det-section {
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.bvm-det-about-visual {
  position: relative;
  perspective: 1000px;
}

.bvm-det-main-img {
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 2;
  width: 100%;
}

.bvm-det-glass-card {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(227, 38, 130, 0.2);
  padding: 30px;
  border-radius: 20px;
  z-index: 3;
  box-shadow: 0 20px 40px rgba(227, 38, 130, 0.1);
}

.bvm-det-glass-card h4 {
  color: #E32682;
  font-weight: 800;
  margin-bottom: 5px;
}

.bvm-det-glass-card p {
  color: #000D44;
  font-weight: 600;
}

.bvm-det-tag {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(90deg, #E32682, #000D44);
  color: #fff;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 25px;
  box-shadow: 0 10px 20px rgba(227, 38, 130, 0.2);
}

.bvm-det-title {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 30px;
  color: #000D44;
}

.bvm-det-lead {
  font-size: 18px;
  color: #4a4a4a;
  line-height: 1.8;
}

/* Premium Checkbox List */
.bvm-det-check-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.bvm-det-check-box {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #E32682, #ff6aae);
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: 0 8px 15px rgba(227, 38, 130, 0.3);
}

/* Benefits Grid */
.bvm-det-benefit-card {
  background: #fff;
  padding: 45px 35px;
  border-radius: 24px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.bvm-det-benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #E32682, #000D44);
  transform: scaleX(0);
  transition: transform 0.5s ease;
  transform-origin: left;
}

.bvm-det-benefit-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.bvm-det-benefit-card:hover::before {
  transform: scaleX(1);
}

.bvm-det-benefit-icon {
  width: 70px;
  height: 70px;
  background: rgba(227, 38, 130, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  font-size: 28px;
  color: #E32682;
  margin-bottom: 30px;
  transition: all 0.4s ease;
}

.bvm-det-benefit-card:hover .bvm-det-benefit-icon {
  background: #E32682;
  color: #fff;
  transform: rotateY(180deg);
}

/* Process Section */
.bvm-det-process-box {
  background: #000D44;
  padding: 60px;
  border-radius: 40px;
  color: #fff;
  box-shadow: 0 40px 80px rgba(0, 13, 68, 0.2);
}

.process-step {
  display: flex;
  gap: 25px;
  margin-bottom: 35px;
}

.process-step:last-child {
  margin-bottom: 0;
}

.step-num {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 800;
  color: #E32682;
}

/* FAQ Accordion - Pro Design */
.bvm-det-faq-item {
  background: #fff;
  border-radius: 20px;
  margin-bottom: 20px;
  border: 1px solid #f0f0f0;
  overflow: hidden;
  transition: all 0.4s ease;
}

.bvm-det-faq-header {
  padding: 25px 35px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 18px;
  color: #000D44;
  background: #fff;
  transition: all 0.3s ease;
}

.bvm-det-faq-header i {
  width: 30px;
  height: 30px;
  background: #f8f9fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.4s ease;
}

.bvm-det-faq-body {
  padding: 0 35px 30px;
  color: #555;
  line-height: 1.7;
  display: none;
  font-size: 16px;
}

.bvm-det-faq-item.active {
  border-color: #E32682;
  box-shadow: 0 15px 30px rgba(227, 38, 130, 0.08);
}

.bvm-det-faq-item.active .bvm-det-faq-body {
  display: block;
}

.bvm-det-faq-item.active .bvm-det-faq-header {
  background: rgba(227, 38, 130, 0.02);
  color: #E32682;
}

.bvm-det-faq-item.active .bvm-det-faq-header i {
  background: #E32682;
  color: #fff;
  transform: rotate(180deg);
}

@media (max-width: 767px) {
  .bvm-det-title {
    font-size: 36px;
  }

  .bvm-det-process-box {
    padding: 40px 25px;
  }

  .bvm-det-glass-card {
    position: relative;
    right: 0;
    bottom: 0;
    margin-top: 30px;
    padding: 20px;
  }
}

/* BVM Who Should Exhibit Marquee */
.bvm-marquee-section {
    background: #000D44;
    padding: 60px 0;
    overflow: hidden;
    position: relative;
}

.bvm-marquee-title {
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 24px;
}

.bvm-marquee-wrapper {
    display: flex;
    white-space: nowrap;
}

.bvm-marquee-content {
    display: flex;
    flex-shrink: 0;
    align-items: center;
}

.bvm-marquee-item {
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    padding: 0 40px;
    position: relative;
    display: flex;
    align-items: center;
}

.bvm-marquee-item::after {
    content: '★';
    color: #E32682;
    font-size: 14px;
    margin-left: 40px;
}

@keyframes bvm-marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.bvm-marquee-section:hover .bvm-marquee-wrapper {
    animation-play-state: paused;
}


/* Premium BVM Exhibit Marquee - Job Opportunity Style */
.bvm-exhibit-section {
    background: #000D44;
    padding:60px 0;
    overflow: hidden;
    position: relative;
}

.bvm-exhibit-header {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.bvm-exhibit-badge {
    background: #FFD21E;
    color: #1A1A4B;
    padding: 8px 15px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 28px;
    box-shadow: 0 4px 10px rgba(255, 210, 30, 0.3);
}

.bvm-exhibit-title-text {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 0;
}

.bvm-exhibit-track {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    width: max-content;
}

.bvm-exhibit-row-1 { animation: bvm-sl 50s linear infinite; }
.bvm-exhibit-row-2 { animation: bvm-sr 60s linear infinite; }
.bvm-exhibit-row-3 { animation: bvm-sl 55s linear infinite; }

.bvm-exhibit-pill {
    background: #fff;
    padding: 12px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
    white-space: nowrap;
    transition: 0.3s;
}

.bvm-exhibit-pill i {
    font-size: 18px;
    color: #E32682;
}

.bvm-exhibit-pill span {
    color: #000;
    font-weight: 700;
    font-size: 15px;
}

@keyframes bvm-sl {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes bvm-sr {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.bvm-exhibit-section:hover .bvm-exhibit-track {
    animation-play-state: paused;
}

@media (max-width: 991px) {
    .bvm-exhibit-title-text { font-size: 28px; }
    .bvm-exhibit-badge { font-size: 22px; }
}
