@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Prompt:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Quicksand:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --body: #fff;
  --black: #000;
  --white: #fff;
  --theme: #23a445;
  --header: #603c1c;
  --text: #101010;
  --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: "Noto 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: "Prompt", 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: 38px;
  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: 400;
  line-height: 133%;
  color: #000;
  text-align: center;
}
@media (max-width: 1899px) {
  h3 {
    font-size: 26px;
  }
}
@media (max-width: 1600px) {
  h3 {
    font-size: 19px;
  }
}
@media (max-width: 1399px) {
  h3 {
    font-size: 22px;
  }
}
@media (max-width: 1199px) {
  h3 {
    font-size: 20px;
  }
}

h4 {
  font-size: 19px;
  font-weight: 500;
  line-height: 27px;
}
@media (max-width: 1199px) {
  h4 {
    font-size: 20px;
  }
}

h5 {
  font-size: 17px;
  font-weight: 300;
  line-height: 25px;
}

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: "Prompt", 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: 0;
  right: 0;
}
@media (max-width: 767px) {
  .achieve-success-wrapper .achieve-left-thumb .sm-thumb {
    max-width: 200px;
  }
}
.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: 120px;
  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: "Prompt", 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: "Prompt", 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: "Prompt", 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: "Prompt", sans-serif;
}
.event-details-wrapper .event-details-info .info-list .info-item .value {
  font-size: 16px;
  font-family: "Prompt", 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: 24px;
  color: var(--header);
  font-weight: 600;
  font-family: "Prompt", 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;
  font-size: 16px;
  line-height: 26px;
}
.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: "Prompt", 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: 18px;
  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: "Prompt", 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: rgb(13 48 23);
  z-index: -1;
}

.footer-wrappper {
  padding: 70px 0 100px;
}
.footer-wrappper .footer-widget-items {
  margin-top: 30px;
  color: #FFF;
}
.footer-wrappper .footer-widget-items .widget-head {
  margin-bottom: 30px;
}
.footer-wrappper .footer-widget-items .widget-head h3 {
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  text-align: left;
}
.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: 300;
}
.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;
  position: absolute;
  left: 0;
  top: 9px;
}
.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);
  position: relative;
  padding: 0.;
  display: block;
}
.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: 13px;
}
.footer-wrappper .footer-widget-items .icon-area li .icon {
  width: 52px;
  height: 52px;
  line-height: 47px;
  text-align: center;
  background-color: var(--theme);
  border-radius: 50%;
  flex-shrink: 0;
}
.footer-wrappper .footer-widget-items .icon-area li .icon img{
  width: 25px;
  height: 25px;
}
.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: 18px;
  font-weight: 300;
}
.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: 30px;
}
.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;
  }
}
.footer-bottom .footer-bottom-wrapper p {
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
}
.footer-bottom .footer-bottom-wrapper p a{
  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: 31px;
  }
}
@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: 400;
  color: #000000;
  font-family: "Prompt", sans-serif;
  padding: 20px 0;
  text-align: left;
  position: relative;
  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: 240px;
  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: 25px 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: #000000;
}
.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: #000000;
}
.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: #000000;
}
.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: #c7e5f0;
}
.breadcrumb-wrapper .page-heading {
  padding: 130px 0 80px;
  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: 95px;
    padding-bottom: 50px;
  }
}
.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: #000000;
  text-transform: capitalize;
  font-family: "Prompt", 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: #000000;
  position: relative;
}
.breadcrumb-wrapper .page-heading .breadcrumb-list li a:hover {
  color: var(--theme);
}
.breadcrumb-wrapper .page-heading .breadcrumb-title {
  font-size: 44px;
  font-weight: 600;
  color: #000000;
  font-family: "Prompt", 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;
}


.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;
}
.cta-section{
  background: #1d5b2f;
}
.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: 100px;
  }
}
@media (max-width: 1199px) {
  .hero-1 .hero-content h1 {
    font-size: 120px;
  }
}
@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: 80px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 2.5px;
}
@media (max-width: 1399px) {
  .hero-1 .hero-content h2 {
    font-size: 60px;
  }
}
@media (max-width: 1199px) {
  .hero-1 .hero-content h2 {
    font-size: 48px;
  }
}
@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: "Prompt", 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: "Prompt", 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: "Prompt", 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: "Prompt", 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;
  align-items: center;
  gap: 35px;
}
@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(../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: 0 0 25px;
  border-radius: 20px;
  position: relative;
  text-align: center;
}
.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: auto;
  color: var(--header);
  margin-top: 13px;
  padding: 13px 22px;
}
@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 img{
  border: none;
  width: 100%;
  margin: 0 0 20px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.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 p {
  padding: 0 25px;
  
}

.pricing-box-items.style-2 .pricing-header h3 {
  font-weight:500;
}
.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: 19px;
  font-weight: 400;
  color: var(--theme);
  font-family: "Prompt", 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: "Prompt", 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: 120px 0;
}
@media (max-width: 1199px) {
  .section-padding {
    padding: 100px 0;
  }
}
@media (max-width: 991px) {
  .section-padding {
    padding: 50px 0;
  }
  .cta-section {
    padding: 50px 0;
}
  .footer-wrappper {
    padding: 50px 0 50px;
}
}

.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: "Prompt", 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: "Prompt", 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;
}

.welcomeimg
{
  border-top-left-radius: 140px;
  border-bottom-left-radius: 140px;
  border-bottom-right-radius: 140px;
}
.logo img{
  width: 210px;
}
.logo img.logo-dark{
  display: none;
}

.sticky .logo img{
  display: none;
}
.sticky .logo img.logo-dark{
  display: block;
}
@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: var(--theme);
}
.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;
}
.client-info img
{
  border-radius:50%;
  width: 70px;
}
.testimonial-wrapper-2 .testimonial-right-content .testimonial-box-items-2 .client-info .content h4 {
  font-size: 22px;
}
.mega-menu-wrapper
{
      padding: 5px 10px;
}
@media (max-width: 1199px) {
  .testimonial-wrapper-2 .testimonial-right-content .testimonial-box-items-2 .client-info .content h4 {
    font-size: 20px;
  }
}


/* Main slider */
.main-slider .swiper-pagination {
  text-align: right;
  right: 20px;
  left: auto;
  bottom: 20px;
}

.main-slider .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #fff;
  opacity: 0.6;
  border-radius: 50%;
  margin: 0 4px !important;
  transition: all 0.3s ease;
}

.main-slider .swiper-pagination-bullet-active {
  width: 22px;
  height: 8px;
  border-radius: 20px;
  opacity: 1;
}
/* Main slider */



.fashion-swiper-wrapper {
    padding: 0px 60px 0px 60px;
}

/* Navigation Buttons */
.fashion-swiper-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 45px;
    height: 45px;
    color: var(--theme);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    font-size: 40px;
}

.fashion-swiper-prev {
    left: 0;
}

.fashion-swiper-next {
    right: 0;
}

/* Swiper spacing */
.fashionSwiper {
    padding: 20px 0;
}

.swiper-slide {
    height: auto;
}

/* Optional: improve card height consistency */
.pricing-box-items {
    height: 100%;
}


/* ===============================
   PRICING SECTION STYLE START
================================== */

.rs-price-table {
    position: relative;
    background: var(--white);
    border-radius: 22px;
    padding: 25px 30px;
    border: 1px solid var(--border);
    box-shadow: var(--box-shadow);
    transition: all 0.4s ease;
    height: 100%;
    overflow: hidden;
}

/* Soft Accent Corner Glow */
.rs-price-table::after {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, var(--theme) 0%, transparent 70%);
    opacity: 0.08;
    transition: all 0.4s ease;
}

.rs-price-table:hover {
    transform: translateY(-10px);
    box-shadow: 0px 25px 50px rgba(0, 13, 68, 0.15);
}

.pricing__area-item-top-price {
    font-size: 18px;
    font-weight: 600;
    color: var(--header);
    margin-bottom: 35px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
    text-align: center;
}

/* ===============================
   INNER PRICE BOX DESIGN
================================== */

.price-details {
    margin-bottom: 18px;
}
/* Smooth Premium Hover */
.price-info {
    background: linear-gradient(145deg, #fffaf6, #fff7f0);
    border: 1px solid #f4dfcc;
    border-radius: 6px;
    padding: 12px 20px;
    transition: all 0.35s ease;
    position: relative;
}

.price-info p{
  color: #23a445;
  font-weight: 700;
  font-size: 18px;
}

/* Remove old ::before animation if present */
.price-info::before {
    display: none;
}

.price-info:hover {
    transform: translateY(-6px);
    border-color: var(--theme);
    background: #ffffff;
    box-shadow: 
        0px 12px 28px rgba(0, 13, 68, 0.12),
        0px 0px 0px 3px rgba(35, 164, 69, 0.08);
}

/* Subtle price emphasis */
.price-info:hover .price {
    color: var(--bg);
    letter-spacing: 0.5px;
}
.price-info h4 {
    font-size: 15px;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 6px;
    position: relative;
    z-index: 2;
    line-height: 25px;
}

.price {
    font-size: 22px;
    font-weight: 700;
    color: var(--theme);
    margin: 0;
    position: relative;
    z-index: 2;
}



/* ===============================
   EXECUTIVE SECTION START
================================== */

.executive-section {
    background: var(--body);
}

/* Tabs Styling */
.executive-tabs .nav-link {
    border: 1px solid var(--border);
    color: var(--text);
    padding: 10px 28px;
    margin: 0 6px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    background: var(--white);
}

.executive-tabs .nav-link:hover {
    border-color: var(--theme);
    color: var(--theme);
}

.executive-tabs .nav-link.active {
    background: linear-gradient(135deg, #603c1c, #603c1c);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(0, 13, 68, 0.15);
}

/* ===============================
   TEAM CARD DESIGN
================================== */

.team-card {
    background: var(--white);
    border-radius: 20px;
    padding: 25px 20px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

/* Subtle Accent Glow */
.team-card::after {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--theme) 0%, transparent 70%);
    opacity: 0.06;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 13, 68, 0.15);
    border-color: var(--theme);
}

/* Image */
.team-img {
    width: 110px;
    height: 110px;
    margin: 0 auto 18px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--theme);
    transition: all 0.3s ease;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card:hover .team-img {
    transform: scale(1.08);
}

/* Text */
.team-info h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--header);
    margin-bottom: 6px;
    text-transform: uppercase;
}

.team-info span {
    font-size: 14px;
    color: var(--theme);
    font-weight: 600;
}

/* ===============================
   EXECUTIVE SECTION END
================================== */

.pricing-section-2 {
    background: linear-gradient(
        180deg,
        rgba(35, 164, 69, 0.04) 0%,
        #ffffff 100%
    );
    padding: 80px 0;
}
/* ===============================
   PRICING SECTION STYLE END
================================== */
/* Mobile */
@media (max-width: 767px) {
    .fashion-swiper-wrapper {
        padding: 0px 20px;
    }
}

/* ===============================
   VENUE BOX STYLE START
================================== */

.venue-box {
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow: var(--box-shadow);
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
    margin: 30px 0 0;
}

/* Soft decorative glow */
.venue-box::after {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, var(--theme) 0%, transparent 70%);
    opacity: 0.06;
}

/* Hover lift */
.venue-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 13, 68, 0.15);
}

/* Title */
.venue-title {
    color: var(--header);
    font-weight: 700;
    margin-bottom: 18px;
    text-align: left;
}

/* Date */
.venue-date {
    font-weight: 500;
    color: var(--text);
    margin-bottom: 15px;
}

/* Description */
.venue-description {
    color: #444;
    line-height: 1.7;
    margin-bottom: 22px;
}

/* Map Button */
.venue-map-btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    background: linear-gradient(135deg, var(--theme), var(--bg));
    color: var(--white);
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 13, 68, 0.2);
}

.venue-map-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0, 13, 68, 0.3);
}

/* ===============================
   VENUE BOX STYLE END
================================== */
/* ===============================
   HOSTED LOGOS STYLE
================================== */

.hosted-logos {
    display: flex;
    gap: 15px;
    align-items: center;
}

.hosted-logos img {
    width: 115px;
    height: 115px;
    border-radius: 50%;
    background: #fff;
    padding: 6px;
    object-fit: contain;
}


/* ===============================
   FOOTER LIST ADVANCED STYLE
================================== */

.list-area {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list-area li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
}

/* Custom Bullet Icon */
.list-area li::before {
    content: "\f105";
    font-family: var(--fa-style-family, "Font Awesome 6 Pro");
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 12px;
    color: var(--theme);
    transition: 0.3s ease;
}

/* Link Styling */
.list-area li a {
    display: inline-block;
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

/* Hover Effect */
.list-area li:hover::before {
    transform: translateX(4px);
    color: var(--white);
}

.list-area li a:hover {
    color: var(--theme);
    transform: translateX(4px);
}
@media (max-width:992px)
{
  .header-main {
    padding: 0px 0;
}
.logo img {
  width: 180px;
}
}



/* ===== Abstract Submission Panel ===== */
.abstractac-panel {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.abstractac-panel h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a73e8;
}

.logout-btn {
  background: #fff;
  border: 1px solid #dc3545;
  color: #dc3545;
  font-size: 0.9rem;
  padding: 6px 18px;
  border-radius: 50px;
  transition: all 0.3s;
  text-decoration: none;
}

.logout-btn:hover {
  background: #dc3545;
  color: #fff;
}

/* Form Fields */
.form-select,
.form-control {
  border-radius: 50px;
  padding: 10px 14px;
  border: 1px solid #ddd;
  background: #f9fafb;
  transition: 0.3s;
}

.form-select:focus,
.form-control:focus {
  border-color: #1a73e8;
  background: #fff;
  box-shadow: 0 0 6px rgba(26, 115, 232, 0.3);
}

/* Upload */
.input-group {
  display: flex;
  align-items: center;
  border-radius: 50px;
  overflow: hidden;
  border: 1px solid #ddd;
  background: #f9fafb;
}

.input-group button {
  background: #1a73e8;
  color: #fff;
  border: none;
  padding: 10px 20px;
  transition: 0.3s;
}

.input-group button:hover {
  background: #0d5bd4;
}

/* Alert */
.alert {
  border-radius: 12px;
  font-size: 0.9rem;
  padding: 14px 18px;
  background: #fff3cd;
  border: 1px solid #ffeeba;
  color: #856404;
}

/* ===== Abstract Downloads ===== */
.abstract-downloads {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.downloads-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1a73e8;
  border-left: 4px solid #1a73e8;
  padding-left: 10px;
}

.abs-downloads {
  list-style: none;
  margin: 0;
  padding: 0;
}

.abs-downloads li {
  margin-bottom: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  background: #f9fafc;
  transition: all 0.3s;
  display: flex;
  align-items: center;
}

.abs-downloads li:hover {
  background: #eef4ff;
  transform: translateX(4px);
}

.abs-downloads a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}

.abs-downloads a:hover {
  color: #1a73e8;
}

.abs-downloads i {
  font-size: 1.2rem;
  color: #dc3545;
}

/* ===== Registration Box ===== */
.reg-bx-s1 {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.title-s5 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a73e8;
  margin-bottom: 15px;
}

.abs-pic {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Update photo button */
#update-photo-btn {
  border-radius: 50px;
  font-size: 0.9rem;
}

/* ===== Registration Table ===== */
.reg-container {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.reg-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a73e8;
  margin-bottom: 20px;
}

.table {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}

.table th {
  background: #eef4ff;
  font-weight: 600;
  color: #1a73e8;
}

.table td {
  font-weight: 500;
  color: #333;
}

/* Print Button */
.print-button {
  background: #1a73e8;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
}

.print-button:hover {
  background: #0d5bd4;
}

.stylish-select {
  border: 2px solid #0d6efd; /* Bootstrap primary color */
  border-radius: 50px;
  padding: 10px 18px;
  font-weight: 500;
  font-size: 15px;
  background: linear-gradient(145deg, #ffffff, #f1f5ff);
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  appearance: none; /* hide default arrow */
  background-image: url("data:image/svg+xml;utf8,<svg fill='%230d6efd' height='16' viewBox='0 0 24 24' width='16' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 14px;
}

.stylish-select:hover {
  background: linear-gradient(145deg, #f9fbff, #eef4ff);
  box-shadow: 0 5px 12px rgba(0,0,0,0.15);
}

.stylish-select:focus {
  outline: none;
  border-color: #6610f2;
  box-shadow: 0 0 0 0.25rem rgba(13,110,253,.25);
}


/* Responsive tweaks */
@media (max-width: 576px) {
  .reg-form {
    padding: 20px;
  }

  .reg-form .form-control {
    font-size: 13px;
  }

  .reg-form .btn-dark {
    width: 100%;
  }
}
.blog__details-left {
  font-family: 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  padding: 30px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0,0,0,0.05);
}

.blog__details-left h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #0a494b;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 5px;
}

.blog__details-left p {
  margin-bottom: 15px;
  color: #444;
}

.services__details-left-content-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.services__details-left-content-list > li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 15px;
  color: #333;
}

.services__details-left-content-list > li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #0a494b;
  font-size: 20px;
  line-height: 1.2;
}

/* Nested list styling */
.services__details-left-content-list ul {
  list-style: none;
  padding-left: 24px;
  margin-top: 10px;
}

.services__details-left-content-list ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  color: #555;
}

.services__details-left-content-list ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 14px;
  color: #0a494b;
}

.important {
  font-weight: 600;
  color: #18af74;
}

/* Email links */
.blog__details-left a {
  color: #0a494b;
  text-decoration: none;
  font-weight: 500;
}

.blog__details-left a:hover {
  text-decoration: underline;
}

/* ========================================
   Scientific Program Section Styling
======================================== */

.about__four {
    background: #f8f9fc; /* light soft background */
}

.about__four h3 {
    font-size: 32px;
    font-weight: 700;
    color: #22224b;
    margin-bottom: 25px;
}

.about__four h4 {
    font-size: 20px;
    font-weight: 600;
    color: #dd9624;
    margin-top: 30px;
}

/* Table Wrapper */
.program-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

/* Table Head */
.program-table thead {
    background: #22224b;
}

.program-table thead th {
    color: #000000;
    font-weight: 600;
    font-size: 15px;
    padding: 14px 16px;
    text-align: left;
    border: none;
}

/* Table Body */
.program-table tbody tr {
    transition: all 0.3s ease;
}

.program-table tbody tr:nth-child(even) {
    background: #f4f6fb; /* zebra stripe */
}

.program-table tbody tr:hover {
    background: #eef1ff; /* hover highlight */
}

/* Table Cells */
.program-table td {
    padding: 14px 16px;
    font-size: 14px;
    color: #444;
    vertical-align: top;
    border-top: 1px solid #e6e8f0;
}

/* Time Column */
.program-table .time-col {
    font-weight: 600;
    color: #22224b;
    white-space: nowrap;
    width: 140px;
}

/* Topic Column */
.program-table .topic-col {
    width: 55%;
}

.program-table .topic-col small {
    display: block;
    font-size: 12px;
    color: #888;
    margin-top: 4px;
}

.program-table .topic-col em {
    display: block;
    font-size: 12px;
    color: #dd9624;
    margin-top: 6px;
    font-style: normal;
    font-weight: 500;
}

/* Faculty Column */
.program-table .faculty-col {
    width: 25%;
    font-weight: 500;
    color: #333;
}

.program-table ul {
    margin: 8px 0 0 18px;
    padding: 0;
}

.program-table ul li {
    font-size: 13px;
    margin-bottom: 4px;
    color: #555;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .program-table td,
    .program-table th {
        font-size: 13px;
        padding: 10px 12px;
    }

    .program-table .time-col {
        width: 110px;
    }
}

@media (max-width: 576px) {
    .about__four h3 {
        font-size: 24px;
    }

    .about__four h4 {
        font-size: 18px;
    }

    .program-table {
        font-size: 13px;
    }
}


/* ========================================
   Terms, Privacy & Refund Pages Styling
======================================== */

/* Section Backgrounds */
.terms-premium,
.blog__details,
.blog__standard {
    background: #f8f9fc;
}

/* Section Headings */
.terms-premium h1,
.blog__details h3,
.blog__standard h3 {
    color: #22224b;
    font-weight: 700;
}

.terms-premium h1 {
    font-size: 34px;
    margin-bottom: 10px;
}

.blog__details h3,
.blog__standard h3 {
    font-size: 22px;
    margin-top: 30px;
}

/* Subtitle under Terms */
.terms-header p {
    color: #777;
    font-size: 15px;
    margin-bottom: 40px;
}

/* Card Wrapper */
.terms-wrapper {
    max-width: 950px;
    margin: auto;
}

/* Individual Cards */
.terms-card {
    background: #ffffff;
    padding: 28px 30px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
    transition: 0.3s ease;
}

.terms-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
}

.terms-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #dd9624;
}

/* Highlight Card */
.terms-card.highlight {
    border-left: 4px solid #dd9624;
    background: #fffdf7;
}

/* Paragraph Styling */
.terms-card p,
.blog__details-left p,
.blog__details-left li,
.blog__standard p {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
}

/* Lists */
.terms-card ul {
    padding-left: 18px;
    margin-top: 10px;
}

.terms-card ul li {
    margin-bottom: 6px;
}

/* Note Section */
.terms-note {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}

/* Privacy & Refund Containers */
.blog__details-left {
    background: #ffffff;
    padding: 35px 40px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
}

/* Links */
.blog__details-left a {
    color: #dd9624;
    font-weight: 500;
    text-decoration: none;
}

.blog__details-left a:hover {
    text-decoration: underline;
}

/* Refund Table */
.table-s1 {
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
    background: #ffffff;
}

.table-s1 th {
    background: #22224b;
    color: #ffffff;
    font-weight: 600;
    padding: 12px;
    font-size: 14px;
}

.table-s1 td {
    padding: 12px;
    font-size: 14px;
    color: #444;
}

.table-s1 tr:nth-child(even) {
    background: #f4f6fb;
}

/* Notes under Refund Table */
.note {
    font-size: 13px;
    color: #777;
    margin-top: 8px;
}

/* Responsive */
@media (max-width: 768px) {

    .terms-card,
    .blog__details-left {
        padding: 22px 20px;
    }

    .terms-premium h1 {
        font-size: 26px;
    }

    .blog__details h3,
    .blog__standard h3 {
        font-size: 18px;
    }
}

/* ========================================
   Leadership / Team Section Styling
======================================== */

.about-style5-area {
    background: #f8f9fc;
    padding: 80px 0;
}

/* Team Card */
.team-item-inner {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: 0.35s ease;
    /* height: 100%; */
    margin: 0 0 30px;
}

.team-item-inner:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
}

/* Image Wrapper */
.images-wrap-inner {
    position: relative;
    overflow: hidden;
}

.images-wrap-inner img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: 0.4s ease;
}

/* Slight zoom effect */
.team-item-inner:hover .images-wrap-inner img {
    transform: scale(1.05);
}

/* Content Area */
.team-content-inner {
    padding: 18px 15px 0;
}

/* Name Styling */
.title-name-inner {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

.title-name-inner a {
    text-decoration: none;
    color: #22224b;
    transition: 0.3s ease;
}

.title-name-inner a:hover {
    color: #dd9624;
}

/* Designation */
.team-title-inner {
    font-size: 14px;
    font-weight: 500;
    color: #777;
    letter-spacing: 0.4px;
}

/* Responsive */
@media (max-width: 991px) {
    .images-wrap-inner img {
        height: 240px;
    }
}

@media (max-width: 576px) {
    .about-style5-area {
        padding: 50px 0;
    }

    .images-wrap-inner img {
        height: 220px;
    }

    .title-name-inner {
        font-size: 15px;
    }

    .team-title-inner {
        font-size: 13px;
    }
}

.download-bx {
    padding: 35px 30px;
    margin-bottom: 25px;
    border: 1px solid #e2e2e2;
    border-radius: 9px;
}

.download-bx h3 {
    font-size: 20px;
    text-align: left;
    margin: 0 0 10px;
}

.download-bx p {
    font-size: 14px;
}

.downlad-btn {
    font-size: 15px;
    padding: 8px 18px;
    background: #23a445;
    color: #FFF;
    margin: 10px 0 0;
    display: inline-block;
}

/* ========================================
Contact Section Styling
======================================== */

.contact__two {
background: #f8f9fc;
padding: 80px 0;
}

.contact__two h3 {
font-size: 26px;
font-weight: 700;
color: #22224b;
margin-bottom: 25px;
}

/* ================= Address Area ================= */

.contatpage-address {
list-style: none;
padding: 0;
margin: 0;
}

.contatpage-address li {
background: #ffffff;
padding: 22px 25px;
border-radius: 14px;
margin-bottom: 18px;
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
transition: 0.3s ease;
}

.contatpage-address li:hover {
transform: translateY(-4px);
box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
}

.address-icon-label {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 10px;
}

.address-icon-label i {color: #23a445;font-size: 25px;}

.address-icon-label p {
margin: 0;
font-weight: 600;
color: #22224b;
}

.address-content {
font-size: 14px;
color: #555;
line-height: 1.6;
}

.address-content a {
color: #dd9624;
text-decoration: none;
font-weight: 500;
}

.address-content a:hover {
text-decoration: underline;
}

/* ================= Contact Form ================= */

.contact__two-form {
background: #ffffff;
padding: 35px 35px 40px;
border-radius: 16px;
box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
}

.contact__two-form-item p {
font-size: 13px;
font-weight: 600;
margin-bottom: 6px;
color: #444;
}

/* Input Fields */
.contact__two-form .form-control {
border-radius: 8px;
border: 1px solid #e4e6ef;
padding: 10px 12px;
font-size: 14px;
transition: 0.3s ease;
box-shadow: none;
}

.contact__two-form .form-control:focus {
border-color: #dd9624;
box-shadow: 0 0 0 2px rgba(221, 150, 36, 0.15);
}

/* Textarea */
.contact__two-form textarea.form-control {
min-height: 120px;
resize: none;
}

/* Submit Button */
.theme-btn.btn-style-one {
background: linear-gradient(135deg, #22224b, #2f2f75);
color: #ffffff;
padding: 10px 28px;
border-radius: 30px;
font-size: 14px;
font-weight: 600;
border: none;
transition: 0.3s ease;
}

.theme-btn.btn-style-one:hover {
background: linear-gradient(135deg, #dd9624, #f2b447);
color: #ffffff;
}

/* Alert Message */
#message {
font-size: 14px;
border-radius: 8px;
}


/* ========================================
   Registration Page Redesign
======================================== */

.reg-section {
    background: #f8f9fc;
}

/* Header */
.reg-title {
    font-size: 32px;
    font-weight: 700;
    color: #22224b;
}

.reg-subtitle {
    color: #777;
    font-size: 15px;
}

/* Main Card */
.reg-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
    transition: 0.3s ease;
}

.reg-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

/* Section Blocks */
.reg-block {
    padding-bottom: 25px;
    border-bottom: 1px solid #e9ecef;
}

/* Inputs */
.reg-input {
    border-radius: 10px;
    border: 1px solid #e3e6ef;
    padding: 10px 14px;
    font-size: 14px;
    transition: 0.3s ease;
}

.reg-input:focus {
    border-color: #dd9624;
    box-shadow: 0 0 0 3px rgba(221, 150, 36, 0.15);
}

/* Primary Button */
.reg-primary-btn {
    background: #23a445;
    color: #fff;
    font-weight: 600;
    border-radius: 10px;
    padding: 10px;
    transition: 0.3s ease;
}

.reg-primary-btn:hover {
    background: #603c1c;
    color: #fff;
}

/* Submit Button */
.reg-submit-btn {
    background: #22224b;
    color: #fff;
    font-weight: 600;
    border-radius: 30px;
    padding: 12px 30px;
    transition: 0.3s ease;
}

.reg-submit-btn:hover {
    background: #dd9624;
}

/* Support Box */
.reg-support {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    font-size: 14px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
}

.reg-support a {
    color: #dd9624;
    font-weight: 500;
    text-decoration: none;
}

.reg-support a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {

    .reg-card {
        padding: 25px;
    }

    .reg-title {
        font-size: 24px;
    }
}


/* ========================================
   Footer Common Address Section
======================================== */

.footer-common-address {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 35px 0;
    background: rgba(0, 0, 0, 0.15); /* subtle contrast strip */
}

.footer-common-inner {
    max-width: 750px;
    margin: 0 auto;
}

/* Title */
.common-title {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #dd9624;
    margin-bottom: 12px;
}

/* Address */
.common-address {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 8px;
}

/* Email */
.common-contact a {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s ease;
}

.common-contact a:hover {
    color: #dd9624;
}