@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins: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=Red+Hat+Display:ital,wght@0,300..900;1,300..900&family=Righteous&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

:root {
  --font-body: "Inter", sans-serif;
  --font-heading: 'Playfair Display';
  --font-heading-two: 'TransducerTest';
  --font-heading-three: 'GT-Super-Text';
  --font-heading-four: 'Agrandir';
  --font-heading-five: "Red Hat Display", serif;
  --color-primary: #d44a00;
  --color-primary-rgb: 212, 74, 0;
  --color-primary-two: #3c2372;
  --color-primary-two-rgb: 15, 83, 220;
  --color-primary-three: #9a4497;
  --color-primary-three-rgb: 154, 68, 151;
  --color-primary-four: #ff6a00;
  --color-primary-four-rgb: 255, 106, 0;
  --color-primary-five: #1438bc;
  --color-primary-five-rgb: 20, 56, 188;
  --color-heading: #111112;
  --color-heading-two: #3c2372;
  --color-heading-three: #16140c;
  --color-heading-four: #212877;
  --color-default: #49515b;
  --color-default-two: #494d57;
  --color-yellow: #e8c204;
  --color-white: #fff;
  --color-black: #000;
  --color-body: #eaeef0;
  --easing: cubic-bezier(0.67, 0.04, 0.3, 0.91);
}

/* reset css start */
:root {
  scroll-behavior: auto;
}

html {
  scroll-behavior: smooth;
}

body {
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  position: relative;
  color: var(--color-default);
  font-family: var(--font-body);
  background-color: var(--color-body);
  scrollbar-width: thin;
}

body::-webkit-scrollbar {
  width: 7px;
}

body::-webkit-scrollbar-track {
  border-radius: 10px;
}

body::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 10px;
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  margin: 0px;
  padding: 0px;
}

button {
  cursor: pointer;
}

*:focus {
  outline: none;
}

button {
  border: none;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

button:focus {
  outline: none;
}

a {
  text-decoration: none;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

a:hover {
  color: inherit;
}

select {
  height: 55px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url(../img/icon/select-arrow.png);
  background-position: calc(100% - 10px) 50%;
  background-repeat: no-repeat;
  padding-right: 20px;
  background-color: transparent;
  border: 0;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
form select,
textarea {
  width: 100%;
  height: 75px;
  border-radius: 0;
  background-color: #F3F4F5;
  padding: 10px 20px;
  border: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  color: var(--color-black);
  font-weight: 500;
}

input[type="text"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder,
input[type="email"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
form select::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #888686;
  opacity: 1;
}

input[type="text"]::-moz-placeholder,
input[type="password"]::-moz-placeholder,
input[type="email"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
form select::-moz-placeholder,
textarea::-moz-placeholder {
  color: #888686;
  opacity: 1;
}

input[type="text"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder,
input[type="email"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
form select:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #888686;
  opacity: 1;
}

input[type="text"]:-moz-placeholder,
input[type="password"]:-moz-placeholder,
input[type="email"]:-moz-placeholder,
input[type="tel"]:-moz-placeholder,
form select:-moz-placeholder,
textarea:-moz-placeholder {
  color: #888686;
  opacity: 1;
}

textarea {
  height: 100px;
}

button {
  border: 0;
}

table {
  width: 100%;
}

p,
li,
span {
  margin-bottom: 0;
}

/* reset css end */
.body_wrap {
  position: relative;
  overflow: clip;
}

.bg_img {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

.footer-bg {
  background-color: #04060A;
}


.white {
  color: var(--color-white);
}

.pos-rel {
  position: relative;
}


.border_effect a {
  display: inline !important;
  width: 100%;
  background-repeat: no-repeat;
  background-position-y: -2px;
  background-image: linear-gradient(transparent calc(100% - 2px), currentColor 1px);
  transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  background-size: 0 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.border_effect a:hover {
  background-size: 100% 100%;
  color: inherit;
}

@media (max-width: 991px) {
  .tx-col-md-6 {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .tx-col-md-6 {
    width: 100%;
  }
}

.xb-close {
  background: rgba(0, 0, 0, 0.04);
  border: 9px solid transparent;
  color: #777;
  width: 36px;
  height: 36px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
}

.xb-close::before,
.xb-close::after {
  content: '';
  position: absolute;
  height: 2px;
  width: 100%;
  top: 50%;
  left: 0;
  margin-top: -1px;
  transform-origin: 50% 50%;
  -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -khtml-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  background-color: #1b1b1b;
}

.xb-close::before {
  -webkit-transform: rotate(45deg);
  -khtml-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.xb-close::after {
  -webkit-transform: rotate(-45deg);
  -khtml-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.xb-close:hover::before,
.xb-close:hover::after {
  -webkit-transform: rotate(0);
  -khtml-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
  transform: rotate(0);
}

/* order & unorder list reset - start */
.ul_li,
.ul_li_right,
.ul_li_center,
.ul_li_between {
  margin: 0px;
  padding: 0px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.ul_li>li,
.ul_li_right>li,
.ul_li_center>li,
.ul_li_between>li {
  float: left;
  list-style: none;
  display: inline-block;
}

.ul_li {
  justify-content: flex-start;
}

.ul_li_center {
  justify-content: center;
}

.ul_li_right {
  justify-content: flex-end;
}

.ul_li_between {
  justify-content: space-between;
}

.ul_li_block {
  margin: 0px;
  padding: 0px;
  display: block;
}

.ul_li_block>li {
  display: block;
  list-style: none;
}

.flex-1 {
  flex: 1;
}

/*--
    - Margin & Padding
-----------------------------------------*/
/*-- Margin Top --*/


.mt-none-30 {
  margin-top: -30px;
}

/*-- Margin Top --*/
.mt-5 {
  margin-top: 5px;
}


.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-45 {
  margin-top: 45px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-70 {
  margin-top: 70px;
}

/*-- Margin Bottom --*/

.mb-60 {
  margin-bottom: 60px;
}

.mb-85 {
  margin-bottom: 85px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-100 {
  margin-bottom: 100px;
}

/*-- Padding Top --*/

.pt-20 {
  padding-top: 20px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-75 {
  padding-top: 75px;
}

.pt-85 {
  padding-top: 85px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-120 {
  padding-top: 120px;
}

.pt-125 {
  padding-top: 125px;
}

.pt-130 {
  padding-top: 130px;
}

.pt-140 {
  padding-top: 140px;
}

.pt-200 {
  padding-top: 200px;
}

/*-- Padding Bottom --*/

.pb-100 {
  padding-bottom: 100px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pb-125 {
  padding-bottom: 125px;
}

.pb-130 {
  padding-bottom: 130px;
}

.pb-140 {
  padding-bottom: 140px;
}

.pb-200 {
  padding-bottom: 200px;
}

/* typography css start */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  line-height: -0.02em;
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-heading);
  font-family: var(--font-heading);
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 22px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}


@-webkit-keyframes fade-in {
  0% {
    opacity: 0.7;
  }

  40% {
    opacity: 1;
  }

  100% {
    opacity: 0.7;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0.7;
  }

  40% {
    opacity: 1;
  }

  100% {
    opacity: 0.7;
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes updown {
  0% {
    transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
  }

  50% {
    transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
  }

  100% {
    transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
  }
}

@keyframes updown {
  0% {
    transform: translateY(-25px);
    -webkit-transform: translateY(-25px);
    -moz-transform: translateY(-25px);
    -ms-transform: translateY(-25px);
    -o-transform: translateY(-25px);
  }

  50% {
    transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
  }

  100% {
    transform: translateY(-25px);
    -webkit-transform: translateY(-25px);
    -moz-transform: translateY(-25px);
    -ms-transform: translateY(-25px);
    -o-transform: translateY(-25px);
  }
}

.updown {
  animation: updown 4s linear infinite;
}


@-webkit-keyframes updown-3 {
  0% {
    transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
  }

  50% {
    transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
  }

  100% {
    transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
  }
}

.updown-3 {
  animation: updown-3 5s linear infinite;
}

@keyframes ltr {
  0% {
    width: 0;
  }

  15% {
    width: 95%;
  }

  85% {
    opacity: 1;
  }

  90% {
    width: 95%;
    opacity: 0;
  }

  to {
    width: 0;
    opacity: 0;
  }
}

@-webkit-keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes zoom {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }

  100% {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
}

@keyframes zoom {
  0% {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }

  50% {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }

  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}


@-webkit-keyframes down {
  0% {
    -webkit-transform: translateY(5px);
    -ms-transform: translateY(5px);
    transform: translateY(5px);
  }

  50% {
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
  }

  100% {
    -webkit-transform: translateY(5px);
    -ms-transform: translateY(5px);
    transform: translateY(5px);
  }
}

@keyframes down {
  0% {
    -webkit-transform: translateY(5px);
    -ms-transform: translateY(5px);
    transform: translateY(5px);
  }

  50% {
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
  }

  100% {
    -webkit-transform: translateY(5px);
    -ms-transform: translateY(5px);
    transform: translateY(5px);
  }
}

@keyframes outer-ripple {
  0% {
    transform: scale(1);
    filter: alpha(opacity=50);
    opacity: 0.5;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    -webkit-filter: alpha(opacity=50);
  }

  80% {
    transform: scale(1.5);
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
  }

  100% {
    transform: scale(2.5);
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transform: scale(2.5);
    -moz-transform: scale(2.5);
    -ms-transform: scale(2.5);
    -o-transform: scale(2.5);
  }
}

@-webkit-keyframes outer-ripple {
  0% {
    transform: scale(1);
    filter: alpha(opacity=50);
    opacity: 0.5;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }

  80% {
    transform: scale(2.5);
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transform: scale(2.5);
    -moz-transform: scale(2.5);
    -ms-transform: scale(2.5);
    -o-transform: scale(2.5);
  }

  100% {
    transform: scale(3.5);
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transform: scale(3.5);
    -moz-transform: scale(3.5);
    -ms-transform: scale(3.5);
    -o-transform: scale(3.5);
  }
}

@-moz-keyframes outer-ripple {
  0% {
    transform: scale(1);
    filter: alpha(opacity=50);
    opacity: 0.5;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }

  80% {
    transform: scale(2.5);
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transform: scale(2.5);
    -moz-transform: scale(2.5);
    -ms-transform: scale(2.5);
    -o-transform: scale(2.5);
  }

  100% {
    transform: scale(3.5);
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transform: scale(3.5);
    -moz-transform: scale(3.5);
    -ms-transform: scale(3.5);
    -o-transform: scale(3.5);
  }
}


@keyframes push-scale-one {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.8);
  }
}

@-webkit-keyframes push-scale-one {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.8);
  }
}

@keyframes push-scale-two {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(2.4);
  }
}

@-webkit-keyframes push-scale-two {
  0% {
    transform: scale(1);
    opacity: 0.67;
  }

  100% {
    transform: scale(2.4);
    opacity: 0;
  }
}


.wow.skewIn.animated {
  -webkit-animation-name: xbSkewIn;
  animation-name: xbSkewIn;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: .7s;
  animation-duration: .7s;
  -webkit-animation-timing-function: cubic-bezier(0.67, 0.04, 0.3, 0.91);
  animation-timing-function: cubic-bezier(0.67, 0.04, 0.3, 0.91);
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

@-webkit-keyframes xbSkewIn {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes xbSkewIn {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

[data-aos=fade-up] {
  transform: translateY(50px);
}

[data-aos=fade-down] {
  transform: translateY(-50px);
}

[data-aos=fade-right] {
  transform: translate(-50px);
}

[data-aos=fade-left] {
  transform: translate(50px);
}

[data-aos=fade-up-right] {
  transform: translate(-50px, 50px);
}

[data-aos=fade-up-left] {
  transform: translate(50px, 50px);
}

[data-aos=fade-down-right] {
  transform: translate(-50px, -50px);
}

[data-aos=fade-down-left] {
  transform: translate(50px, -50px);
}

[data-aos][data-aos][data-aos-easing=ease],
body[data-aos-easing=ease] [data-aos] {
  transition-timing-function: cubic-bezier(0.18, 0.57, 0.25, 0.97);
}


@keyframes xbzoominzoomup {
  0% {
    transform: scale(0.8);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(0.8);
  }
}

.xbzoominzoomup {
  animation: xbzoominzoomup 5s linear infinite;
}


.marquee-first {
  -webkit-animation: marquee 30s linear infinite;
  animation: marquee 30s linear infinite;
}

.marquee-2 {
  -webkit-animation: marquee2 30s linear infinite;
  animation: marquee2 30s linear infinite;
}

@-webkit-keyframes marquee {
  from {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes marquee {
  from {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes marquee2 {
  from {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  to {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

@keyframes marquee2 {
  from {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  to {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

.path {
  stroke-dasharray: 6;
  stroke-dashoffset: 6;
  animation: dash 4s linear infinite;
}

@keyframes dash {
  0% {
    stroke-dashoffset: 100;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes ring {
  0% {
    transform: rotate(0) scale(1) skew(1deg);
  }

  10% {
    transform: rotate(-15deg) scale(1) skew(1deg);
  }

  20% {
    transform: rotate(30deg) scale(1) skew(1deg);
  }

  30% {
    transform: rotate(-15deg) scale(1) skew(1deg);
  }

  40% {
    transform: rotate(30deg) scale(1) skew(1deg);
  }

  100%,
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}

/*--
    - Overlay
------------------------------------------*/
[data-overlay] {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

[data-overlay]::before {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  content: "";
  width: 100%;
  height: 100%;
}

/*-- Overlay Color --*/
[data-overlay="light"]::before {
  background-color: var(--color-white);
}

[data-overlay="dark"]::before {
  background-color: var(--color-black);
}

/*-- Overlay Opacity --*/
[data-opacity="1"]::before {
  opacity: 0.1;
}

[data-opacity="2"]::before {
  opacity: 0.2;
}

[data-opacity="3"]::before {
  opacity: 0.3;
}

[data-opacity="4"]::before {
  opacity: 0.4;
}

[data-opacity="5"]::before {
  opacity: 0.5;
}

[data-opacity="6"]::before {
  opacity: 0.6;
}

[data-opacity="7"]::before {
  opacity: 0.7;
}

[data-opacity="8"]::before {
  opacity: 0.8;
}

[data-opacity="9"]::before {
  opacity: 0.9;
}

.side-menu a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.side-menu a span {
  position: absolute;
  left: 47px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  text-transform: uppercase;
  color: var(--color-white);
  font-size: 14px;
  font-weight: 600;
  padding-left: 8px;
}

.side-menu a svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
}

.side-menu a svg path {
  fill: var(--color-primary);
}



.header-style-two .main-menu__wrap {
  margin-left: 24px;
}

@media (max-width: 1199px) {
  .header-style-two .main-menu__wrap {
    margin-left: 10px;
  }
}


.header-style-two .header-top span {
  font-weight: 500;
  font-size: 12px;
  color: var(--color-white);
}

.header-style-two .header-top span a {
  font-weight: 700;
  color: currentColor;
  margin-left: 40px;
  text-decoration: underline;
}

@media (max-width: 991px) {
  .header-style-two .header-top span a {
    margin-left: 10px;
  }
}

.header-style-two .header-top span i {
  font-weight: 700;
  margin-left: 5px;
  transform: translateY(0px);
}

.header-style-two .header-top .header-shape .shape {
  position: absolute;
  z-index: -1;
}

.header-style-two .header-top .header-shape .shape--one {
  left: 30px;
  top: 0;
}

.header-style-two .header-top .header-shape .shape--two {
  right: 30px;
  top: 0;
}

.header-style-two .main-menu ul li a {
  color: var(--color-heading-two);
  font-family: "inter", sans-serif;
}

.header-style-two .main-menu ul li {
  padding: 18px 0;
}

.header-style-two .stricked-menu .main-menu ul li {
  padding: 0 6px;
}

@media (max-width: 1199px) {
  .header-style-two .stricked-menu .header__wrap {
    padding: 12px 0;
  }
}


.header-area .logo02 {
  display: none;
}

.stricked-menu .header-logo .logo01 {
  display: none;
}

.stricked-menu .header-logo .logo02 {
  display: block;
}

.stricked-menu {
  top: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  position: fixed;
  transition: 0.5s;
  visibility: hidden;
  background-color: #f9f9f9;
  transform: translateY(-100%);
  box-shadow: 0 0 12px 2px #00000020;
  padding: 5px 0;
}

.stricked-menu.stricky-fixed {
  visibility: visible;
  transform: translateY(0%);
}

.header-style-two .stricked-menu .main-menu__wrap {
  padding: 0;
  background: none;
  box-shadow: none;
}

.header-style-two .stricked-menu .main-menu__wrap::after,
.header-style-two .stricked-menu .main-menu__wrap::before {
  display: none;
}

.header-style-two .stricked-menu .main-menu__wrap .main-menu>ul>li>a {
  padding: 20px 19px;
  color: var(--color-black);
  background: transparent;
}

@media (max-width: 1199px) {

  .header-style-two .stricked-menu .main-menu__wrap .main-menu>ul>li>a {
    padding: 17px 10px;
  }
}

.header-style-two .stricked-menu .main-menu__wrap .main-menu>ul>li .sub-menu {
  transform: translateY(-3px);
}

.header-style-two .header-bar-mobile {
  margin-left: auto;
  margin-right: 30px;
}

@media (max-width: 767px) {

  .header-style-two .header-bar-mobile {
    margin-right: 0;
  }
}

.header-style-two .stricked-menu .main-menu__wrap .main-menu>ul>li>a {
  padding: 32px 13px;
  color: var(--color-black);
  background: transparent;
}

@media (max-width: 1199px) {
  .header-style-two .stricked-menu .main-menu__wrap .main-menu>ul>li>a {
    padding: 30px 5px;
  }
}

.header-style-two .stricked-menu .main-menu__wrap .main-menu>ul>li .sub-menu {
  transform: translateY(-3px);
}

.header-style-two .header-contact {
  margin-left: 30px;
}

.main-menu {
  display: flex;
  align-items: center;
  flex-grow: 1;
}

.main-menu ul {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.main-menu ul li {
  position: relative;
}

.main-menu ul li:not(:last-child) {
  margin-right: 10px;
}

.main-menu ul li .sub-menu li {
  margin-right: 0;
  padding: 0 6px;
}

.main-menu ul li a {
  z-index: 3;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 19px;
  position: relative;
  text-decoration: none;
  display: inline-block;
  letter-spacing: 0.01em;
  color: var(--color-white);
  text-transform: capitalize;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  font-family: var(--font-heading);
}

@media (max-width: 1199px) {
  .main-menu ul li a {
    padding: 6px 10px;
  }
}

.main-menu ul li:hover>a {
  background: var(--color-white);
  color: var(--color-black);
}

.main-menu ul li.menu-item-has-children>a span::after {
  content: "+";
  display: inline-block;
  padding-left: 6px;
}

.main-menu ul li.menu-item-has-children:hover>.sub-menu {
  opacity: 1;
  visibility: visible;
  top: calc(100% + 0px);
}

.main-menu ul li .sub-menu {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: absolute;
  min-width: 240px;
  top: 100%;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  left: 0;
  padding: 6px 0;
  -webkit-transition: 200ms;
  -o-transition: 200ms;
  transition: 200ms;
  z-index: 3;
  top: calc(100% + 10px);
  text-align: left;
  box-shadow: 0 0.5rem 1.875rem rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.main-menu ul li .sub-menu li:not(:last-child) {
  margin-bottom: 1px;
}

.main-menu ul li .sub-menu li a {
  padding: 8px 22px;
  display: block;
  margin: 0;
  font-size: 16px;
  text-transform: capitalize;
  letter-spacing: 0;
  color: var(--color-black);
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
}

.main-menu ul li .sub-menu li:hover>a,
.main-menu ul li .sub-menu li.active>a {
  color: #ffffff;
  background-color: rgb(60 35 114);
}

.main-menu ul li .sub-menu ul {
  left: 100%;
  top: 0px;
}

.main-menu ul li .sub-menu ul::before {
  display: none;
}

.main-menu>ul>li {
  padding: 10px 0;
}

.mega_menu_wrapper {
  width: 100%;
  left: 0;
  right: 0;
  position: fixed;
  max-width: 1320px;
  margin: auto;
}

.mega_menu_wrapper_inner {
  padding: 30px;
  padding-bottom: 40px;
  background: #fff;
  border: none;
  border-radius: 0px;
  z-index: 2;
  box-shadow: -2px 24px 52px 0 rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  overflow: hidden;
}

.main-menu ul li.menu-last ul.sub-menu {
  right: 0;
  left: auto;
}

.main-menu ul li.menu-last ul.sub-menu ul {
  right: auto;
  left: -100%;
}

.main-menu ul li ul.sub-menu .menu-item-has-children>a span::after {
  position: absolute;
  top: 9px;
  right: 15px;
  content: "\f105";
  font-size: 13px;
  font-family: 'Font Awesome 5 Pro';
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.main-menu ul li.megamenu .sub-menu {
  padding: 0;
  background: transparent;
  box-shadow: none !important;
  border: none;
}

.stricked-menu .main-menu ul li.megamenu .sub-menu {
  position: fixed;
  left: 0;
  right: 0;
}


.mega_menu_wrapper .btn {
  display: inline-flex !important;
  margin: 0;
  border-radius: 50px !important;
  padding: 0 40px !important;
  color: #fff;
}

.mega_menu_wrapper .btn:hover {
  background-color: var(--color-primary-two) !important;
  color: #fff !important;
}


.mega_menu_wrapper .social_icons_block {
  gap: 9px;
  display: flex;
  list-style: none;
}


.mega_menu_wrapper .social_icons_block li a:hover svg {
  filter: brightness(0%);
}

.mega_menu_wrapper .social_icons_block a {
  width: auto;
  height: auto;
  border: none;
  background: none;
  font-size: 18px !important;
  background: none !important;
}

.mega_menu_wrapper .social_icons_block a:hover {
  color: var(--color-primary-two);
}

.mega_menu_wrapper .social_icons_block a [class*="fa-facebook"] {
  color: #3D6AD6 !important;
}

.mega_menu_wrapper .social_icons_block a [class*="fa-twitter"] {
  color: #000000;
}

.mega_menu_wrapper .social_icons_block a [class*="fa-linkedin"] {
  color: #0073B1;
}

.mega_menu_wrapper .social_icons_block a [class*="fa-dribbble"] {
  color: #D31F61;
}

.megamenu_widget_inner>.row {
  margin: 0 -50px;
}

@media (max-width: 1199px) {
  .megamenu_widget_inner>.row {
    margin: 0;
  }
}

.mega_menu_wrapper .row:has(> [class*="col-"] > .megamenu_widget)>[class*="col-"] {
  padding: 50px 50px 10px 50px;
}

@media (max-width: 1199px) {
  .mega_menu_wrapper .row:has(> [class*="col-"] > .megamenu_widget)>[class*="col-"] {
    padding: 0 10px;
    margin-top: 10px;
  }
}

.mega_menu_wrapper .row:has(> [class*="col-"] > .megamenu_widget)>[class*="col-"]:not(:last-child) {
  border-style: solid;
  border-width: 0 1px 0 0;
  border-color: #E7E8EC;
}

@media (max-width: 1199px) {
  .mega_menu_wrapper .row:has(> [class*="col-"] > .megamenu_widget)>[class*="col-"]:not(:last-child) {
    border: 0;
  }
}

.mega_menu_wrapper .megamenu_widget ul {
  gap: 29px 22px;
  flex-direction: column;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

.main-wrapper .megamenu_widget ul {
  gap: 30px !important;
  display: grid !important;
  grid-template-columns: 3fr 3fr !important;
}

@media (max-width: 1199px) {
  .mega_menu_wrapper .megamenu_widget ul {
    gap: 14px 22px;
  }
}


.mega_menu_wrapper .megamenu_widget ul li {
  padding: 0 !important;
}

.mega_menu_wrapper .megamenu_widget ul li a {
  line-height: 1;
  padding: 0 !important;
  font-size: 16px !important;
  font-weight: 500;
  display: inline-block !important;
}

@media (max-width: 1199px) {
  .mega_menu_wrapper .megamenu_widget ul li a {
    font-size: 18px !important;
  }
}

.mega_menu_wrapper .megamenu_widget ul li a:hover {
  color: var(--color-primary-two);
}

.mega_menu_wrapper .megamenu_widget ul li a:hover,
.mega_menu_wrapper .megamenu_widget ul li:hover a {
  background-color: transparent !important;
}

.mega_menu_wrapper .megamenu_widget ul li:hover a {
  color: var(--bs-dark) !important;
}

.mega_menu_wrapper .megamenu_widget ul li a:hover {
  color: var(--color-primary-two) !important;
}

.stricked-menu .main-menu .megamenu_widget ul li a {
  padding: 0 !important;
}

.main-menu ul li .sub-menu li a i {
  padding-right: 10px !important;
  font-size: 18px !important;
}

.main-menu ul li .sub-menu li a i::before {
  font-weight: 900 !important;
}

.mega_menu_wrapper .social_icons_block li a:hover {
  background: transparent !important;
  border: transparent;
}

.mega_menu_wrapper .social_icons_block li a svg {
  height: 16px;
}

@media screen and (min-width: 992px) {
  .dropdown:hover>.mega_menu_wrapper {
    transform: translate(0%, 0px);
  }
}


.sec-title .title {
  font-size: 48px;
  letter-spacing: -0.02em;
  color: var(--color-heading);
}

@media (max-width: 991px) {
  .sec-title .title {
    font-size: 40px;
    margin-bottom: 15px;
  }
}

@media (max-width: 767px) {
  .sec-title .title {
    font-size: 32px;
  }
}

.sec-title .content {
  max-width: 429px;
  display: inline-block;
}

.sec-title--two .sub-title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  background: #fff;
  padding: 2px 10px;
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  border-radius: 14px;
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
  -ms-border-radius: 14px;
  -o-border-radius: 14px;
  color: var(--color-heading-two);
  box-shadow: 0 2px 4px 0 rgba(44, 64, 94, 0.08), 0 1px 1px 0 rgba(44, 64, 94, 0.04), 0 0 0 1px rgba(44, 64, 94, 0.06);
}

.sec-title--two .sub-title img {
  margin-right: 6px;
}

.sec-title--two .sub-title--strock {
  color: var(--color-white);
  background: #2e0d75;
  box-shadow: 0 2px 4px 0 rgba(255, 255, 255, 0.1), 0 1px 1px 0 rgba(255, 255, 255, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.sec-title--two .title {
  font-weight: 700;
  font-size: 48px;
  line-height: 58px;
  color: var(--color-heading-two);
}

@media (max-width: 1199px) {
  .sec-title--two .title {
    font-size: 38px;
    line-height: 46px;
  }
}

@media (max-width: 767px) {
  .sec-title--two .title {
    font-size: 32px;
    line-height: 40px;
  }
}

.sec-title--two .content {
  font-size: 20px;
  line-height: 32px;
  margin-top: 10px;
  display: inline-block;
  letter-spacing: -0.02em;
}


.fanfact-item {
  padding: 45px 30px;
  position: relative;
  cursor: pointer;
  max-height: 288px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  background: var(--color-white);
}

.fanfact-item::before {
  top: 0;
  left: 0;
  opacity: 0;
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  transform: scale(0.9);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  background: var(--color-heading);
}

.fanfact-item:hover::before {
  opacity: 1;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  transform: scale(1);
}

.fanfact-item:hover .xb-item--title,
.fanfact-item:hover .xb-item--content,
.fanfact-item:hover .xb-item--number,
.fanfact-item:hover .xb-item--text {
  color: var(--color-white);
}

.fanfact-item:hover .fanfact-icon .icon {
  opacity: 1;
  transform: scale(1);
}

.fanfact-item .xb-item--title {
  font-size: 20px;
  margin-bottom: 10px;
  letter-spacing: 0em;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.fanfact-item .xb-item--content {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

@media (max-width: 1199px) {
  .fanfact-item .xb-item--content {
    max-width: 235px;
  }
}

.fanfact-item .xb-item--number {
  font-weight: 500;
  font-size: 48px;
  display: block;
  margin: 45px 0 20px;
  letter-spacing: -0.02em;
  color: var(--color-heading);
  font-family: var(--font-heading);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

@media (max-width: 1199px) {
  .fanfact-item .xb-item--number {
    font-size: 35px;
  }
}

@media only screen and (max-width: 992px) {
  .fanfact-item .xb-item--number {
    font-size: 30px;
  }
}

.fanfact-item .xb-item--text {
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0em;
  color: var(--color-heading);
  font-family: var(--font-heading);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

@media only screen and (max-width: 992px) {
  .fanfact-item .xb-item--text {
    font-size: 18px;
  }
}

.fanfact-item .fanfact-icon .icon {
  opacity: 0;
  position: absolute;
  cursor: pointer;
  transform: scale(0.6);
  border: 3px solid #fff;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
}

.fanfact-item .fanfact-icon .icon--one {
  top: -130px;
  right: 132px;
  height: 108px;
  width: 108px;
  transition-delay: .1s;
}

@media (max-width: 1199px) {
  .fanfact-item .fanfact-icon .icon--one {
    top: -100px;
    right: 125px;
    height: 90px;
    width: 90px;
  }
}

@media (max-width: 991px) {
  .fanfact-item .fanfact-icon .icon--one {
    top: -85px;
    height: 80px;
    width: 80px;
  }
}

.fanfact-item .fanfact-icon .icon--two {
  height: 100px;
  width: 100px;
  left: 30px;
  bottom: -74px;
  transition-delay: .2s;
}

@media (max-width: 1199px) {
  .fanfact-item .fanfact-icon .icon--two {
    height: 80px;
    width: 80px;
    left: 50px;
    bottom: -50px;
  }
}

@media (max-width: 991px) {
  .fanfact-item .fanfact-icon .icon--two {
    height: 60px;
    width: 60px;
    left: 58px;
    bottom: -33px;
  }
}

.fanfact-item .fanfact-icon .icon--three {
  bottom: -60px;
  right: 28px;
  height: 133px;
  width: 133px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition-delay: .3s;
  background: var(--color-primary);
}

@media (max-width: 1199px) {
  .fanfact-item .fanfact-icon .icon--three {
    bottom: -40px;
    right: 11px;
    height: 100px;
    width: 100px;
  }
}

@media (max-width: 991px) {
  .fanfact-item .fanfact-icon .icon--three {
    width: 85px;
    height: 85px;
  }
}

@media (max-width: 991px) {
  .fanfact-item .fanfact-icon .icon--three {
    right: 35px;
    bottom: -30px;
  }
}

.ap-fanfact-item .xb-item--number {
  font-weight: 700;
  font-size: 130px;
  margin-bottom: 7px;
  letter-spacing: -0.01em;
  color: var(--color-primary-two);
}

@media (max-width: 1199px) {
  .ap-fanfact-item .xb-item--number {
    font-size: 80px;
  }
}

@media (max-width: 991px) {
  .ap-fanfact-item .xb-item--number {
    font-size: 50px;
  }
}

.ap-fanfact-item .xb-item--text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  color: var(--color-heading-two);
}

@media (max-width: 991px) {
  .ap-fanfact-item .xb-item--text {
    font-size: 18px;
  }
}

.ap-fanfact-item--last {
  float: right;
}

@media (max-width: 767px) {
  .ap-fanfact-item--last {
    float: none;
  }
}

.ap-fanfact-item--middle {
  padding-left: 60px;
}

@media (max-width: 991px) {
  .ap-fanfact-item--middle {
    padding-left: 0;
  }
}

.about-item {
  padding: 19px 40px;
  width: 23.3%;
  min-height: 356px;
  position: relative;
  overflow: hidden;
  background: #29292a;
  transform: translateX(0);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

@media (max-width: 767px) {
  .about-item {
    width: 100%;
  }
}

.about-item .xb-item--img {
  position: absolute;
  top: 0;
  right: 0;
}

@media (max-width: 1199px) {
  .about-item .xb-item--img {
    max-width: 200px;
  }
}

@media (max-width: 991px) {
  .about-item .xb-item--img {
    max-width: 130px;
  }
}

@media (max-width: 767px) {
  .about-item .xb-item--img {
    max-width: 150px;
  }
}

.about-item .xb-item--heading {
  font-size: 26px;
  letter-spacing: 0em;
  color: var(--color-white);
  position: absolute;
  bottom: 55px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1199px) {
  .about-item .xb-item--heading {
    font-size: 24px;
  }
}

@media (max-width: 991px) {
  .about-item .xb-item--heading {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .about-item .xb-item--heading {
    display: none;
  }
}

.about-item .xb-item--heading span {
  margin-right: 9px;
}

.about-item .xb-item--holder {
  top: 42px;
  position: relative;
}

.about-item .xb-item--title {
  display: inline-block;
  padding-bottom: 52px;
  font-size: 26px;
  letter-spacing: 0em;
  color: var(--color-white);
  border-bottom: 1px solid #d44a00;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  display: inline-flex;
  align-items: center;
}

@media (max-width: 1199px) {
  .about-item .xb-item--title {
    font-size: 24px;
  }
}

@media (max-width: 991px) {
  .about-item .xb-item--title {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .about-item .xb-item--title {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
  }
}

.about-item .xb-item--title span {
  margin-right: 9px;
}

.about-item .xb-item--content {
  margin-top: 61px;
  width: 472px;
  opacity: 0;
  visibility: hidden;
  display: block;
  color: var(--color-white);
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  transform: translateY(20px);
}

@media (max-width: 1199px) {
  .about-item .xb-item--content {
    width: 380px;
  }
}

@media (max-width: 991px) {
  .about-item .xb-item--content {
    width: 286px;
    margin-top: 25px;
  }
}

@media (max-width: 767px) {
  .about-item .xb-item--content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
  }
}

.about-item.active {
  width: 48.9%;
  transform: translateX(1);
}

@media (max-width: 767px) {
  .about-item.active {
    max-width: 100%;
    width: 100%;
  }
}

.about-item.active .xb-item--title,
.about-item.active .xb-item--content {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  transition-delay: .2s;
}

.about-item.active .xb-item--title {
  transition-delay: .1s;
}

.about-item.active .xb-item--heading {
  opacity: 0;
  visibility: hidden;
}

.about-left {
  position: relative;
  transform: translateY(5px);
}

.about-left::before {
  position: absolute;
  top: 51%;
  right: 0;
  content: '';
  height: 96.5%;
  width: 2px;
  transform: translateY(-50%);
  background-color: rgba(12, 17, 29, 0.1);
}

@media (max-width: 1199px) {
  .about-left::before {
    display: none;
  }
}

.about-left .title {
  font-size: 34px;
  display: inline-block;
  font-weight: 700;
  color: var(--color-heading-two);
}

.about-left .about-item_box {
  margin-top: 40px;
}

.about-left .about-item_box .xb-item--icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  background: #ffffff;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.08);
}

.about-left .about-item_box .xb-item--holder {
  width: calc(100% - 90px);
}

.about-left .about-item_box .xb-item--content {
  font-size: 20px;
  line-height: 32px;
  display: inline-block;
  max-width: 410px;
}

.about-left .about-item_box .xb-item--content span {
  font-weight: 600;
  color: var(--color-heading-two);
}

.about-right {
  max-width: 517px;
  margin-left: 105px;
}

@media (max-width: 991px) {
  .about-right {
    margin-left: 0;
  }
}

.about-right .xb-item--title {
  font-size: 34px;
  color: var(--color-heading-two);
  font-weight: 600;
}

.about-right .xb-item--content {
  font-size: 20px;
  line-height: 32px;
  letter-spacing: -0.02em;
}

.about-right .xb-item--holder:not(:last-child) {
  margin-bottom: 45px;
}

@media (max-width: 991px) {
  .about-right .xb-item--holder:not(:last-child) {
    margin-bottom: 30px;
  }
}

.about-wrapper {
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}


@media (max-width: 991px) {
  .cs-about_left .xb-btn {
    margin-top: 40px;
  }
}

.brand-sub_title {
  margin-top: 10px;
  position: relative;
  margin-bottom: 70px;
}

.brand-sub_title::before {
  position: absolute;
  left: 0;
  top: 50%;
  content: '';
  height: 1px;
  width: 100%;
  background: rgba(12, 17, 29, 0.1);
}

@media (max-width: 767px) {
  .brand-sub_title::before {
    display: none;
  }
}

.brand-sub_title span {
  position: relative;
  z-index: 1;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.02em;
  padding: 8.5px 20px;
  background: #fff;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  border: 1px solid rgba(12, 17, 29, 0.1);
  display: flex;
  align-items: center;
  width: fit-content;
}

.brand-sub_title span i {
  padding-right: 10px;
  color: #3c2372;
}

@media (max-width: 767px) {
  .brand-sub_title span {
    background: transparent;
    border: none;
    padding: 0;
  }
}

.brand-sub_title span b {
  color: var(--color-heading-two);
}

.brand-logo {
  margin-right: 85px;
  display: inline-block;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  box-shadow: 0 0 12px 2px #00000020;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 5px;
}

@media (max-width: 991px) {
  .brand-logo {
    margin-right: 50px;
  }
}

.sa-process_left .process-item {
  max-width: 450px;
  min-height: 236px;
  background: #fff;
  padding: 40px 30px;
  position: sticky;
  top: 200px;
  border: 1px solid var(--color-heading-two);
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  margin-bottom: 80px;
  box-shadow: 0 0 12px 2px #00000020;
}

@media (max-width: 991px) {
  .sa-process_left .process-item {
    position: relative;
    margin-bottom: 0;
    top: 0;
    margin: 0 auto 30px;
  }
}

@media (max-width: 991px) {
  .sa-process_left .process-item:last-child {
    margin-bottom: 0;
  }
}

.sa-process_left .process-item .xb-item--icon {
  height: 41px;
  width: 41px;
}

.sa-process_left .process-item .xb-item--title {
  font-size: 28px;
  margin: 20px 0 20px;
  font-weight: 600;
  color: var(--color-heading-two);
}

.sa-process_left .process-item .xb-item--number {
  position: absolute;
  top: 30px;
  right: 30px;
  height: 48px;
  width: 48px;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background-color: rgb(60 35 114);
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  font-family: var(--font-heading);
  font-weight: 500;
}

.sa-process_left .process-item--two {
  top: 235px;
}

@media (max-width: 991px) {
  .sa-process_left .process-item--two {
    top: 0;
  }
}

.sa-process_left .process-item--three {
  top: 320px;
}

@media (max-width: 991px) {
  .sa-process_left .process-item--three {
    top: 0;
  }
}

.sa-process_left .process-item--four {
  top: 500px;
}

@media (max-width: 991px) {
  .sa-process_left .process-item--four {
    top: 0;
  }
}

.sa-process_right {
  display: flex;
  justify-content: end;
  position: sticky;
  top: 200px;
}

@media (max-width: 991px) {
  .sa-process_right {
    max-width: 400px;
    margin: 0 auto;
  }
}

.sa-process_right .updown {
  animation: updown 3s linear infinite;
}

.sa-process_shape .shape {
  position: absolute;
  z-index: -1;
}

.sa-process_shape .shape--one {
  top: 0;
  left: 0;
}

.sa-process_shape .shape--two {
  top: 0;
  right: 0;
}

.sa-process_shape .shape--three {
  top: 60px;
  left: 43px;
}

.sa-process_left {
  z-index: 2;
  position: relative;
}

.process_shape {
  position: absolute;
  top: -268px;
  left: -920px;
  width: 973px;
  height: 920px;
  z-index: -1;
}

.outer {
  width: 100%;
  height: 100dvh;
  transition: all 1s ease;
  position: relative;
  opacity: 0;
}

.outer .bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.outer .bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 1s ease;
}

.outer .box {
  width: 840px;
  height: 530px;
  border-radius: 20px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 35px;
  display: flex;
  justify-content: space-between;
}

.outer .menu-wrap {
  width: 50%;
}

.outer .menu {
  width: 100%;
  position: relative;
  padding-right: 35px;
}

.outer .title {
  font-size: 38px;
  font-weight: normal;
  margin-bottom: 30px;
}

.outer .hover-bg {
  width: 91%;
  height: 80px;
  position: absolute;
  top: 0px;
  left: 0;
  background: #f3f3f3;
  z-index: -1;
  transition: all 0.7s cubic-bezier(0.28, 0.42, 0.36, 1.15);
  border-radius: 5px;
}

.outer .item {
  position: relative;
  width: 100%;
  display: block;
}

.outer .hovered {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.outer .inner {
  width: 100%;
  display: flex;
  padding: 10px;
  align-items: center;
  gap: 20px;
  height: 80px;
  cursor: pointer;
  transition: all 1s ease;
}

.outer .icon {
  width: 60px;
  height: 60px;
  background: #F7F0EA;
  display: flex;
  justify-content: center;
  border-radius: 5px;
  align-items: center;
  transition: all 1s ease;
}

.outer .icon>i {
  color: #362323;
  transition: all 1s ease;
}

.outer .active {
  animation: fadeIn 1s ease;
}

.outer .item.active .icon {
  background: #362323;
  transition: all 1s ease;
}

.outer .item.active .icon>i {
  color: #F7F0EA;
}

.outer .image {
  width: 50%;
  border-radius: 10px;
}

.outer .image-holder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: all 1s ease;
}

@keyframes fadeIn {
  0% {
    opacity: 0.5;
  }

  100% {
    opacity: 1;
  }
}

.service-box {
  padding: 10px;
  background: #f6f6f8;
  position: relative;
  overflow: hidden;
  border: 1px solid #e7e8ec;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}

.service-box:not(:last-child) {
  margin-bottom: 30px;
}

.service-box::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  z-index: 1;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  background: linear-gradient(122deg, rgba(255, 217, 17, 0) 0%, rgba(233, 226, 255, 0.8) 34.54%, #cae1f7 62.5%, rgba(250, 232, 138, 0.56) 100%), radial-gradient(74.51% 50% at 50% 100%, white 24.0899994969%, white 100%);
  background: url(../img/bg/service_bg.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.service-box:hover::before {
  opacity: 1;
}

.service-box:hover .service-item .xb-item--arrow img {
  transform: rotate(45deg);
}

.service-box:hover .service-item .xb-item--arrow::before {
  opacity: 1;
  transform: scale(1);
}

.service-box .service-item {
  position: relative;
  z-index: 2;
  padding: 30px;
  background: #fff;
  border: 1px solid #e6e7ec;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;

}

.service-box .service-item .xb-item--title {
  font-size: 30px;
  letter-spacing: 0em;
  margin-bottom: 30px;
  font-weight: 700;
  color: #3c2372;
}

.service-box .service-item .xb-item--title span {
  background-color: var(--color-yellow);
  width: 50px;
  height: 50px;
  color: #000;
  display: inline-flex;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 12px 2px #00000020;
  margin-right: 10px;
}

.service-box .service-item .xb-item--contact {
  line-height: 26px;
}

.service-box .service-item .xb-item--icon {
  align-items: center;
}

.service-box .service-item .xb-item--img {
  margin-left: -10px;
}

.service-box .service-item .xb-item--img img {
  height: 82px;
}

.service-box .service-item .xb-item--arrow {
  height: 45px;
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border: 1px solid #e6e7ec;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-box .service-item .xb-item--arrow::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  z-index: -1;
  transform: scale(0.2);
  background: linear-gradient(122deg, rgba(255, 217, 17, 0) 0%, rgba(233, 226, 255, 0.8) 34.54%, #cae1f7 62.5%, rgba(250, 232, 138, 0.56) 100%), radial-gradient(74.51% 50% at 50% 100%, white 24.0899994969%, white 100%);
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.service-box .service-item .xb-item--arrow img {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.service-box .xb-overlay {
  z-index: 2;
}

.service-info {
  position: sticky;
  top: 200px;
}

.feature-item {
  margin-top: 20px;
  align-items: start;
}

.feature-item .xb-item--icon {
  height: 74px;
  width: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 30px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  background: linear-gradient(180deg, #ffe6d9 0%, #fff 100%);
}

.feature-item .xb-item--holder {
  width: calc(100% - 104px);
}

.feature-item .xb-item--title {
  margin-bottom: 10px;
}

@media (max-width: 1199px) {
  .feature-item .xb-item--title {
    font-size: 18px;
  }
}

.feature-item .xb-item--content {
  color: #49515b;
}

.ap-feature-item {
  max-width: 244px;
}

.ap-feature-item .xb-item--icon {
  min-height: 57px;
}

.ap-feature-item .xb-item--title {
  font-weight: 700;
  margin: 28px 0 15px;
  letter-spacing: 0em;
  text-transform: capitalize;
  color: var(--color-heading-two);
}

.ap-feature-item .xb-item--content {
  line-height: 26px;
  color: #494d57;
}

.ap-fea-item {
  overflow: hidden;
  display: inline-block;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.ap-fea-item::before {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  height: 100%;
  width: 100%;
  z-index: 1;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(12, 17, 29, 0) 0%, rgba(12, 17, 29, 0.69) 63.19%, #0c111d 100%);
}

.ap-fea-item .xb-item--img {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.ap-fea-item .xb-item--content {
  position: absolute;
  z-index: 2;
  left: 5px;
  right: 20px;
  bottom: 49px;
  font-size: 28px;
  line-height: 38px;
  text-align: center;
  letter-spacing: 0em;
  color: var(--color-white);
  padding: 0 15px;
}

.ap-fea-item:hover .xb-item--img {
  transform: scale(1.1);
}


.tes-heading .title {
  color: #fff;
  font-size: 48px;
  letter-spacing: -0.02em;
  color: var(--color-white);
}

@media (max-width: 991px) {
  .tes-heading .title {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .tes-heading .title {
    font-size: 32px;
  }
}



.sa-tes_button .sa-swiper-btn {
  position: absolute;
  right: 0;
  left: auto;
  top: 50px;
  font-size: 30px;
  width: 36px;
  height: 43px;
  z-index: 1;
  color: var(--color-black);
  border: 1px solid #e7e8ec;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  background: #f6f6f8;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.sa-tes_button .sa-swiper-btn.swiper-button-prev {
  right: 42px;
}

@media (max-width: 767px) {
  .sa-tes_button .sa-swiper-btn {
    position: relative;
    right: 0 !important;
    display: inline-flex;
    margin-top: 0;
    top: 20px;
  }
}

.sa-tes_button .sa-swiper-btn i {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.sa-tes_button .sa-swiper-btn::after,
.sa-tes_button .sa-swiper-btn::before {
  display: none;
}

.sa-tes_button .sa-swiper-btn:hover {
  background: var(--color-primary-two);
}

.sa-tes_button .sa-swiper-btn:hover i {
  color: #fff;
}


.team-item {
  padding: 10px;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  border: 1px solid #e7e8ec;
  background-color: var(--color-white);
  position: relative;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.team-item:before {
  position: absolute;
  content: '';
  left: 30px;
  bottom: -12px;
  width: calc(100% - 60px);
  height: 12px;
  opacity: 0;
  visibility: hidden;
  border-radius: 0 0 12px 12px;
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 0 1px rgba(47, 1, 151, 0.04), 0 32px 24px -12px rgba(0, 39, 118, 0.06), 0 11px 4px 0 rgba(0, 39, 118, 0.01), 0 6px 4px 0 rgba(0, 39, 118, 0.02), 0 3px 3px 0 rgba(0, 39, 118, 0.03), 0 1px 1px 0 rgba(0, 39, 118, 0.04);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.team-item:hover:before {
  opacity: 0.7;
  visibility: visible;
}

.team-item .xb-item--item {
  top: 30px;
  right: 20px;
  position: absolute;
}

.team-item .xb-item--content {
  text-align: end;
}

.team-item .xb-item--content .xb-item--img img {
  width: 100%;
}

.team-item .xb-item--skill {
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0em;
  color: #0c111d;
  display: block;
  margin-bottom: 18px;
  font-family: var(--font-heading);
  text-transform: capitalize;
}

.team-item .xb-item--reating {
  padding: 3px 5px;
  color: var(--color-heading);
  border: 1px solid #CCC39A;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  background-color: var(--color-white);
}

.team-item .xb-item--reating i {
  color: var(--color-yellow);
  margin-right: 5px;
}

.team-item .xb-item--inner {
  padding: 0 20px 25px;
  position: relative;
}

@media (max-width: 991px) {
  .team-item .xb-item--inner {
    padding: 18px 20px 17px;
  }
}

.team-item .xb-item--avatar {
  height: 120px;
  width: 120px;
  margin: -70px 0 13px;
  border: 3px solid #fff;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  box-shadow: 0 4px 13px 0 rgba(119, 152, 215, 0.19);
  overflow: hidden;
}

@media (max-width: 1199px) {
  .team-item .xb-item--avatar {
    height: 100px;
    width: 100px;
  }
}

@media (max-width: 991px) {
  .team-item .xb-item--avatar {
    height: 60px;
    width: 60px;
  }
}

.team-item .xb-item--name {
  font-size: 24px;
  margin-bottom: 5px;
  letter-spacing: 0em;
}

.team-item .xb-item--social-link li:not(:last-child) {
  margin-right: 15px;
}

.team-item .xb-item--social-link li a {
  font-size: 20px;
  color: var(--color-black);
}

.team-item .xb-item--social-link li a svg {
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}


.sa-team .sa-swiper-btn {
  position: absolute;
  top: 38%;
  font-size: 30px;
  width: 36px;
  height: 43px;
  transform: translateY(-50%);
  color: var(--color-black);
  border: 1px solid #e7e8ec;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  background: #f6f6f8;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.sa-team .sa-swiper-btn::after,
.sa-team .sa-swiper-btn::before {
  display: none;
}

.sa-team .sa-swiper-btn:hover {
  background: var(--color-primary-two);
}

.sa-team .sa-swiper-btn:hover i {
  color: #fff;
}

.sa-team .swiper-button-next {
  right: -85px;
}

.sa-team .swiper-button-prev {
  left: -85px;
}


.xb-faq .accordion_box {
  position: relative;
  padding: 10px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  background: linear-gradient(122deg, rgba(255, 217, 17, 0) 0%, rgba(233, 226, 255, 0.8) 34.54%, #cae1f7 62.5%, rgba(250, 232, 138, 0.56) 100%), radial-gradient(74.51% 50% at 50% 100%, white 24.0899994969%, white 100%);
  background: url(../img/bg/faq_bg.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.xb-faq .accordion_box .block {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #E7E8EC;
}

.xb-faq .accordion_box .block:last-child {
  border-bottom: 0;
}

.xb-faq .accordion_box .block:first-child {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.xb-faq .accordion_box .block:last-child {
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

.xb-faq .accordion_box .block.active-block .acc-btn .number {
  color: var(--color-heading-two);
}

.xb-faq .accordion_box .block.active-block .acc-btn .arrow::before {
  content: "\f068";
  transform: rotate(180deg);
  color: var(--color-white);
}

.xb-faq .accordion_box .block.active-block .acc-btn .arrow::after {
  opacity: 1;
}

.xb-faq .accordion_box .block .acc-btn {
  padding: 28px 40px;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 500;
  position: relative;
  cursor: pointer;
  background: #f6f6f8;
  color: var(--color-heading-two);
}

@media (max-width: 991px) {
  .xb-faq .accordion_box .block .acc-btn {
    font-size: 20px;
    padding: 20px;
    padding-right: 30px;
  }
}

.xb-faq .accordion_box .block .acc-btn .arrow {
  position: absolute;
  z-index: 1;
  width: 36px;
  height: 36px;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  border: 1px solid #e7e8ec;
  background-color: #fff;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

@media (max-width: 767px) {
  .xb-faq .accordion_box .block .acc-btn .arrow {
    right: 5px;
  }
}

.xb-faq .accordion_box .block .acc-btn .arrow::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0;
  background: var(--color-primary-two);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.xb-faq .accordion_box .block .acc-btn .arrow::before {
  position: absolute;
  top: 5px;
  left: 11px;
  font-size: 14px;
  font-size: 16px;
  font-weight: 500;
  content: "\f067";
  font-family: "Font Awesome 5 Pro";
  color: var(--color-heading-two);
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.xb-faq .accordion_box .block .acc-btn .number {
  color: rgba(12, 17, 29, 0.5);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.xb-faq .accordion_box .block .acc_body {
  position: relative;
  display: none;
}

.xb-faq .accordion_box .block .acc_body.current {
  display: block;
}

.xb-faq .accordion_box .block .content {
  font-size: 16px;
  line-height: 28px;
  padding: 30px 140px 40px 40px;
  background: var(--color-white);
}

@media (max-width: 991px) {
  .xb-faq .accordion_box .block .content {
    padding: 30px 40px 40px 40px;
  }
}

@media (max-width: 767px) {
  .xb-faq .accordion_box .block .content {
    padding: 20px;
  }
}

.xb-faq .accordion_box .block .content p {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 600;
  color: #000;
}

.xb-faq .accordion_box .block .content ul li:not(:last-child) {
  margin-bottom: 5px;
}

.xb-faq .accordion_box .block .content ul li i {
  margin-right: 10px;
  font-size: 16px;
  color: var(--color-primary-two);
}


.cta-wrap {
  height: 100%;
  width: 100%;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  padding: 30px 79px 30px 70px;
  background: linear-gradient(122deg, rgba(255, 217, 17, 0) 0%, rgba(233, 226, 255, 0.8) 34.54%, rgba(250, 232, 138, 0.56) 100%), radial-gradient(74.51% 50% at 50% 100%, white 24.0899994969%, white 100%);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: -220px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 12px 2px #00000030;
}

@media (max-width: 1199px) {
  .cta-wrap {
    padding: 30px 58px 30px;
  }
}

@media (max-width: 767px) {
  .cta-wrap {
    padding: 30px 25px;
  }
}

.cta-wrap .xb-item--title {
  font-size: 48px;
  line-height: 60px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--color-heading-two);
}

@media (max-width: 767px) {
  .cta-wrap .xb-item--title {
    font-size: 28px;
    line-height: 40px;
  }
}

.cta-wrap .xb-item--content {
  font-size: 20px;
  color: var(--color-black);
  line-height: 36px;
}

.cta-wrap .xb-item--holder {
  max-width: 515px;
}

.cta-inner {
  gap: 30px;
}

@media (max-width: 1199px) {
  .cta-right_img {
    max-width: 320px;
  }
}

.contact-wrap {
  padding: 57px 60px 60px;
  background-color: #f9f9f9;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

@media (max-width: 767px) {
  .contact-wrap {
    padding: 57px 25px 60px;
  }
}

.contact-wrap .xb-item--sub-title {
  font-size: 14px;
  color: var(--color-heading);
  font-weight: 600;
}

.contact-wrap .xb-item--title {
  font-size: 30px;
  margin: 20px 0 43px;
  letter-spacing: 0em;
}

@media (max-width: 767px) {
  .contact-wrap .xb-item--title {
    font-size: 25px;
  }
}

.contact-wrap .contact-btn button {
  padding: 21px 40px 20px 40px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.contact-wrap .contact-btn button img {
  margin-left: 20px;
}

.contact-form .input-field {
  margin-bottom: 30px;
}

.contact-form .input-field .img {
  position: absolute;
  left: 20px;
  top: 48%;
  transform: translateY(-50%);
  opacity: 0.5;
}

.contact-form .input-field input {
  height: 60px;
  padding: 0 20px 0 46px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  background: transparent;
  border: 1px solid #dde3e5;
}

.contact-form .input-field input:focus,
.contact-form .input-field textarea:focus {
  border: 1px solid var(--color-primary);
}

.contact-form .input-field input:focus::placeholder,
.contact-form .input-field textarea:focus::placeholder {
  color: var(--color-heading);
}

.contact-form .input-field input:focus~.img,
.contact-form .input-field textarea:focus~.img {
  opacity: 1;
}

.contact-form .input-field.text-field textarea {
  height: 108px;
  padding: 17px 46px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  background: transparent;
  border: 1px solid #dde3e5;
}

.contact-form .input-field.text-field textarea:focus {
  border: 1px solid var(--color-primary);
}

.contact-form .input-field.text-field .img {
  left: 20px;
  top: 29px;
  opacity: 0.5;
}

.contact-btn a {
  font-size: 20px;
  padding: 20.5px 37.5px;
}

.contact-btn a img {
  margin-left: 30px;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .contact-info {
    text-align: center;
  }
}

.contact-info .xb-item--img {
  overflow: hidden;
  display: inline-block;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

@media only screen and (min-width: 1200px) {
  .contact-info .xb-item--img img {
    min-height: 464px;
    object-fit: cover;
  }
}

.contact-info .xb-item--author {
  text-align: center;
  background: #fff;
  padding: 24px 0;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .contact-info .xb-item--author {
    width: 81%;
    display: inline-block;
  }
}

.contact-info .xb-item--name {
  font-size: 24px;
  letter-spacing: 0em;
  margin-bottom: 5px;
}

.cs-contact-wrap {
  padding: 60px;
  z-index: 1;
  min-height: 731px;
  position: relative;
  background: #010315;
  margin-right: 16px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

@media (max-width: 1199px) {
  .cs-contact-wrap {
    padding: 60px 30px;
  }
}

.cs-contact-wrap::before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  content: '';
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  background-image: url(../img/bg/cont-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.cs-contact-wrap .sub-title {
  margin-bottom: 22px;
}

.cs-contact-wrap .xb-item--content {
  color: #a9a4c0;
  display: inline-block;
  margin-bottom: 27px;
}

.cs-contact-wrap .xb-item--cont_info li {
  align-items: center;
  font-family: var(--font-heading-two);
  font-weight: 700;
  font-size: 20px;
}

.cs-contact-wrap .xb-item--cont_info li:not(:last-child) {
  margin-bottom: 12px;
}

.cs-contact-wrap .xb-item--cont_info li span {
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  display: inline-flex;
  background: #E2EA46;
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
}

.cs-contact-wrap .xb-item--img {
  position: absolute;
  bottom: 0;
  left: 0;
}

.cs-contact-form {
  margin-right: 0;
  margin-left: 0;
}

.cs-contact-form .title {
  font-size: 22px;
  line-height: 32px;
}

.cs-contact-form .contact-form {
  margin-top: 25px;
}

.cs-contact-form .input-field {
  margin-bottom: 25px;
}

.cs-contact-form .input-field label {
  font-weight: 500;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.cs-contact-form .input-field .input-box {
  z-index: 1;
  position: relative;
  border-radius: 7px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
}

.cs-contact-form .input-field .input-box::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  z-index: -1;
  border-radius: 7px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
  background: linear-gradient(334deg, rgba(103, 128, 210, 0.4) 0%, rgba(47, 59, 141, 0.4) 100%);
}

.cs-contact-form .input-field .input-box input,
.cs-contact-form .input-field .input-box textarea {
  color: #fff;
  border: none;
  padding-left: 20px;
  background: #1a1c2c;
  border-radius: 7px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
}

.cs-contact-form .input-field .input-box textarea {
  height: 100px;
}

.cs-contact-form .input-field .input-box textarea:focus {
  border: unset;
}

.cs-contact-form .contact-btn {
  margin-top: 13px;
}

.cs-contact-form .contact-btn button {
  background: transparent;
}

.cd-contact-form {
  background: #fff;
  padding: 70px 80px 75px;
  border: 1px solid #e7e8ec;
}

@media (max-width: 991px) {
  .cd-contact-form {
    padding: 40px 50px 55px;
  }
}

@media (max-width: 767px) {
  .cd-contact-form {
    padding: 30px 30px 35px;
  }
}

.cd-contact-form::before {
  display: none;
}

.cd-contact-form .xb-title {
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 15px;
  color: var(--color-heading-two);
}

.cd-contact-form .xb-content {
  color: #494d57;
  line-height: 30px;
}

.cd-contact-form .contact-form {
  margin-top: 20px;
}

.cd-contact-form .input-field {
  margin-bottom: 35px;
}

.cd-contact-form .input-field label {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
  letter-spacing: -0.01em;
  color: var(--color-heading-two);
}

.cd-contact-form .input-field .input-box::before {
  display: none;
}

.cd-contact-form .input-field .input-box input,
.cd-contact-form .input-field .input-box textarea {
  padding-left: 20px;
  background: #f6f6f8;
  border: 1px solid #e7e8ec;
  color: var(--color-heading-two);
}

.cd-contact-form .input-field .input-box input:focus,
.cd-contact-form .input-field .input-box textarea:focus {
  border: 1px solid var(--color-primary-two);
}

.cd-contact-form .input-field .input-box textarea {
  min-height: 154px;
}


.item-contact_form {
  margin: 0;
  margin-right: 65px;
  min-height: 708px;
  padding: 40px 50px 50px;
}

.item-contact_form .contact-form {
  margin-top: 26px;
}

.item-contact_form .input-field {
  margin-bottom: 25px;
}

.item-contact_info {
  padding: 20px;
  margin-left: -40px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  border: 1px solid #e7e8ec;
  background: var(--color-white);
}

.item-contact_info .xb-item--top span {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
  display: block;
  line-height: 30px;
}

.item-contact_info .xb-item--top span img {
  margin-right: 10px;
  filter: grayscale(1) brightness(0);
}

.item-contact_info .xb-item--title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 30px;
}

.item-contact_info .social_icons_block {
  margin: 37px 0 30px;
}

.item-contact_info .social_icons_block li a {
  height: 45px;
  width: 45px;
  font-size: 18px;
}

.item-contact_info .breack-line {
  margin: 35px 0 37px;
}


.award-item {
  z-index: 1;
  margin-top: 20px;
  text-align: center;
  position: relative;
  min-height: 392px;
  padding: 50px 25px 30px;
}

.award-item::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: url(../img/bg/award-bg01.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.award-item .xb-img {
  -webkit-transition: 0.8s;
  -o-transition: 0.8s;
  transition: 0.8s;
}

.award-item .xb-title {
  font-size: 18px;
  font-weight: 500;
  margin-top: 12px;
  display: inline-block;
}

.award-item:hover .xb-img {
  transform: rotateY(360deg);
}

.award-top .content {
  width: 34%;
  display: inline-block;
  transform: translateY(-7px);
}

@media (max-width: 991px) {
  .award-top .content {
    width: 100%;
  }
}

.hd-award-item {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 220px;
  z-index: 1;
  position: relative;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  background: var(--color-heading-three);
}

.hd-award-item::before {
  position: absolute;
  bottom: 1px;
  left: 0;
  content: '';
  height: 100%;
  width: 100%;
  z-index: -1;
  border-radius: inherit;
  background: #f6f0e6;
  border: 1px solid #ded7ca;
}

.hd-award-item::after {
  position: absolute;
  bottom: -7px;
  left: 18px;
  content: '';
  height: 2px;
  width: 83%;
  z-index: -2;
  background: #110f10;
  filter: blur(9px);
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
}

.ab-award-content {
  position: unset;
}

.ab-award-content .sec-title--two .content {
  max-width: 465px;
  font-size: 16px;
  line-height: 26px;
  margin-top: 20px;
}

.ap-award-item {
  width: 160px;
  height: 180px;
  background: #fff;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  box-shadow: 0 8px 18px 0 rgba(221, 221, 231, 0.95);
}

@media (max-width: 767px) {
  .ap-award-item {
    width: 100px;
    height: 100px;
  }

  .ap-award-item .xb-img {
    width: 60px;
  }
}

.ap-award-inner:not(:last-child) {
  margin-right: 30px;
}

.ap-award-wrap {
  max-height: 775px;
  overflow: hidden;
  position: relative;
  justify-content: end;
}

.ap-award-wrap::after,
.ap-award-wrap::before {
  position: absolute;
  top: -20px;
  right: 0;
  z-index: 1;
  content: '';
  width: 100%;
  height: 120px;
  background: #f6f6f8;
  filter: blur(17.7000007629px);
}

.ap-award-wrap:after {
  top: auto;
  bottom: -36px;
}



.career_video video {
  width: 100%;
  border-radius: 20px;
  height: 100%;
  object-fit: cover;
  max-height: 600px;
}

@media (max-width: 1199px) {
  .page-title {
    padding-top: 160px;
  }
}

.page-title-box .sub-title {
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 26px;
  color: var(--primary-color);
  line-height: 30px;
}

.page-title-box .sub-title img {
  margin-right: 6px;
}

.page-title-box .title {
  font-weight: 700;
  font-size: 55px;
  line-height: 76px;
  color: var(--font-heading-two);
  text-transform: capitalize;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .page-title-box .title {
    font-size: 50px;
    line-height: 65px;
  }
}

@media (max-width: 1199px) {
  .page-title-box .title {
    font-size: 42px;
    line-height: 55px;
  }
}

@media (max-width: 991px) {
  .page-title-box .title {
    font-size: 28px;
    line-height: 42px;
  }
}

.page-title-box .page-update_time {
  font-weight: 600;
  font-size: 18px;
  margin-top: 25px;
  display: inline-block;
  color: var(--color-heading-two);
}

.count-box {
  float: right;
  transform: translateY(-15px);
}

@media (max-width: 991px) {
  .count-box {
    float: none;
  }
}

.count-box .number {
  font-weight: 700;
  font-size: 160px;
  margin-bottom: 7px;
  letter-spacing: -0.01em;
  color: var(--color-primary-two);
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .count-box .number {
    font-size: 120px;
  }
}

@media (max-width: 1199px) {
  .count-box .number {
    font-size: 100px;
  }
}

@media (max-width: 767px) {
  .count-box .number {
    font-size: 60px;
  }
}

.count-box .number .suffix {
  font-weight: 250;
}

.count-box .text {
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  color: var(--color-primary-two);
  font-family: var(--font-heading);
}

.page-title-wrap {
  padding-top: 40px;
  padding-bottom: 43px;
}

@media (max-width: 991px) {
  .sd-right-img {
    float: none;
    margin-right: 0;
  }
}

.sd-title-wrap {
  padding-top: 10px;
}

.sd-arrow-shape {
  position: absolute;
  top: 31%;
  right: 0;
}

.sd-arrow-shape.style-2 {
  top: 34px;
  right: 15%;
}

.sd-arrow-shape.style-3 {
  top: 41px;
  right: 9%;
}



.gallery-wrap {
  flex-wrap: nowrap;
}

.gallery-item:not(:last-child) {
  margin-right: 20px;
}

.gallery-item .img {
  margin-bottom: 20px;
}

.gallery-item .img img {
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}

.gallery-item .img--1 {
  float: right;
}

.gallery-item .img--5 {
  float: left;
}

.gallery-item--two {
  transform: translateY(30px);
}

.gallery-item--three {
  transform: translateY(-10px);
}

.social_icons_block {
  gap: 10px;
}

.social_icons_block li a {
  height: 32px;
  width: 32px;
  font-weight: 400;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  border: 1px solid #e7e8ec;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  color: var(--color-heading-two);
  background: var(--color-white);
}

.social_icons_block li a svg {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.social_icons_block li a:hover {
  color: var(--color-white);
  border: 1px solid var(--color-heading-two);
  background: var(--color-primary-two);
}

.social_icons_block li a:hover svg {
  filter: brightness(10000%);
}

.form-group {
  position: relative;
}

.form-group .form-control {
  height: 60px;
  padding-right: 70px;
  background: var(--color-white);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border: 1px solid #e7e8ec;
}

.form-group .form-control:focus {
  box-shadow: none;
  border: 1px solid var(--color-primary-two);
}

.form-group .search_icon {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 10px 10px 0;
  background: var(--color-primary-two);
}


/*----------------------------------------*/
/*  03. globel
/*----------------------------------------*/
@media (min-width: 1024px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1320px;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.sco_agency {
  background-color: var(--color-white);
  color: var(--color-default-two);
}

.sco_agency main {
  background-color: var(--color-white);
}


.bg-white {
  background: var(--color-white);
}

@media (max-width: 991px) {
  .container.px-60 {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.o-hidden {
  overflow: hidden;
}

.m-lr {
  margin-left: 160px;
  margin-right: 160px;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .m-lr {
    margin-left: 10px;
    margin-right: 10px;
  }
}

@media (max-width: 1199px) {
  .m-lr {
    margin-left: 10px;
    margin-right: 10px;
  }
}

.clr-white {
  color: #fff !important;
}

.clr-blue {
  background: #0f55dc !important;
}

.clr-sky {
  background: #3cc !important;
}

.sec-bg {
  position: relative;
  z-index: 1;
}

.sec-bg::before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  content: '';
  z-index: -1;
  background: linear-gradient(122deg, rgba(255, 217, 17, 0) 0%, rgba(233, 226, 255, 0.8) 34.54%, #cae1f7 62.5%, rgba(250, 232, 138, 0.56) 100%), radial-gradient(74.51% 50% at 50% 100%, white 24.0899994969%, white 100%);
  border-radius: 10px;
}


.body-overlay {
  background-color: #000000;
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1010;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s linear 0s;
  transition: all 600ms ease;
  -webkit-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
}

.body-overlay.active {
  opacity: .5;
  visibility: visible;
}

.mfp-zoom-in .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
}

.mfp-zoom-in.mfp-ready .mfp-content {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

body .mfp-wrap .mfp-container .mfp-content .mfp-close {
  padding: 0;
  right: 0;
  text-align: center;
  top: -36px;
  width: 36px;
  height: 36px;
  -webkit-border-radius: 0;
  -khtml-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  background: var(--color-white);
  cursor: pointer;
  opacity: 1;
  font-size: 0;
  border: 9px solid transparent;
  position: absolute;
}

body .mfp-wrap .mfp-container .mfp-content .mfp-figure .mfp-close {
  top: 4px;
}

body .mfp-wrap .mfp-container .mfp-content .mfp-close::before,
body .mfp-wrap .mfp-container .mfp-content .mfp-close::after {
  content: '';
  position: absolute;
  height: 2px;
  width: 100%;
  top: 50%;
  left: 0;
  margin-top: -1px;
  transform-origin: 50% 50%;
  -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -khtml-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  background-color: #222;
}

body .mfp-wrap .mfp-container .mfp-content .mfp-close::before {
  -webkit-transform: rotate(45deg);
  -khtml-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

body .mfp-wrap .mfp-container .mfp-content .mfp-close::after {
  -webkit-transform: rotate(-45deg);
  -khtml-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

body .mfp-wrap .mfp-container .mfp-content .mfp-close:hover::before,
body .mfp-wrap .mfp-container .mfp-content .mfp-close:hover::after {
  -webkit-transform: rotate(0);
  -khtml-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
  transform: rotate(0);
}

body .mfp-wrap .mfp-container .mfp-content .mfp-close:hover::before,
body .mfp-wrap .mfp-container .mfp-content .mfp-close:hover::after {
  -webkit-transform: rotate(0);
  -khtml-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
  transform: rotate(0);
}

.mfp-iframe-holder .mfp-content {
  max-width: 1170px;
}

.text-12 {
  font-size: 12px;
}

.letter-spacing-0 {
  letter-spacing: 0;
}

@media (max-width: 991px) {
  .margin-none-md {
    margin-bottom: 0;
  }
}

.br-20 {
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.z-1 {
  z-index: 1;
}

.z-3 {
  position: relative;
  z-index: 3;
}

.ml-auto {
  margin-left: auto;
}

.align-end {
  align-items: flex-end;
}

.xb-hover-zoom:hover .xb-item--img img {
  -webkit-transform: scale(1.08);
  -ms-transform: scale(1.08);
  transform: scale(1.08);
}

.xb-hover-zoom .xb-item--img {
  overflow: hidden;
}

.xb-hover-zoom .xb-item--img img {
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.text-heading {
  color: var(--color-heading);
}

.text-24 {
  font-size: 24px;
}

.weight-medium {
  font-weight: 500;
}

.row.g-150 {
  margin-left: -75px;
  margin-right: -75px;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .row.g-150 {
    margin-left: -35px;
    margin-right: -35px;
  }
}

@media (max-width: 1199px) {
  .row.g-150 {
    margin-left: -20px;
    margin-right: -20px;
  }
}

.row.g-150>* {
  padding-left: 75px;
  padding-right: 75px;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .row.g-150>* {
    padding-left: 35px;
    padding-right: 35px;
  }
}

@media (max-width: 1199px) {
  .row.g-150>* {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.hero-style-two {
  height: 88vh !important;
}

@media (max-width: 1199px) {
  .hero-style-two {
    padding-top: 150px;
    min-height: 790px;
  }
}

@media (max-width: 991px) {
  .hero-style-two {
    padding-top: 190px;
    padding-bottom: 50px;
  }
}

.hero-style-two .xb-hero {
  margin-top: -55px;
}

.hero-style-two .xb-hero .xb-item--title {
  font-weight: 700;
  font-size: 60px;
  line-height: 62px;
  margin-bottom: 0px;
  color: var(--color-heading-two);
}

@media (max-width: 1199px) {
  .hero-style-two .xb-hero .xb-item--title {
    font-size: 48px;
    line-height: 60px;
  }
}

@media (max-width: 991px) {
  .hero-style-two .xb-hero .xb-item--title {
    font-size: 38px;
    line-height: 50px;
  }
}

.hero-style-two .xb-hero .xb-item--title span {
  color: var(--color-primary-two);
}

.hero-style-two .xb-hero .xb-item--content {
  font-weight: 600;
  font-size: 22px;
  color: #fff;
  line-height: 36px;
}

.hero-style-two .xb-hero .xb-item--item {
  margin-top: 40px;
}

.hero-style-two .xb-hero .xb-item--item li {
  font-size: 20px;
  font-weight: 500;
  color: var(--color-heading-two);
}

.hero-style-two .xb-hero .xb-item--item li:not(:last-child) {
  margin-bottom: 14px;
}

.hero-style-two .xb-hero .xb-item--item li i {
  margin-right: 20px;
}

.hero-style-two .hero-right_img {
  margin-top: 15px;
}

.hero-style-two .hero-right_img .img {
  position: absolute;
}

.hero-style-two .hero-right_img .img--one {
  top: 25px;
  left: 17%;
}

@media (max-width: 1199px) {
  .hero-style-two .hero-right_img .img--one {
    top: 20px;
    left: 9%;
    max-width: 200px;
  }
}

@media (max-width: 991px) {
  .hero-style-two .hero-right_img .img--one {
    top: 14%;
  }
}

@media (max-width: 767px) {
  .hero-style-two .hero-right_img .img--one {
    top: 9%;
    left: 0;
    max-width: 150px;
  }
}

.hero-style-two .hero-right_img .img--two {
  right: -28%;
  bottom: 12%;
  animation: updown-3 3s linear infinite;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .hero-style-two .hero-right_img .img--two {
    right: -3%;
    bottom: 0%;
  }
}

@media (max-width: 1199px) {
  .hero-style-two .hero-right_img .img--two {
    right: 0;
    bottom: -3%;
    max-width: 180px;
  }
}

@media (max-width: 767px) {
  .hero-style-two .hero-right_img .img--two {
    max-width: 140px;
  }
}

.hero-style-two .xb-shape {
  position: absolute;
  left: 50%;
  bottom: 18%;
}

.banner-scroll-down {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 5%;
}

.banner-scroll-down a {
  color: #fff;
  display: block;
  width: 30px;
  height: 50px;
  text-align: center;
}

.banner-scroll-down a span {
  display: block;
  width: 15px;
  height: 15px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  margin: -10px 0 0 8px;
  animation: animate 2s infinite;
}

.banner-scroll-down a span:nth-child(2) {
  animation-delay: -0.2s;
}

.banner-scroll-down a span:nth-child(3) {
  animation-delay: -0.4s;
}

@keyframes animate {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(-15px, -15px);
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: rotate(45deg) translate(15px, 15px);
  }
}

@keyframes alltuchtopdown {
  0% {
    transform: rotateX(0deg) translateY(0px);
  }

  50% {
    transform: rotateX(0deg) translateY(-30px);
  }

  100% {
    transform: rotateX(0deg) translateY(0px);
  }
}

.alltuchtopdown {
  -webkit-animation-name: alltuchtopdown;
  animation-name: alltuchtopdown;
  -webkit-animation-duration: 6s;
  animation-duration: 6s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

/*----------------------------------------*/
/*  14. cursor
/*----------------------------------------*/
.xb-cursor,
.xb-cursor-section {
  visibility: hidden;
  position: fixed;
  pointer-events: none;
  z-index: 999999;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transition: transform 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -khtml-transition: transform 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: transform 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -ms-transition: transform 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition: transform 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  pointer-events: none;
  top: 0;
  left: 0;
}

.xb-cursor .xb-cursor-wrapper,
.xb-cursor-section .xb-cursor-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  -khtml-transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  -ms-transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.xb-cursor .xb-cursor--follower,
.xb-cursor-section .xb-cursor--follower {
  position: absolute;
  background-color: var(--color-primary);
  opacity: .25;
  border-radius: 100%;
  width: 1.5rem;
  height: 1.5rem;
  -webkit-transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), background-color 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -khtml-transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), background-color 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), background-color 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -ms-transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), background-color 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), background-color 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), background-color 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.xb-cursor.style-2 .xb-cursor--follower {
  background-color: var(--color-primary-2);
}

.xb-cursor .xb-cursor--label,
.xb-cursor-section .xb-cursor--label {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 15px;
  transform: scale(0);
  will-change: transform, opacity;
  -webkit-transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  -khtml-transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  -ms-transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.xb-cursor .xb-cursor--drap,
.xb-cursor-section .xb-cursor--drap {
  line-height: 87px;
  text-align: center;
  width: 87px;
  height: 87px;
  background-color: #000;
  font-size: 0;
  -webkit-border-radius: 87px;
  -khtml-border-radius: 87px;
  -moz-border-radius: 87px;
  -ms-border-radius: 87px;
  -o-border-radius: 87px;
  border-radius: 87px;
  -webkit-transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  -khtml-transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  -ms-transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: scale(0);
  will-change: transform, opacity;
  color: #fff;
}

.xb-cursor .xb-cursor--drap:before,
.xb-cursor-section .xb-cursor--drap:before,
.xb-cursor .xb-cursor--drap:after,
.xb-cursor-section .xb-cursor--drap:after {
  content: "\f10b";
  font-family: caseicon;
  font-size: 10px;
  display: inline-flex;
}

.xb-cursor .xb-cursor--drap:before,
.xb-cursor-section .xb-cursor--drap:before {
  -webkit-transform: scaleX(-1);
  -khtml-transform: scaleX(-1);
  -moz-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  -o-transform: scaleX(-1);
  transform: scaleX(-1);
}

.xb-cursor .xb-cursor--drap:after,
.xb-cursor.is-enabled,
.xb-cursor-section.is-enabled {
  visibility: visible;
}

.xb-cursor.is-hidden .xb-cursor-wrapper,
.xb-cursor-section.is-hidden .xb-cursor-wrapper {
  transform: scale(0) !important;
}

.xb-cursor.is-mouse-down .xb-cursor-wrapper,
.xb-cursor-section.is-mouse-down .xb-cursor-wrapper {
  transform: scale(0.8);
}

.xb-cursor.is-active .xb-cursor--follower,
.xb-cursor-section.is-active .xb-cursor--follower {
  -webkit-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.12);
  -khtml-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.12);
  -ms-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.12);
  -o-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.12);
  -webkit-transform: scale(4);
  -khtml-transform: scale(4);
  -moz-transform: scale(4);
  -ms-transform: scale(4);
  -o-transform: scale(4);
  transform: scale(4);
  opacity: 0;
}

.thm-btn {
  z-index: 1;
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: .02em;
  padding: 10px 20px;
  border-style: none;
  align-self: center;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: inherit;
  color: var(--color-white);
  background: var(--color-primary);
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

@media (max-width: 767px) {
  .thm-btn {
    font-size: 16px;
  }
}

.thm-btn .white-icon i {
  color: var(--color-white);
}

.thm-btn--header {
  font-size: 18px;
  font-weight: 700;
  overflow: hidden;
  border: none;
  padding: 16.5px 25.7px;
  color: var(--color-heading);
  background: var(--color-white);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.thm-btn--header span {
  margin-left: 18px;
}

.thm-btn--header span svg path {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.thm-btn--header:hover {
  color: var(--color-white);
}

.thm-btn--header:hover svg path {
  fill: var(--color-white);
}

.thm-btn--aso {
  font-weight: 700;
  padding: 20px;
  overflow: hidden;
  color: var(--color-white);
  border-radius: 7px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  background: var(--color-primary-two);
}

.thm-btn--aso::before {
  position: absolute;
  content: '';
  z-index: -1;
  height: 200%;
  width: 200%;
  left: 50%;
  bottom: -200%;
  transform: translateX(-50%);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  background: var(--color-yellow);
}

.thm-btn--aso img {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.thm-btn--aso:hover {
  color: var(--color-heading-two);
  transform: translateY(-2px);
}

.thm-btn--aso:hover::before {
  bottom: -70%;
}

.thm-btn--aso:hover img {
  filter: grayscale(1) brightness(0);
}

.thm-btn--aso_yellow {
  background: var(--color-yellow);
  color: #000;
}

.thm-btn--aso_yellow:hover {
  color: var(--color-white);
}

.thm-btn--aso_yellow:hover::before {
  background: var(--color-primary-two);
}

.thm-btn--aso_white {
  background: var(--color-yellow);
  color: var(--color-heading-two);
}

.thm-btn--aso_white::before {
  background: var(--color-white);
}

.thm-btn--aso_white:hover::before {
  background: var(--color-white);
}

.thm-btn--aso_black {
  background: var(--color-black);
}

.thm-btn--header-black {
  padding: 15.5px 19.5px;
  background-color: var(--color-heading-two);
}

.thm-btn--header-black img {
  margin-left: 18px;
}

.cp-btn {
  font-weight: 700;
  font-size: 20px;
  padding: 23px 40px;
  letter-spacing: 0em;
  color: var(--color-white);
  border-radius: 7px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  background: var(--color-primary-two);
  display: inline-block;
}

.cp-btn i {
  margin-left: 15px;
  font-weight: 400;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  transform: rotate(-45deg);
}

.cp-btn:hover i {
  transform: rotate(-45deg) translateX(5px);
}

.cp-det-btn .cp-btn {
  color: var(--color-heading-two);
  background: var(--color-yellow);
}

.cp-det-btn .cp-btn i {
  color: var(--color-heading-two);
}

.cp-det-btn .cp-btn:hover {
  color: var(--color-white);
  background: var(--color-primary-two);
}

.cp-det-btn .cp-btn:hover i {
  color: var(--color-white);
}

/*----------------------------------------*/
/*  27. backtotop
/*----------------------------------------*/
.xb-backtotop {
  right: 30px;
  z-index: 999;
  bottom: 20px;
  position: fixed;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
}

.xb-backtotop.active {
  bottom: 40px;
  opacity: 1;
  visibility: visible;
}

.xb-backtotop.style-2 .scroll {
  background-color: var(--color-primary);
}

.xb-backtotop.style-3 .scroll {
  background: linear-gradient(86deg, #431dab 0%, #ae6dfe 100%);
}

.xb-backtotop.style-4 .scroll {
  background: var(--color-primary-three);
}

.xb-backtotop.style-5 .scroll {
  background: var(--color-primary-four);
}

.xb-backtotop.style-6 .scroll {
  background: #2042BF;
}

.xb-backtotop .scroll {
  z-index: 1;
  width: 40px;
  height: 40px;
  display: block;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: var(--color-white);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  font-size: 14px;
  box-shadow: 0 0 12px 2px #00000050;
}

.xb-backtotop .scroll i {
  color: #3c2372;
}

.xb-backtotop .scroll:hover {
  margin-bottom: 4px;
}

.xb-backtotop.style-ins .scroll {
  background: var(--color-ins);
  color: #052328;
}

.xb-backtotop.style-law .scroll {
  background: var(--color-law);
}

.xb-backtotop.style-advisor .scroll {
  background: var(--color-advisor);
}

.xb-backtotop.style-marketing .scroll {
  background: var(--color-marketing);
}

.xb-backtotop.style-business .scroll {
  background: var(--color-business);
  color: #03080B;
}

/*----------------------------------------*/
/*  19. mobile-menu
/*----------------------------------------*/
.xb-header-menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  -khtml-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  -ms-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
  visibility: hidden;
}

.xb-header-menu {
  position: fixed;
  height: 100vh;
  width: 300px;
  top: 0;
  left: 0;
  bottom: 0;
  margin: 0;
  z-index: 1010;
  overflow: hidden;
  -webkit-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  -khtml-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  -ms-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transform: translateX(-100%);
  -khtml-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
  visibility: hidden;
  background-color: #fff;
  overflow-y: scroll;
}

.xb-header-menu.active {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateX(0%);
  -khtml-transform: translateX(0%);
  -moz-transform: translateX(0%);
  -ms-transform: translateX(0%);
  -o-transform: translateX(0%);
  transform: translateX(0%);
}

.xb-header-menu.active+.xb-header-menu-backdrop {
  opacity: 1;
  visibility: visible;
}

.xb-header-menu-scroll {
  padding: 50px 25px 40px;
}

.xb-header-menu-scroll .xb-close {
  position: absolute;
  top: 0;
  right: 0;
}

.xb-header-menu-scroll .xb-menu-primary>li {
  padding-left: 0;
  padding-right: 0;
}

.xb-header-menu-scroll .xb-menu-primary>li>a .left-icon {
  margin-right: 4px;
}

.xb-header-menu-scroll .xb-menu-primary>li .elementor-section {
  max-width: 100%;
}

.xb-header-menu-scroll .xb-menu-primary>li .elementor-container {
  margin: 10px 0 !important;
}

.xb-header-menu-scroll .xb-menu-primary>li .sub-menu,
.xb-header-menu-scroll .xb-menu-primary>li .children {
  padding-left: 15px;
}

.xb-header-menu-scroll .xb-menu-primary>li .sub-menu a,
.xb-header-menu-scroll .xb-menu-primary>li .children a {
  padding-left: 0;
}

.xb-header-menu-scroll .xb-menu-primary>li .sub-menu.xb-mega-menu,
.xb-header-menu-scroll .xb-menu-primary>li .children.xb-mega-menu {
  padding-left: 0;
}

.xb-menu-toggle {
  position: absolute;
  top: 10px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  right: 0;
  width: 28px;
  cursor: pointer;
  font-size: 15px;
  -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -khtml-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  color: #1b1b1b;
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  background-color: rgba(0, 0, 0, 0.03);
  display: none;

}

.xb-menu-toggle:before {
  content: "\f107";
  font-weight: 400;
  font-family: "Font Awesome 5 Pro";
}

.xb-menu-toggle.active:before {
  content: "\f106";
}

.xb-menu-primary {
  list-style: none;
  margin: 0;
  padding: 0;
}

.xb-menu-primary li {
  position: relative;
}

.xb-menu-primary li a {
  display: block;
  line-height: 46px;
  color: var(--color-black);
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.xb-menu-primary li>a:hover,
.xb-menu-primary li>a.current,
.xb-menu-primary li.current_page_item>a,
.xb-menu-primary li.current-menu-item>a,
.xb-menu-primary li.current_page_ancestor>a,
.xb-menu-primary li.current-menu-ancestor>a {
  color: var(--color-primary-two);
}

.xb-menu-primary .sub-menu,
.xb-menu-primary .children {
  position: relative;
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
}

.xb-menu-primary .sub-menu li a,
.xb-menu-primary .children li a {
  font-weight: 500;
  padding-left: 14px;
}

.xb-menu-primary>li>.sub-menu>li>.sub-menu>li a {
  padding-left: 0px;
}

.xb-menu-primary .xb-megamenu .elementor-container>.elementor-column {
  width: 100%;
}

.xb-menu-primary .xb-megamenu .elementor-container .elementor-widget-wrap {
  padding: 0 !important;
}

.xb-menu-primary .xb-megamenu .xb-link li {
  margin: 0;
}

.xb-menu-primary .xb-megamenu .xb-heading {
  padding-left: 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 12px;
  padding-bottom: 12px;
}

.xb-menu-primary .xb-megamenu .xb-heading .xb-item--title {
  margin-bottom: 0 !important;
  font-size: 15px !important;
  border-bottom: none !important;
}

.xb-menu-primary .xb-megamenu .elementor-widget-heading>.elementor-widget-container {
  margin-bottom: 0 !important;
  border-bottom: none !important;
}

.xb-menu-primary .xb-megamenu .elementor-section .elementor-container {
  flex-wrap: wrap;
}

.xb-menu-primary .xb-menu-toggle:hover {
  color: var(--color-primary-two);
}

.xb-logo-mobile {
  margin-bottom: 40px;
}

.xb-logo-mobile img {
  height: 40px;
}

.xb-menu-close {
  background-color: rgba(0, 0, 0, 0.03);
  position: absolute;
  top: 0;
  right: 0;
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
}


.xb-nav-mobile {
  font-size: 26px;
  color: var(--color-primary-two);
}

.xb-nav-mobile:hover {
  color: var(--color-primary-two);
}

.xb-menu-primary .mega_menu_wrapper {
  position: unset;
}

.xb-menu-primary .mega_menu_wrapper .container {
  padding-left: 0;
  padding-right: 0;
}

.xb-menu-primary .mega_menu_wrapper .mega_menu_wrapper_inner {
  padding: 10px;
}

.xb-header-menu-scroll .xb-menu-primary .megamenu .sub-menu,
.xb-header-menu-scroll .xb-menu-primary .megamenu .children {
  padding-left: 0 !important;
}

.footer-widget {
  margin-top: 30px;
}


.footer-widget .xb-item--sub-title {
  color: #e8c204;
  font-weight: 700;
  margin-bottom: 15px;
  display: inline-block;
  text-transform: capitalize;
}

.footer-widget .xb-item--list {
  font-weight: 500;
  font-size: 20px;
  line-height: 37px;
  letter-spacing: 0em;
  color: var(--color-white);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  font-family: var(--font-heading);
}

@media (max-width: 1199px) {
  .footer-widget .xb-item--list {
    font-size: 18px;
  }
}

.footer-widget .xb-item--list a {
  color: currentColor;
}

.footer-widget .xb-item--list a:hover {
  color: var(--color-yellow);
  text-decoration: underline;
}

.footer-info .xb-item--email,
.footer-info .xb-item--number {
  display: block;
  font-weight: 700;
  font-size: 26px;
  color: var(--color-white);
  font-family: var(--font-heading);
}

@media (max-width: 1199px) {

  .footer-info .xb-item--email,
  .footer-info .xb-item--number {
    font-size: 24px;
  }
}

@media (max-width: 767px) {

  .footer-info .xb-item--email,
  .footer-info .xb-item--number {
    font-size: 22px;
  }
}

.footer-info .xb-item--email {
  margin-bottom: 45px;
}

.footer-info .xb-item--sub-title {
  color: #c7c7d6;
  display: block;
  margin-bottom: 10px;
  text-transform: capitalize;
}

.footer-copyright .copyright,
.footer-copyright .privacy {
  color: var(--color-white);
}

.footer-copyright .copyright a,
.footer-copyright .privacy a {
  color: currentColor;
}

.footer-copyright .copyright a:hover,
.footer-copyright .privacy a:hover {
  text-decoration: underline;
}

@media (max-width: 767px) {
  .footer-copyright .privacy {
    margin-top: 20px;
  }
}

.footer-style-two .footer-info {
  border-bottom: 1px solid #e8c204;
  border-top: 1px solid #e8c204;
}

@media (max-width: 767px) {
  .footer-style-two .footer-info {
    padding-bottom: 20px;
  }
}

.footer-style-two .info-item {
  position: relative;
  padding: 46px 0;
}

@media (max-width: 767px) {
  .footer-style-two .info-item {
    padding: 15px 0;
  }
}

.footer-style-two .info-item:first-child::before {
  display: none;
}

.footer-style-two .info-item::before {
  position: absolute;
  content: '';
  left: -70px;
  bottom: 0;
  height: 100%;
  width: 20px;
  background-image: url(../img/icon/line.png);
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 1199px) {
  .footer-style-two .info-item::before {
    left: -47px;
  }
}

.footer-style-two .info-item .xb-item--icon {
  height: 56px;
  width: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  background: #FF8139;
}

.footer-style-two .info-item .xb-item--title {
  font-size: 22px;
  margin-bottom: 10px;
  line-height: 30px;
  color: var(--color-white);
  font-family: inherit;
}

.footer-style-two .info-item .xb-item--content {
  font-size: 18px;
  font-weight: 600;
  color: #e8c204;
  margin-bottom: 10px;
  text-decoration: underline;
}

.footer-style-two .sa-newslatter {
  max-width: 330px;
}

.footer-style-two .sa-newslatter .xb-item--sub-title {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #d2dbef;
  margin-bottom: 30px;
  display: inline-block;
}

.footer-style-two .sa-newslatter .xb-item--input_field {
  margin: 40px 0 25px;
}

.footer-style-two .sa-newslatter .xb-item--input_field input {
  height: 60px;
  color: #ffffff;
  background: #ffffff;
  padding: 0 20px 0 46px;
  border: 2px solid #e8c204;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.footer-style-two .sa-newslatter .xb-item--input_field input::-webkit-input-placeholder {
  color: #54565c;
  opacity: 1;
}

.footer-style-two .sa-newslatter .xb-item--input_field input::-moz-placeholder {
  color: #54565c;
  opacity: 1;
}

.footer-style-two .sa-newslatter .xb-item--input_field input:-ms-input-placeholder {
  color: #54565c;
  opacity: 1;
}

.footer-style-two .sa-newslatter .xb-item--input_field input:-moz-placeholder {
  color: #54565c;
  opacity: 1;
}

.footer-style-two .sa-newslatter .xb-item--input_field .img {
  position: absolute;
  left: 20px;
  top: 48%;
  opacity: 0.5;
  transform: translateY(-50%);
}

.footer-style-two .sa-newslatter .xb-item--btn {
  position: absolute;
  top: 50%;
  right: 0;
  color: var(--color-white);
  height: 100%;
  padding: 0 20px;
  background: var(--color-heading-two);
  transform: translateY(-50%);
  border: 2px solid var(--color-yellow);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.footer-style-two .sa-newslatter .xb-item--text {
  color: #d2dbef;
  line-height: 26px;
  letter-spacing: -0.01em;
}

.footer-style-two .sa-newslatter .xb-item--text a {
  color: currentColor;
  text-decoration: underline;
}

.footer-style-two .sa-newslatter .xb-item--text a:hover {
  color: var(--color-white);
}

.footer-style-two .footer-widget .xb-item--sub-title {
  font-size: 14px;
  text-transform: uppercase;
}

.footer-style-two .footer-widget .xb-item--list {
  line-height: 40px;
}

.footer-style-two .footer-copyright {
  padding: 12px 0 32px;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.footer-style-two .footer-copyright .footer-link li:not(:last-child) {
  margin-right: 15px;
}

.footer-style-two .footer-copyright .footer-link li span {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--color-white);
}

.footer-style-two .footer-copyright .footer-link li a {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-white);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.footer-style-two .footer-copyright .footer-link li a:hover {
  color: var(--color-white);
}

.footer-style-two .footer-copyright a {
  color: var(--color-yellow);
}

.footer-style-two .footer-copyright a:hover {
  text-decoration: underline;
}

.social-link {
  gap: 22px;
  flex-wrap: nowrap;
}

@media (max-width: 767px) {
  .social-link {
    flex-wrap: wrap;
  }
}

.item-contact_map .xb-item--inner {
  height: 100%;
}

.item-contact_map {
  padding: 0 !important;
  height: 38%;
  overflow: hidden;
}

.megamenu_widget_inner .icon_list .sub-head {
  font-weight: 800 !important;
  font-size: 24px !important;
  color: #3c2372 !important;
  text-decoration: underline !important;
}

.megamenu_widget_inner .icon_list .social_for a {
  color: #3c2372 !important;
  font-weight: 700 !important;

}


.main-form {
  height: 100vh !important;
  /* background-image: url('../img/banner.jpg'); */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}


.main-form form {
  position: relative;
  z-index: 9;
  box-shadow: 0 0 12px 2px #00000020;
  margin: 50px;
  padding: 30px 50px;
  border-radius: 10px;
  background-color: #fff;
}

.main-form form h1 {
  font-size: 52px;
  font-weight: 900;
  color: #3c2372;
  text-align: center;
  margin-bottom: 50px;
}

.main-form form .form-input label {
  font-size: 16px;
  font-weight: 900;
  color: #3c2372;
  margin-bottom: 10px;
  float: left;
  text-transform: capitalize;
  font-family: "DM Sans", sans-serif;
}

.main-form form .form-control {
  outline: none;
  background-color: #fff;
  width: 100%;
  height: 55px !important;
  color: #191919;
  padding-left: 26px;
  padding-right: 26px;
  border: 1px solid #E0E2E3;

  font-size: 14px;
}

.main-form form .form-control {
  font-size: 18px;
}

.logo-img {
  text-align: center;
  z-index: 9;
  position: relative;
}

.logo-img img {
  width: 250px;
}

.main-form form button {
  background-color: #3d2371;
  padding: 5px 60px 10px;
  font-size: 20px;
  border: 1px solid #3d2371 !important;
  font-weight: 600;
  color: #fff;
}

.main-form form button:hover {
  background-color: #fff;
  color: #3d2371;
}

.main-form form .login-btns {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}

.middle {
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column !important;
}

.main-form form .form-control::placeholder {
  text-transform: capitalize;
  font-size: 14px;
  font-family: "DM Sans", sans-serif;
}

.main-form .col-md-6 {
  padding: 0;
}

.login-form h1 {
  color: #3d2371 !important;
  font-size: 30px !important;
  font-family: "DM Sans", sans-serif;
  margin: 10px 0 !important;
  text-transform: capitalize;
}

.login-form p {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  color: #000;
}

.main-form .banner-img img {
  width: 100%;
}

.banner-img {
  height: 100vh;
  overflow: hidden;
}

.login-form.middle {
  padding-right: 50px;
}

@media(max-width: 575.98px) {
  .banner-img {
    display: none;
  }

  .login-form {
    background-image: url('../img/banner.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    height: 100vh;
  }

  .login-form::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #fff;
    opacity: 0.2;
  }

  .main-form .col-lg-5.col-md-12 {
    padding: 0 !important;
  }

  .main-form form {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 10px;
    width: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    margin: 20px;
  }

  .login-form h1 {
    font-size: 26px !important;
  }

  .logo-img {
    margin-top: 20px;
  }

  .logo-img img {
    width: 200px;
  }
}
@media(min-width: 575.98px) and (max-width:767.98px) {
  .banner-img {
    display: none;
  }

  .login-form {
    background-image: url('../img/banner.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    height: 100vh;
  }

  .login-form::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #fff;
    opacity: 0.2;
  }

  .main-form .col-lg-5.col-md-12 {
    padding: 0 !important;
  }

  .main-form form {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 10px;
    width: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    margin: 20px;
  }

  .login-form h1 {
    font-size: 26px !important;
  }

  .logo-img {
    margin-top: 20px;
  }

  .logo-img img {
    width: 200px;
  }
}
@media(min-width: 768.98px) and (max-width:991.98px) {
  .banner-img {
    display: none;
  }

  .login-form {
    background-image: url('../img/banner.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    height:100vh;
  }

  .login-form::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #fff;
    opacity: 0.2;
  }

  .main-form .col-xl-5,.main-form .col-md-12 {
    padding: 0 !important;
  }

  .main-form form {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 10px;
    width: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    margin: 20px;
  }

  .login-form h1 {
    font-size: 26px !important;
  }

  .logo-img {
    margin-top: 20px;
  }

  .logo-img img {
    width: 200px;
  }
}
@media(min-width: 992.98px) and (max-width:1199.98px) {


  .main-form .col-xl-5,.main-form .col-md-12 {
    padding: 0 !important;
  }

  .main-form form {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    width: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    margin: 20px;
  }

  .login-form h1 {
    font-size: 26px !important;
  }

  .logo-img {
    margin-top: 20px;
  }

  .logo-img img {
    width: 200px;
  }
.main-form .banner-img img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}
.login-form.middle {
  padding-right: 50px;
  margin: 20px;
}
.main-form{
  overflow: hidden;
}

}
@media(min-width: 1200.98px) and (max-width:1900.98px) {
.main-form .banner-img img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}
}