/*-----------------------------------------------------------------------------------
   CSS INDEX
    ===================

	01. Theme default CSS
    02. header
    03. global
    04. hero
    05. feature
    06. about
    07. service
    08. team
    09. testimonial
    10. contact
    11. blog
    12. bramd
    13. pricing
    14. project
    15. cta
    16. fanfact
    17. marquee
    18. process
    19. banner
    20. portfolio
    21. accordion
    22. mission
    23. career
    24. shop
    25. breadcrumb
    26. sidebar
    27. backtotop
    28. sec-title
    29. search
    30. mobile-menu
    31. 404
    32. preloader
    33. footer
    

-----------------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
:root {
  --font-body: "Inter", sans-serif;
  --font-heading: "Inter", sans-serif;
  --font-newyork: "Inter", sans-serif;
  --color-primary: #ffc500;
  --color-primary-rgb: 253, 197, 0;
  --color-heading: #000;
  --color-default: #666666;
  --color-border: #DFDFDF;
  --color-sec_bg: #F1F1F1;
  --color-gray: #666666;
  --color-black: #000;
  --color-dark: #0F172A;
  --color-white: #fff;
  --color-body: #F7F5F2;
}

/*
@font-face {
  font-family: 'NewYork PERSONAL USE';
  font-style: normal;
  font-weight: normal;
  src: local("NewYork PERSONAL USE"), url("../fonts/NewYork PERSONAL USE.woff") format("woff");
}
*/
/* reset css start */ :root {
  scroll-behavior: auto;
}
html {
  scroll-behavior: smooth;
}
body {
  padding: 0;
  margin: 0;
  font-weight: 400;
  position: relative;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 30px;
  color: var(--color-default);
  scrollbar-width: thin;
}
body::-webkit-scrollbar {
  width: 7px;
}
body::-webkit-scrollbar-track {
  background: var(--xb-track-color);
  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;
}
hr {
  opacity: 1;
  border-color: #DFDFDF;
}
table {
  width: 100%;
}
p, li, span {
  margin-bottom: 0;
}
/* reset css end */
/* global css start */
.nice-select {
  background-color: transparent;
  height: 55px;
  line-height: 55px;
  min-height: 55px;
  padding: 0 20px;
  width: 100%;
  padding: 0 20px;
  margin-bottom: 10px;
  background-color: #fff;
  border: 1px solid rgba(20, 20, 20, 0.1);
  font-size: 16px;
  border-radius: 7px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
}
.nice-select::after {
  border-bottom: 1.9px solid #4C6A6D;
  border-right: 1.9px solid #4C6A6D;
  height: 6px;
  right: 20px;
  width: 6px;
}
.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
  background-color: #FDF2F1;
  border-color: var(--color-primary);
}
.nice-select:active, .nice-select.open, .nice-select:focus {
  border-color: var(--color-primary);
  background-color: #FDF2F1;
}
.nice-select .list {
  width: 100%;
}
.nice-select .list li {
  margin-right: 0 !important;
}
.nice-select .list .option {
  color: var(--color-dark);
  font-weight: 500;
}
.nice-select .list .option.selected {
  font-weight: 600;
}
.nice-select .list .option.selected, .nice-select .list .option:hover {
  border: none !important;
}
/* global css end */
.body_wrap {
  position: relative;
  overflow: clip;
}
body.body-overflow {
  overflow: hidden;
}
.home-two {
  background: #efefef;
  padding: 30px;
  padding-bottom: 0;
}
@media (max-width: 1199px) {
  .home-two {
    padding: 15px;
  }
}
.bg_img {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}
.black-bg {
  background: var(--color-black);
}
.gray-bg {
  background-color: var(--color-gray);
}
.dark-bg {
  background-color: var(--color-dark);
}
.white {
  color: var(--color-white);
}
.pos-rel {
  position: relative;
}
.pos-absolute {
  position: absolute;
}
.f-right {
  float: right;
}
.border-effect a, .border-effect-2 a {
  display: inline !important;
  width: 100%;
  background-repeat: no-repeat;
  background-position-y: -2px;
  background-image: linear-gradient(transparent calc(100% - 2px), currentColor 1px);
  -webkit-transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  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, .border-effect-2 a:hover {
  background-size: 100% 100%;
  color: inherit;
}
.border-effect-2 a {
  background-image: linear-gradient(transparent calc(100% - 1px), currentColor 1px);
}
@media (max-width: 767px) {
  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
}
.btn-video {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--color-black);
  position: relative;
  background-color: var(--color-white);
}
@media (max-width: 767px) {
  .btn-video {
    width: 70px;
    height: 70px;
    font-size: 18px;
  }
}
.btn-video:hover {
  color: var(--color-black);
}
.btn-video::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
  -webkit-animation: pulse-border 1500ms ease-out infinite;
  z-index: -2;
}
.btn-video-center {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.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;
}
.color-black {
  color: var(--color-black);
}
.pagination_wrap ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: -5px;
  list-style: none;
}
.pagination_wrap ul li {
  padding: 5px;
}
.pagination_wrap ul li a {
  height: 50px;
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border: 1px solid #DFDFDF;
  background-color: var(--color-white);
  -webkit-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  z-index: 1;
  overflow: hidden;
  color: #000;
  gap: 5px;
}
.pagination_wrap ul li a i {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .pagination_wrap ul li a {
    height: 40px;
    width: 40px;
    font-size: 15px;
  }
}
.pagination_wrap ul li a.current_page, .pagination_wrap ul li a:hover {
  color: var(--color-white);
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}
.pagination_wrap ul li a.prev, .pagination_wrap ul li a.next {
  padding: 0 20px;
  text-transform: uppercase;
}
.pagination_wrap ul li a.prev:hover i {
  -webkit-transform: translateX(-3px);
  -ms-transform: translateX(-3px);
  transform: translateX(-3px);
}
.pagination_wrap ul li a.next:hover i {
  -webkit-transform: translateX(3px);
  -ms-transform: translateX(3px);
  transform: translateX(3px);
}
.mr-none-60 {
  margin-right: -60px;
}
.ml-none-60 {
  margin-left: -60px;
}
.pb-8 {
  padding-bottom: 8px;
}
.bg-leniar {
  background: linear-gradient(180deg, #f7f5f2 15.68%, #fff 100%);
}
.xb-odm {
  overflow: hidden;
}
.xb-odm .xbo.xbo-auto-theme .xbo-digit .xbo-digit-inner, .xb-odm .xbo.xbo-theme-default .xbo-digit .xbo-digit-inner {
  overflow: initial;
  overscroll-behavior-y: hidden;
}
.xb-border {
  border-bottom: 1px solid var(--color-heading);
}
/*--
    - Margin & Padding
-----------------------------------------*/
/*-- Margin Top --*/
.mt-none-5 {
  margin-top: -5px;
}
.mt-none-10 {
  margin-top: -10px;
}
.mt-none-15 {
  margin-top: -15px;
}
.mt-none-20 {
  margin-top: -20px;
}
.mt-none-25 {
  margin-top: -25px;
}
.mt-none-30 {
  margin-top: -30px;
}
.mt-none-35 {
  margin-top: -35px;
}
.mt-none-40 {
  margin-top: -40px;
}
.mt-none-45 {
  margin-top: -45px;
}
.mt-none-50 {
  margin-top: -50px;
}
.mt-none-55 {
  margin-top: -55px;
}
.mt-none-60 {
  margin-top: -60px;
}
.mt-none-65 {
  margin-top: -65px;
}
.mt-none-70 {
  margin-top: -70px;
}
.mt-none-75 {
  margin-top: -75px;
}
.mt-none-80 {
  margin-top: -80px;
}
.mt-none-85 {
  margin-top: -85px;
}
.mt-none-90 {
  margin-top: -90px;
}
.mt-none-95 {
  margin-top: -95px;
}
.mt-none-100 {
  margin-top: -100px;
}
/*-- Margin Top --*/
.mt-5 {
  margin-top: 5px;
}
.mt-10 {
  margin-top: 10px;
}
.mt-15 {
  margin-top: 15px;
}
.mt-20 {
  margin-top: 20px;
}
.mt-25 {
  margin-top: 25px;
}
.mt-30 {
  margin-top: 30px;
}
.mt-35 {
  margin-top: 35px;
}
.mt-40 {
  margin-top: 40px;
}
.mt-45 {
  margin-top: 45px;
}
.mt-50 {
  margin-top: 50px;
}
.mt-55 {
  margin-top: 55px;
}
.mt-60 {
  margin-top: 60px;
}
.mt-65 {
  margin-top: 65px;
}
.mt-70 {
  margin-top: 70px;
}
.mt-75 {
  margin-top: 75px;
}
.mt-80 {
  margin-top: 80px;
}
.mt-85 {
  margin-top: 85px;
}
.mt-90 {
  margin-top: 90px;
}
.mt-95 {
  margin-top: 95px;
}
.mt-100 {
  margin-top: 100px;
}
.mt-105 {
  margin-top: 105px;
}
.mt-110 {
  margin-top: 110px;
}
.mt-115 {
  margin-top: 115px;
}
.mt-120 {
  margin-top: 120px;
}
.mt-125 {
  margin-top: 125px;
}
.mt-130 {
  margin-top: 130px;
}
.mt-135 {
  margin-top: 135px;
}
.mt-140 {
  margin-top: 140px;
}
.mt-145 {
  margin-top: 145px;
}
.mt-150 {
  margin-top: 150px;
}
.mt-155 {
  margin-top: 155px;
}
.mt-160 {
  margin-top: 160px;
}
.mt-165 {
  margin-top: 165px;
}
.mt-170 {
  margin-top: 170px;
}
.mt-175 {
  margin-top: 175px;
}
.mt-180 {
  margin-top: 180px;
}
.mt-185 {
  margin-top: 185px;
}
.mt-190 {
  margin-top: 190px;
}
.mt-195 {
  margin-top: 195px;
}
.mt-200 {
  margin-top: 200px;
}
/*-- Margin Bottom --*/
.mb-5 {
  margin-bottom: 5px;
}
.mb-10 {
  margin-bottom: 10px;
}
.mb-15 {
  margin-bottom: 15px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-25 {
  margin-bottom: 25px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mb-35 {
  margin-bottom: 35px;
}
.mb-40 {
  margin-bottom: 40px;
}
.mb-45 {
  margin-bottom: 45px;
}
.mb-50 {
  margin-bottom: 50px;
}
.mb-55 {
  margin-bottom: 55px;
}
.mb-60 {
  margin-bottom: 60px;
}
.mb-65 {
  margin-bottom: 65px;
}
.mb-70 {
  margin-bottom: 70px;
}
.mb-75 {
  margin-bottom: 75px;
}
.mb-80 {
  margin-bottom: 80px;
}
.mb-85 {
  margin-bottom: 85px;
}
.mb-90 {
  margin-bottom: 90px;
}
.mb-95 {
  margin-bottom: 95px;
}
.mb-100 {
  margin-bottom: 100px;
}
.mb-105 {
  margin-bottom: 105px;
}
.mb-110 {
  margin-bottom: 110px;
}
.mb-115 {
  margin-bottom: 115px;
}
.mb-120 {
  margin-bottom: 120px;
}
.mb-125 {
  margin-bottom: 125px;
}
.mb-130 {
  margin-bottom: 130px;
}
.mb-135 {
  margin-bottom: 135px;
}
.mb-140 {
  margin-bottom: 140px;
}
.mb-145 {
  margin-bottom: 145px;
}
.mb-150 {
  margin-bottom: 150px;
}
.mb-155 {
  margin-bottom: 155px;
}
.mb-160 {
  margin-bottom: 160px;
}
.mb-165 {
  margin-bottom: 165px;
}
.mb-170 {
  margin-bottom: 170px;
}
.mb-175 {
  margin-bottom: 175px;
}
.mb-180 {
  margin-bottom: 180px;
}
.mb-185 {
  margin-bottom: 185px;
}
.mb-190 {
  margin-bottom: 190px;
}
.mb-195 {
  margin-bottom: 195px;
}
.mb-200 {
  margin-bottom: 200px;
}
/*-- Margin Left --*/
.ml-5 {
  margin-left: 5px;
}
.ml-10 {
  margin-left: 10px;
}
.ml-15 {
  margin-left: 15px;
}
.ml-20 {
  margin-left: 20px;
}
.ml-25 {
  margin-left: 25px;
}
.ml-30 {
  margin-left: 30px;
}
.ml-35 {
  margin-left: 35px;
}
.ml-40 {
  margin-left: 40px;
}
.ml-45 {
  margin-left: 45px;
}
.ml-50 {
  margin-left: 50px;
}
.ml-55 {
  margin-left: 55px;
}
.ml-60 {
  margin-left: 60px;
}
.ml-65 {
  margin-left: 65px;
}
.ml-70 {
  margin-left: 70px;
}
.ml-75 {
  margin-left: 75px;
}
.ml-80 {
  margin-left: 80px;
}
.ml-85 {
  margin-left: 85px;
}
.ml-90 {
  margin-left: 90px;
}
.ml-95 {
  margin-left: 95px;
}
.ml-100 {
  margin-left: 100px;
}
.ml-105 {
  margin-left: 105px;
}
.ml-110 {
  margin-left: 110px;
}
.ml-115 {
  margin-left: 115px;
}
.ml-120 {
  margin-left: 120px;
}
.ml-125 {
  margin-left: 125px;
}
.ml-130 {
  margin-left: 130px;
}
.ml-135 {
  margin-left: 135px;
}
.ml-140 {
  margin-left: 140px;
}
.ml-145 {
  margin-left: 145px;
}
.ml-150 {
  margin-left: 150px;
}
.ml-155 {
  margin-left: 155px;
}
.ml-160 {
  margin-left: 160px;
}
.ml-165 {
  margin-left: 165px;
}
.ml-170 {
  margin-left: 170px;
}
.ml-175 {
  margin-left: 175px;
}
.ml-180 {
  margin-left: 180px;
}
.ml-185 {
  margin-left: 185px;
}
.ml-190 {
  margin-left: 190px;
}
.ml-195 {
  margin-left: 195px;
}
.ml-200 {
  margin-left: 200px;
}
/*-- Margin Right --*/
.mr-5 {
  margin-right: 5px;
}
.mr-10 {
  margin-right: 10px;
}
.mr-15 {
  margin-right: 15px;
}
.mr-20 {
  margin-right: 20px;
}
.mr-25 {
  margin-right: 25px;
}
.mr-30 {
  margin-right: 30px;
}
.mr-35 {
  margin-right: 35px;
}
.mr-40 {
  margin-right: 40px;
}
.mr-45 {
  margin-right: 45px;
}
.mr-50 {
  margin-right: 50px;
}
.mr-55 {
  margin-right: 55px;
}
.mr-60 {
  margin-right: 60px;
}
.mr-65 {
  margin-right: 65px;
}
.mr-70 {
  margin-right: 70px;
}
.mr-75 {
  margin-right: 75px;
}
.mr-80 {
  margin-right: 80px;
}
.mr-85 {
  margin-right: 85px;
}
.mr-90 {
  margin-right: 90px;
}
.mr-95 {
  margin-right: 95px;
}
.mr-100 {
  margin-right: 100px;
}
.mr-105 {
  margin-right: 105px;
}
.mr-110 {
  margin-right: 110px;
}
.mr-115 {
  margin-right: 115px;
}
.mr-120 {
  margin-right: 120px;
}
.mr-125 {
  margin-right: 125px;
}
.mr-130 {
  margin-right: 130px;
}
.mr-135 {
  margin-right: 135px;
}
.mr-140 {
  margin-right: 140px;
}
.mr-145 {
  margin-right: 145px;
}
.mr-150 {
  margin-right: 150px;
}
.mr-155 {
  margin-right: 155px;
}
.mr-160 {
  margin-right: 160px;
}
.mr-165 {
  margin-right: 165px;
}
.mr-170 {
  margin-right: 170px;
}
.mr-175 {
  margin-right: 175px;
}
.mr-180 {
  margin-right: 180px;
}
.mr-185 {
  margin-right: 185px;
}
.mr-190 {
  margin-right: 190px;
}
.mr-195 {
  margin-right: 195px;
}
.mr-200 {
  margin-right: 200px;
}
/*-- Padding Top --*/
.pt-5 {
  padding-top: 5px;
}
.pt-10 {
  padding-top: 10px;
}
.pt-15 {
  padding-top: 15px;
}
.pt-20 {
  padding-top: 20px;
}
.pt-25 {
  padding-top: 25px;
}
.pt-30 {
  padding-top: 30px;
}
.pt-35 {
  padding-top: 35px;
}
.pt-40 {
  padding-top: 40px;
}
.pt-45 {
  padding-top: 45px;
}
.pt-50 {
  padding-top: 50px;
}
.pt-55 {
  padding-top: 55px;
}
.pt-60 {
  padding-top: 60px;
}
.pt-65 {
  padding-top: 65px;
}
.pt-70 {
  padding-top: 70px;
}
.pt-75 {
  padding-top: 75px;
}
.pt-80 {
  padding-top: 80px;
}
.pt-85 {
  padding-top: 85px;
}
.pt-90 {
  padding-top: 90px;
}
.pt-95 {
  padding-top: 95px;
}
.pt-100 {
  padding-top: 100px;
}
.pt-105 {
  padding-top: 105px;
}
.pt-110 {
  padding-top: 110px;
}
.pt-115 {
  padding-top: 115px;
}
.pt-120 {
  padding-top: 120px;
}
.pt-125 {
  padding-top: 125px;
}
.pt-130 {
  padding-top: 130px;
}
.pt-135 {
  padding-top: 135px;
}
.pt-140 {
  padding-top: 140px;
}
.pt-145 {
  padding-top: 145px;
}
.pt-150 {
  padding-top: 150px;
}
.pt-155 {
  padding-top: 155px;
}
.pt-160 {
  padding-top: 160px;
}
.pt-165 {
  padding-top: 165px;
}
.pt-170 {
  padding-top: 170px;
}
.pt-175 {
  padding-top: 175px;
}
.pt-180 {
  padding-top: 180px;
}
.pt-185 {
  padding-top: 185px;
}
.pt-190 {
  padding-top: 190px;
}
.pt-195 {
  padding-top: 195px;
}
.pt-200 {
  padding-top: 200px;
}
/*-- Padding Bottom --*/
.pb-5 {
  padding-bottom: 5px;
}
.pb-10 {
  padding-bottom: 10px;
}
.pb-15 {
  padding-bottom: 15px;
}
.pb-20 {
  padding-bottom: 20px;
}
.pb-25 {
  padding-bottom: 25px;
}
.pb-30 {
  padding-bottom: 30px;
}
.pb-35 {
  padding-bottom: 35px;
}
.pb-40 {
  padding-bottom: 40px;
}
.pb-45 {
  padding-bottom: 45px;
}
.pb-50 {
  padding-bottom: 50px;
}
.pb-55 {
  padding-bottom: 55px;
}
.pb-60 {
  padding-bottom: 60px;
}
.pb-65 {
  padding-bottom: 65px;
}
.pb-70 {
  padding-bottom: 70px;
}
.pb-75 {
  padding-bottom: 75px;
}
.pb-80 {
  padding-bottom: 80px;
}
.pb-85 {
  padding-bottom: 85px;
}
.pb-90 {
  padding-bottom: 90px;
}
.pb-95 {
  padding-bottom: 95px;
}
.pb-100 {
  padding-bottom: 100px;
}
.pb-105 {
  padding-bottom: 105px;
}
.pb-110 {
  padding-bottom: 110px;
}
.pb-115 {
  padding-bottom: 115px;
}
.pb-120 {
  padding-bottom: 120px;
}
.pb-125 {
  padding-bottom: 125px;
}
.pb-130 {
  padding-bottom: 130px;
}
.pb-135 {
  padding-bottom: 135px;
}
.pb-140 {
  padding-bottom: 140px;
}
.pb-145 {
  padding-bottom: 145px;
}
.pb-150 {
  padding-bottom: 150px;
}
.pb-155 {
  padding-bottom: 155px;
}
.pb-160 {
  padding-bottom: 160px;
}
.pb-165 {
  padding-bottom: 165px;
}
.pb-170 {
  padding-bottom: 170px;
}
.pb-175 {
  padding-bottom: 175px;
}
.pb-180 {
  padding-bottom: 180px;
}
.pb-185 {
  padding-bottom: 185px;
}
.pb-190 {
  padding-bottom: 190px;
}
.pb-195 {
  padding-bottom: 195px;
}
.pb-200 {
  padding-bottom: 200px;
}
/*-- Padding Left --*/
.pl-5 {
  padding-left: 5px;
}
.pl-10 {
  padding-left: 10px;
}
.pl-15 {
  padding-left: 15px;
}
.pl-20 {
  padding-left: 20px;
}
.pl-25 {
  padding-left: 25px;
}
.pl-30 {
  padding-left: 30px;
}
.pl-35 {
  padding-left: 35px;
}
.pl-40 {
  padding-left: 40px;
}
.pl-45 {
  padding-left: 45px;
}
.pl-50 {
  padding-left: 50px;
}
.pl-55 {
  padding-left: 55px;
}
.pl-60 {
  padding-left: 60px;
}
.pl-65 {
  padding-left: 65px;
}
.pl-70 {
  padding-left: 70px;
}
.pl-75 {
  padding-left: 75px;
}
.pl-80 {
  padding-left: 80px;
}
.pl-85 {
  padding-left: 85px;
}
.pl-90 {
  padding-left: 90px;
}
.pl-95 {
  padding-left: 95px;
}
.pl-100 {
  padding-left: 100px;
}
.pl-105 {
  padding-left: 105px;
}
.pl-110 {
  padding-left: 110px;
}
.pl-115 {
  padding-left: 115px;
}
.pl-120 {
  padding-left: 120px;
}
.pl-125 {
  padding-left: 125px;
}
.pl-130 {
  padding-left: 130px;
}
.pl-135 {
  padding-left: 135px;
}
.pl-140 {
  padding-left: 140px;
}
.pl-145 {
  padding-left: 145px;
}
.pl-150 {
  padding-left: 150px;
}
.pl-155 {
  padding-left: 155px;
}
.pl-160 {
  padding-left: 160px;
}
.pl-165 {
  padding-left: 165px;
}
.pl-170 {
  padding-left: 170px;
}
.pl-175 {
  padding-left: 175px;
}
.pl-180 {
  padding-left: 180px;
}
.pl-185 {
  padding-left: 185px;
}
.pl-190 {
  padding-left: 190px;
}
.pl-195 {
  padding-left: 195px;
}
.pl-200 {
  padding-left: 200px;
}
/*-- Padding Right --*/
.pr-5 {
  padding-right: 5px;
}
.pr-10 {
  padding-right: 10px;
}
.pr-15 {
  padding-right: 15px;
}
.pr-20 {
  padding-right: 20px;
}
.pr-25 {
  padding-right: 25px;
}
.pr-30 {
  padding-right: 30px;
}
.pr-35 {
  padding-right: 35px;
}
.pr-40 {
  padding-right: 40px;
}
.pr-45 {
  padding-right: 45px;
}
.pr-50 {
  padding-right: 50px;
}
.pr-55 {
  padding-right: 55px;
}
.pr-60 {
  padding-right: 60px;
}
.pr-65 {
  padding-right: 65px;
}
.pr-70 {
  padding-right: 70px;
}
.pr-75 {
  padding-right: 75px;
}
.pr-80 {
  padding-right: 80px;
}
.pr-85 {
  padding-right: 85px;
}
.pr-90 {
  padding-right: 90px;
}
.pr-95 {
  padding-right: 95px;
}
.pr-100 {
  padding-right: 100px;
}
.pr-105 {
  padding-right: 105px;
}
.pr-110 {
  padding-right: 110px;
}
.pr-115 {
  padding-right: 115px;
}
.pr-120 {
  padding-right: 120px;
}
.pr-125 {
  padding-right: 125px;
}
.pr-130 {
  padding-right: 130px;
}
.pr-135 {
  padding-right: 135px;
}
.pr-140 {
  padding-right: 140px;
}
.pr-145 {
  padding-right: 145px;
}
.pr-150 {
  padding-right: 150px;
}
.pr-155 {
  padding-right: 155px;
}
.pr-160 {
  padding-right: 160px;
}
.pr-165 {
  padding-right: 165px;
}
.pr-170 {
  padding-right: 170px;
}
.pr-175 {
  padding-right: 175px;
}
.pr-180 {
  padding-right: 180px;
}
.pr-185 {
  padding-right: 185px;
}
.pr-190 {
  padding-right: 190px;
}
.pr-195 {
  padding-right: 195px;
}
.pr-200 {
  padding-right: 200px;
}
/* typography css start */
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  line-height: 1.3;
  color: var(--color-heading);
  letter-spacing: -0.03em;
  font-weight: 600;
  font-family: var(--font-heading);
  text-transform: uppercase;
}
h2 {
  font-size: 32px;
}
h3 {
  font-size: 22px;
}
h4 {
  font-size: 20px;
}
h5 {
  font-size: 18px;
}
h6 {
  font-size: 16px;
}
/* typography css end */
@-webkit-keyframes jump {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40% {
    -webkit-transform: translate3d(0, 50%, 0);
    transform: translate3d(0, 50%, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes jump {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40% {
    -webkit-transform: translate3d(0, 50%, 0);
    transform: translate3d(0, 50%, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes rotated {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotated {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes rotatedHalf {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
@keyframes rotatedHalf {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
@-webkit-keyframes rotatedHalfTwo {
  0% {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
  100% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
@keyframes rotatedHalfTwo {
  0% {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
  100% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
@-webkit-keyframes scale-upOne {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.2);
    transform: scale(0.2);
  }
}
@keyframes scale-upOne {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.2);
    transform: scale(0.2);
  }
}
@-webkit-keyframes scale-right {
  0% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  50% {
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
  }
  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
@keyframes scale-right {
  0% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  50% {
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
  }
  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
@-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 hvr-ripple-out {
  0% {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
  100% {
    top: -6px;
    right: -6px;
    bottom: -6px;
    left: -6px;
  }
}
@keyframes hvr-ripple-out-two {
  0% {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
  100% {
    top: -18px;
    right: -18px;
    bottom: -18px;
    left: -18px;
    opacity: 0;
  }
}
@-webkit-keyframes scale-up-one {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  40% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes scale-up-one {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  40% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes scale-up-two {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  40% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
}
@keyframes scale-up-two {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  40% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
}
@-webkit-keyframes scale-up-three {
  0% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }
  40% {
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
  }
  100% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }
}
@keyframes scale-up-three {
  0% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }
  40% {
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
  }
  100% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }
}
@keyframes animationFramesOne {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    -moz-transform: translate(0px, 0px) rotate(0deg);
    -ms-transform: translate(0px, 0px) rotate(0deg);
    -o-transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    transform: translate(73px, -1px) rotate(36deg);
    -webkit-transform: translate(73px, -1px) rotate(36deg);
    -moz-transform: translate(73px, -1px) rotate(36deg);
    -ms-transform: translate(73px, -1px) rotate(36deg);
    -o-transform: translate(73px, -1px) rotate(36deg);
  }
  40% {
    transform: translate(141px, -20px) rotate(72deg);
    -webkit-transform: translate(141px, -20px) rotate(72deg);
    -moz-transform: translate(141px, -20px) rotate(72deg);
    -ms-transform: translate(141px, -20px) rotate(72deg);
    -o-transform: translate(141px, -20px) rotate(72deg);
  }
  60% {
    transform: translate(83px, -60px) rotate(108deg);
    -webkit-transform: translate(83px, -60px) rotate(108deg);
    -moz-transform: translate(83px, -60px) rotate(108deg);
    -ms-transform: translate(83px, -60px) rotate(108deg);
    -o-transform: translate(83px, -60px) rotate(108deg);
  }
  80% {
    transform: translate(-40px, 72px) rotate(144deg);
    -webkit-transform: translate(-40px, 72px) rotate(144deg);
    -moz-transform: translate(-40px, 72px) rotate(144deg);
    -ms-transform: translate(-40px, 72px) rotate(144deg);
    -o-transform: translate(-40px, 72px) rotate(144deg);
  }
  100% {
    transform: translate(0px, 0px) rotate(0deg);
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    -moz-transform: translate(0px, 0px) rotate(0deg);
    -ms-transform: translate(0px, 0px) rotate(0deg);
    -o-transform: translate(0px, 0px) rotate(0deg);
  }
}
@-webkit-keyframes animationFramesOne {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    -webkit-transform: translate(73px, -1px) rotate(36deg);
  }
  40% {
    -webkit-transform: translate(141px, 72px) rotate(72deg);
  }
  60% {
    -webkit-transform: translate(83px, 122px) rotate(108deg);
  }
  80% {
    -webkit-transform: translate(-40px, 72px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
  }
}
@keyframes animationFramesTwo {
  0% {
    transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
  20% {
    transform: translate(73px, -1px) rotate(36deg) scale(0.9);
  }
  40% {
    transform: translate(141px, 72px) rotate(72deg) scale(1);
  }
  60% {
    transform: translate(83px, 122px) rotate(108deg) scale(1.2);
  }
  80% {
    transform: translate(-40px, 72px) rotate(144deg) scale(1.1);
  }
  100% {
    transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
}
@-webkit-keyframes animationFramesTwo {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
  20% {
    -webkit-transform: translate(73px, -1px) rotate(36deg) scale(0.9);
  }
  40% {
    -webkit-transform: translate(141px, 72px) rotate(72deg) scale(1);
  }
  60% {
    -webkit-transform: translate(83px, 122px) rotate(108deg) scale(1.2);
  }
  80% {
    -webkit-transform: translate(-40px, 72px) rotate(144deg) scale(1.1);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
}
@keyframes animationFramesThree {
  0% {
    transform: translate(165px, -30px);
    -webkit-transform: translate(165px, -30px);
    -moz-transform: translate(165px, -30px);
    -ms-transform: translate(165px, -30px);
    -o-transform: translate(165px, -30px);
  }
  100% {
    transform: translate(-60px, 80px);
    -webkit-transform: translate(-60px, 80px);
    -moz-transform: translate(-60px, 80px);
    -ms-transform: translate(-60px, 80px);
    -o-transform: translate(-60px, 80px);
  }
}
@-webkit-keyframes animationFramesThree {
  0% {
    transform: translate(165px, -30px);
    -webkit-transform: translate(165px, -30px);
    -moz-transform: translate(165px, -30px);
    -ms-transform: translate(165px, -30px);
    -o-transform: translate(165px, -30px);
  }
  100% {
    transform: translate(-60px, 80px);
    -webkit-transform: translate(-60px, 80px);
    -moz-transform: translate(-60px, 80px);
    -ms-transform: translate(-60px, 80px);
    -o-transform: translate(-60px, 80px);
  }
}
@keyframes animationFramesFour {
  0% {
    transform: translate(0px, 60px) rotate(0deg);
    -webkit-transform: translate(0px, 60px) rotate(0deg);
    -moz-transform: translate(0px, 60px) rotate(0deg);
    -ms-transform: translate(0px, 60px) rotate(0deg);
    -o-transform: translate(0px, 60px) rotate(0deg);
  }
  100% {
    transform: translate(-100px, -100px) rotate(180deg);
    -webkit-transform: translate(-100px, -100px) rotate(180deg);
    -moz-transform: translate(-100px, -100px) rotate(180deg);
    -ms-transform: translate(-100px, -100px) rotate(180deg);
    -o-transform: translate(-100px, -100px) rotate(180deg);
  }
}
@-webkit-keyframes animationFramesFour {
  0% {
    transform: translate(0px, 60px) rotate(0deg);
    -webkit-transform: translate(0px, 60px) rotate(0deg);
    -moz-transform: translate(0px, 60px) rotate(0deg);
    -ms-transform: translate(0px, 60px) rotate(0deg);
    -o-transform: translate(0px, 60px) rotate(0deg);
  }
  100% {
    transform: translate(-100px, -100px) rotate(180deg);
    -webkit-transform: translate(-100px, -100px) rotate(180deg);
    -moz-transform: translate(-100px, -100px) rotate(180deg);
    -ms-transform: translate(-100px, -100px) rotate(180deg);
    -o-transform: translate(-100px, -100px) rotate(180deg);
  }
}
@keyframes animationFramesFive {
  0% {
    transform: translate(0, 0) rotate(0deg);
    -webkit-transform: translate(0, 0) rotate(0deg);
    -moz-transform: translate(0, 0) rotate(0deg);
    -ms-transform: translate(0, 0) rotate(0deg);
    -o-transform: translate(0, 0) rotate(0deg);
  }
  21% {
    transform: translate(4px, -20px) rotate(38deg);
    -webkit-transform: translate(4px, -20px) rotate(38deg);
    -moz-transform: translate(4px, -20px) rotate(38deg);
    -ms-transform: translate(4px, -20px) rotate(38deg);
    -o-transform: translate(4px, -20px) rotate(38deg);
  }
  41% {
    transform: translate(-50px, -60px) rotate(74deg);
    -webkit-transform: translate(-50px, -60px) rotate(74deg);
    -moz-transform: translate(-50px, -60px) rotate(74deg);
    -ms-transform: translate(-50px, -60px) rotate(74deg);
    -o-transform: translate(-50px, -60px) rotate(74deg);
  }
  60% {
    transform: translate(-20px, -30px) rotate(108deg);
    -webkit-transform: translate(-20px, -30px) rotate(108deg);
    -moz-transform: translate(-20px, -30px) rotate(108deg);
    -ms-transform: translate(-20px, -30px) rotate(108deg);
    -o-transform: translate(-20px, -30px) rotate(108deg);
  }
  80% {
    transform: translate(-195px, -49px) rotate(144deg);
    -webkit-transform: translate(-195px, -49px) rotate(144deg);
    -moz-transform: translate(-195px, -49px) rotate(144deg);
    -ms-transform: translate(-195px, -49px) rotate(144deg);
    -o-transform: translate(-195px, -49px) rotate(144deg);
  }
  100% {
    transform: translate(-1px, 0px) rotate(180deg);
    -webkit-transform: translate(-1px, 0px) rotate(180deg);
    -moz-transform: translate(-1px, 0px) rotate(180deg);
    -ms-transform: translate(-1px, 0px) rotate(180deg);
    -o-transform: translate(-1px, 0px) rotate(180deg);
  }
}
@-webkit-keyframes animationFramesFive {
  0% {
    transform: translate(0, 0) rotate(0deg);
    -webkit-transform: translate(0, 0) rotate(0deg);
    -moz-transform: translate(0, 0) rotate(0deg);
    -ms-transform: translate(0, 0) rotate(0deg);
    -o-transform: translate(0, 0) rotate(0deg);
  }
  21% {
    transform: translate(4px, -20px) rotate(38deg);
    -webkit-transform: translate(4px, -20px) rotate(38deg);
    -moz-transform: translate(4px, -20px) rotate(38deg);
    -ms-transform: translate(4px, -20px) rotate(38deg);
    -o-transform: translate(4px, -20px) rotate(38deg);
  }
  41% {
    transform: translate(-50px, -60px) rotate(74deg);
    -webkit-transform: translate(-50px, -60px) rotate(74deg);
    -moz-transform: translate(-50px, -60px) rotate(74deg);
    -ms-transform: translate(-50px, -60px) rotate(74deg);
    -o-transform: translate(-50px, -60px) rotate(74deg);
  }
  60% {
    transform: translate(-20px, -30px) rotate(108deg);
    -webkit-transform: translate(-20px, -30px) rotate(108deg);
    -moz-transform: translate(-20px, -30px) rotate(108deg);
    -ms-transform: translate(-20px, -30px) rotate(108deg);
    -o-transform: translate(-20px, -30px) rotate(108deg);
  }
  80% {
    transform: translate(-195px, -49px) rotate(144deg);
    -webkit-transform: translate(-195px, -49px) rotate(144deg);
    -moz-transform: translate(-195px, -49px) rotate(144deg);
    -ms-transform: translate(-195px, -49px) rotate(144deg);
    -o-transform: translate(-195px, -49px) rotate(144deg);
  }
  100% {
    transform: translate(-1px, 0px) rotate(180deg);
    -webkit-transform: translate(-1px, 0px) rotate(180deg);
    -moz-transform: translate(-1px, 0px) rotate(180deg);
    -ms-transform: translate(-1px, 0px) rotate(180deg);
    -o-transform: translate(-1px, 0px) rotate(180deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.zoominup {
  animation-name: zoominup;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.zoominup2 {
  animation-name: zoominup;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@-webkit-keyframes zoominup {
  0% {
    transform: scale(1.2);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
@-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);
  }
}
@-webkit-keyframes updown-2 {
  0% {
    transform: translateY(-15px);
    -webkit-transform: translateY(-15px);
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -o-transform: translateY(-15px);
  }
  50% {
    transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
  }
  100% {
    transform: translateY(-15px);
    -webkit-transform: translateY(-15px);
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -o-transform: translateY(-15px);
  }
}
@keyframes ltr {
  0% {
    width: 0;
  }
  15% {
    width: 95%;
  }
  85% {
    opacity: 1;
  }
  90% {
    width: 95%;
    opacity: 0;
  }
  to {
    width: 0;
    opacity: 0;
  }
}
/*circleAnimation*/
@-webkit-keyframes circleAnimation {
  0%, 100% {
    border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
    -webkit-transform: translate3d(0, 0, 0) rotateZ(0.01deg);
    transform: translate3d(0, 0, 0) rotateZ(0.01deg);
  }
  34% {
    border-radius: 70% 30% 46% 54% / 30% 29% 71% 70%;
    -webkit-transform: translate3d(0, 5px, 0) rotateZ(0.01deg);
    transform: translate3d(0, 5px, 0) rotateZ(0.01deg);
  }
  50% {
    -webkit-transform: translate3d(0, 0, 0) rotateZ(0.01deg);
    transform: translate3d(0, 0, 0) rotateZ(0.01deg);
  }
  67% {
    border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%;
    -webkit-transform: translate3d(0, -3px, 0) rotateZ(0.01deg);
    transform: translate3d(0, -3px, 0) rotateZ(0.01deg);
  }
}
@-webkit-keyframes icon-bounce {
  0%, 100%, 20%, 50%, 80% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  60% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}
@keyframes icon-bounce {
  0%, 100%, 20%, 50%, 80% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  60% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}
@keyframes lr-animation {
  0% {
    -webkit-transform: translateX(40px);
    -ms-transform: translateX(40px);
    transform: translateX(40px);
  }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes tb-animation {
  0% {
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
  }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes xb_up_down {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-20px);
  }
}
.slide-up-down {
  animation: xb_up_down 1s ease infinite alternate;
}
@keyframes xb_ltr {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateX(-20px);
  }
}
.slide-ltr {
  animation: xb_ltr 1s ease infinite alternate;
}
@-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 shake {
  0% {
    -webkit-transform: rotate(7deg);
    -ms-transform: rotate(7deg);
    transform: rotate(7deg);
  }
  50% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(7deg);
    -ms-transform: rotate(7deg);
    transform: rotate(7deg);
  }
}
@keyframes shake {
  0% {
    -webkit-transform: rotate(7deg);
    -ms-transform: rotate(7deg);
    transform: rotate(7deg);
  }
  50% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(7deg);
    -ms-transform: rotate(7deg);
    transform: rotate(7deg);
  }
}
@-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 blink {
  from, to {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  from, to {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  from, to {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
@-ms-keyframes blink {
  from, to {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
@-o-keyframes blink {
  from, to {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
@keyframes pulse-border {
  0% {
    transform: scale(1);
    opacity: 0.67;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}
@-webkit-keyframes pulse-border {
  0% {
    transform: scale(1);
    opacity: 0.67;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}
@keyframes pulse-border-big {
  0% {
    transform: scale(1);
    opacity: 0.67;
  }
  100% {
    transform: scale(3);
    opacity: 0;
  }
}
@-webkit-keyframes pulse-border-big {
  0% {
    transform: scale(1);
    opacity: 0.67;
  }
  100% {
    transform: scale(3);
    opacity: 0;
  }
}
@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-5deg);
    transform: scale(0.9) rotate(-5deg);
  }
  50%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(5deg);
    transform: scale(1.1) rotate(5deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-5deg);
    transform: scale(1.1) rotate(-5deg);
  }
  100% {
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}
@keyframes tada {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-5deg);
    -ms-transform: scale(0.9) rotate(-5deg);
    transform: scale(0.9) rotate(-5deg);
  }
  50%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(5deg);
    -ms-transform: scale(1.1) rotate(5deg);
    transform: scale(1.1) rotate(5deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-5deg);
    -ms-transform: scale(1.1) rotate(-5deg);
    transform: scale(1.1) rotate(-5deg);
  }
  100% {
    -webkit-transform: scale(1) rotate(0);
    -ms-transform: scale(1) rotate(0);
    transform: scale(1) rotate(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);
  }
}
.skewInImg {
  clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
  display: inline-block;
  position: relative;
  overflow: hidden;
  transition: 1.3s cubic-bezier(0.5, 0.5, 0, 1);
}
.skewInImg img {
  transform-origin: 50% 50%;
  transition: 1.3s cubic-bezier(0.5, 0.5, 0, 1);
  max-width: 100%;
  height: auto;
  transform: scale(1.5) translate(100px, 0px);
}
.skewInImg.animated {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.skewInImg.animated img {
  transform: scale(1) translate(0px, 0px);
}
[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);
}
@-webkit-keyframes xb-danceTop {
  16% {
    -webkit-transform: skew(-14deg);
    transform: skew(-14deg);
  }
  33% {
    -webkit-transform: skew(12deg);
    transform: skew(12deg);
  }
  49% {
    -webkit-transform: skew(-8deg);
    transform: skew(-8deg);
  }
  66% {
    -webkit-transform: skew(6deg);
    transform: skew(6deg);
  }
  83% {
    -webkit-transform: skew(-4deg);
    transform: skew(-4deg);
  }
}
@keyframes xb-danceTop {
  16% {
    -webkit-transform: skew(-14deg);
    transform: skew(-14deg);
  }
  33% {
    -webkit-transform: skew(12deg);
    transform: skew(12deg);
  }
  49% {
    -webkit-transform: skew(-8deg);
    transform: skew(-8deg);
  }
  66% {
    -webkit-transform: skew(6deg);
    transform: skew(6deg);
  }
  83% {
    -webkit-transform: skew(-4deg);
    transform: skew(-4deg);
  }
}
@keyframes xbzoominzoomup {
  0% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(0.8);
  }
}
@keyframes rotateme {
  0% {
    transform: rotate(0deg);
    opacity: 1;
  }
  50% {
    transform: rotate(-180deg);
  }
  100% {
    transform: rotate(-360deg);
    opacity: 1;
  }
}
@keyframes rotateme2 {
  0% {
    transform: rotate(0deg);
    opacity: 1;
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
    opacity: 1;
  }
}
.rotateme {
  animation-name: rotateme;
  animation-duration: 12s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.rotateme2 {
  animation-name: rotateme2;
  animation-duration: 12s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.img-custom-anim-right {
  animation: img-anim-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}
@keyframes img-anim-right {
  0% {
    transform: translateX(5%);
    clip-path: inset(0 0 0 100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img-custom-anim-left {
  animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}
@keyframes img-anim-left {
  0% {
    transform: translateX(-5%);
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img-custom-anim-top {
  animation: img-anim-top 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
}
@keyframes img-anim-top {
  0% {
    transform: translateY(-5%);
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
/*--
    - 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;
}
/*----------------------------------------*/
/*  02. header
/*----------------------------------------*/
.header__wrap {
  padding-left: 28px;
  padding-right: 28px;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .header__wrap {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 1199px) {
  .header__wrap {
    padding-left: 0;
    padding-right: 0;
  }
}
.header-right .header-contact {
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-heading);
  display: inline-block;
  margin-right: 30px;
}
.header-right .header-menu {
  border: 1px solid var(--color-primary);
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
  padding: 19px 29px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-heading);
  background-color: #fff;
}
@media (max-width: 991px) {
  .header-right .header-menu {
    padding: 12px 24px;
  }
}
@media (max-width: 767px) {
  .header-right .header-menu {
    padding: 10px 15px;
    font-size: 15px;
  }
}
.header-line {
  height: 1px;
  width: 69.5%;
  background: var(--color-border);
}
.border-btn {
  margin-left: 5px;
}
.header-style-three {
  background: var(--color-heading);
    z-index: 2;
    position: relative;
    border-bottom: 1px solid #131313;
	
}
.header-style-three .header-btn .thm-btn:hover {
  color: var(--color-black);
}
.header-style-three .header-btn .thm-btn::before {
  background-color: #fff;
}
.header-style-three .header-logo {
  margin-right: 100px;
}
@media (max-width: 991px) {
  .header-style-three .header-logo {
    margin-right: 0;
  }
}
.header-style-three .header__wrap {
  padding-left: 20px;
  padding-right: 20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .header-style-three .header__wrap {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 1199px) {
  .header-style-three .header__wrap {
    padding-left: 0;
    padding-right: 0;
  }
}
.header-style-three .main-menu ul li a {
  color: var(--color-white);
}
.header-style-three .main-menu ul li .submenu li a {
  color: #000;
}
.header-style-three .header-right .header-contact {
  color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 1199px) {
  .header-style-three .header-right .header-contact {
    display: none;
  }
}
.header-style-three .header-right .header-contact:hover {
  color: var(--color-white);
}
.header-style-three .header-right .header-menu {
  background: #fff;
  border: none;
  border-radius: 0;
  padding: 20px 33px;
}
.header-style-three .header-logo img:nth-child(2) {
  display: none;
}
.header-style-three .xb-header-area-sticky .header-logo img:nth-child(1) {
  display: none;
}
.header-style-three .xb-header-area-sticky .header-logo img:nth-child(2) {
  display: block;
}
.header-style-one {
  z-index: 3;
  position: relative;
}
@media (max-width: 767px) {
  .header-style-one .hamburger-menu .line {
    background: #000;
  }
}
.header-style-one .hamburger-menu .line {
  background: var(--color-black);
}
.header-style-one .main-menu ul li:hover > a span::after, .header-style-one .main-menu ul li.active > a span::after {
  color: #000;
}
.xb-header-area-sticky .header-btn .thm-btn:hover {
  color: var(--color-white);
}
.xb-header-area-sticky .header-btn .thm-btn::before {
  background-color: #000;
}
.header-style-three .xb-header-area-sticky .header-right .header-contact {
  color: rgba(0, 0, 0, 0.6);
}
.header-style-three .xb-header-area-sticky .header-right .header-contact:hover {
  color: var(--color-primary);
}
.header-logo-inner {
  position: relative;
}
.header-logo-inner::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #DFDFDF;
  content: "";
  z-index: -1;
  width: 100%;
  height: 1px;
}
@media (max-width: 767px) {
  .header-logo-inner::before {
    display: none;
  }
}
.header-logo-inner .header-logo {
  margin-right: 300px;
  background-color: #fff;
  padding-right: 50px;
}
@media (max-width: 991px) {
  .header-logo-inner .header-logo {
    margin-right: 60px;
    padding-right: 30px;
  }
}
@media (max-width: 767px) {
  .header-logo-inner .header-logo {
    margin-right: 0;
    padding-right: 0;
  }
}
.header-logo-inner .header-contact {
  text-transform: uppercase;
  color: var(--color-heading);
  background-color: #fff;
  padding-left: 50px;
}
.header-logo-inner .header-contact:hover {
  color: var(--color-primary);
}
@media (max-width: 767px) {
  .header-logo-inner .header-contact {
    display: none;
  }
}
.header-style-two {
  position: absolute;
  top: 22px;
  left: 20px;
  right: 20px;
  z-index: 2;
}
.header-style-two .xb-header {
  padding: 20px 30px;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .header-style-two .xb-header {
    padding: 20px 0;
  }
}
@media (max-width: 1199px) {
  .header-style-two .xb-header {
    padding: 20px 0;
  }
}
@media (max-width: 1199px) {
  .header-style-two .xb-header-area-sticky {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}
.header-style-two .xb-header-menu {
  width: 985px;
  left: auto;
  right: 0;
  -webkit-transform: translateX(100%);
  -khtml-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
}
@media (max-width: 1199px) {
  .header-style-two .xb-header-menu {
    width: 800px;
  }
}
@media (max-width: 991px) {
  .header-style-two .xb-header-menu {
    width: 600px;
  }
}
@media (max-width: 767px) {
  .header-style-two .xb-header-menu {
    width: 300px;
  }
}
.header-style-two .xb-menu-primary li a {
  line-height: 1.2;
  color: var(--color-black);
  font-size: 100px;
  font-weight: 500;
  border-bottom: 0;
  text-transform: uppercase;
  padding: 10px 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .header-style-two .xb-menu-primary li a {
    font-size: 70px;
  }
}
@media (max-width: 1199px) {
  .header-style-two .xb-menu-primary li a {
    font-size: 60px;
  }
}
@media (max-width: 991px) {
  .header-style-two .xb-menu-primary li a {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .header-style-two .xb-menu-primary li a {
    font-size: 15px;
  }
}
.header-style-two .xb-header-menu-scroll {
  padding: 80px;
}
@media (max-width: 991px) {
  .header-style-two .xb-header-menu-scroll {
    padding: 80px 40px;
  }
}
.header-style-two .xb-menu-toggle {
  top: 34px;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
}
@media (max-width: 991px) {
  .header-style-two .xb-menu-toggle {
    top: 14px;
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .header-style-two .xb-menu-toggle {
    top: 5px;
    width: 28px;
    height: 28px;
    font-size: 15px;
  }
}
.header-style-two .xb-menu-primary .sub-menu li a, .header-style-two .xb-menu-primary .children li a {
  font-weight: 500;
  padding-left: 14px;
  font-size: 60px;
  padding: 5px 0;
  text-transform: capitalize;
}
@media (max-width: 991px) {
  .header-style-two .xb-menu-primary .sub-menu li a, .header-style-two .xb-menu-primary .children li a {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .header-style-two .xb-menu-primary .sub-menu li a, .header-style-two .xb-menu-primary .children li a {
    font-size: 16px;
  }
}
.header-style-two .xb-menu-close {
  border: 1px solid var(--color-primary);
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
  padding: 13px 29px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-heading);
  background-color: #fff;
  right: 30px;
  top: 20px;
  cursor: pointer;
}
@media (max-width: 991px) {
  .header-style-two .xb-menu-close {
    padding: 7px 24px;
  }
}
@media (max-width: 767px) {
  .header-style-two .xb-menu-close {
    padding: 2px 18px;
    font-size: 13px;
    right: 20px;
  }
}
@media (max-width: 991px) {
  #xb-header-area .xb-header.xb-sticky-stt {
    padding: 15px 0;
  }
}
#xb-header-area .xb-header-area-sticky .main-menu > ul > li > a {
  padding: 30px 0;
}
#xb-header-area .xb-header-area-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  top: 0;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: 0.6s;
  -o-transition: 0.6s;
  transition: 0.6s;
  visibility: hidden;
  background: var(--color-white);
}
#xb-header-area .xb-header-area-sticky.xb-header-fixed {
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
  visibility: visible;
  -webkit-box-shadow: 0 3px 18px rgba(6, 27, 92, 0.09);
  -khtml-box-shadow: 0 3px 18px rgba(6, 27, 92, 0.09);
  -moz-box-shadow: 0 3px 18px rgba(6, 27, 92, 0.09);
  -ms-box-shadow: 0 3px 18px rgba(6, 27, 92, 0.09);
  -o-box-shadow: 0 3px 18px rgba(6, 27, 92, 0.09);
  box-shadow: 0 3px 18px rgba(6, 27, 92, 0.09);
}
#xb-header-area .xb-header-area-sticky .main-menu__wrap .main-menu {
  box-shadow: none;
  border: 0;
  background-color: transparent;
}
#xb-header-area .xb-header-area-sticky .main-menu > ul > li > a, #xb-header-area .xb-header-area-sticky .header-search {
  color: var(--color-heading);
}
#xb-header-area .xb-header-area-sticky .main-menu ul li:hover > a, #xb-header-area .xb-header-area-sticky .main-menu ul li.active > a {
  color: var(--color-primary);
}
#xb-header-area .xb-header-area-sticky .main-menu ul li:hover > a span::after, #xb-header-area .xb-header-area-sticky .main-menu ul li.active > a span::after {
  color: var(--color-primary);
}
#xb-header-area .xb-header-area-sticky .hamburger-menu .line {
  background-color: var(--color-heading);
}
#xb-header-area.header-transparent .header-logo img:last-child {
  display: none;
}
#xb-header-area.header-transparent .xb-header-area-sticky .header-logo img:last-child {
  display: block;
}
#xb-header-area.header-transparent .xb-header-area-sticky .header-logo img:first-child {
  display: none;
}
.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: 30px;
}
@media only screen and (min-width: 1200px) and (max-width: 1300px) {
  .main-menu ul li:not(:last-child) {
    margin-right: 20px;
  }
}
@media (max-width: 1199px) {
  .main-menu ul li:not(:last-child) {
    margin-right: 30px;
  }
}
.main-menu ul li .submenu li {
  margin-right: 0;
}
.main-menu ul li a {
  display: inline-block;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-heading);
  padding: 19px 0;
  position: relative;
  text-transform: uppercase;
  font-family: var(--font-heading);
}
.main-menu ul li a span i {
  font-size: 11px;
  margin-left: 5px;
}
.main-menu ul li.menu-item-has-children > a span::after {
  display: inline-block;
  padding-left: 4px;
  content: "+";
  transform: translateY(-1px);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  color: #999999;
}
.main-menu ul li.menu-item-has-children:hover > .submenu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}
.main-menu ul li:hover > a span::after, .main-menu ul li.active > a span::after {
  color: var(--color-white);
}
.main-menu ul li .submenu {
  -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;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  z-index: 3;
  top: calc(100% + 10px);
  text-align: left;
  box-shadow: 0 0.5rem 1.875rem rgba(0, 0, 0, 0.08);
}
.main-menu ul li .submenu li:not(:last-child) {
  margin-bottom: 1px;
}
.main-menu ul li .submenu li a {
  padding: 6px 20px;
  display: block;
  margin: 0;
  font-size: 16px;
  text-transform: capitalize;
  letter-spacing: 0;
}
.main-menu ul li .submenu li:hover > a, .main-menu ul li .submenu li.active > a {
  color: var(--color-primary);
  background-color: rgba(var(--color-primary-rgb), 0.1);
}
.main-menu ul li .submenu ul {
  left: 100%;
  top: 0px;
}
.main-menu ul li .submenu ul::before {
  display: none;
}
.main-menu ul li.menu-last ul.submenu {
  right: 0;
  left: auto;
}
.main-menu ul li.menu-last ul.submenu ul {
  right: auto;
  left: -100%;
}
.main-menu ul li ul.submenu .menu-item-has-children > a::after {
  position: absolute;
  top: 9px;
  right: 15px;
  content: "\f105";
  font-size: 13px;
  font-family: 'Font Awesome 5 Pro';
}
.header-style-two .main-menu {
  margin-top: 40px;
}
.header-style-two .main-menu ul {
  display: flex;
  flex-direction: column;
}
.header-style-two .main-menu ul li a {
  padding: 11px 0;
}
/*----------------------------------------*/
/*  03. globel
/*----------------------------------------*/
@media (min-width: 1024px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1550px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.mih_1416 {
  min-height: 1416px;
}
.row.g-10 {
  margin-left: -5px;
  margin-right: -5px;
}
.row.g-10 > * {
  padding-left: 5px;
  padding-right: 5px;
}
.p-40 {
  padding: 40px;
}
@media (max-width: 767px) {
  .p-40 {
    padding: 20px;
  }
}
.bg-border {
  background: var(--color-white);
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}
.gray-border {
  height: 1px;
  width: 100%;
  background: rgba(255, 255, 255, 0.2);
  margin-top: 60px;
}
.sec-pl_200 {
  padding-left: 20%;
}
@media (max-width: 991px) {
  .sec-pl_200 {
    padding-left: 0;
  }
}
.mxw_1780 {
  max-width: 1780px;
}
.mxw_1820 {
  max-width: 1820px;
}
.px-60 {
  padding: 0 60px;
}
@media (max-width: 991px) {
  .container.px-60 {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.mar-right {
  margin-right: 60px;
}
.right-mr {
  margin-right: 85px;
}
.js-marquee, .js-marquee-wrapper {
  display: flex;
  align-items: center;
  overflow: hidden !important;
}
.o-hidden {
  overflow: hidden;
}
.tagcloud, .tags-links {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
  margin: -10px;
}
.tagcloud a, .tags-links a {
  display: block;
  color: #000;
  border: 1px solid #EEE5E5;
  background-color: var(--color-white);
  min-height: 30px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  text-transform: capitalize;
  text-decoration: none;
  font-weight: 500;
  padding: 1px 17px;
  margin: 7px;
  position: relative;
}
.tagcloud a:hover, .tags-links a:hover {
  color: var(--color-white);
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}
.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;
}
.tags-links a {
  min-height: 32px;
  padding: 2px 17px;
}
.body-overlay.active {
  opacity: .5;
  visibility: visible;
}
.demo-senior-care .body_wrap {
  background-color: var(--color-white);
  padding-left: 80px;
  padding-right: 80px;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .demo-senior-care .body_wrap {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 1199px) {
  .demo-senior-care .body_wrap {
    padding: 0;
  }
}
.post-tags li {
  font-size: 15px;
  text-transform: capitalize;
  position: relative;
}
.post-tags li:not(:first-child, :last-child) {
  margin-right: 11px;
  padding-right: 15px;
}
.post-tags li:not(:first-child, :last-child)::before {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background-color: var(--color-primary);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  content: "";
}
.post-tags li span {
  display: inline-block;
  background-color: var(--color-primary);
  padding: 0px 10px;
  line-height: 25px;
  color: var(--color-white);
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  margin-right: 12px;
}
.post-tags li a {
  color: var(--color-black);
}
.post-tags li a:hover {
  color: var(--color-black);
}
.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;
}
.xb-carousel-inner {
  margin: -30px;
}
.xb-swiper-sliders {
  position: relative;
}
.xb-swiper-container {
  overflow: hidden;
  padding: 30px;
}
.xb-swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
.xb-swiper-slide:not(.swiper-slide-visible) {
  opacity: 0;
}
.xb-swiper-slide {
  -webkit-transition: opacity 0.25s cubic-bezier(0.71, 0.02, 0.31, 1);
  -khtml-transition: opacity 0.25s cubic-bezier(0.71, 0.02, 0.31, 1);
  -moz-transition: opacity 0.25s cubic-bezier(0.71, 0.02, 0.31, 1);
  -ms-transition: opacity 0.25s cubic-bezier(0.71, 0.02, 0.31, 1);
  -o-transition: opacity 0.25s cubic-bezier(0.71, 0.02, 0.31, 1);
  transition: opacity 0.25s cubic-bezier(0.71, 0.02, 0.31, 1);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
}
.z-index-2 {
  z-index: 2;
  position: relative;
}
.xb-overlay {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.xb-overlay-link {
  z-index: 1;
}
.text-12 {
  font-size: 12px;
}
.letter-spacing-0 {
  letter-spacing: 0;
}
@media (max-width: 991px) {
  .margin-none-md {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .mb-30-xs {
    margin-bottom: 30px;
  }
}
.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;
}
@media (max-width: 1199px) {
  .mb-lg-20 {
    margin-bottom: 20px;
  }
}
.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.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}
.xb-law-swiper-arrow .xb-swiper-arrow {
  border: 1px solid rgba(255, 255, 255, 0.12);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--color-white);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.xb-law-swiper-arrow .xb-swiper-arrow.xb-swiper-arrow-next {
  margin-left: 10px;
}
.xb-law-swiper-arrow .xb-swiper-arrow:hover, .xb-law-swiper-arrow .xb-swiper-arrow.xb-swiper-arrow-next {
  color: var(--color-law);
  background-color: var(--color-white);
}
.xb-law-swiper-arrow-main-color .xb-swiper-arrow {
  background-color: var(--color-law);
  color: var(--color-white);
}
.pagination-style1 {
  bottom: -60px;
}
.pagination-style1 .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background-color: #162432;
}
.pagination-style1.style-white .swiper-pagination-bullet {
  background-color: var(--color-white);
}
.text-heading {
  color: var(--color-heading);
}
.text-24 {
  font-size: 24px;
}
.weight-medium {
  font-weight: 500;
}
.xb-blur {
  background: var(--color-primary);
  filter: blur(139px);
  height: 481px;
  width: 481px;
  border-radius: 50%;
  z-index: -2;
}
@media (max-width: 991px) {
  .xb-blur {
    height: 300px;
    width: 300px;
  }
}
@media (max-width: 767px) {
  .xb-blur {
    height: 150px;
    width: 150px;
  }
}
.social-icon li {
  margin-top: 10px;
}
.social-icon li:not(:last-child) {
  margin-right: 31px;
}
@media (max-width: 991px) {
  .social-icon li:not(:last-child) {
    margin-right: 20px;
  }
}
.social-icon li a {
  color: #FFFFFF;
  font-size: 24px;
  height: 64px;
  width: 64px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media (max-width: 767px) {
  .social-icon li a {
    font-size: 18px;
    height: 55px;
    width: 54px;
  }
}
.social-icon li a::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: '';
  z-index: -1;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-transition: all 0.4s cubic-bezier(0.56, 0.26, 0.31, 1.32);
  -o-transition: all 0.4s cubic-bezier(0.56, 0.26, 0.31, 1.32);
  transition: all 0.4s cubic-bezier(0.56, 0.26, 0.31, 1.32);
  transition-delay: .1s;
  transform-style: preserve-3d;
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
  transform-origin: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.social-icon li a::after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: '';
  z-index: -1;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-transition: all 0.4s cubic-bezier(0.56, 0.26, 0.31, 1.32);
  -o-transition: all 0.4s cubic-bezier(0.56, 0.26, 0.31, 1.32);
  transition: all 0.4s cubic-bezier(0.56, 0.26, 0.31, 1.32);
  background-color: var(--color-primary);
  transition-delay: .1s;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  transform-style: preserve-3d;
  transform-origin: center;
}
.social-icon li a:hover {
  color: #020202;
}
.social-icon li a:hover::before {
  transform: scale(0);
}
.social-icon li a:hover::after {
  transform: scaleX(1);
}
.row.g-150 {
  margin-left: -50px;
  margin-right: -50px;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .row.g-150 {
    margin-left: -30px;
    margin-right: -30px;
  }
}
@media (max-width: 1199px) {
  .row.g-150 {
    margin-left: -15px;
    margin-right: -15px;
  }
}
.row.g-150 > * {
  padding-left: 50px;
  padding-right: 50px;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .row.g-150 > * {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 1199px) {
  .row.g-150 > * {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.row.g-55 {
  margin-left: -25px;
  margin-right: -25px;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .row.g-55 {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media (max-width: 1199px) {
  .row.g-55 {
    margin-left: -15px;
    margin-right: -15px;
  }
}
.row.g-55 > * {
  padding-left: 25px;
  padding-right: 25px;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .row.g-55 > * {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 1199px) {
  .row.g-55 > * {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.row.g-45 {
  margin-left: -22px;
  margin-right: -22px;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .row.g-45 {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media (max-width: 1199px) {
  .row.g-45 {
    margin-left: -15px;
    margin-right: -15px;
  }
}
.row.g-45 > * {
  padding-left: 22px;
  padding-right: 22px;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .row.g-45 > * {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 1199px) {
  .row.g-45 > * {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.line_wrap {
  top: 0px;
  bottom: 0px;
  width: 100%;
  display: block;
  position: absolute;
  max-width: 1292px;
  margin: auto;
}
@media only screen and (min-width: 1200px) and (max-width: 1300px) {
  .line_wrap {
    max-width: 1171px;
  }
}
@media (max-width: 1199px) {
  .line_wrap {
    display: none;
  }
}
.line_wrap .xb-line::before, .line_wrap .xb-line::after {
  position: absolute;
  top: 0;
  left: -1px;
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.18);
  content: "";
  z-index: 2;
}
.line_wrap .xb-line::after {
  left: auto;
  right: 1px;
}
.xb-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.xb-svg svg {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.round-20 {
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}
.single-blockquote {
  background-color: var(--color-black);
  padding: 60px 77px;
  position: relative;
  text-align: center;
  z-index: 1;
}
@media (max-width: 1199px) {
  .single-blockquote {
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .single-blockquote {
    padding: 30px;
  }
}
.single-blockquote .xb-item--quote {
  margin-bottom: 50px;
}
.single-blockquote .xb-item--content {
  font-size: 32px;
  font-weight: 500;
  color: var(--color-white);
  line-height: 48px;
  margin-bottom: 0 !important;
}
@media (max-width: 767px) {
  .single-blockquote .xb-item--content {
    font-size: 20px;
    line-height: 34px;
  }
}
.single-blockquote .xb-item--desig {
  font-size: 20px;
  text-transform: uppercase;
  padding: 10px 16px;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
  display: inline-flex;
  align-items: center;
  margin-top: 40px;
}
.single-blockquote .xb-item--desig span {
  font-size: 14px;
  color: var(--color-primary);
  margin-right: 10px;
}
.single-blockquote .xb-item--shape {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.sec-title .sub-title {
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-heading);
  line-height: 1;
  border: 1px solid var(--color-primary);
  border-radius: 30px;
  padding: 5px 9px;
/*  transform: translateY(-11px);*/
	margin-bottom: 10px;
  display: inline-block;
  margin-right: 28px;
}
.sec-title .title {
  font-weight: 500;
  font-size: 48px;
  line-height: 58px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
/*  display: inline;*/
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .sec-title .title {
    font-size: 45px;
  }
}
.sec-title .title span {
  font-family: var(--font-newyork);
}
@media (max-width: 1199px) {
  .sec-title .title {
    font-size: 32px;
    letter-spacing: 0;
    line-height: 45px;
  }
}
@media (max-width: 767px) {
  .sec-title .title {
    font-size: 26px;
    letter-spacing: 0;
    line-height: 40px;
  }
}
.sec-title--three .sub-title {
  margin-right: 0;
  margin-bottom: 18px;
  transform: translateY(0px);
}
.sec-title--three .title {
  display: block;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .sec-title--three .title {
    font-size: 36px;
    line-height: 1.3;
  }
}
.sec-title--four {
  display: flex;
  align-items: start;
  margin-top: -20px;
}
@media (max-width: 767px) {
  .sec-title--four {
    flex-wrap: wrap;
    padding-right: 0;
  }
}
.sec-title--four .sub-title {
  margin-right: 100px;
  display: block ruby;
  transform: translateY(7px);
  margin-top: 20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .sec-title--four .sub-title {
    margin-right: 74px;
  }
}
@media (max-width: 1199px) {
  .sec-title--four .sub-title {
    margin-right: 28px;
  }
}
.sec-title--four .title {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .sec-title--four .title {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .sec-title--big {
    padding-right: 0;
  }
}
.sec-title--big .sub-title {
  color: var(--color-white);
  margin-bottom: 10px;
}
.sec-title--big .title {
  font-size: 58px;
  line-height: 80px;
  color: #333;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .sec-title--big .title {
    font-size: 40px;
    line-height: 60px;
  }
}
@media (max-width: 1199px) {
  .sec-title--big .title {
    font-size: 32px;
    line-height: 50px;
  }
}
@media (max-width: 767px) {
  .sec-title--big .title {
    font-size: 22px;
    line-height: 40px;
  }
}
.sec-title--white .sub-title {
  border-color: var(--color-primary);
  color: var(--color-white);
}
.sec-title--white .title {
  color: var(--color-white);
}
.sec-title--white .title span {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 400;
}
.sec-title--white .title span span {
  color: var(--color-primary);
}
.sec-title--md .sub-title {
  margin-bottom: 10px;
}
.sec-title--md .title {
  font-size: 40px;
  line-height: 1.2;
}
@media (max-width: 1199px) {
  .sec-title--md .title {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .sec-title--md .title {
    font-size: 24px;
  }
}
.sec-title-two {
  padding-left: calc((100% - 1550px) / 2);
  margin-left: 15px;
}
.sec-title-two .title {
  font-weight: 700;
  font-size: 70px;
  text-transform: uppercase;
  color: var(--color-white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 32px;
  margin-bottom: 12px;
}
@media only screen and (min-width: 1200px) and (max-width: 1300px) {
  .sec-title-two .title {
    font-size: 60px;
  }
}
@media (max-width: 1199px) {
  .sec-title-two .title {
    font-size: 60px;
  }
}
@media (max-width: 991px) {
  .sec-title-two .title {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .sec-title-two .title {
    font-size: 50px;
  }
}
.sec-title-two .title span {
  position: relative;
  margin-left: -10px;
}
.sec-title-two .title span span {
  position: absolute;
  top: -55px;
  right: -15px;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .sec-title-two .title span span {
    top: -26px;
    right: -15px;
    max-width: 100px;
  }
}
@media (max-width: 767px) {
  .sec-title-two .title span span {
    top: 3px;
    right: -15px;
    max-width: 60px;
  }
}
.sec-title-two .sub-title {
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-white);
  opacity: 0.5;
}
.sec-title-two--black .title {
  color: var(--color-heading);
  border-bottom: 1px solid #d0d0d0;
}
.sec-title-two--black .sub-title {
  color: var(--color-heading);
  opacity: 1;
}
.sec-title-two--black .all-sub-title {
  padding-right: calc((100% - 1360px) / 2);
  margin-right: 15px;
}
.sec-title-two--black .all-sub-title .clr-chng {
  color: rgba(0, 0, 0, 0.4);
}
.sec-title-two--black .all-sub-title a {
  color: var(--color-black);
  text-transform: uppercase;
  font-size: 16px;
}
.sec-title-two--black .all-sub-title a:hover {
  color: var(--color-primary);
}
.xb_text_clr > div {
  background-size: 200% 100%;
  background-position-x: 100%;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  background-image: linear-gradient(to right, #000000 50%, #666666 50%);
}
.hero-wrapper .hero-title {
    font-weight: 200;
    font-size: 70px;
    line-height: normal;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    margin-bottom: 50px;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .hero-wrapper .hero-title {
    font-size: 60px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1300px) {
  .hero-wrapper .hero-title {
    font-size: 60px;
  }
}
@media (max-width: 1199px) {
  .hero-wrapper .hero-title {
    font-size: 50px;
    line-height: 1.2;
  }
}
@media (max-width: 991px) {
  .hero-wrapper .hero-title {
    font-size: 45px;
  }
}
.hero-wrapper .hero-title span {
  color: var(--color-black);
}
.hero-wrapper .hero-title span span {
  font-family: var(--font-newyork);
}
@media (max-width: 1199px) {
  .hero-style-one {
    padding-top: 100px;
  }
}
.xb-hero_image {
  margin-right: 0px;
  padding-top: 25px;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .xb-hero_image {
    margin-right: 0px;
  }
}
@media (max-width: 1199px) {
  .xb-hero_image {
    margin-right: 50px;
    padding-top: 50px;
  }
}
@media (max-width: 991px) {
  .xb-hero_image {
    padding-left: 15px;
  }
}
.hero-content {
    max-width: 450px;
    margin-left: 50px;
    padding-top: 20px;
}
.hero-content p {
    color: var(--color-default);
    font-size: 18px;
    line-height: 27px;
    display: inline-block;
}
.xb-hero-shape {
  position: absolute;
  bottom: 29px;
  left: 0;
  z-index: -1;
}
.hero-style-one .hero-wrapper .hero-title .xb-font {
  font-family: var(--font-newyork);
}
.hero-style-one .hero-wrapper .hero-title span {
  display: inline-block;
}
@media (max-width: 1199px) {
  .hero-style-one .hero-wrapper .hero-title span img {
    max-width: 65px;
  }
}
@media (max-width: 767px) {
  .hero-style-one .hero-wrapper .hero-title span img {
    max-width: 35px;
  }
}
@media (max-width: 991px) {
  .hero-style-one .hero-wrapper .hero-title {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .hero-style-one .hero-wrapper .hero-title {
    font-size: 36px;
    margin-bottom: 0;
  }
}
.hero-style-two {
  min-height: 940px;
  padding: 30px 40px;
  padding-top: 352px;
  padding-left: 35px;
  background: var(--color-white);
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  z-index: 1;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .hero-style-two {
    min-height: 750px;
  }
}
@media (max-width: 1199px) {
  .hero-style-two {
    min-height: 600px;
    padding-top: 260px;
  }
}
@media (max-width: 991px) {
  .hero-style-two {
    padding-top: 200px;
  }
}
@media (max-width: 767px) {
  .hero-style-two {
    padding-top: 170px;
  }
}
.hero-style-two .hero-wrapper .hero-title {
  color: var(--color-primary);
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .hero-style-two .hero-wrapper .hero-title {
    font-size: 100px;
  }
}
@media (max-width: 991px) {
  .hero-style-two .hero-wrapper .hero-title {
    font-size: 55px;
  }
}
@media (max-width: 767px) {
  .hero-style-two .hero-wrapper .hero-title {
    font-size: 40px;
  }
}
.hero-style-two .hero-wrapper .hero-title span {
  color: var(--color-black);
  font-family: var(--font-newyork);
}
.hero-style-two .hero-wrapper .hero-title .highlight {
  font-family: var(--font-body);
}
.hero-style-two .hero-wrapper {
  margin-left: -15px;
  margin-right: -15px;
  align-items: end;
}
@media (max-width: 767px) {
  .hero-style-two .hero-wrapper {
    margin-left: 0;
    margin-right: 0;
  }
}
.hero-style-two .hero-title {
  min-width: 0;
  margin-bottom: 45px;
}
.hero-style-two .circle-image {
  position: relative;
  height: 100%;
  width: auto;
  margin-left: 214px;
}
.hero-style-two .circle-image::before {
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  background-image: url(/assets/img/award/award-img01.png);
  background-repeat: no-repeat;
  background-size: cover;
  height: 250px;
  width: 216px;
  transform: translate(-50%, -50%);
}
.hero-style-three {
  background: #000;
  min-height: 875px;
  z-index: 1;
  padding-top: 155px;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .hero-style-three {
    min-height: 780px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1300px) {
  .hero-style-three {
    min-height: 700px;
  }
}
@media (max-width: 1199px) {
  .hero-style-three {
    min-height: 550px;
  }
}
@media (max-width: 991px) {
  .hero-style-three {
    padding-top: 120px;
    min-height: 500px;
  }
}
.hero-style-three .hero-wrapper .hero-title {
  line-height: 1;
  margin-bottom: 0;
  min-width: 0;
  color: var(--color-white);
}
.hero-style-three .hero-wrapper .hero-title .title {
  display: flex;
  align-items: center;
  color: var(--color-white);
}
@media (max-width: 1199px) {
  .hero-style-three .hero-wrapper .hero-title .title {
    margin-bottom: 20px;
  }
}
@media (max-width: 991px) {
  .hero-style-three .hero-wrapper .hero-title .title {
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .hero-style-three .hero-wrapper .hero-title .title {
    margin-top: 20px;
    flex-wrap: wrap;
  }
}
.hero-style-three .hero-wrapper .hero-title .title span {
  font-family: var(--font-newyork);
  color: var(--color-primary);
  margin-right: 44px;
}
@media (max-width: 991px) {
  .hero-style-three .hero-wrapper .hero-title .title span {
    margin-right: 20px;
  }
}
.hero-style-three .hero-wrapper .hero-title .title mark {
  font-weight: 500;
  font-size: 20px;
  line-height: 34px;
  color: rgba(255, 255, 255, 0.7);
  display: inline-block;
  text-transform: capitalize;
  letter-spacing: 0;
  font-family: var(--font-body);
  background: transparent;
}
.hero-style-three .hero-wrapper .hero-title .title--one {
  padding-left: 10px;
}
@media (max-width: 1199px) {
  .hero-style-three .hero-wrapper .hero-title .title--one {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .hero-style-three .hero-wrapper .hero-title .title--one {
    display: block;
    margin-bottom: 20px;
  }
}
.hero-style-three .hero-wrapper .hero-title .title--one mark {
  margin-left: 75px;
  letter-spacing: 0;
}
@media (max-width: 991px) {
  .hero-style-three .hero-wrapper .hero-title .title--one mark {
    margin-left: 26px;
    font-size: 16px;
    line-height: 29px;
  }
}
@media (max-width: 767px) {
  .hero-style-three .hero-wrapper .hero-title .title--one mark {
    margin-left: 0;
    display: block;
    margin-top: 20px;
  }
}
.hero-style-three .hero-wrapper .hero-title .title--two {
  padding-left: 14.5%;
}
@media (max-width: 1199px) {
  .hero-style-three .hero-wrapper .hero-title .title--two {
    padding-left: 0;
  }
}
.hero-style-three .hero-wrapper .hero-title .title--two mark {
  margin-left: 75px;
}
.hero-style-three .hero-wrapper .hero-title .title--three {
  padding-left: 15.2%;
}
@media (max-width: 1199px) {
  .hero-style-three .hero-wrapper .hero-title .title--three {
    padding-left: 0;
  }
}
.hero-style-three .hero-wrapper .hero-title .title--three mark {
  margin-right: 155px;
}
@media (max-width: 991px) {
  .hero-style-three .hero-wrapper .hero-title .title--three mark {
    margin-right: 50px;
  }
}
@media (max-width: 767px) {
  .hero-style-three .hero-wrapper .hero-title .title--three mark {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.hero-style-three .hero-shape .shape {
  position: absolute;
  z-index: -1;
}
.hero-style-three .hero-shape .shape--one {
  bottom: -17%;
  left: 41.5%;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .hero-style-three .hero-shape .shape--one {
    left: 45.5%;
    max-width: 120px;
  }
}
@media (max-width: 1199px) {
  .hero-style-three .hero-shape .shape--one {
    left: 55.5%;
    max-width: 80px;
  }
}
@media (max-width: 991px) {
  .hero-style-three .hero-shape .shape--one {
    left: 44.5%;
    max-width: 50px;
    bottom: -19px;
  }
}
@media (max-width: 767px) {
  .hero-style-three .hero-shape .shape--one {
    left: 55.5%;
    max-width: 43px;
    bottom: -27px;
  }
}
.hero-style-three .hero-shape .shape--two {
  top: -18%;
  right: 3.6%;
}
@media (max-width: 1199px) {
  .hero-style-three .hero-shape .shape--two {
    max-width: 250px;
  }
}
@media (max-width: 767px) {
  .hero-style-three .hero-shape .shape--two {
    max-width: 130px;
  }
}
.hero-style-three .hero-shape .shape--three {
  top: -25px;
  left: -110px;
}
@media (max-width: 1199px) {
  .hero-style-three .hero-shape .shape--three {
    left: -50px;
    max-width: 400px;
  }
}
.circle-btn {
  height: 200px;
  width: 200px;
  background: #fff;
  display: inline-block;
  color: #000;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 30px 60px 0 rgba(0, 0, 0, 0.04);
}
@media (max-width: 991px) {
  .circle-btn {
    height: 150px;
    width: 150px;
  }
}
.circle-btn span {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
}
.circle-btn span img {
  animation: spin 50s infinite linear;
}
.circle-btn--border {
  width: 180px;
  height: 180px;
  border: 1px solid #000;
}
.circle-btn--border span {
  top: 11px;
  left: 11px;
  right: 11px;
}
.circle-btn:hover {
  color: #000;
}
.hero-circle-btn {
  position: absolute;
  bottom: -11.5%;
  right: 10.9%;
}
/* Style the hero section */
.hero-title .highlight {
  position: relative;
  padding-right: 20px;
  margin-right: -20px;
}
.hero-title svg {
  position: absolute;
  top: -2px;
  left: -15px;
  right: 0;
  margin: 0 auto;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.hr-shape {
    position: absolute;
    right: 0;
    z-index: -1;
    top: auto;
    bottom: 0;
}
.hero-img {
  position: absolute;
  bottom: 0;
  right: 0;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  overflow: hidden;
}
@media only screen and (min-width: 1500px) and (max-width: 1800px) {
  .hero-img {
    max-width: 850px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .hero-img {
    max-width: 570px;
  }
}
@media (max-width: 1199px) {
  .hero-img {
    max-width: 500px;
  }
}
@media (max-width: 991px) {
  .hero-img {
    max-width: 400px;
  }
}
@media (max-width: 767px) {
  .hero-img {
    position: unset;
    margin-top: 30px;
  }
}
.hero-title-shape {
  position: absolute;
  top: -100px;
  right: 32%;
}
@media (max-width: 1199px) {
  .hero-title-shape {
    max-width: 80px;
    top: -38px;
    right: 22px;
  }
}
@media (max-width: 767px) {
  .hero-title-shape {
    max-width: 60px;
    right: -8px;
  }
}
.hero-shape-two {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
.circle-text {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background-color: var(--color-black);
  position: relative;
	display: flex;
    justify-content: center;
    align-items: center;
}
.circle-text .circle-text-img {
    position: absolute;
    top: 6px;
    left: 7px;
}
.circle-text .circle-text-img img {
  animation: spin 30s infinite linear;
}
.circle-text .circle-star {
    position: relative;
    top: 0;
    left: 0;
}
.about-wrap .xb-item--title {
  font-weight: 600;
  font-size: 16px;
  padding: 7px 24px;
  display: inline-block;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  color: var(--color-heading);
}
.about-wrap .xb-item--link li {
  margin-left: 20px;
}
.about-wrap .xb-item--link li:not(:last-child) {
  margin-bottom: 12px;
}
.about-wrap .xb-item--link li:hover a {
  text-decoration: underline;
  color: var(--color-heading);
}
.about-wrap .xb-item--link li a {
  text-transform: uppercase;
  color: var(--color-default);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.about-sec-title {
  padding-right: 100px;
}
.about-wrapper {
  background: #000000;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}
.about-video img {
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}
.abt-shape {
  position: absolute;
  right: 38%;
  top: 18.4%;
  z-index: 1;
}
.black-btn {
  color: #fff;
  font-weight: 600;
  padding: 15px 33px;
  background: #000;
  display: inline-block;
  text-transform: uppercase;
}
.xb-about-inner .xb-item--title {
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 15px;
}
.xb-about-inner .xb-item--content p {
    width: auto;
    display: inline-block;
    color: var(--color-gray);
    margin-top: 20px;
    font-size: 18px;
    line-height: 28px;
}
@media (max-width: 767px) {
  .xb-about-inner .xb-item--content p {
    width: 100%;
  }
}
.xb-about-inner .xb-item--content p:not(:last-child) {
  margin-right: 60px;
}
@media (max-width: 1199px) {
  .xb-about-inner .xb-item--content p:not(:last-child) {
    margin-right: 30px;
  }
}
.xb-about-inner .xb-item--content p a {
  color: #000;
}
.xb-about-inner .xb-feature li {
  font-weight: 600;
  line-height: 20px;
  color: #000;
  text-transform: uppercase;
  margin-top: 20px;
}
.xb-about-inner .xb-feature li:not(:last-child) {
  margin-right: 60px;
}
@media (max-width: 1199px) {
  .xb-about-inner .xb-feature li:not(:last-child) {
    margin-right: 30px;
  }
}
.about-right-img {
  position: absolute;
  right: 0;
  top: 30%;
  max-width: 700px;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .about-right-img {
    max-width: 500px;
  }
}
@media (max-width: 1199px) {
  .about-right-img {
    max-width: 350px;
  }
}
@media (max-width: 991px) {
  .about-right-img {
    position: unset;
    margin: 40px auto 0;
  }
}
.about-img-two {
  top: 0;
  max-width: 700px;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .about-img-two {
    max-width: 500px;
    top: auto;
    bottom: 200px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1300px) {
  .about-img-two {
    max-width: 450px;
  }
}
@media (max-width: 1199px) {
  .about-img-two {
    max-width: 400px;
    top: auto;
    bottom: 200px;
  }
}
@media (max-width: 767px) {
  .about-img-two {
    max-width: 300px;
  }
}
.about-shape {
  position: absolute;
  bottom: 90px;
  left: -110px;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .about-shape {
    left: -50px;
    max-width: 100px;
  }
}
@media (max-width: 1199px) {
  .about-shape {
    max-width: 80px;
    left: -40px;
  }
}
.about-title-shape {
  position: absolute;
  right: 16%;
  top: 62%;
}
@media (max-width: 1199px) {
  .about-title-shape {
    max-width: 40px;
  }
}
@media (max-width: 767px) {
  .about-title-shape {
    right: -30px;
  }
}
.about-content {
  color: #999;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .about-content {
    padding-left: 0;
  }
}
@media (max-width: 1199px) {
  .about-content {
    padding-left: 0;
  }
}
.about-video.pos-rel {
  overflow: hidden;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}
.about-image {
  padding-right: 140px;
  position: relative;
}
@media (max-width: 1199px) {
  .about-image {
    padding-right: 50px;
  }
}
.about-shape-icon .shape {
  position: absolute;
  z-index: -1;
}
.about-shape-icon .shape--1 {
  top: -46px;
  right: 80px;
}
@media (max-width: 1199px) {
  .about-shape-icon .shape--1 {
    right: 0;
  }
}
.about-shape-icon .shape--2 {
  bottom: 25%;
  right: 60px;
  z-index: 1;
}
@media (max-width: 1199px) {
  .about-shape-icon .shape--2 {
    max-width: 70px;
    right: 20px;
  }
}
.about-cirlce-text {
  position: absolute;
  bottom: -74px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.about-cirlce-text img {
  animation: spin 50s infinite linear;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .about-content-inner {
    padding-right: 150px;
  }
}
@media (max-width: 1199px) {
  .about-content-inner {
    padding-right: 100px;
  }
}
.service-bg-color {
  background: var(--color-heading);
}
.xb-service_wrap .service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding-left: calc((100% - 1522px) / 2);
  padding-right: calc((100% - 1522px) / 2);
  padding-bottom: 50px;
  padding-top: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .xb-service_wrap .service-item {
    padding-left: calc((100% - 1340px) / 2);
    padding-right: calc((100% - 1340px) / 2);
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1300px) {
  .xb-service_wrap .service-item {
    padding-left: calc((100% - 1170px) / 2);
    padding-right: calc((100% - 1170px) / 2);
  }
}
@media (max-width: 1199px) {
  .xb-service_wrap .service-item {
    padding-left: calc((100% - 1000px) / 2);
    padding-right: calc((100% - 1000px) / 2);
  }
}
@media (max-width: 991px) {
  .xb-service_wrap .service-item {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.xb-service_wrap .service-item:hover .xb-marquee {
  opacity: 1;
  visibility: visible;
  height: 100%;
}
.xb-service_wrap .service-item .title {
  font-weight: 300;
  font-size: 50px;
  line-height: 100%;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--color-white);
}
@media (max-width: 1199px) {
  .xb-service_wrap .service-item .title {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .xb-service_wrap .service-item .title {
    font-size: 26px;
  }
}
.xb-service_wrap .service-item .title span {
  font-family: var(--font-newyork);
  color: var(--color-primary);
}
.xb-service_wrap .service-item .xb-marquee {
  position: absolute;
  top: 0;
  left: 0;
  height: 0%;
  width: 100%;
  background: var(--color-white);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}
.xb-service_wrap .service-item .xb-marquee-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 42px;
  margin-right: 42px !important;
}
.xb-service_wrap .service-item .xb-marquee-item .ser-link-title {
  font-weight: 500;
  font-size: 50px;
  letter-spacing: 0.5px;	
  text-transform: uppercase;
  color: var(--color-heading);
}
@media (max-width: 1199px) {
  .xb-service_wrap .service-item .xb-marquee-item .ser-link-title {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .xb-service_wrap .service-item .xb-marquee-item .ser-link-title {
    font-size: 26px;
  }
}
.xb-service_wrap .service-item .xb-marquee-item .ser-link-title span {
  color: var(--color-primary);
  font-family: var(--font-newyork);
}
.xb-service_wrap .service-item .xb-marquee-item .link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 35px;
  height: 80px;
  width: 80px;
  border-radius: 50px;
  border: 1px solid var(--color-border);
  color: var(--color-primary);
}
@media (max-width: 1199px) {
  .xb-service_wrap .service-item .xb-marquee-item .link-icon {
    width: 50px;
    height: 50px;
  }
  .xb-service_wrap .service-item .xb-marquee-item .link-icon svg {
    height: 15px;
  }
}
.xb-service_wrap .service-item .xb-marquee-item .link-icon svg path {
  fill: var(--color-primary);
}
.service-item_left {
  position: relative;
  background: var(--color-white);
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  padding: 40px;
  padding-left: 30px;
  height: 100%;
}
.service-item_left .title {
  color: var(--color-black);
}
.service-item_left .xb-img {
  position: absolute;
  left: 40px;
  bottom: 40px;
}
.service-item_right {
  background: var(--color-white);
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  padding: 30px 40px 30px;
}
.service-item_right:not(:last-child) {
  margin-bottom: 10px;
}
.service-item_right:hover .xb-item--number {
  color: var(--color-primary);
}
.service-item_right:hover .xb-item--holder a {
  border-color: var(--color-primary);
}
.service-item_right .xb-item--title {
  font-weight: 500;
  font-size: 36px;
  margin-bottom: 55px;
}
@media (max-width: 1199px) {
  .service-item_right .xb-item--title {
    font-size: 28px;
    margin-bottom: 30px;
  }
}
.service-item_right .xb-item--number {
  font-weight: 500;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.service-item_right .xb-item--holder {
  gap: 20px;
}
.service-item_right .xb-item--holder span {
  text-transform: uppercase;
  margin-right: 30px;
  display: inline-block;
  max-width: 323px;
}
.service-item_right .xb-item--holder a {
  height: 45.68px;
  width: 45.68px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
}
.service-single-item {
  border-bottom: 1px solid #cdcdcd;
  min-height: 76px;
  padding: 40px 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.service-single-item.active, .service-single-item:hover {
  padding: 79px 0;
  border-bottom: 1px solid #000;
}
@media (max-width: 1199px) {
  .service-single-item.active, .service-single-item:hover {
    padding: 100px 0;
  }
}
@media (max-width: 991px) {
  .service-single-item.active, .service-single-item:hover {
    padding: 130px 0;
  }
}
.service-single-item.active .service-single-item--hover, .service-single-item:hover .service-single-item--hover {
  opacity: 1;
  visibility: visible;
}
.service-single-item.active .xb-item--default, .service-single-item:hover .xb-item--default {
  opacity: 0;
  visibility: hidden;
}
.service-single-item .xb-item--number {
  font-weight: 500;
  font-size: 14px;
  color: #000;
  margin-right: 200px;
}
@media only screen and (min-width: 1200px) and (max-width: 1300px) {
  .service-single-item .xb-item--number {
    margin-right: 100px;
  }
}
@media (max-width: 1199px) {
  .service-single-item .xb-item--number {
    margin-right: 60px;
  }
}
@media (max-width: 991px) {
  .service-single-item .xb-item--number {
    margin-bottom: 20px;
  }
}
.service-single-item .xb-item--qual {
  font-weight: 500;
  font-size: 14px;
  margin-right: 200px;
  color: rgba(0, 0, 0, 0.4);
  text-transform: uppercase;
}
@media only screen and (min-width: 1200px) and (max-width: 1300px) {
  .service-single-item .xb-item--qual {
    margin-right: 70px;
  }
}
@media (max-width: 1199px) {
  .service-single-item .xb-item--qual {
    margin-right: 50px;
  }
}
@media (max-width: 991px) {
  .service-single-item .xb-item--qual {
    margin-bottom: 20px;
  }
}
.service-single-item .xb-item--title {
  font-weight: 500;
  font-size: 36px;
  text-transform: uppercase;
  color: #000;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .service-single-item .xb-item--title {
    font-size: 28px;
  }
}
@media (max-width: 1199px) {
  .service-single-item .xb-item--title {
    font-size: 28px;
  }
}
@media (max-width: 991px) {
  .service-single-item .xb-item--title {
    margin-bottom: 20px;
  }
}
.service-single-item .xb-item--title span {
  font-family: var(--font-newyork);
}
.service-single-item .xb-item--desc {
  color: var(--color-gray);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  max-width: 432px;
  margin-top: 22px;
  text-transform: capitalize;
}
@media (max-width: 991px) {
  .service-single-item .xb-item--desc {
    margin-bottom: 20px;
  }
}
.service-single-item .xb-item--content {
  margin-right: 100px;
}
.service-single-item .xb-item--image {
  max-width: 135px;
  height: 130px;
}
.service-single-item .xb-item--image img {
  object-fit: contain;
  height: 100%;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .service-single-item .xb-item--image {
    max-width: 100px;
  }
}
@media (max-width: 1199px) {
  .service-single-item .xb-item--image {
    display: none;
  }
}
.service-single-item .xb-item--link img {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.service-single-item .xb-item--default {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.service-single-item--hover {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  background: #f1f1f1;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 991px) {
  .service-single-item--hover {
    padding: 20px 0;
  }
}
.service-single-item--hover .xb-item--number {
  color: var(--color-primary);
}
.service-single-item--hover .xb-item--title {
  margin-top: 20px;
}
@keyframes borderShape {
  0%, 100% {
    border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
    transform: translate3d(0, 0, 0) rotateZ(0.01deg);
  }
  34% {
    border-radius: 70% 30% 46% 54% / 30% 29% 71% 70%;
    transform: translate3d(0, 5px, 0) rotateZ(0.01deg);
  }
  50% {
    transform: translate3d(0, 0, 0) rotateZ(0.01deg);
  }
  67% {
    border-radius: 100% 60% 60% 100%/100% 100% 60% 60%;
    transform: translate3d(0, -3px, 0) rotateZ(0.01deg);
  }
}
.service-circle-text {
  width: 122px;
  height: 122px;
  position: absolute;
  bottom: 40px;
  left: 40px;
}
@media (max-width: 991px) {
  .service-circle-text {
    left: 0;
    position: relative;
    margin-top: 30px;
    bottom: 0;
  }
}
.service-circle-text .circle-text-img {
  top: 6px;
  left: 6px;
}
.service-circle-text .circle-star {
  top: 23px;
  left: 23px;
}
.service_right_inner {
  padding-left: 86px;
}
@media (max-width: 991px) {
  .service_right_inner {
    padding-left: 0;
  }
}
.service-item_left {
  margin-right: -86px;
}
@media (max-width: 991px) {
  .service-item_left {
    margin-right: 0;
  }
}
.service_wrap.style-2 .service-single-item--hover {
  background-color: var(--color-white);
}
.xb-service_wrap {
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .xb-img-reveal-wrapper {
    width: 300px;
  }
}
.service-single-content {
  padding-right: 75px;
}
@media (max-width: 991px) {
  .service-single-content {
    padding-right: 0;
  }
}
.service-feature {
  padding: 40px;
  border: 1px solid #DFDFDF;
}
.service-feature .xb-item--icon {
  margin-bottom: 48px;
  height: 50px;
}
.service-feature .xb-item--title {
  font-size: 20px;
  margin-bottom: 14px;
  font-weight: 500;
}
.service-feature .xb-item--title span {
  font-family: var(--font-newyork);
  font-weight: 400;
}
.service-single-content p:not(:last-child) {
  margin-bottom: 30px;
}
.service-single-content h3 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 12px;
}
.service-single-content h3 span {
  font-weight: 400;
  font-family: var(--font-newyork);
}
.service-widget li:not(:last-child) {
  margin-bottom: 10px;
}
.service-widget li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--color-black);
  border: 1px solid #DFDFDF;
  padding: 9px 16px;
}
.service-widget li a i {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.service-widget li a span {
  display: flex;
  align-items: center;
  gap: 14px;
}
.service-widget li a span img {
  opacity: 0.3;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.service-widget li a:hover {
  border-color: var(--color-primary);
}
.service-widget li a:hover span img {
  opacity: 1;
}
.service-widget li a:hover i {
  color: var(--color-primary);
}
.single-sidebar {
  max-width: 290px;
  margin-left: -40px;
}
@media (max-width: 991px) {
  .single-sidebar {
    margin-left: 0;
    max-width: 400px;
  }
}
.single-sidebar .widget:not(:last-child) {
  margin-bottom: 50px;
}
.single-sidebar .widget h2 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 26px;
}
.single-sidebar .widget h2 span {
  font-weight: 400;
  font-family: var(--font-newyork);
}
.contact-widget {
  padding: 40px 30px;
  background-color: var(--color-black);
  position: relative;
  z-index: -1;
}
.contact-widget h2 {
  color: var(--color-white);
  margin-bottom: 12px !important;
}
.contact-widget p {
  color: #999999;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 24px;
}
.contact-widget ul li {
  color: rgba(255, 255, 255, 0.7);
  padding-left: 30px;
  position: relative;
  text-transform: uppercase;
}
.contact-widget ul li:not(:last-child) {
  margin-bottom: 6px;
}
.contact-widget ul li a {
  color: currentColor;
}
.contact-widget ul li i {
  position: absolute;
  top: 7px;
  left: 0;
  color: var(--color-primary);
}
.contact-widget .shape {
  position: absolute;
  top: 2%;
  right: 24%;
  z-index: -1;
}
.widget-form .xb-item--field {
  position: relative;
}
.widget-form .xb-item--field input, .widget-form .xb-item--field textarea {
  border: 1px solid #DFDFDF;
  height: 60px;
  padding: 16px;
  background-color: transparent;
  margin-bottom: 10px;
}
.widget-form .xb-item--field input:focus, .widget-form .xb-item--field textarea:focus {
  border-color: var(--color-primary);
}
.widget-form .xb-item--field input::placeholder, .widget-form .xb-item--field textarea::placeholder {
  text-transform: uppercase;
  color: #000;
  opacity: 0.3;
}
.widget-form .xb-item--field textarea {
  min-height: 140px;
}
.widget-form .xb-item--icon {
  position: absolute;
  top: 15px;
  right: 16px;
  color: var(--color-black);
}
.protfolio-bg {
  background: #fff;
}
.port-col:nth-child(1) .xb-portfolio-item, .port-col:nth-child(4) .xb-portfolio-item {
  margin-right: 90px;
}
@media (max-width: 1199px) {
  .port-col:nth-child(1) .xb-portfolio-item, .port-col:nth-child(4) .xb-portfolio-item {
    margin-right: 50px;
  }
}
@media (max-width: 767px) {
  .port-col:nth-child(1) .xb-portfolio-item, .port-col:nth-child(4) .xb-portfolio-item {
    margin-right: 0;
  }
}
@media (max-width: 991px) {
  .port-col:nth-child(4) .xb-portfolio-item {
    margin-right: 0;
    margin-left: 20px;
  }
}
@media (max-width: 767px) {
  .port-col:nth-child(4) .xb-portfolio-item {
    margin-left: 0;
  }
}
.port-col:nth-child(2) .xb-portfolio-item, .port-col:nth-child(5) .xb-portfolio-item {
  margin-left: -34px;
  margin-right: -33px;
  margin-top: 80px;
}
@media (max-width: 991px) {
  .port-col:nth-child(2) .xb-portfolio-item, .port-col:nth-child(5) .xb-portfolio-item {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .port-col:nth-child(2) .xb-portfolio-item, .port-col:nth-child(5) .xb-portfolio-item {
    margin-left: 0;
  }
}
.port-col:nth-child(3) .xb-portfolio-item, .port-col:nth-child(6) .xb-portfolio-item {
  margin-left: 90px;
}
@media (max-width: 1199px) {
  .port-col:nth-child(3) .xb-portfolio-item, .port-col:nth-child(6) .xb-portfolio-item {
    margin-left: 50px;
  }
}
@media (max-width: 767px) {
  .port-col:nth-child(3) .xb-portfolio-item, .port-col:nth-child(6) .xb-portfolio-item {
    margin-left: 0;
  }
}
@media (max-width: 991px) {
  .port-col:nth-child(3) .xb-portfolio-item, .port-col:nth-child(5) .xb-portfolio-item {
    margin-left: 0;
  }
}
@media (max-width: 991px) {
  .port-col:nth-child(6) .xb-portfolio-item {
    margin-left: 20px;
  }
}
@media (max-width: 767px) {
  .port-col:nth-child(6) .xb-portfolio-item {
    margin-left: 0;
  }
}
.xb-portfolio-item .xb-item--img {
  overflow: hidden;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.xb-portfolio-item .xb-item--img img {
  transition: .3s ease;
}
.xb-portfolio-item .xb-item--holder {
  margin-top: 32px;
}
.xb-portfolio-item .xb-item--title {
  font-weight: 500;
  font-size: 20px;
  display: inline-block;
  letter-spacing: -0.01em;
  position: relative;
}
.xb-portfolio-item .xb-item--title::before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--color-heading);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 991px) {
  .xb-portfolio-item .xb-item--title {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .xb-portfolio-item .xb-item--title {
    font-size: 12px;
  }
}
.xb-portfolio-item .xb-item--title a {
  color: currentColor;
}
.xb-portfolio-item .xb-item--cat {
  max-width: 100%;
}
.xb-portfolio-item .xb-item--cat li {
  line-height: 1.3;
}
.xb-portfolio-item .xb-item--cat li:not(:last-child) {
  margin-right: 8px;
}
.xb-portfolio-item .xb-item--cat li a {
/*  font-size: 14px;*/
  line-height: 24px;
  
  color: var(--color-default);
  position: relative;
}
.xb-portfolio-item .xb-item--cat li a::before {
  position: absolute;
  bottom: -2px;
  right: -4px;
  content: ",";
}
.xb-portfolio-item .xb-item--cat li:last-child a:before {
  display: none;
}
.xb-portfolio-item .xb-item--year {
  font-size: 14px;
  line-height: 24px;
  letter-spacing: -0.01em;
  color: var(--color-primary);
}
.xb-portfolio-item:hover .xb-item--img {
  box-shadow: 0 30px 60px 0 rgba(0, 0, 0, 0.2);
}
.xb-portfolio-item:hover .xb-item--img img {
  -webkit-transform: scale(1.08);
  -ms-transform: scale(1.08);
  transform: scale(1.08);
}
.xb-portfolio-item:hover .xb-item--title::before {
  width: 100%;
}
.portfolio-item .xb-item--year {
  font-size: 14px;
  color: var(--color-primary);
}
.portfolio-item .xb-item--img {
  margin-top: 10px;
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}
.portfolio-item .xb-item--img img {
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}
.portfolio-item .xb-item--skill {
  font-size: 14px;
}
.portfolio-item .xb-item--title {
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.01em;
}
.portfolio-item .xb-item--title a {
  color: currentColor;
}
.portfolio-item:hover .xb-item--img img {
  transform: scale(1.1);
}
.portfolio-item--two .xb-item--year {
  color: var(--color-primary);
}
.portfolio-item--two .xb-item--img {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}
.portfolio-item--two .xb-item--title {
  color: var(--color-white);
}
.portfolio-item--two .xb-item--title a {
  color: currentColor;
}
.xb-protfolio-slider {
  margin-left: -248px;
  margin-right: -384px;
  padding-bottom: 90px;
}
@media (max-width: 991px) {
  .xb-protfolio-slider {
    margin-left: 0;
    margin-right: 0;
    padding: 0 20px;
  }
}
.xb-protfolio-slider .swiper-pagination {
  bottom: 0;
  margin-left: -80px;
}
@media (max-width: 991px) {
  .xb-protfolio-slider .swiper-pagination {
    bottom: -60px;
    margin-left: 0;
  }
}
.xb-protfolio-slider .swiper-pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  margin: 0 7px;
  background: #fff;
  opacity: 0.14;
}
.xb-protfolio-slider .swiper-pagination .swiper-pagination-bullet-active {
  background: #fff;
  opacity: 1;
}
.portfolio-left .xb-portfolio-item:not(:last-child) {
  margin-bottom: 200px;
}
@media (max-width: 991px) {
  .portfolio-left .xb-portfolio-item:not(:last-child) {
    margin-bottom: 60px;
  }
}
.portfolio-right .xb-portfolio-item:not(:last-child) {
  margin-bottom: 304px;
}
@media (max-width: 991px) {
  .portfolio-right .xb-portfolio-item:not(:last-child) {
    margin-bottom: 60px;
  }
}
.portfolio-middle {
  margin-left: -35px;
  margin-right: -35px;
}
@media (max-width: 767px) {
  .portfolio-middle {
    margin-left: 0;
    margin-right: 0;
  }
}
.portfolio-middle .xb-portfolio-item:not(:last-child) {
  margin-bottom: 105px;
}
@media (max-width: 991px) {
  .portfolio-middle .xb-portfolio-item:not(:last-child) {
    margin-bottom: 60px;
  }
}
.portfolio-left {
  margin-right: 90px;
}
@media (max-width: 1199px) {
  .portfolio-left {
    margin-right: 50px;
  }
}
@media (max-width: 991px) {
  .portfolio-left {
    margin-right: 40px;
  }
}
@media (max-width: 767px) {
  .portfolio-left {
    margin-right: 0;
  }
}
.portfolio-right {
  margin-left: 90px;
}
@media (max-width: 1199px) {
  .portfolio-right {
    margin-left: 50px;
  }
}
@media (max-width: 991px) {
  .portfolio-right {
    margin-left: 40px;
  }
}
@media (max-width: 767px) {
  .portfolio-right {
    margin-left: 0;
  }
}
.protfolio-slider-two .portfolio-item--two .xb-item--title {
  color: var(--color-black);
}
.protfolio-slider-two .swiper-pagination .swiper-pagination-bullet {
  background: #000;
}
.portfolio-gallery-item .gallery-image {
  overflow: hidden;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.portfolio-gallery-item .gallery-image img {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.portfolio-gallery-item:hover .gallery-image {
  transform: scale(0.98);
}
.portfolio-gallery-item:hover .gallery-image img {
  transform: scale(1.11);
}
.portfolio-gallery-slider {
  margin-right: -360px;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .portfolio-gallery-slider {
    margin-right: -200px;
  }
}
@media (max-width: 1199px) {
  .portfolio-gallery-slider {
    margin-right: -200px;
  }
}
@media (max-width: 991px) {
  .portfolio-gallery-slider {
    margin-right: -100px;
  }
}
@media (max-width: 767px) {
  .portfolio-gallery-slider {
    margin-right: -70px;
  }
}
.portfolio-info {
  gap: 50px;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .portfolio-info {
    gap: 40px;
  }
}
@media (max-width: 1199px) {
  .portfolio-info {
    gap: 30px;
  }
}
.portfolio-info .xb-item--title {
  font-size: 32px;
  margin-bottom: 2px;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .portfolio-info .xb-item--title {
    font-size: 28px;
  }
}
@media (max-width: 1199px) {
  .portfolio-info .xb-item--title {
    font-size: 20px;
  }
}
.portfolio-info .xb-item--desc {
  font-size: 16px;
  text-transform: uppercase;
  color: #999999;
}
.accordion_box .block {
  position: relative;
  overflow: hidden;
  padding: 35px 0;
  border-bottom: 1px solid var(--color-border);
}
.accordion_box .block:first-child {
  border-top: 1px solid var(--color-border);
}
.accordion_box .block .acc_body {
  position: relative;
  display: none;
  margin-top: 22px;
}
.accordion_box .block .acc_body .content {
  line-height: 26px;
  color: var(--color-gray);
  align-items: start;
  padding-left: 58px;
}
@media (max-width: 1199px) {
  .accordion_box .block .acc_body .content {
    padding-left: 0;
  }
}
.accordion_box .block .acc_body .content p {
  max-width: 428px;
  display: inline-block;
  line-height: 26px;
}
.accordion_box .block .acc_body .content .more-btn {
  font-weight: 600;
  display: block;
  margin-top: 25px;
  text-transform: uppercase;
  text-decoration: underline;
  color: var(--color-primary);
}
@media (max-width: 1199px) {
  .accordion_box .block .acc_body .content .image {
    margin-top: 30px;
  }
}
.accordion_box .block .acc_body.current {
  display: block;
}
.accordion_box .block .acc-btn {
  cursor: pointer;
}
@media (max-width: 767px) {
  .accordion_box .block .acc-btn {
    padding-right: 30px;
  }
}
.accordion_box .block .acc-btn .number {
  font-weight: 500;
  font-size: 20px;
  color: #DFDFDF;
  margin-right: 35px;
}
@media (max-width: 767px) {
  .accordion_box .block .acc-btn .number {
    margin-right: 10px;
  }
}
.accordion_box .block .acc-btn .title {
  font-weight: 500;
  font-size: 20px;
  display: inline-block;
}
@media (max-width: 1199px) {
  .accordion_box .block .acc-btn .title {
    font-size: 16px;
  }
}
.accordion_box .block .acc-btn .arrow {
  position: absolute;
  right: 20px;
  top: 35px;
}
.accordion_box .block .acc-btn .arrow::before {
  top: 0;
  left: 0;
  font-size: 20px;
  color: rgba(0, 0, 0, 0.4);
  content: "\f067";
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  position: absolute;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.accordion_box .block.active-block {
  border-bottom: 1px solid #000;
}
.accordion_box .block.active-block .number {
  color: #000;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.accordion_box .block.active-block .acc-btn .arrow::before {
  content: "\f068";
  transform: rotate(180deg);
  color: var(--color-primary);
}
.xb-faq {
  padding-right: 71px;
}
@media (max-width: 991px) {
  .xb-faq {
    padding-right: 0;
    padding-left: 0;
  }
}
.faq-right {
  margin-left: -10px;
}
@media (max-width: 767px) {
  .faq-right {
    margin-left: 0;
  }
}
.faq-right .xb-content {
  line-height: 26px;
  color: var(--color-gray);
}
.faq-image {
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  overflow: hidden;
  position: relative;
  max-width: 813px;
}
.circle-video {
  position: absolute;
  top: 40px;
  left: 40px;
}
.faq_style2 .block {
  border: 1px solid #DFDFDF;
  margin-bottom: 20px;
  padding: 19px 26px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  padding-top: 0;
  padding-bottom: 0;
}
.faq_style2 .block:first-child {
  border-color: #DFDFDF;
}
.faq_style2 .block .acc-btn {
  padding-top: 19px;
  padding-bottom: 19px;
}
.faq_style2 .block .acc_body {
  padding-bottom: 19px;
  margin-top: 6px;
}
.faq_style2 .block .acc_body .content {
  padding-left: 0;
  gap: 30px;
}
@media (max-width: 767px) {
  .faq_style2 .block .acc_body .content {
    gap: 0;
  }
}
.faq_style2 .block .acc_body .content p {
  max-width: 512px;
  display: block;
}
.faq_style2 .block .acc_body .content .more-btn {
  color: var(--color-black);
  border: 1px solid var(--color-primary);
  padding: 15px 30px;
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
  display: inline-block;
  text-decoration: none;
  margin-top: 35px;
}
.faq_style2 .block .acc_body .content .more-btn:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}
.faq_style2 .block .acc_body .content .image {
  width: 226px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .faq_style2 .block .acc_body .content .image {
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .faq_style2 .block .acc_body .content .image {
    margin-top: 30px;
  }
}
.faq_style2 .block .acc-btn .title {
  font-size: 18px;
}
.faq_style2 .block .acc-btn .arrow {
  top: 29px;
}
.faq_style2 .block .acc-btn .arrow::before {
  top: -10px;
  left: auto;
  right: 6px;
  color: #000;
}
.faq_style2 .block.active-block {
  border-color: #000;
}
.faq_style2 .block.active-block .acc-btn .arrow::before {
  color: var(--color-black);
}
.faq_style2.border-none .block {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}
.faq-inner {
  padding-left: 40px;
}
@media (max-width: 991px) {
  .faq-inner {
    padding-left: 0;
  }
}
.faq-inner .image {
  max-width: 226px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  overflow: hidden;
}
.faq-img {
  right: -192px;
  position: relative;
  top: -60px;
  margin-left: -103px;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .faq-img {
    right: 0;
    margin-left: 0;
  }
}
@media (max-width: 1199px) {
  .faq-img {
    right: 0;
    margin-left: 0;
  }
}
@media (max-width: 991px) {
  .faq-img {
    top: 20px;
    margin-bottom: 100px;
  }
}
@media (max-width: 991px) {
  .xb-faq-inner {
    padding-right: 0;
  }
}
.faq-title {
  font-size: 36px;
  margin-bottom: 50px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .faq-title {
    font-size: 24px;
  }
}
.faq-wrap {
  border-right: 1px solid #DFDFDF;
  padding-right: 78px;
  margin-right: -25px;
}
@media (max-width: 1199px) {
  .faq-wrap {
    padding-right: 30px;
    margin-right: 40px;
  }
}
@media (max-width: 991px) {
  .faq-wrap {
    padding-right: 0;
    margin-right: 0;
    border: 0;
  }
}
.faq-wrap .block .acc_body .content p {
  max-width: 100%;
  display: block;
}
.faq-wrap .content-inner {
  width: 73%;
}
@media (max-width: 767px) {
  .faq-wrap .content-inner {
    width: 100%;
  }
}
.faq-wrap .block .acc_body .content .more-btn {
  margin-top: 60px;
}
.faq-wrap .block .acc_body .content .image {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  overflow: hidden;
}
.faq-sidebar .widget h2 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 26px;
  padding-bottom: 14px;
  border-bottom: 1px solid #DFDFDF;
}
.testimonial-item {
  display: flex;
  justify-content: space-between;
  background: var(--color-white);
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  position: sticky;
  top: 20px;
}
@media (max-width: 991px) {
  .testimonial-item {
    padding: 25px;
  }
}
@media (max-width: 767px) {
  .testimonial-item {
    position: unset;
    flex-wrap: wrap;
  }
}
.testimonial-item:hover {
  background: #000000;
}
.testimonial-item:hover .xb-item--quote img {
  filter: brightness(100%);
}
.testimonial-item:hover .xb-item--content {
  color: var(--color-white);
}
.testimonial-item .xb-item--author {
  width: 620px;
  height: 100%;
  overflow: hidden;
  margin-right: 146px;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .testimonial-item .xb-item--author {
    margin-right: 60px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1300px) {
  .testimonial-item .xb-item--author {
    width: 580px;
  }
}
@media (max-width: 1199px) {
  .testimonial-item .xb-item--author {
    width: 350px;
    margin-right: 30px;
  }
}
@media (max-width: 991px) {
  .testimonial-item .xb-item--author {
    width: 300px;
    margin-right: 20px;
  }
}
@media (max-width: 767px) {
  .testimonial-item .xb-item--author {
    width: 100%;
    margin-right: 0;
  }
}
.testimonial-item .xb-item--name {
  position: absolute;
  left: 30px;
  bottom: 30px;
  font-size: 20px;
  font-weight: 500;
  padding: 13px 17px;
  display: inline-block;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--color-heading);
  background: var(--color-white);
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
}
@media (max-width: 991px) {
  .testimonial-item .xb-item--name {
    left: 16px;
    bottom: 30px;
    font-size: 16px;
  }
}
.testimonial-item .xb-item--name span {
  font-size: 14px;
  font-weight: 400;
  margin-right: 10px;
  display: inline-block;
  color: var(--color-primary);
  transform: translateY(-2px);
}
.testimonial-item .xb-item--holder {
  text-align: end;
  width: calc(100% - 766px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .testimonial-item .xb-item--holder {
    width: calc(100% - 680px);
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1300px) {
  .testimonial-item .xb-item--holder {
    width: calc(100% - 640px);
  }
}
@media (max-width: 1199px) {
  .testimonial-item .xb-item--holder {
    width: calc(100% - 380px);
  }
}
@media (max-width: 991px) {
  .testimonial-item .xb-item--holder {
    width: calc(100% - 320px);
  }
}
@media (max-width: 767px) {
  .testimonial-item .xb-item--holder {
    width: 100%;
    margin-top: 30px;
  }
}
.testimonial-item .xb-item--content {
  font-size: 48px;
  font-weight: 500;
  line-height: 58px;
  padding-left: 185px;
  letter-spacing: -0.01em;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  color: var(--color-heading);
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .testimonial-item .xb-item--content {
    font-size: 38px;
    font-weight: 500;
    line-height: 53px;
    padding-left: 0;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1300px) {
  .testimonial-item .xb-item--content {
    font-size: 31px;
    line-height: 46px;
  }
}
@media (max-width: 1199px) {
  .testimonial-item .xb-item--content {
    padding-left: 0;
    font-size: 26px;
    line-height: 37px;
  }
}
@media (max-width: 991px) {
  .testimonial-item .xb-item--content {
    font-size: 20px;
    line-height: 32px;
  }
}
.testimonial-item .xb-item--quote img {
  filter: brightness(0%);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.xb-tes-inner .xb-item--avater {
  margin-right: 94px;
}
.xb-tes-inner .xb-item--desig {
  font-size: 14px;
  color: var(--color-gray);
  color: var(--color-primary);
}
.xb-tes-inner .xb-item--name {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.xb-tes-inner .xb-item--content {
  font-size: 14px;
  line-height: 24px;
  color: var(--color-gray);
  max-width: 351px;
  display: inline-block;
}
.tes-right-img {
  position: absolute;
  top: 0;
  right: -200px;
  z-index: 1;
}
@media (max-width: 991px) {
  .tes-right-img {
    position: unset;
    margin: 0 auto;
  }
}
.tes-right-img .tes-img {
  max-width: 565px;
}
@media (max-width: 991px) {
  .tes-right-img .tes-img {
    margin: 0 auto;
    max-width: 500px;
  }
}
.tes-right-img .tes-img .tes-circle-btn {
  position: absolute;
  bottom: 80px;
  left: -90px;
}
@media (max-width: 767px) {
  .tes-right-img .tes-img .tes-circle-btn {
    left: 50px;
  }
}
@media (max-width: 1199px) {
  .testimonial-inner {
    max-width: 500px;
  }
}
.testimonial-inner .title {
  color: #000;
  font-weight: 500;
  font-size: 48px;
  line-height: 58px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  padding-right: 30px;
}
@media only screen and (min-width: 1200px) and (max-width: 1300px) {
  .testimonial-inner .title {
    font-size: 26px;
    line-height: 46px;
  }
}
@media (max-width: 1199px) {
  .testimonial-inner .title {
    font-size: 28px;
    line-height: 46px;
  }
}
.testimonial-inner .title span {
  color: var(--color-primary);
}
.testimonial_wrap {
  min-height: 650px;
}
.testimonial_wrap .sub-title {
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-heading);
  line-height: 1;
  border: 1px solid var(--color-primary);
  border-radius: 30px;
  padding: 5px 9px;
  transform: translateY(10px);
  display: inline-block;
  margin-right: 28px;
}
.xb-testimonial-slider {
  top: -30px;
  max-width: 830px;
  padding-bottom: 115px;
}
@media only screen and (min-width: 1200px) and (max-width: 1300px) {
  .xb-testimonial-slider {
    max-width: 500px;
  }
}
@media (max-width: 1199px) {
  .xb-testimonial-slider {
    margin-left: 130px;
  }
}
@media (max-width: 767px) {
  .xb-testimonial-slider {
    top: 30px;
    max-width: 100%;
    margin-left: 0;
  }
}
.xb-testimonial-slider .swiper-pagination {
  text-align: start;
}
.xb-testimonial-slider .swiper-pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  margin: 0 7px;
  background: #000;
  opacity: 0.14;
}
.xb-testimonial-slider .swiper-pagination .swiper-pagination-bullet-active {
  background: #000;
  opacity: 1;
}
.brand-item {
  min-height: 198px;
}
.brand-item .xb-item--logo {
  min-height: 100px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-item .xb-item--logo a {
  display: inline-block;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .brand-item .xb-item--logo a {
    max-width: 200px;
  }
  .brand-item .xb-item--logo a img {
    height: 70px;
    object-fit: contain;
  }
}
@media (max-width: 1199px) {
  .brand-item .xb-item--logo a {
    max-width: 100px;
  }
  .brand-item .xb-item--logo a img {
    height: 60px;
    object-fit: contain;
  }
}
.brand-item .xb-item--logo a:hover {
  opacity: 0.5;
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
}
.brand-item .xb-item--title {
  font-size: 20px;
  line-height: 34px;
}
.brand-item .xb-item--tags {
  text-transform: uppercase;
  font-weight: 500;
}
.brand-single_item {
  z-index: 1;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 364px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  background: var(--color-white);
  border: 1px solid #fff;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .brand-single_item {
    min-height: 250px;
  }
}
@media (max-width: 1199px) {
  .brand-single_item {
    min-height: 200px;
  }
}
@media (max-width: 767px) {
  .brand-single_item {
    min-height: 170px;
  }
}
.brand-single_item:hover {
  border: 1px solid var(--color-primary);
}
.brand-single_item .xb-image {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1199px) {
  .brand-single_item .xb-image {
    max-width: 85px;
  }
}
.brand-single_item--active {
  background: var(--color-primary);
  border-color: var(--color-primary);
}
.brand-single_item--active:hover {
  border-color: var(--color-primary);
}
.brand-single_item--active span {
  font-weight: 600;
  color: var(--color-white);
}
.xb-brand-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 199px;
  width: 100%;
  padding: 20px;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  margin-top: -1px;
}
.xb-brand-item:hover .xb-image img {
  opacity: 1;
}
.xb-brand-item .xb-image {
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.xb-brand-item .xb-image img {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  opacity: 0.4;
}
.baran-col:last-child .xb-brand-item {
  border-bottom: none;
  border-right: none;
}
.baran-col:last-child .xb-brand-item .xb-content {
  line-height: 26px;
  font-weight: 600;
  text-transform: uppercase;
}
.baran-col:last-child .xb-brand-item .xb-content span {
  color: #000;
}
.brand-single:not(:last-child) {
  margin-right: 200px;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .brand-single:not(:last-child) {
    margin-right: 140px;
  }
}
@media (max-width: 1199px) {
  .brand-single:not(:last-child) {
    margin-right: 100px;
  }
}
@media (max-width: 767px) {
  .brand-single:not(:last-child) {
    margin-right: 40px;
  }
}
.brand-single a img {
  opacity: 0.4;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.brand-single:hover a img {
  opacity: 1;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.brand-slider {
  margin: 0 -30px;
}
@media (max-width: 991px) {
  .baran-col {
    width: 33.3333%;
  }
}
@media (max-width: 767px) {
  .baran-col {
    width: 50%;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .pt-xl-50 {
    padding-top: 50px;
  }
}
.blog-item {
  border-top: 1px solid #eeeeee;
  padding: 30px 0;
  display: flex;
  flex-wrap: wrap;
  position: sticky;
  top: 100px;
  background-color: #fff;
}
@media (max-width: 767px) {
  .blog-item {
    position: unset;
  }
}
.blog-item:last-child {
  border-bottom: 1px solid #eeeeee;
}
.blog-item:hover .xb-item--img a img {
  transform: scale(1.1);
}
.blog-item .xb-item--img {
  width: 600px;
  overflow: hidden;
  margin-right: 50px;
}
@media (max-width: 1199px) {
  .blog-item .xb-item--img {
    width: 400px;
  }
}
.blog-item .xb-item--img a img {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 991px) {
  .blog-item .xb-item--img {
    width: 300px;
  }
}
@media (max-width: 767px) {
  .blog-item .xb-item--img {
    width: 100%;
    margin-bottom: 40px;
    margin-right: 0;
  }
}
.blog-item .xb-item--date {
  left: 30px;
  bottom: 30px;
  font-weight: 600;
  padding: 6px 10px;
  position: absolute;
  text-transform: uppercase;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  color: var(--color-heading);
  background: var(--color-white);
}
.blog-item .xb-item--holder {
  width: calc(100% - 650px);
  display: flex;
  padding-right: 60px;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .blog-item .xb-item--holder {
    width: calc(100% - 450px);
    padding-right: 0;
  }
}
@media (max-width: 991px) {
  .blog-item .xb-item--holder {
    width: calc(100% - 350px);
  }
}
@media (max-width: 767px) {
  .blog-item .xb-item--holder {
    width: 100%;
  }
}
.blog-item .xb-item--title {
  font-size: 32px;
  font-weight: 500;
  line-height: 42px;
  margin-top: auto;
}
@media (max-width: 1199px) {
  .blog-item .xb-item--title {
    font-size: 22px;
    line-height: 35px;
  }
}
@media (max-width: 991px) {
  .blog-item .xb-item--title {
    font-size: 24px;
    line-height: 34px;
  }
}
.blog-item .xb-item--title a {
  color: currentColor;
}
.blog-item .xb-item--tag {
  display: flex;
}
.blog-item .xb-item--tag li a {
  font-weight: 600;
  padding: 6px 10px;
  text-transform: uppercase;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  color: var(--color-black);
  border: 1px solid var(--color-primary);
}
.blog-item .xb-item--tag li a:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}
.blog-item .xb-item--tag li:not(:last-child) {
  margin-right: 14px;
}
.blog-col:last-child .xb-blog-item {
  border-right: none;
}
.xb-blog-item {
  border-top: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  padding: 40px;
}
@media (max-width: 767px) {
  .xb-blog-item {
    padding: 20px;
  }
}
.xb-blog-item:hover .xb-item--img img {
  transform: scale(1.1);
}
.xb-blog-item .xb-item--img {
  overflow: hidden;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}
.xb-blog-item .xb-item--img img {
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}
.xb-blog-item .xb-item--img span {
  top: 20px;
  left: 20px;
  line-height: 1;
  font-weight: 600;
  padding: 6px 10px;
  position: absolute;
  text-transform: uppercase;
  color: var(--color-heading);
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  background: var(--color-white);
}
.xb-blog-item .xb-item--img span a {
  color: currentColor;
}
.xb-blog-item .xb-item--holder {
  margin-top: 30px;
}
.xb-blog-item .xb-item--meta {
  margin-bottom: 10px;
}
.xb-blog-item .xb-item--meta li {
  font-size: 14px;
  text-transform: uppercase;
}
.xb-blog-item .xb-item--meta li:not(:last-child) {
  margin-right: 40px;
}
.xb-blog-item .xb-item--meta li img {
  margin-right: 10px;
  transform: translateY(-2px);
}
.xb-blog-item .xb-item--user span {
  font-weight: 600;
  color: var(--color-heading);
}
.xb-blog-item .xb-item--title {
  font-weight: 500;
  font-size: 24px;
  margin-bottom: 60px;
  letter-spacing: -0.01em;
}
@media (max-width: 767px) {
  .xb-blog-item .xb-item--title {
    font-size: 20px;
    letter-spacing: 0;
  }
}
.xb-blog-item .xb-item--title a {
  color: currentColor;
}
.xb-blog-item .xb-item--link {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-heading);
  text-transform: uppercase;
  position: relative;
}
.xb-blog-item .xb-item--link::before {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0%;
  height: 1px;
  background-color: var(--color-primary);
  content: "";
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.xb-blog-item .xb-item--link:hover {
  color: var(--color-primary);
}
.xb-blog-item .xb-item--link:hover::before {
  left: 0px;
  right: auto;
  width: 100%;
}
@media (max-width: 767px) {
  .blog-title {
    padding: 0 20px;
  }
}
.blog-post-wrapper {
  border-right: 1px solid #DFDFDF;
  padding-right: 78px;
  margin-right: -25px;
}
@media (max-width: 1199px) {
  .blog-post-wrapper {
    padding-right: 30px;
    margin-right: 40px;
  }
}
@media (max-width: 991px) {
  .blog-post-wrapper {
    padding-right: 0;
    margin-right: 0;
    border: 0;
  }
}
.post-thumbnail-wrapper {
  position: relative;
  overflow: hidden;
  margin-bottom: 50px;
}
.post-thumbnail-wrapper img {
  width: 100%;
  -webkit-transition: 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  -o-transition: 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.post-date {
  font-size: 16px;
  background-color: var(--color-white);
  text-transform: uppercase;
  padding: 6px 10px;
  font-weight: 600;
  position: absolute;
  top: 40px;
  left: 40px;
  line-height: 1.1;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  color: var(--color-black);
}
.single-post-item {
  margin-bottom: 56px;
  position: relative;
}
.single-post-item:hover .post-thumbnail-wrapper img, .single-post-item:hover .post-gallery-slider img {
  -webkit-transform: scale(1.08);
  -ms-transform: scale(1.08);
  transform: scale(1.08);
}
.single-post-item .post-title {
  font-size: 32px;
  line-height: 42px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .single-post-item .post-title {
    font-size: 24px;
    line-height: 37px;
  }
}
.single-post-item .post-title a {
  color: currentColor;
}
.post-gallery-slider .post-gallery-nav {
  mix-blend-mode: unset;
}
.post-gallery-slider .post-gallery-nav-item {
  width: 50px;
  height: 50px;
  display: flex;
  color: #000;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  font-size: 15px;
  border-radius: 50%;
  left: 20px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .3s;
  transition: .3s;
  background-color: var(--color-white);
}
.post-gallery-slider .post-gallery-nav-item:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}
.post-gallery-slider .post-gallery-nav-item.post-gallery-button-next {
  left: auto;
  right: 20px;
}
.post-thumbnail-wrapper:hover .post-gallery-nav-item.post-gallery-button-prev {
  left: 30px;
}
.post-thumbnail-wrapper:hover .post-gallery-nav-item.post-gallery-button-next {
  right: 30px;
}
.post-thumbnail-wrapper:hover .post-gallery-nav-item {
  opacity: 1;
  visibility: visible;
}
.post-thumbnail-wrapper .swiper-slide {
  overflow: hidden;
}
.post-content-wrapper {
  padding-left: 40px;
}
@media (max-width: 767px) {
  .post-content-wrapper {
    padding-left: 0;
  }
}
.post-gallery-slider {
  position: relative;
}
.post-tags li a {
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-heading);
  line-height: 1;
  border: 1px solid var(--color-primary);
  border-radius: 30px;
  padding: 5px 9px;
  display: inline-block;
  margin-right: 14px;
}
.post-tags li a:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}
.sidebar-area {
  padding-left: 82px;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .sidebar-area {
    padding-left: 40px;
  }
}
@media (max-width: 1199px) {
  .sidebar-area {
    padding-left: 0;
    margin-left: -30px;
  }
}
@media (max-width: 991px) {
  .sidebar-area {
    padding-left: 0;
    margin-left: 0;
    padding-top: 40px;
  }
}
.sidebar-area .widget {
  margin-bottom: 50px;
}
.widget__title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 25px;
  border-bottom: 1px solid #DFDFDF;
  padding-bottom: 15px;
}
.widget__search {
  position: relative;
}
.widget__search input {
  height: 60px;
  background-color: transparent;
  padding: 20px;
  border: 0;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0;
  border: 1px solid #DFDFDF;
}
.widget__search input::-webkit-input-placeholder {
  color: #8F959F;
  opacity: 1;
}
.widget__search input::-moz-placeholder {
  color: #8F959F;
  opacity: 1;
}
.widget__search input:-ms-input-placeholder {
  color: #8F959F;
  opacity: 1;
}
.widget__search input:-moz-placeholder {
  color: #8F959F;
  opacity: 1;
}
.widget__search button {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: var(--color-white);
  background-color: var(--color-primary);
}
.widget__category li:not(:last-child) {
  margin-bottom: 7px;
  padding-bottom: 7px;
}
.widget__category li a {
  position: relative;
  display: block;
  z-index: 1;
  color: #061020;
  font-size: 14px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
}
.widget__category li a:hover, .widget__category li a.active {
  color: var(--color-primary);
}
.widget__category li a i {
  font-size: 13px;
}
.widget__post-item:not(:last-child) {
  margin-bottom: 25px;
}
.widget__post-item .post-thumb {
  width: 80px;
  height: 80px;
  overflow: hidden;
  margin-right: 20px;
}
.widget__post-item .post-thumb img {
  width: 100%;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  height: 100%;
  object-fit: cover;
}
.widget__post-item:hover .post-thumb img {
  -webkit-transform: scale(1.08);
  -ms-transform: scale(1.08);
  transform: scale(1.08);
}
.widget__post-item:hover .post-title a {
  background-size: 100% 100%;
}
.widget__post-item .post-meta {
  margin-bottom: 5px;
}
.widget__post-item .post-meta a {
  font-size: 12px;
  color: var(--color-default);
  position: relative;
}
.widget__post-item .post-meta a:not(:last-child) {
  margin-right: 9px;
  padding-right: 12px;
}
.widget__post-item .post-meta a:not(:last-child)::before {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  content: "";
  width: 1px;
  height: 15px;
  background-color: #E6E6E6;
}
.widget__post-item .post-meta a i {
  margin-right: 5px;
  color: #000;
}
.widget__post-item .post-content {
  width: calc(100% - 110px);
}
.widget__post-item .post-content .post-title {
  font-size: 14px;
  color: var(--color-black);
  font-weight: 500;
  letter-spacing: 0;
}
.widget__post-item .post-content .post-title a {
  color: inherit;
}
.post-details .post-thumb {
  margin-bottom: 30px;
}
.post-details h2 {
  font-size: 36px;
  line-height: 45px;
  margin-bottom: 30px;
  font-weight: 500;
}
@media (max-width: 1199px) {
  .post-details h2 {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .post-details h2 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .post-details h2 {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 20px;
  }
}
.post-details h3 {
  font-size: 28px;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .post-details h3 {
    font-size: 22px;
  }
}
.post-details p:not(:last-child) {
  margin-bottom: 20px;
}
.post-meta {
  margin-bottom: 20px;
  margin-top: -4px;
}
.post-meta li {
  font-size: 18px;
}
.post-meta li i {
  margin-right: 7px;
  color: var(--color-primary);
}
.post-meta li:not(:last-child) {
  margin-right: 34px;
}
blockquote {
  background-color: rgba(253, 100, 66, 0.07);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 40px 55px;
  padding-left: 130px;
  position: relative;
  margin: 40px 0;
}
@media (max-width: 767px) {
  blockquote {
    padding: 30px;
    padding-left: 100px;
  }
}
blockquote p {
  font-size: 20px;
  font-weight: 600;
  color: #0F172A;
  line-height: 34px;
  margin-bottom: 20px !important;
}
@media (max-width: 767px) {
  blockquote p {
    font-size: 18px;
  }
}
blockquote span {
  font-size: 18px;
  font-weight: 500;
  color: #787B84;
  padding-left: 27px;
  position: relative;
}
blockquote span::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 17px;
  height: 1px;
  background-color: #787B84;
  content: "";
}
blockquote .quote {
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  background-color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.post-info-list {
  padding-left: 10px;
}
@media (max-width: 1199px) {
  .post-info-list {
    padding-left: 0;
  }
}
.post-info-list li:not(:last-child) {
  margin-bottom: 12px;
}
.post-tags .tags-links {
  margin-top: 10px;
}
.post-tags .tag-title {
  font-size: 20px;
  margin-right: 15px;
  margin-top: 20px;
  font-weight: 600;
}
.social-share .post-share {
  margin-top: 20px;
}
.social-share li:not(:last-child) {
  margin-right: 10px;
}
.social-share li a {
  color: var(--color-default);
  border: 1px solid #EEE5E5;
  font-size: 14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-share li a:hover {
  border-color: var(--color-primary);
  background-color: var(--color-primary);
  color: var(--color-white);
}
.social-share .title {
  font-size: 20px;
  margin-right: 15px;
  margin-top: 20px;
  font-weight: 600;
}
/* comment css */
.comments-form {
  padding-top: 40px;
}
@media (max-width: 767px) {
  .comments-form {
    padding-top: 25px;
  }
}
.comments-form .comment-heading {
  margin-bottom: 30px;
}
.comments-form .title {
  font-size: 30px;
  margin-bottom: 7px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .comments-form .title {
    font-size: 26px;
  }
}
.comments-form .xb-item--field {
  margin-bottom: 25px;
}
.comments-form .xb-item--field textarea {
  min-height: 150px;
}
.comments-form .xb-item--field input, .comments-form .xb-item--field textarea {
  border: 1px solid #DFDFDF;
  height: 60px;
  background-color: transparent;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.comments-form .xb-item--field input:focus, .comments-form .xb-item--field textarea:focus {
  border-color: var(--color-primary);
}
.post-comments {
  padding-bottom: 80px;
}
.post-comments .title {
  font-size: 30px;
  margin-bottom: 30px;
  font-weight: 700;
  font-family: var(--font-body);
}
.latest__comments .comments-box {
  border-top: 1px solid var(--color-border-2);
  padding: 30px 0;
}
.latest__comments .comments-text {
  overflow: hidden;
  font-size: 18px;
  line-height: 30px;
}
.latest__comments .comments-avatar {
  border-radius: 50%;
  float: left;
}
@media (max-width: 767px) {
  .latest__comments .comments-avatar {
    float: none;
    margin-bottom: 10px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .latest__comments .comments-avatar {
    float: left;
    margin-bottom: 0px;
  }
}
.latest__comments .comments-avatar img {
  border-radius: 50%;
  width: 80px !important;
  margin-right: 30px;
}
.latest__comments li:last-child .comments-box {
  padding-bottom: 0px;
}
.latest__comments li:first-child .comments-box {
  border-top: 0;
  padding-top: 0;
}
.latest__comments li.children {
  margin-left: 100px;
}
@media (max-width: 767px) {
  .latest__comments li.children {
    margin-left: 0px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .latest__comments li.children {
    margin-left: 50px;
  }
}
.latest__comments .avatar-name {
  margin-bottom: 15px;
  overflow: hidden;
  position: relative;
}
.latest__comments .avatar-name h5 {
  font-size: 20px;
  margin-bottom: 0px;
  font-weight: 600;
  letter-spacing: -0.2px;
  font-family: var(--font-body);
}
.latest__comments .avatar-name span {
  font-size: 15px;
  color: var(--color-default);
}
.latest__comments .reply {
  color: #141414;
  border: 1px solid #EEE5E5;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  line-height: 1;
  position: absolute;
  right: 0;
  margin-top: 0;
  top: 0;
  text-decoration: none;
  padding: 9px 20px;
}
.latest__comments .reply:hover {
  border-color: var(--color-primary);
  background-color: var(--color-primary);
  color: var(--color-white);
}
.latest__comments--2 p {
  font-size: 14px;
  line-height: 24px;
  color: var(--color-black);
}
.xb-video_wrapper {
margin-left: calc((100% - 1522px) / 2);
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .xb-video_wrapper {
    margin-left: calc((100% - 1330px) / 2);
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1300px) {
  .xb-video_wrapper {
    margin-left: calc((100% - 1230px) / 2);
  }
}
@media (max-width: 1199px) {
  .xb-video_wrapper {
    margin-left: calc((100% - 1000px) / 2);
  }
}
@media (max-width: 991px) {
  .xb-video_wrapper {
    margin-left: 0;
  }
}
.xb-video_wrapper .xb-item--content {
  position: absolute;
  left: 50px;
  bottom: 10%;
}
@media (max-width: 767px) {
  .xb-video_wrapper .xb-item--content {
    gap: 20px;
  }
}
.xb-video_wrapper .xb-item--line {
  height: 2px;
  width: 901px;
  margin-right: 50px;
  background: var(--color-white);
  opacity: .2;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .xb-video_wrapper .xb-item--line {
    width: 500px;
  }
}
@media (max-width: 1199px) {
  .xb-video_wrapper .xb-item--line {
    width: 300px;
  }
}
@media (max-width: 991px) {
  .xb-video_wrapper .xb-item--line {
    width: 200px;
  }
}
@media (max-width: 767px) {
  .xb-video_wrapper .xb-item--line {
    display: none;
  }
}
.xb-video_wrapper .xb-item--intro {
  font-weight: 500;
  font-size: 48px;
  color: var(--color-white);
}
@media (max-width: 991px) {
  .xb-video_wrapper .xb-item--intro {
    font-size: 30px;
    letter-spacing: 0;
  }
}
.xb-video_wrapper .xb-item--intro span {
  font-family: var(--font-newyork);
}
.vd-play {
  height: 100px;
  width: 100px;
  background: var(--color-white);
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--color-heading);
}
.vd-play:hover {
  color: var(--color-heading);
}
.vd-play--big {
  height: 200px;
  width: 200px;
  font-size: 24px;
}
.vd-play--mid {
  height: 140px;
  width: 140px;
}
@media (max-width: 767px) {
  .vd-play--mid {
    height: 70px;
    width: 70px;
  }
}
.vd-play--md {
  height: 120px;
  width: 120px;
}
.play_video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.xb-video_inner {
  position: relative;
  overflow: hidden;
}
.xb-video_inner .xb-item--img {
  margin-right: 10.5%;
}
.video-shape {
  position: absolute;
  top: 0;
  right: 60px;
}
@media (max-width: 1199px) {
  .video-shape {
    right: 0;
    max-width: 180px;
  }
}
@media (max-width: 767px) {
  .video-shape {
    width: 50px;
  }
}
.xb-video_wrapper .xb-item--img {
  overflow: hidden;
}
@media (max-width: 767px) {
  .play_videos .vd-paly {
    width: 70px;
    height: 70px;
  }
}
.video-inner {
  margin-top: -80px;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .video-inner {
    margin-top: -50px;
  }
}
@media (max-width: 1199px) {
  .video-inner {
    margin-top: -40px;
  }
}
@media (max-width: 767px) {
  .video-inner {
    margin-top: -20px;
  }
}
.marq-strok {
  font-weight: 700;
  font-size: 100px;
  text-transform: uppercase;
  color: transparent;
  line-height: 1;
  -webkit-text-stroke: 2px #ffc500;
	letter-spacing: 1px;
}
@media (max-width: 1199px) {
  .marq-strok {
    font-size: 100px;
  }
}
@media (max-width: 991px) {
  .marq-strok {
    font-size: 100px;
  }
}
@media (max-width: 767px) {
  .marq-strok {
    font-size: 60px;
  }
}
.marq-strok:hover {
  color: transparent;
}
.marq-strok--white {
  -webkit-text-stroke: 1.4px rgba(255, 255, 255, 0.3);
}
.marq-strok--full_white {
  -webkit-text-stroke: 2px #fff;
}
.black-strock {
  background: #000;
  transform: rotate(-5deg);
  margin-left: -12px;
  margin-right: -5px;
}
.white-strock {
  background: #fff;
  z-index: 1;
  position: relative;
  border-bottom: 1px solid var(--color-primary);
}
.brand-marquee-item {
  margin-right: 60px;
}
.cta-wrap {
  padding: 100px 0;
  padding-top: 70px;
}
@media (max-width: 991px) {
  .cta-wrap {
    padding-bottom: 0;
  }
}
.cta-wrap .xb-item--line {
  width: 100px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 50px;
  margin-top: 30px;
}
.cta-wrap .xb-item--content {
  line-height: 26px;
  max-width: 249px;
  text-transform: uppercase;
  color: #999999;
}
.cta-wrap .xb-item--content span {
  font-weight: 600;
  color: #fff;
}
.cta-wrap .xb-item--link {
  font-weight: 500;
  font-size: 48px;
  line-height: 58px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--color-white);
}
@media (max-width: 991px) {
  .cta-wrap .xb-item--link {
    font-size: 38px;
    line-height: 50px;
  }
}
@media (max-width: 767px) {
  .cta-wrap .xb-item--link {
    font-size: 28px;
    line-height: 40px;
  }
}
.cta-wrap .xb-item--link a {
  color: var(--color-primary);
  text-decoration: underline;
  font-family: var(--font-newyork);
}
@media (max-width: 991px) {
  .footer-wrap {
    padding-bottom: 70px;
  }
}
.team-item {
  display: inline-block;
  margin-top: 60px;
  margin-right: 35px;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .team-item {
    margin-top: 25px;
  }
}
@media (max-width: 1199px) {
  .team-item {
    margin-top: 25px;
  }
}
.team-item .xb-item--desig {
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-default);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.team-item .xb-item--name {
  display: inline-block;
  font-size: 64px;
  color: var(--color-heading);
  position: relative;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .team-item .xb-item--name {
    font-size: 50px;
  }
}
@media (max-width: 1199px) {
  .team-item .xb-item--name {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .team-item .xb-item--name {
    font-size: 28px;
  }
}
.team-item .xb-item--name:hover::before {
  width: 100%;
}
.team-item .xb-item--name a {
  color: currentColor;
}
.team-item .xb-item--name span {
  font-family: var(--font-newyork);
  font-weight: 400;
}
.team-item .xb-item--name::before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 5px;
  height: 4px;
  width: 0;
  background: var(--color-heading);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.team-item:hover .xb-item--desig {
  color: var(--color-primary);
}
.team-item .xb-img-reveal-wrapper {
  width: 250px;
}
.xb-team_shape {
  position: absolute;
  left: 0;
  bottom: 0;
}
.xb-team-item {
  background: var(--color-white);
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  padding: 20px;
}
.xb-team-item:hover .xb-item--img img {
  transform: scale(1.1);
}
.xb-team-item .xb-item--img {
  overflow: hidden;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}
.xb-team-item .xb-item--img img {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.xb-team-item .xb-item--desig {
  font-size: 14px;
  text-transform: uppercase;
  color: var(--color-primary);
}
.xb-team-item .xb-item--name {
  font-weight: 500;
  font-size: 32px;
  letter-spacing: -0.01em;
}
@media (max-width: 1199px) {
  .xb-team-item .xb-item--name {
    font-size: 18px;
  }
}
.xb-team-item .xb-item--name span {
  font-family: var(--font-newyork);
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .xb-team-item .xb-item--holder {
    margin-top: 50px;
  }
}
@media (max-width: 1199px) {
  .xb-team-item .xb-item--holder {
    margin-top: 50px;
  }
}
.team-storke_heading {
    padding: 35px 0 30px;
    background: #000;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .xb-team_wrapper {
    margin-top: -30px;
  }
}
@media (max-width: 1199px) {
  .xb-team_wrapper {
    margin-top: -30px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .pb-xl-150 {
    padding-bottom: 150px;
  }
}
@media (max-width: 1199px) {
  .pb-xl-150 {
    padding-bottom: 120px;
  }
}
@media (max-width: 767px) {
  .pb-xl-150 {
    padding-bottom: 80px;
  }
}
.team-item-two .xb-item--image {
  overflow: hidden;
}
.team-item-two .xb-item--image img {
  width: 100%;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.team-item-two .xb-item--desig {
  font-size: 14px;
  color: var(--color-primary);
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 3px;
}
.team-item-two .xb-item--name {
  font-size: 24px;
  font-weight: 500;
  text-transform: uppercase;
}
@media (max-width: 1199px) {
  .team-item-two .xb-item--name {
    font-size: 16px;
  }
}
.team-item-two .xb-item--name a {
  color: currentColor;
}
.team-item-two .xb-item--social {
  gap: 18px;
  margin-top: 18px;
}
.team-item-two .xb-item--social li {
  -webkit-transform: translateY(10px);
  -ms-transform: translateY(10px);
  transform: translateY(10px);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
}
.team-item-two .xb-item--social li a {
  font-size: 14px;
  color: #999999;
  font-weight: 500;
}
.team-item-two .xb-item--social li a:hover {
  color: var(--color-black);
  text-decoration: underline;
}
.team-item-two:hover .xb-item--image img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.team-item-two:hover .xb-item--social li {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.team-item-two:hover .xb-item--social li:nth-child(2) {
  transition-delay: .1s;
}
.team-item-two:hover .xb-item--social li:nth-child(3) {
  transition-delay: .2s;
}
.team-item-two:hover .xb-item--social li:nth-child(4) {
  transition-delay: .3s;
}
.team-single-inner {
  width: 83%;
  border-right: 1px solid #DFDFDF;
  padding-right: 60px;
  margin-right: 80px;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .team-single-inner {
    margin-right: 50px;
  }
}
@media (max-width: 1199px) {
  .team-single-inner {
    width: 87%;
    padding-right: 20px;
    margin-right: 20px;
  }
}
@media (max-width: 991px) {
  .team-single-inner {
    width: 100%;
    padding-right: 0;
    margin-right: 0;
  }
}
.team-single-inner .xb-item--image {
  width: 600px;
  margin-right: 120px;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .team-single-inner .xb-item--image {
    margin-right: 50px;
  }
}
@media (max-width: 1199px) {
  .team-single-inner .xb-item--image {
    width: 400px;
    margin-right: 30px;
  }
}
@media (max-width: 991px) {
  .team-single-inner .xb-item--image {
    margin-right: 0;
  }
}
.team-single-inner .xb-item--content {
  width: calc(100% - 720px);
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .team-single-inner .xb-item--content {
    width: calc(100% - 650px);
  }
}
@media (max-width: 1199px) {
  .team-single-inner .xb-item--content {
    width: calc(100% - 430px);
  }
}
@media (max-width: 991px) {
  .team-single-inner .xb-item--content {
    width: 100%;
  }
}
.team-single-info .xb-item--icon {
  position: absolute;
  top: 0;
  left: 0;
}
.team-brand {
  text-align: center;
}
@media (max-width: 991px) {
  .team-brand {
    display: flex;
    gap: 30px;
  }
}
@media (max-width: 1199px) {
  .team-brand-item {
    max-width: 80px;
  }
}
.team-brand-item img {
  opacity: 0.3;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.team-brand-item img:hover {
  opacity: 1;
}
.team-brand-item:not(:last-child) {
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .team-brand-item:not(:last-child) {
    margin-bottom: 0;
  }
}
.team-single-info {
  gap: 20px 45px;
}
.team-single-info-item {
  position: relative;
  padding-left: 40px;
  gap: 45px;
  border-bottom: 1px solid #E8E8E8;
  padding-bottom: 14px;
}
.team-single-info-item .xb-item--icon {
  position: absolute;
  top: 0;
  left: 0;
}
.team-single-info-item .xb-item--info {
  font-size: 16px;
  margin-bottom: 2px;
}
.team-single-info-item .xb-item--desc {
  font-size: 14px;
}
.award-item {
  padding: 34px 0;
  position: relative;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  margin-top: -1px;
}
.award-item::before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
  height: 1px;
  z-index: 1;
  width: 0;
  background: var(--color-heading);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.award-item:hover::before {
  width: 100%;
}
.award-item:hover .xb-item--icon img {
  filter: brightness(0);
}
.award-item:hover .xb-item--title {
  color: #000;
}
.award-item:hover .xb-item--title span {
  color: var(--color-primary);
}
.award-item:hover .xb-item--icon svg path {
  fill: var(--color-primary);
}
.award-item .xb-item--title {
  font-weight: 500;
  font-size: 36px;
  color: rgba(0, 0, 0, 0.6);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .award-item .xb-item--title {
    font-size: 17px;
    letter-spacing: 0;
  }
}
.award-item .xb-item--title span {
  font-weight: 500;
  font-size: 16px;
  margin-left: 10px;
  color: #999999;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.award-item .xb-item--icon svg path {
  fill: #DFDFDF;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.award-item .xb-item--line, .award-item .xb-item--line-bottom {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #DFDFDF;
}
.award-item .xb-item--line-bottom {
  top: auto;
  bottom: 0;
}
.award-item .xb-img-reveal-wrapper {
  width: 480px;
  z-index: 1;
}
@media (max-width: 1199px) {
  .award-item .xb-img-reveal-wrapper {
    width: 350px;
  }
}
@media (max-width: 767px) {
  .award-item .xb-img-reveal-wrapper {
    width: 200px;
  }
}
.award-single-item {
  border-bottom: 1px solid var(--color-border);
  min-height: 90px;
  padding-top: 30px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.award-single-item:first-child {
  border-top: 1px solid var(--color-border);
}
.award-single-item:hover, .award-single-item.active {
  min-height: 260px;
}
.award-single-item:hover .xb-item--hover, .award-single-item.active .xb-item--hover {
  height: 100%;
  opacity: 1;
  visibility: visible;
  border-bottom: 1px solid var(--color-heading);
}
.award-single-item .xb-item--desc {
  font-weight: 500;
  width: 40%;
  text-transform: uppercase;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .award-single-item .xb-item--desc {
    width: 30%;
  }
}
@media (max-width: 1199px) {
  .award-single-item .xb-item--desc {
    width: 25%;
  }
}
@media (max-width: 991px) {
  .award-single-item .xb-item--desc {
    width: 23%;
  }
}
@media (max-width: 767px) {
  .award-single-item .xb-item--desc {
    width: 54%;
  }
}
.award-single-item .xb-item--contant li {
  font-weight: 500;
  line-height: 40px;
  color: var(--color-gray);
  text-transform: uppercase;
}
.award-single-item .xb-item--img {
  width: 35.7%;
  margin-left: -95px;
  margin-right: 95px;
}
@media (max-width: 991px) {
  .award-single-item .xb-item--img {
    width: 30%;
    margin-left: 0;
    margin-right: 20px;
  }
}
.award-single-item .xb-item--hover {
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 100%;
  opacity: 0;
  overflow: hidden;
  background: #fff;
  padding-top: 30px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.award-warp {
  padding-left: 200px;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .award-warp {
    padding-left: 178px;
  }
}
@media (max-width: 1199px) {
  .award-warp {
    padding-left: 20px;
  }
}
@media (max-width: 767px) {
  .pt-xs-30 {
    padding-top: 30px;
  }
}
.xb-award_wrap {
  z-index: 1;
  position: relative;
}
.xb-contact_left .xb-item--img {
  margin-right: 20px;
}
.xb-contact_left .xb-item--title {
    font-weight: normal;
    max-width: 400px;
    color: var(--color-heading);
    font-size: 30px;
    line-height: normal;
}
.xb-contact_left .xb-item--title span {
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
    text-transform: uppercase;
    color: var(--color-default);
    letter-spacing: 0.5px;
}
.contact-form .input-field {
  margin-bottom: 5px;
}
.contact-form .input-field::before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  z-index: 1;
  background: var(--color-heading);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.contact-form .input-field .xb-icon {
  position: absolute;
  right: 20px;
  top: 45%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.contact-form .input-field:hover::before {
  width: 100%;
}
.contact-form .input-field input, .contact-form .input-field textarea {
  border-bottom: 1px solid var(--color-border);
  height: 60px;
  background: transparent;
  font-size: 16px;
  font-weight: normal;
  padding-right: 50px;
  text-transform: capitalize;
  color: var(--color-heading);
}
.contact-form .input-field textarea {
  min-height: 144px;
}
.contact-form .input-field .nice-select:focus {
  color: var(--color-heading);
}
.contact-form input::placeholder, .contact-form textarea::placeholder {
  text-transform: uppercase;
}
.contact-form .nice-selt-field {
  height: 60px;
}
.contact-form .nice-selt-field .nice-select {
  border: none;
  border-radius: 0;
  height: 60px;
  font-weight: 500;
  background: transparent;
  text-transform: uppercase;
  border-bottom: 1px solid var(--color-border);
}
.contact-form .nice-selt-field .nice-select::after {
  height: 10px;
  width: 10px;
  top: 42%;
  border-bottom: 2px solid var(--color-heading);
  border-right: 2px solid var(--color-heading);
}
.contact-form .input-textarea::before {
  bottom: 9px;
}
.contact-form .input-textarea .xb-icon {
  top: 20%;
}
.xb-content .title {
  font-weight: 500;
  margin-bottom: 10px;
  display: inline-block;
  color: var(--color-default);
  text-transform: uppercase;
}
.xb-content .contact-btn {
  padding-top: 5px;
  display: inline-block;
}
.contact-image {
  overflow: hidden;
  max-width: 900px;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}
.contact-action .title {
  font-weight: 500;
  margin-bottom: 12px;
  display: inline-block;
  color: var(--color-gray);
  text-transform: uppercase;
}
.contact-action .xb-holder:nth-child(1) {
  width: 55%;
}
@media (max-width: 1199px) {
  .contact-action .xb-holder:nth-child(1) {
    width: 100%;
  }
}
.contact-action .xb-holder:nth-child(2) {
  width: 45%;
  padding-left: 23px;
}
@media (max-width: 1199px) {
  .contact-action .xb-holder:nth-child(2) {
    width: 100%;
    padding-left: 0;
  }
}
.contact-action .xb-holder .stock-btn li {
  margin-bottom: 10px;
}
.contact-wrap {
  -webkit-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  transform: translateY(-20px);
}
@media (max-width: 1199px) {
  .contact-wrap {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    margin-left: 0;
  }
}
.contact-form-inner {
  padding-top: 235px;
}
@media (max-width: 1199px) {
  .contact-form-inner {
    padding-top: 150px;
  }
}
@media (max-width: 991px) {
  .contact-form-inner {
    padding: 112px 20px 70px;
  }
}
@media (max-width: 767px) {
  .contact-form-inner {
    padding: 60px 20px 70px;
  }
}
.contact-title {
  font-size: 180px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: -180px;
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 1200px) and (max-width: 1300px) {
  .contact-title {
    font-size: 130px;
    margin-bottom: -130px;
  }
}
@media (max-width: 1199px) {
  .contact-title {
    font-size: 120px;
    margin-bottom: -126px;
  }
}
@media (max-width: 991px) {
  .contact-title {
    font-size: 80px;
    margin-bottom: -80px;
  }
}
@media (max-width: 767px) {
  .contact-title {
    font-size: 40px;
    margin-bottom: -52px;
    line-height: 1.2;
  }
}
.contact-title .stroked-text {
  color: #e6e6e6;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--color-primary);
}
.contact-title span span {
  font-family: var(--font-newyork);
  font-weight: 400;
}
.contact-single-form {
  margin: 0 auto;
  max-width: 814px;
}
.contact-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  width: 100%;
}
@media (max-width: 767px) {
  .contact-item {
    width: 100%;
    flex-wrap: wrap;
    justify-content: start;
  }
}
.contact-item .nice-select {
  background: var(--color-white);
  height: 60px;
  line-height: 60px;
  text-transform: uppercase;
  border-radius: 0;
  border: 0;
  margin-bottom: 0;
  color: var(--color-heading);
  background: #fff;
}
.contact-item .input-fields {
  width: 100%;
}
.contact-item .input-fields input, .contact-item .input-fields textarea {
  height: 60px;
  width: 100%;
  text-transform: capitalize;
  border-radius: 0;
  border: 0;
  margin-bottom: 0;
  padding-right: 60px;
  background: #fff;
  color: var(--color-heading);
}
.contact-item .input-fields input::placeholder, .contact-item .input-fields textarea::placeholder {
  text-transform: uppercase;
}
.contact-item .input-fields .xb-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.contact-item .nice-select {
  text-transform: uppercase;
}
.contact-item .nice-select::after {
  border-bottom: 2px solid #000;
  border-right: 2px solid #000;
  height: 8px;
  width: 8px;
}
.contact-item label {
  min-width: 214px;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  color: var(--color-heading);
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .contact-item label {
    min-width: 100%;
    margin-bottom: 5px;
  }
}
.contact-item .textarea-field .xb-icon {
  position: absolute;
  right: 20px;
  top: 10%;
}
.contact-item .textarea-field label {
  padding-top: 8px;
}
.contact-item .textarea-field textarea {
  min-height: 200px;
}
.form-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  background: #000;
  min-width: 600px;
  padding: 15px 20px;
}
@media (max-width: 991px) {
  .form-btn {
    min-width: 441px;
  }
}
@media (max-width: 767px) {
  .form-btn {
    min-width: 100%;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1300px) {
  .contact-inner {
    margin: 0;
  }
}
@media (max-width: 1199px) {
  .contact-inner {
    margin: 0;
  }
}
.contact-inner .xb-content {
  gap: 20px;
}
.contact-img {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-right: 30px;
}
@media (max-width: 991px) {
  .contact-img {
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .contact-img {
    gap: 20px;
  }
}
.contact-info-list li {
  color: var(--color-black) !important;
}
.contact-info-list li a {
  color: currentColor !important;
}
.direction-link {
  font-weight: 700;
  font-size: 14px;
  margin-top: 45px;
  display: inline-block;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(0, 0, 0, 0.4);
}
.direction-link:hover {
  color: var(--color-primary);
  gap: 12px;
}
.contact-content {
  padding-left: 65px;
}
@media (max-width: 1199px) {
  .contact-content {
    padding-left: 20px;
  }
}
@media (max-width: 991px) {
  .contact-content {
    padding-left: 0;
  }
}
.google-map {
  height: 700px;
}
@media (max-width: 1199px) {
  .google-map {
    height: 400px;
  }
}
.google-map iframe {
  height: 100%;
  width: 100%;
}
.breadcrumb {
  padding-top: 85px;
  padding-bottom: 110px;
  min-height: 450px;
  z-index: 1;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .breadcrumb {
    min-height: 370px;
  }
}
@media (max-width: 1199px) {
  .breadcrumb {
    min-height: 330px;
    background-position: 75% center;
  }
}
@media (max-width: 767px) {
  .breadcrumb {
    padding-top: 80px;
    padding-bottom: 80px;
    background-position: 45% center;
    min-height: 260px;
  }
}
.breadcrumb__subtitle {
  font-size: 20px;
  font-weight: 500;
  color: var(--color-primary);
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 26px;
}
@media (max-width: 1199px) {
  .breadcrumb__subtitle {
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .breadcrumb__subtitle {
    font-size: 16px;
  }
}
.breadcrumb__title {
    font-size: 65px;
    line-height: 40px;
    color: var(--color-white);
    font-weight: 400;
    letter-spacing: 1px;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .breadcrumb__title {
    font-size: 60px;
  }
}
@media (max-width: 1199px) {
  .breadcrumb__title {
    font-size: 50px;
  }
}
.breadcrumb__title span {
  font-family: var(--font-newyork);
}
@media (max-width: 767px) {
  .breadcrumb__title {
    font-size: 34px;
    line-height: 45px;
    letter-spacing: -0.44px;
    margin-bottom: 5px;
  }
}
.breadcrumb__list {
  display: inline-flex;
  justify-content: flex-end;
  padding: 4px 12px;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  border: 1px solid var(--color-primary);
}
.breadcrumb__list li {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.2;
  display: inline-block;
  color: var(--color-white);
  position: relative;
}
.breadcrumb__list li:not(:first-child) {
  padding-left: 11px;
}
.breadcrumb__list li + .breadcrumb-item::before {
  color: var(--color-primary);
  content: "\f105";
  font-weight: 400;
  font-family: "Font Awesome 6 Pro";
  font-size: 12px;
  -webkit-transform: translate(-1px, 3px);
  -ms-transform: translate(-1px, 3px);
  transform: translate(-1px, 3px);
}
.breadcrumb__list li a {
  color: #ffffff;
  opacity: 0.5;
}
.breadcrumb__list li a:hover {
  opacity: 1;
}
.breadcrumb__shape .shape {
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
    width: 100%;
}
.breadcrumb__shape .shape--1 {
    opacity: 0.30;
}
/*
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .breadcrumb__shape .shape--1 {
    max-width: 500px;
  }
}
@media (max-width: 1199px) {
  .breadcrumb__shape .shape--1 {
    max-width: 400px;
  }
}
*/
.breadcrumb__shape .shape--2 {
  top: 11px;
  left: 48%;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .breadcrumb__shape .shape--2 {
    max-width: 100px;
  }
}
@media (max-width: 1199px) {
  .breadcrumb__shape .shape--2 {
    max-width: 100px;
  }
}
@media (max-width: 991px) {
  .breadcrumb__shape .shape--2 {
    display: none;
  }
}
.thm-btn {
  line-height: 1;
  padding: 21px 25px;
  font-size: 16px;
  overflow: hidden;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  background-color: var(--color-primary);
  text-transform: uppercase;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  z-index: 1;
}
.thm-btn::before {
  top: 0px;
  width: 0px;
  left: auto;
  right: 0px;
  z-index: -1;
  bottom: 0px;
  content: "";
  position: absolute;
  background-color: #000;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.thm-btn i {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.thm-btn:hover {
  color: var(--color-white);
}
.thm-btn:hover::before {
  left: 0px;
  width: 100%;
  right: auto;
}
.thm-btn .btn_icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-heading);
  background: var(--color-white);
  border-left: 1px solid var(--color-border);
}
.thm-btn--border {
  border: 1px solid var(--color-heading);
  background-color: transparent;
  color: var(--color-heading);
}
.thm-btn--border:hover {
  color: #fff;
  border-color: var(--color-black);
}
.thm-btn--border:hover i {
  color: var(--color-white);
}
.thm-btn--border i {
  color: var(--color-primary);
}
.thm-btn--black {
  color: var(--color-white);
  background: var(--color-heading);
}
.thm-btn--black::before {
  background-color: var(--color-primary);
}
.thm-btn--black:hover {
  color: var(--color-white);
}
.thm-btn--black .btn_icon {
  border-left: 1px solid var(--color-heading);
}
.thm-btn.hover-black:hover {
  color: var(--color-white);
}
.thm-btn.hover-black:hover i {
  color: var(--color-white);
}
.thm-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  text-transform: uppercase;
  background: var(--color-white);
  color: var(--color-heading);
  flex-direction: column;
  height: 180px;
  width: 180px;
  border-radius: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 1px solid var(--color-heading);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  line-height: 1.1;
}
.thm-circle::before {
  height: 100%;
  width: 100%;
  content: '';
  background: #000;
  top: 0;
  left: 0;
  position: absolute;
  border-radius: 100%;
  z-index: -1;
  opacity: 0;
  transform: scale(0.5);
  visibility: hidden;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.thm-circle:hover {
  color: #fff;
}
.thm-circle:hover span {
  transform: translateY(4px);
}
.thm-circle:hover span svg path {
  fill: #fff;
}
.thm-circle:hover::before {
  opacity: 1;
  transform: scale(1);
  visibility: visible;
}
.thm-circle span {
  margin-top: 12px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.thm-circle--fill {
  border: 1px solid var(--color-white);
  opacity: 0;
  visibility: hidden;
}
.stock-btn li {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  cursor: pointer;
  text-transform: uppercase;
  color: var(--color-heading);
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  padding: 5px 20px;
  border: 1px solid var(--color-border);
}
.stock-btn li:not(:last-child) {
  margin-right: 10px;
}
.stock-btn.stock-btn-action li.active {
  border: 1px solid var(--color-heading);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.stock-btn.stock-btn-action-two li.active {
  border: 1px solid var(--color-heading);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.border-btn {
  font-weight: 600;
  font-size: 16px;
  padding-bottom: 7px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--color-heading);
  display: inline-block;
  border-bottom: 1px solid var(--color-primary);
  line-height: 1;
}
.border-btn:hover {
  color: var(--color-primary);
}
.border-btn:hover span svg path {
  fill: var(--color-primary);
}
.border-btn span {
  margin-left: 9px;
  width: 16px;
}
.border-btn span svg {
  width: 16px;
}
.border-btn span svg path {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
/*----------------------------------------*/
/*  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: #1140C0;
}
.xb-backtotop .scroll {
  z-index: 1;
  width: 40px;
  height: 40px;
  display: block;
  background-color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: var(--color-white);
  font-size: 14px;
}
.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;
}
.history-item {
  padding: 50px 40px;
  background-color: var(--color-white);
}
@media (max-width: 1199px) {
  .history-item {
    margin-top: 30px;
  }
}
.history-item .xb-item--number {
  color: var(--color-primary);
  display: inline-block;
  margin-bottom: 40px;
}
.history-item .xb-item--title {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 15px;
}
@media (max-width: 1199px) {
  .history-item .xb-item--title {
    font-size: 22px;
  }
}
.history-item .xb-item--title span {
  font-family: var(--font-newyork);
}
.funfact-inner {
  gap: 0px;
}
.funfact-item {
    position: relative;
    width: 25%;
    border-right: 1px solid #e3e3e3;
    padding: 50px 0;
}
.funfact-item .xb-item--number {
  font-size: 82px;
  font-family: var(--font-newyork);
  font-weight: 400;
  overflow: hidden;
	text-align: center;
  line-height: 1;
	letter-spacing: 0.5px;
}
@media (max-width: 1199px) {
  .funfact-item .xb-item--number {
    font-size: 70px;
  }
}
@media (max-width: 991px) {
  .funfact-item .xb-item--number {
    font-size: 70px;
  }
}
.funfact-item .xb-item--number span {
  width: auto;
  padding: 0px;
  margin-left: -1px;
  line-height: 1;
  overflow: unset;
}
.funfact-item .xb-item--title {
/*
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
*/
  width: 100%;
  text-align: center;
  font-size: 16px;
  text-transform: uppercase;
}
.funfact-item .xb-item--title span {
    background-color: var(--color-white);
    padding: 3px 10px;
    text-align: center;
    width: 100%;
    display: block;
    font-weight: 500;
    letter-spacing: 0.5px;
}
.funfact-item .xbo.xbo-auto-theme .xbo-digit .xbo-digit-inner, .funfact-item .xbo.xbo-theme-default .xbo-digit .xbo-digit-inner {
  overflow: unset;
}
.gallery-slider {
  margin: 0 -190px;
}
@media (max-width: 991px) {
  .gallery-slider {
    margin: 0;
  }
}
.gallery-item {
  position: relative;
}
.gallery-item .gallery-image {
  overflow: hidden;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.gallery-item .gallery-image img {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.gallery-item:hover .gallery-image {
  transform: scale(0.98);
}
.gallery-item:hover .gallery-image img {
  transform: scale(1.11);
}
.career-gallery-slider {
  margin-left: -350px;
  margin-right: -350px;
}
@media (max-width: 1199px) {
  .career-gallery-slider {
    margin-left: -200px;
    margin-right: -200px;
  }
}
@media (max-width: 991px) {
  .career-gallery-slider {
    margin-left: 0;
    margin-right: 0;
  }
}
.career-item {
  padding: 34px 0;
  position: relative;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  margin-top: -1px;
  gap: 30px;
}
.career-item::before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
  height: 1px;
  z-index: 1;
  width: 0;
  background: var(--color-primary);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.career-item:hover::before {
  width: 100%;
}
.career-item:hover .xb-item--btn {
  background-color: var(--color-primary);
  color: var(--color-white);
}
.career-item .xb-item--holder {
  gap: 10px 40px;
}
.career-item .xb-item--item {
  width: 365px;
}
.career-item .xb-item--item span {
  font-size: 14px;
  display: inline-block;
  margin-bottom: 4px;
}
.career-item .xb-item--title {
  font-weight: 500;
  font-size: 32px;
  color: var(--color-black);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .career-item .xb-item--title {
    font-size: 17px;
    letter-spacing: 0;
  }
}
.career-item .xb-item--title span {
  font-weight: 500;
  font-size: 16px;
  margin-left: 10px;
  color: #999999;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.career-item .xb-item--btn {
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-heading);
  line-height: 1;
  border: 1px solid var(--color-primary);
  border-radius: 30px;
  padding: 5px 9px;
  display: inline-block;
  margin-right: 14px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.career-item .xb-item--line, .career-item .xb-item--line-bottom {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #DFDFDF;
}
.career-item .xb-item--line-bottom {
  top: auto;
  bottom: 0;
}
.career-item .xb-img-reveal-wrapper {
  width: 480px;
  z-index: 1;
}
@media (max-width: 1199px) {
  .career-item .xb-img-reveal-wrapper {
    width: 350px;
  }
}
@media (max-width: 767px) {
  .career-item .xb-img-reveal-wrapper {
    width: 200px;
  }
}
.xb-career_wrap {
  z-index: 1;
  position: relative;
}
.career-hr {
  padding-top: 104px;
  border-color: #000;
}
.career-info-inner {
  gap: 30px 40px;
  border-bottom: 1px solid #DFDFDF;
  padding-bottom: 35px;
}
.career-info-head p {
  font-size: 14px;
  margin-bottom: 7px;
}
.career-info-head p span {
  color: var(--color-primary);
}
.career-info-head h2 {
  font-size: 32px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .career-info-head h2 {
    font-size: 24px;
  }
}
.career-info {
  gap: 20px 40px;
}
.career-info .xb-item--item {
  font-size: 14px;
  line-height: 24px;
}
.career-info .xb-item--item span {
  color: #000;
}
.career-single-content {
  margin-right: -50px;
}
@media (max-width: 1199px) {
  .career-single-content {
    margin-right: 0;
  }
}
.career-single-content h3 {
  font-size: 24px;
  margin-bottom: 27px;
}
@media (max-width: 767px) {
  .career-single-content h3 {
    font-size: 20px;
  }
}
.career-single-content p:not(:last-child) {
  margin-bottom: 30px;
}
.career-list li {
  padding-left: 40px;
  position: relative;
}
.career-list li::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 20px;
  height: 1px;
  background-color: var(--color-primary);
  content: "";
}
.career-skills {
  gap: 10px;
}
.career-skills li {
  padding: 13px 24px;
  text-transform: uppercase;
  border: 1px solid #DFDFDF;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-black);
  line-height: 1;
}
.career-sidebar {
  margin-left: 80px;
}
@media (max-width: 1199px) {
  .career-sidebar {
    margin-left: 20px;
  }
}
@media (max-width: 991px) {
  .career-sidebar {
    margin-left: 0;
  }
}
.career-form {
  padding: 40px 53px;
  width: 100%;
  margin: 0 auto;
  border: 1px solid #DFDFDF;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .career-form {
    padding: 30px;
  }
}
@media (max-width: 1199px) {
  .career-form {
    padding: 30px;
  }
}
.career-form h2 {
  font-size: 18px;
  font-weight: 500;
  text-align: left;
  margin-bottom: 20px;
}
.career-form .form-group {
  position: relative;
  margin-bottom: 10px;
}
.career-form .form-group .icon {
  position: absolute;
  top: 10px;
  font-size: 13px;
  left: 20px;
  color: #000;
}
.career-form .upload-container {
  font-family: Arial, sans-serif;
  color: #333;
}
.career-form .required {
  color: red;
}
.career-form .file-input {
  margin-top: 8px;
  font-size: 16px;
  padding: 8px;
  cursor: pointer;
  border-radius: 5px;
  background-color: #F1F1F1;
  color: #999999;
  width: 100%;
}
.career-form .form-group label {
  font-size: 14px;
  display: block;
  color: #000;
  font-weight: 500;
  margin-bottom: 5px;
  margin-top: 23px;
}
.career-form .form-group label .fa {
  margin-right: 5px;
}
.career-form .form-group .required {
  color: red;
}
.career-form input[type="text"], .career-form input[type="email"], .career-form input[type="tel"], .career-form input[type="number"], .career-form input[type="url"], .career-form textarea {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #DFDFDF;
  outline: none;
  padding-left: 42px;
  height: 50px;
  background-color: transparent;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.career-form input[type="text"]:focus, .career-form input[type="email"]:focus, .career-form input[type="tel"]:focus, .career-form input[type="number"]:focus, .career-form input[type="url"]:focus, .career-form textarea:focus {
  border-color: var(--color-primary);
}
.career-form textarea {
  resize: none;
  min-height: 200px;
}
.career-form .upload-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}
.career-form .upload-input {
  display: none;
}
.career-form .upload-label {
  display: inline-block;
  padding: 10px 20px;
  background-color: #F1F1F1;
  font-size: 14px;
  color: #000;
  cursor: pointer;
  width: 100%;
  text-align: center;
}
.career-form .file-name {
  font-size: 14px;
  color: #999999;
  margin-left: 10px;
  display: inline-block;
}
.report-job {
  text-align: center;
  font-size: 14px;
  color: #000;
  display: inline-block;
  margin-top: 22px;
  padding-left: 53px;
  font-weight: 700;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .report-job {
    padding-left: 30px;
  }
}
@media (max-width: 1199px) {
  .report-job {
    padding-left: 30px;
  }
}
.report-job .fa {
  margin-right: 5px;
  color: var(--color-primary);
}
.pricing-item {
  background-color: var(--color-white);
  padding: 40px 50px 45px;
}
@media (max-width: 1199px) {
  .pricing-item {
    padding: 35px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .pricing-item {
    padding: 35px;
  }
}
.pricing-item .xb-item--price {
  font-size: 80px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 13px;
}
@media (max-width: 1199px) {
  .pricing-item .xb-item--price {
    font-size: 65px;
  }
}
.pricing-item .xb-item--price span {
  font-size: 40px;
}
.pricing-item .xb-item--title {
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 7px;
}
@media (max-width: 1199px) {
  .pricing-item .xb-item--title {
    font-size: 28px;
  }
}
.pricing-item .xb-item--title span {
  font-family: var(--font-newyork);
}
.pricing-item .xb-item--content {
  margin-bottom: 30px;
}
.pricing-item .xb-item--list {
  padding-top: 25px;
  border-top: 1px solid #DFDFDF;
}
.pricing-item .xb-item--list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--color-black);
}
.pricing-item .xb-item--list li:not(:last-child) {
  margin-bottom: 13px;
}
.pricing-item .xb-item--list li i {
  color: var(--color-primary);
}
.pricing-item .xb-item--btn .thm-btn {
  width: 100%;
}
.pricing-item .xb-item--text {
  text-align: center;
  color: #999999;
  margin-top: 10px;
  font-size: 14px;
}
/* search css */
.header-search-form-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 400px;
  z-index: 9999;
  background-color: #fff;
  transform: translate3d(0, -100%, 0);
  transition: transform 0.85s cubic-bezier(0.175, 1, 0.275, 1), visibility 0.8s step-end;
}
@media (max-width: 767px) {
  .header-search-form-wrapper {
    height: 200px;
  }
}
.header-search-form-wrapper.open {
  transition: transform 0.85s cubic-bezier(0.175, 1, 0.275, 1), visibility 0.8s step-start;
  transform: translate3d(0, 0, 0);
}
.header-search-form-wrapper .search-form {
  margin: 0 auto;
  position: relative;
  text-align: center;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
}
.header-search-form-wrapper .search-form input[type="search"] {
  height: 65px;
  line-height: 65px;
  font-size: 28px;
  background-color: transparent;
  text-align: left;
  color: balck;
  border: none;
  border-bottom: 1px solid #ccc;
  padding-left: 0;
  border-radius: 0;
  width: 100%;
  color: #000;
}
@media (max-width: 767px) {
  .header-search-form-wrapper .search-form input[type="search"] {
    height: 45px;
    line-height: 50px;
    font-size: 18px;
  }
}
.header-search-form-wrapper .search-form input[type="search"]::placeholder {
  color: #a4a4a4;
  opacity: 1;
}
.header-search-form-wrapper .search-form input[type="search"]:-ms-input-placeholder {
  color: #a4a4a4;
}
.header-search-form-wrapper .search-form input[type="search"]::-ms-input-placeholder {
  color: #a4a4a4;
}
.header-search-form-wrapper .search-submit {
  position: absolute;
  height: 50px;
  width: 50px;
  bottom: 0;
  right: 0;
  background-color: transparent;
  color: var(--color-heading);
  font-size: 24px;
}
@media (max-width: 767px) {
  .header-search-form-wrapper .search-submit {
    height: 35px;
    font-size: 20px;
  }
}
.header-search-form-wrapper .xb-search-close {
  width: 65px;
  height: 65px;
  border-width: 18px;
  position: absolute;
  top: 10px;
  right: -26px;
  z-index: 2;
  background-color: transparent;
}
.header-search-form-wrapper .xb-search-close::before, .header-search-form-wrapper .xb-search-close::after {
  background-color: var(--color-black);
}
@media (max-width: 767px) {
  .header-search-form-wrapper .xb-search-close {
    width: 50px;
    height: 50px;
    background-color: transparent;
  }
}
.header-search-container {
  width: 100%;
  height: 100%;
  max-width: 1320px;
  padding: 0 15px;
  border: 0;
  background: 0 0;
  transform: translate3d(0, calc(100% - 100px), 0);
  transition: transform 0.85s cubic-bezier(0.175, 1, 0.275, 1);
  margin: auto;
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 1199px) {
  .header-search-container {
    padding: 0 50px;
  }
}
@media (max-width: 767px) {
  .header-search-container {
    padding: 0 15px;
  }
}
.header-search-form-wrapper.open .header-search-container {
  transform: translate3d(0, 0, 0);
  opacity: 1;
  visibility: visible;
}
/*----------------------------------------*/
/*  27. sidebar
/*----------------------------------------*/
.offcanvas-sidebar .sidebar-logo, .offcanvas-sidebar .sidebar-content, .offcanvas-sidebar .sidebar-contact-info, .offcanvas-sidebar .sidebar-newsletter, .offcanvas-sidebar .sidebar-social {
  -webkit-transition: 0.3s var(--easing);
  -o-transition: 0.3s var(--easing);
  transition: 0.3s var(--easing);
  -webkit-transform: translateY(30px);
  -ms-transform: translateY(30px);
  transform: translateY(30px);
  opacity: 0;
}
.offcanvas-sidebar.active .sidebar-logo, .offcanvas-sidebar.active .sidebar-content, .offcanvas-sidebar.active .sidebar-contact-info, .offcanvas-sidebar.active .sidebar-menu-close, .offcanvas-sidebar.active .sidebar-social {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
.offcanvas-sidebar.active .sidebar-logo {
  transition-delay: .2s;
}
.offcanvas-sidebar.active .sidebar-content {
  transition-delay: .3s;
}
.offcanvas-sidebar.active .sidebar-contact-info {
  transition-delay: .4s;
}
.offcanvas-sidebar.active .sidebar-social {
  transition-delay: .5s;
}
.offcanvas-sidebar.active .sidebar-menu-close {
  transition-delay: .6s;
}
.sidebar-menu-close {
  position: absolute;
  top: 50px;
  right: 50px;
  text-align: center;
  transition: .3s;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  -ms-transition: .3s;
  -o-transition: .3s;
  opacity: 0;
  -webkit-transform: translateX(30px);
  -ms-transform: translateX(30px);
  transform: translateX(30px);
}
.offcanvas-sidebar .xb-close {
  width: 60px;
  height: 60px;
  border-width: 18px;
  background: rgba(228, 80, 57, 0.08);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.offcanvas-sidebar .xb-close::before, .offcanvas-sidebar .xb-close::after {
  background-color: #E44F39;
}
.offcanvas-sidebar {
  position: fixed;
  overflow-y: auto;
  top: 0;
  right: -775px;
  max-width: 745px;
  width: 100%;
  padding: 50px 100px;
  height: 100%;
  display: block;
  background-color: var(--color-white);
  z-index: 1020;
  transition-duration: 500ms;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.offcanvas-sidebar.active {
  right: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .sidebar-top, .sidebar-contact-info {
    margin-bottom: 80px;
  }
}
.sidebar-content {
  max-width: 450px;
  font-size: 30px;
  line-height: 142.2%;
  letter-spacing: -0.9px;
  color: #0F172A;
  font-weight: 600;
}
.sidebar-heading {
  font-size: 14px;
  color: var(--color-default);
  text-transform: uppercase;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 22px;
  letter-spacing: 1.68px;
}
.sidebar-info-list li {
  display: flex;
  align-items: center;
  font-size: 24px;
  letter-spacing: -0.72px;
  color: var(--color-heading);
}
.sidebar-info-list li span {
  margin-right: 15px;
}
.sidebar-info-list li:not(:last-child) {
  margin-bottom: 14px;
}
.sidebar-info-list li a {
  color: currentColor;
}
.sidebar-newsletter-from {
  max-width: 409px;
  position: relative;
}
.sidebar-newsletter-from input {
  padding: 18px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  height: 60px;
  filter: drop-shadow(0px 7px 8px rgba(35, 49, 75, 0.07));
}
.sidebar-newsletter-from button {
  width: 65px;
  height: 60px;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.sidebar-social .xb-item--social li:not(:last-child) {
  margin-right: 20px;
}
.sidebar-social .xb-item--social li a {
  color: var(--color-default);
  opacity: 1;
}
.sidebar-social .xb-item--social li a svg {
  height: 15px;
  transform: translateY(-2px);
}
.sidebar-social .xb-item--social li a svg path {
  fill: var(--color-default);
}
.sidebar-social .xb-item--social li a:hover {
  color: var(--color-primary);
}
.sidebar-social .xb-item--social li a:hover svg path {
  fill: var(--color-primary);
}
/*----------------------------------------*/
/*  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;
}
/*----------------------------------------*/
/*  19. mobile-menu
/*----------------------------------------*/
.xb-hamburger-menu {
  display: none;
}
@media (max-width: 991px) {
  .xb-hamburger-menu {
    display: block;
  }
}
.xb-nav-mobile-button {
  position: relative;
  cursor: pointer;
  font-size: 23px;
  color: var(--color-dark);
}
.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;
  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: inline-block;
}
.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-dark);
  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);
}
.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);
}
.xb-logo-mobile {
  margin-bottom: 40px;
}
.xb-logo-mobile img {
  height: 40px;
}
.xb-header-mobile-search {
  margin-bottom: 20px;
}
.xb-header-mobile-search form {
  position: relative;
}
.xb-header-mobile-search .search-field {
  height: 50px;
  border: none;
  padding: 0 25px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  color: #000;
  border: 2px solid rgba(150, 144, 162, 0.09);
  padding: 12px 15px 13px;
  background-color: transparent;
}
.xb-header-mobile-search .search-field:focus {
  color: #000;
  border-color: var(--color-primary);
}
.xb-header-mobile-search .search-submit {
  position: absolute;
  top: 5px;
  right: 10px;
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  line-height: 36px;
  padding: 0;
  width: 30px;
  height: 40px;
  line-height: 40px;
  background: none;
  color: var(--color-heading);
}
.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 {
  color: var(--color-primary);
}
.hamburger-menu {
  width: 30px;
  height: 18px;
  display: block;
  margin-left: 30px;
}
.hamburger-menu .line {
  width: 30px;
  background: var(--color-white);
  margin: 6px 0 0 0;
  height: 2px;
  display: block;
  transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger-menu .line--1 {
  margin-top: 0;
}
.hamburger-menu:hover .line--1 {
  margin-top: 0;
  width: 20px;
}
.hamburger-menu:hover .line--2 {
  width: 25px;
}
.hamburger-menu:hover .line--3 {
  width: 15px;
}
/*----------------------------------------*/
/*  32. preloader
/*----------------------------------------*/
/* PRELOADER */
@keyframes preloaderSpin {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.preloader {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: fixed;
  z-index: 999999;
  background-color: #000;
}
.preloader .loader-circle {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 160px;
  height: 160px;
  direction: ltr;
  position: absolute;
  border-radius: 100%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}
.preloader .loader-line-mask {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 30px;
  height: 160px;
  margin-left: -80px;
  margin-top: -80px;
  overflow: hidden;
  transform-origin: 80px 80px;
  animation: preloaderSpin 1.5s infinite linear;
}
.preloader .loader-line {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.44), rgba(0, 0, 0, 0));
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='rgba(255, 255, 255, 0.44)', endColorStr='rgba(255, 255, 255, 0)');
  background-color: initial;
  position: relative;
}
.preloader .loader-line:before {
  top: 1px;
  left: 1px;
  right: 1px;
  bottom: 1px;
  z-index: 99;
  content: '';
  position: absolute;
  border-radius: inherit;
  background-color: #000;
}
.preloader .loader-logo {
  top: 50%;
  left: 0;
  right: 0;
  position: absolute;
  text-align: center;
  transform: translate(0%, -50%);
  background: url("../img/logo/logo-white.svg");
  background-position-x: 0%;
  background-position-y: 0%;
  background-repeat: repeat;
  background-size: auto;
  -webkit-background-size: 100%;
  background-size: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  background-size: 95px;
  background-position: center center;
}
.preloader.style-whtie {
  background-color: #fff;
}
.preloader.style-whtie .loader-logo {
  background-image: url("../img/logo/loader-logo.svg");
}
.preloader.style-whtie .loader-line {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0));
}
.preloader.style-whtie .loader-line::before {
  background-color: #fff;
}
.preloader.style-whtie .loader-circle {
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
}
.preloader .loader-logo img {
  max-width: 65%;
}
/*----------------------------------------*/
/*  33. footer
/*----------------------------------------*/
@media (max-width: 767px) {
  .footer-widget {
    margin-left: 0;
  }
}
.footer-widget .xb-item--title {
  font-size: 14px;
  margin-bottom: 25px;
  display: inline-block;
  text-transform: uppercase;
  color: var(--color-primary);
  text-decoration: underline;
}
.footer-widget .xb-item--derg-link {
    font-weight: 400;
    font-size: 16px;
    margin-top: 25px;
    display: inline-block;
    text-transform: uppercase;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.5px;
}
.footer-widget .xb-item--derg-link:hover {
  gap: 12px;
  color: var(--color-primary);
}
.footer-widget .xb-item--derg-link i {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.footer-widget--two {
  margin-top: 70px;
}
@media (max-width: 1199px) {
  .footer-widget--two {
    width: 50%;
    margin-top: 50px;
  }
}
.footer-widget--two .xb-item--title {
  font-weight: 500;
  text-decoration: underline;
}
.footer-widget--two .footer-links li {
  line-height: 1.1;
  color: var(--color-white);
}
@media (max-width: 767px) {
  .footer-widget--two .footer-links li {
    font-size: 20px;
  }
}
.footer-widget--two .footer-links li:not(:last-child) {
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .footer-widget--two .footer-links li:not(:last-child) {
    margin-bottom: 20px;
  }
}
.footer-links li:not(:last-child) {
    margin-bottom: 20px;
}
@media (max-width: 1199px) {
  .footer-links li:not(:last-child) {
    margin-bottom: 20px;
  }
}
.footer-links li a {
    font-weight: 300;
    font-size: 22px;
    text-transform: inherit;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    line-height: 30px;
}
@media (max-width: 767px) {
  .footer-links li a {
    font-size: 20px;
    line-height: 30px;
  }
}
.footer-links li a::before {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0%;
  height: 2px;
  background-color: currentColor;
  content: "";
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.footer-links li a:hover {
  color: var(--color-white);
}
.footer-links li a:hover::before {
  left: 0;
  right: auto;
  width: 100%;
}
.footer-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  align-items: end;
  gap: 30px;
}
@media (max-width: 1199px) {
  .footer-right {
    align-items: start;
  }
}
.xb-copyright p {
  font-size: 14px;  
}
.xb-copyright p a {
  color: var(--color-white);
}
.xb-copyright .xb-logo {
  margin-bottom: 22px;
  display: inline-block;
}
.footer_nav {
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .footer_nav {
    justify-content: flex-start;
  }
}
.footer_nav li:not(:last-child) {
  margin-right: 60px;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .footer_nav li:not(:last-child) {
    margin-right: 24px;
  }
}
.footer_nav li a {
  font-weight: 500;
  color: var(--color-default);
  text-transform: capitalize;
  position: relative;
}
.footer_nav li a::before {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0%;
  height: 1px;
  background-color: #fff;
  content: "";
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.footer_nav li a:hover {
  color: var(--color-white);
}
.footer_nav li a:hover::before {
  width: 100%;
  right: auto;
  left: 0;
}
.footer-title {
  font-size: 200px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 67px;
}
@media only screen and (min-width: 1500px) and (max-width: 1800px) {
  .footer-title {
    font-size: 188px;
    gap: 55px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .footer-title {
    font-size: 143px;
    gap: 40px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1300px) {
  .footer-title {
    font-size: 120px;
  }
}
@media (max-width: 1199px) {
  .footer-title {
    font-size: 100px;
    gap: 45px;
  }
}
@media (max-width: 991px) {
  .footer-title {
    font-size: 74px;
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .footer-title {
    font-size: 30px;
    gap: 10px;
  }
}
.footer-title .icon {
  color: var(--color-primary);
  font-family: var(--font-newyork);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .footer-title .icon {
    max-width: 100px;
  }
}
@media (max-width: 767px) {
  .footer-title .icon {
    max-width: 30px;
  }
}
.footer-title span {
  font-family: var(--font-newyork);
  color: var(--color-primary);
  font-weight: 400;
}
.xb-footer-widget .xb-item--title {
  font-weight: 500;
  font-size: 24px;
  color: var(--color-white);
}
.xb-footer-widget .xb-item--link li:not(:last-child) {
  margin-bottom: 15px;
}
.xb-footer-widget .xb-item--link li a {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-default);
}
.footer-info span, .footer-info a {
  font-size: 36px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--color-white);
  opacity: .5;
}
@media (max-width: 767px) {
  .footer-info span, .footer-info a {
    font-size: 22px;
  }
}
.footer-info .xb-email {
  text-decoration: underline;
  opacity: 1;
  text-decoration-color: var(--color-primary);
  display: inline-block;
  margin-top: 17px;
}
.footer-info h3 {
  font-size: 96px;
  font-weight: 500;
  margin: 13px 0;
  color: var(--color-white);
}
@media only screen and (min-width: 1200px) and (max-width: 1300px) {
  .footer-info h3 {
    font-size: 60px;
  }
}
@media (max-width: 1199px) {
  .footer-info h3 {
    font-size: 35px;
  }
}
.footer-info-list li {
  line-height: 1.3;
  font-weight: 400;
  font-size: 30px;
  color: #ffffff;
  position: relative;
}
.footer-info-list li a {
  color: var(--color-white);
}
.footer-bottom {
  padding: 25px 0;
}
.footer-bottom .xb-copyright p {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-gray);
}
.footer-bottom .xb-copyright p a {
  font-weight: 700;
  color: var(--color-heading);
}
.footer-bottom .footer_nav li {
  color: var(--color-gray);
}
.footer-bottom-warp {
  border-top: 1px solid #242424;
}
.footer-bottom-warp .footer-bottom {
  padding-top: 10px;
}
@media (max-width: 1199px) {
  .footer-bottom-warp .footer-bottom {
    padding-left: 0;
    padding-right: 0;
  }
}
.footer-bottom-warp .footer-bottom .xb-copyright {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .footer-bottom-warp .footer-bottom .xb-copyright {
    align-items: center;
  }
}
.footer-bottom-warp .footer-bottom .xb-copyright p {
  color: var(--color-default);
}
.footer-bottom-warp .footer-bottom .xb-copyright a {
  color: #fff;
}
.footer-bottom-warp .footer-bottom .footer_nav {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .footer-bottom-warp .footer-bottom .footer_nav {
    justify-content: center;
  }
}
.footer-bottom-warp .footer-bottom .footer_nav li {
  margin: 5px;
  margin-right: 55px;
  color: var(--color-default);
}
.footer-bottom-warp .footer-bottom .footer_nav li:last-child {
  margin-right: 0;
}
.footer-line {
  width: 1px;
  min-height: 480px;
  background: #242424;
}
@media (max-width: 1199px) {
  .footer-line {
    display: none;
  }
}
@media (max-width: 991px) {
  .footer-line {
    display: none;
  }
}
.back-top-btn {
  margin: 5px;
  text-transform: uppercase;
}
.back-top-btn:hover {
  color: #fff;
  text-decoration: underline;
}
.footer-shape {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.footer-heading {
  margin: 0 -10px;
}
.footer-style-three .xb-footer-widget .xb-item--link li a {
  color: #999999;
  text-transform: uppercase;
}
.footer-style-three .xb-footer-widget .xb-item--link li a:hover {
  color: var(--color-white);
}
.footer-style-three .footer-bottom {
  padding: 25px 0;
  padding-top: 0;
}
.footer-style-three .footer_nav li a:hover {
  color: var(--color-black);
}
.footer-style-three .footer_nav li a::before {
  background-color: var(--color-black);
}
@media (max-width: 767px) {
  .pl-xs-0 {
    padding-left: 0;
  }
}
@media (max-width: 1199px) {
  .footer-style-one .footer-wrap {
    padding-bottom: 100px;
  }
}


@media (min-width: 1199px) and (max-width: 1399px) {
.main-menu ul li:not(:last-child) {
    margin-right: 25px;
}
}