@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");
/*-----------------------------------------------------------------------------------

    

-----------------------------------------------------------------------------------

    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
    

-----------------------------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600;9..40,700&family=Lato:wght@300;400;700&family=Noto+Serif+Display:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700&family=Raleway:wght@300;400;500;600;700&display=swap");

:root {
  --font-body: 'DM Sans', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --font-lato: 'Lato', sans-serif;
  --font-noto: 'Noto Serif Display', serif;
  --font-raleway: 'Raleway', sans-serif;
  --color-primary: #2029BD;
  --color-secondary: #14CAF4;
  --color-ins: #B1F200;
  --color-ins-2: #8FC908;
  --color-law: #1955FF;
  --color-advisor: #FF5000;
  --color-marketing: #FA4729;
  --color-business: #CCFF86;
  --color-heading: #131217;
  --color-dark: #0F172A;
  --color-white: #fff;
  --color-black: #000;
  --color-default: #888686;
  --color-gray: #F8F8F8;
  --color-border: #EFF5F8;
  --easing: cubic-bezier(0.67, 0.04, 0.3, 0.91);
}

/* reset css start */
:root {
  scroll-behavior: auto;
}

html {
  scroll-behavior: smooth;
}

body {
  padding: 0;
  margin: 0;
  font-weight: 400;
  position: relative;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 26px;
  color: var(--color-default);
  background-color: var(--color-white);
}

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: 24px 20px;
  border: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  color: var(--color-black);
  font-weight: 500;
}

input[type="text"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder,
input[type="email"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
form select::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #888686;
  opacity: 1;
}

input[type="text"]::-moz-placeholder,
input[type="password"]::-moz-placeholder,
input[type="email"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
form select::-moz-placeholder,
textarea::-moz-placeholder {
  color: #888686;
  opacity: 1;
}

input[type="text"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder,
input[type="email"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
form select:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #888686;
  opacity: 1;
}

input[type="text"]:-moz-placeholder,
input[type="password"]:-moz-placeholder,
input[type="email"]:-moz-placeholder,
input[type="tel"]:-moz-placeholder,
form select:-moz-placeholder,
textarea:-moz-placeholder {
  color: #888686;
  opacity: 1;
}

textarea {
  height: 100px;
}

button {
  border: 0;
}

table {
  width: 100%;
}

p,
li,
span {
  margin-bottom: 0;
}

/* reset css end */
/* global css start */
.nice-select {
  background-color: transparent;
  height: 75px;
  line-height: 73px;
  min-height: 70px;
  padding: 0 20px;
  width: 100%;
  padding: 0 46px;
  margin-bottom: 20px;
  background-color: #F3F4F5;
  border: 0;
  font-size: 16px;
}

.nice-select::after {
  border-bottom: 1.9px solid #B1B4BA;
  border-right: 1.9px solid #B1B4BA;
  height: 6px;
  right: 20px;
  width: 6px;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
  background-color: #F3F4F5;
}

.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;
}

main {
  position: relative;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 2;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: var(--color-white);
  overflow: hidden;
}

.bg_img {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

.footer-bg {
  background-color: #04060A;
}

.black-bg {
  background: var(--color-black);
}

.gray-bg {
  background-color: var(--color-gray);
}

.gray-bg-2 {
  background-color: var(--color-gray-2);
}

.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);
}

.btn-video {
  width: 88px;
  height: 88px;
  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-primary);
  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-primary);
}

.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;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  color: #0F172A;
  border: 1px solid #E7E9EE;
  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;
}

@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: #191B1E;
  border-color: #191B1E;
}

.mr-none-60 {
  margin-right: -60px;
}

.ml-none-60 {
  margin-left: -60px;
}

.pb-8 {
  padding-bottom: 8px;
}

/*--
    - 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: 100px;
}

.pt-110 {
  padding-top: 100px;
}

.pt-115 {
  padding-top: 100px;
}

.pt-120 {
  padding-top: 100px;
}

.pt-125 {
  padding-top: 100px;
}

.pt-130 {
  padding-top: 100px;
}

.pt-135 {
  padding-top: 100px;
}

.pt-140 {
  padding-top: 100px;
}

.pt-145 {
  padding-top: 100px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-155 {
  padding-top: 100px;
}

.pt-160 {
  padding-top: 100px;
}

.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: 100px;
}

.pb-110 {
  padding-bottom: 100px;
}

.pb-115 {
  padding-bottom: 100px;
}

.pb-120 {
  padding-bottom: 100px;
}

.pb-125 {
  padding-bottom: 100px;
}

.pb-130 {
  padding-bottom: 100px;
}

.pb-135 {
  padding-bottom: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-145 {
  padding-bottom: 100px;
}

.pb-150 {
  padding-bottom: 100px;
}

.pb-155 {
  padding-bottom: 100px;
}

.pb-160 {
  padding-bottom: 100px;
}

.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);
  font-weight: 600;
  font-family: var(--font-heading);
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 22px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

/* 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);
  }
}

@-webkit-keyframes zoominup {
  0% {
    transform: scale(1.1);
  }

  50% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.1);
  }
}

@-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);
  }
}

/*--
    - 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
/*----------------------------------------*/
.site-header {
  position: relative;
  z-index: 3;
}

.header-default {
  background-color: var(--color-white);
}

.header-default .xb-header-area-sticky {
  background-color: var(--color-white);
}

.header-default .main-menu ul li a {
  color: #131217;
  padding: 50px 0;
}

.header-default .xb-header-has-arrow .main-menu>ul>li.menu-item-has-children>a span::before {
  display: none;
}

.header-default .xb-header-area-sticky.xb-header-fixed .main-menu>ul>li>a {
  padding: 35px 0;
}

.header-default .main-menu>ul>li>a span::after {
  color: var(--color-primary);
}

.header-business {
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  width: 100%;
}

@media (max-width: 991px) {
  .header-business {
    top: 0;
    background: #03080B;
  }
}

.header-business .main-menu ul li:hover>a,
.header-business .main-menu ul li.active>a {
  color: var(--color-white);
}

.header-business .xb-header-has-arrow .main-menu>ul>li.menu-item-has-children>a span::before {
  display: none;
}

.header-business .xb-header-has-arrow .main-menu>ul>li a span::after {
  color: var(--color-business);
}

.header-business .main-menu ul li .submenu {
  background-color: #222528;
}

.header-business .main-menu ul li .submenu::before {
  background-color: #222528;
}

.header-business .main-menu ul li .submenu li a {
  color: #fff;
}

.header-business .main-menu ul li .submenu li:hover>a,
.header-business .main-menu ul li .submenu li.active>a {
  color: var(--color-business);
}

.header-business .xb-header__btn a {
  padding-left: 55px;
  padding-right: 55px;
}

.header-business#xb-header-area .xb-header-area-sticky {
  background-color: #03080B;
}

.header-insurance {
  background-color: #052328;
}

.header-insurance .xb-header__top {
  padding: 7px 0;
}

@media (max-width: 991px) {
  .header-insurance .xb-header__top {
    padding: 12px 0;
  }
}

@media (max-width: 767px) {
  .header-insurance .xb-header__top {
    display: none;
  }
}

.header-insurance .xb-header__info li {
  font-size: 14px;
  font-weight: 700;
  color: #F8F8F8;
  letter-spacing: -0.28px;
}

.header-insurance .xb-header__info li:not(:last-child) {
  margin-right: 70px;
}

@media (max-width: 991px) {
  .header-insurance .xb-header__info li:not(:last-child) {
    margin-right: 20px;
  }
}

.header-insurance .xb-header__info li span {
  margin-right: 9px;
}

.header-insurance .xb-header__wrap {
  background-color: #0F2C31;
}

.header-insurance .xb-header__logo {
  height: 89px;
  border-right: 1px solid #052328;
  display: flex;
  align-items: center;
  padding-right: 80px;
}

@media (max-width: 1199px) {
  .header-insurance .xb-header__logo {
    padding-right: 25px;
    border: 0;
  }
}

@media (max-width: 991px) {
  .header-insurance .xb-header__logo {
    height: auto;
  }
}

@media (max-width: 1300px) {
  .header-insurance .xb-header__action {
    display: none;
  }
}

.header-insurance .xb-header__action li {
  height: 89px;
  border-left: 1px solid #052328;
  border-right: 1px solid #052328;
  margin-right: -1px;
  display: flex;
  align-items: center;
  padding: 0 30px;
}

.header-insurance .xb-header__action li a {
  position: relative;
}

.header-insurance .xb-header__action li a .count {
  position: absolute;
  top: -3px;
  right: -13px;
  min-width: 20px;
  height: 20px;
  font-size: 10px;
  font-weight: 600;
  color: #EAFFEF;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background-color: #052328;
}

@media (max-width: 1199px) {
  .header-insurance .xb-header__btn {
    margin-left: 30px;
  }
}

@media (max-width: 991px) {
  .header-insurance .xb-header__btn {
    display: none;
  }
}

.header-insurance .xb-header .main-menu ul li .submenu {
  background: #0f2c31;
}

.header-insurance .xb-header .main-menu ul li .submenu::before {
  background-color: #0f2c31;
}

.header-insurance#xb-header-area .xb-header-area-sticky {
  background-color: #0F2C31;
}

.header-insurance .main-menu ul li .submenu li a {
  color: #052328;
}

.header-insurance .main-menu ul li:hover>a,
.header-insurance .main-menu ul li.active>a,
.header-insurance .main-menu>ul>li>a span::after {
  color: var(--color-ins);
}

.header-insurance .xb-header-has-arrow .main-menu>ul>li:hover a span::before,
.header-insurance .xb-header-has-arrow .main-menu>ul>li.active a span::before {
  background-color: var(--color-ins);
}

@media (max-width: 1199px) {
  .header-insurance .main-menu ul li a {
    font-size: 13px;
  }
}

.header-insurance .xb-header-wrap.style-black .xb-header-menu {
  background-color: #052328;
}

.header-insurance .xb-header-wrap.style-black .xb-header-mobile-search .search-field:focus {
  border-color: var(--color-ins);
}

.header-insurance .xb-header-wrap.style-black .xb-menu-primary li>a:hover,
.header-insurance .xb-header-wrap.style-black .xb-menu-primary li>a.current,
.header-insurance .xb-header-wrap.style-black .xb-menu-primary li.current_page_item>a,
.header-insurance .xb-header-wrap.style-black .xb-menu-primary li.current-menu-item>a,
.header-insurance .xb-header-wrap.style-black .xb-menu-primary li.current_page_ancestor>a,
.header-insurance .xb-header-wrap.style-black .xb-menu-primary li.current-menu-ancestor>a,
.header-insurance .xb-header-wrap.style-black .xb-menu-primary .xb-menu-toggle:hover {
  color: var(--color-ins);
}

.header-insurance .main-menu ul li .submenu li a {
  color: #fff;
}

.header-insurance .main-menu ul li .submenu li:hover>a,
.header-insurance .main-menu ul li .submenu li.active>a {
  color: var(--color-ins);
}

.offcanvas-sidebar.header-insurance {
  background: #052328;
}

.offcanvas-sidebar.header-insurance .xb-close {
  background: #0F2C31;
}

@media (max-width: 991px) {
  .xb-header__wrap {
    padding: 20px 0;
  }
}

@media (max-width: 991px) {
  .xb-header__language {
    display: none;
  }
}

.xb-header__language ul {
  list-style: none;
}

.xb-header__language ul>li {
  position: relative;
}

.xb-header__language ul .lang-btn {
  color: var(--color-white);
  font-size: 14px;
  text-align: right;
  display: flex;
  align-items: center;
  font-weight: 700;
  padding: 10px 0;
  letter-spacing: -0.28px;
  text-transform: uppercase;
}

.xb-header__language ul .lang-btn .arrow_down {
  margin-left: 7px;
  width: 13px;
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}

.xb-header__language ul .lang-btn .flag {
  margin-right: 7px;
  max-width: 17px;
  -webkit-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  transform: translateY(-1px);
}

.xb-header__language ul .lang-btn i {
  font-size: 12px;
  padding-left: 3px;
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}

.xb-header__language ul li:hover ul {
  opacity: 1;
  visibility: visible;
  top: 100%;
}

.xb-header__language .lang_sub_list {
  background: var(--color-white);
  border-radius: 5px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  top: 120%;
  transition: 0.3s;
  position: absolute;
  right: 0;
  z-index: 9;
  min-width: 100px;
}

.xb-header__language .lang_sub_list ul>li {
  border-radius: 4px;
  overflow: hidden;
}

.xb-header__language .lang_sub_list li a {
  color: #646c76;
  display: block;
  padding-right: 29px;
  min-height: 37px;
  line-height: 37px;
  padding-left: 18px;
  font-size: 14px;
  font-weight: 500;
}

.xb-header__language .lang_sub_list li a:hover {
  background: #f6f6f6;
}

.xb-header__language .lang_sub_list li:not(:last-child) {
  border-bottom: 1px solid #ededed;
}

@media (max-width: 767px) {
  .xb-header__action {
    display: none;
  }
}

.xb-header-has-arrow .main-menu>ul>li.menu-item-has-children>a span {
  position: relative;
}

.xb-header-has-arrow .main-menu>ul>li.menu-item-has-children>a span::before {
  position: absolute;
  top: -1px;
  left: -5px;
  width: 4px;
  height: 4px;
  background-color: #F8F8F8;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  content: "";
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.xb-header-has-arrow .main-menu>ul>li>a span {
  position: relative;
}

.xb-header-has-arrow .main-menu>ul>li>a span::after {
  position: absolute;
  top: 0;
  right: -13px;
  content: "\f061";
  font-weight: 400;
  font-family: "Font Awesome 5 Pro";
  transform: rotate(-45deg);
  font-size: 15px;
  opacity: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.xb-header-has-arrow .main-menu>ul>li:hover a span::before,
.xb-header-has-arrow .main-menu>ul>li.active a span::before {
  background-color: var(--color-primary);
}

.xb-header-has-arrow .main-menu>ul>li:hover a span::after,
.xb-header-has-arrow .main-menu>ul>li.active a span::after {
  top: -3px;
  right: -18px;
  opacity: 1;
}

.header-law {
  border-bottom: 1px solid #EBEBEB;
  background-color: var(--color-white);
  z-index: 3;
  position: relative;
}

.header-law .xb-header__wrap {
  background-color: var(--color-white);
}

.header-law .xb-header__btn .xb-btn {
  padding: 17px 40px;
}

.header-law .main-menu ul li a {
  color: #121A1B;
}

.header-law .main-menu>ul>li>a>span::before {
  width: 0;
  height: 2px;
  position: absolute;
  bottom: 0;
  right: 0;
  left: auto;
  content: "";
  background-color: var(--color-law);
  -webkit-transition: 0.3s var(--easing);
  -o-transition: 0.3s var(--easing);
  transition: 0.3s var(--easing);
}

.header-law .main-menu ul li:not(:last-child) {
  margin-right: 50px;
}

@media (max-width: 1199px) {
  .header-law .main-menu ul li:not(:last-child) {
    margin-right: 30px;
  }
}

.header-law .main-menu ul li .submenu li {
  margin-right: 0;
}

.header-law .main-menu ul li:hover>a,
.header-law .main-menu ul li.active>a {
  color: var(--color-law);
}

.header-law .main-menu ul li:hover>a span::before,
.header-law .main-menu ul li.active>a span::before {
  right: auto;
  left: 0;
  width: 100%;
}

.header-law .main-menu ul li .submenu li:hover>a,
.header-law .main-menu ul li .submenu li.active>a,
.header-law .main-menu>ul>li a span::after {
  color: var(--color-law);
}

.header-law .main-menu ul li .submenu::before {
  display: none;
}

.header-law .xb-header-mobile-search .search-field:focus {
  border-color: var(--color-law);
}

.header-law .xb-header-wrap .xb-menu-primary li>a:hover,
.header-law .xb-header-wrap .xb-menu-primary li>a.current,
.header-law .xb-header-wrap .xb-menu-primary li.current_page_item>a,
.header-law .xb-header-wrap .xb-menu-primary li.current-menu-item>a,
.header-law .xb-header-wrap .xb-menu-primary li.current_page_ancestor>a,
.header-law .xb-header-wrap .xb-menu-primary li.current-menu-ancestor>a,
.header-law .xb-header-wrap .xb-menu-primary .xb-menu-toggle:hover {
  color: var(--color-law);
}

.header-advisor .main-menu ul li a {
  color: #131217;
}

.header-advisor .xb-header-has-arrow .main-menu>ul>li.menu-item-has-children>a span::before {
  background-color: #131217;
}

.header-advisor .main-menu ul li:hover>a,
.header-advisor .main-menu ul li.active>a,
.header-advisor .main-menu ul li .submenu li:hover>a,
.header-advisor .main-menu ul li .submenu li.active>a,
.header-advisor .main-menu>ul>li a span::after {
  color: var(--color-advisor);
}

@media (max-width: 1199px) {
  .header-advisor .main-menu ul li:not(:last-child) {
    margin-right: 35px;
  }
}

.header-advisor .xb-btn--advisor {
  font-size: 14px;
  padding: 18px 35px;
}

.header-advisor .xb-header-wrap .xb-menu-primary li>a:hover,
.header-advisor .xb-header-wrap .xb-menu-primary li>a.current,
.header-advisor .xb-header-wrap .xb-menu-primary li.current_page_item>a,
.header-advisor .xb-header-wrap .xb-menu-primary li.current-menu-item>a,
.header-advisor .xb-header-wrap .xb-menu-primary li.current_page_ancestor>a,
.header-advisor .xb-header-wrap .xb-menu-primary li.current-menu-ancestor>a,
.header-advisor .xb-header-wrap .xb-menu-primary .xb-menu-toggle:hover {
  color: var(--color-advisor);
}

.header-advisor .xb-header-mobile-search .search-field:focus {
  border-color: var(--color-advisor);
}

.header-marketing {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 4;
}

.header-marketing .main-menu ul li:hover>a,
.header-marketing .main-menu ul li.active>a,
.header-marketing .main-menu ul li .submenu li:hover>a,
.header-marketing .main-menu ul li .submenu li.active>a,
.header-marketing .main-menu>ul>li a span::after {
  color: var(--color-marketing);
}

.header-marketing .xb-header-has-arrow .main-menu>ul>li:hover a span::before,
.header-marketing .xb-header-has-arrow .main-menu>ul>li.active a span::before {
  background-color: var(--color-marketing);
}

.header-marketing#xb-header-area .xb-header-area-sticky {
  background-color: #121212;
}

.header-marketing#xb-header-area .xb-header-area-sticky .xb-header-bar {
  background-color: #1e1e1e;
}

.header-marketing .xb-social>span {
  color: var(--color-white);
}

.header-marketing .xb-social li a {
  color: #8A8A8A;
}

.header-marketing .xb-social li a:hover {
  color: var(--color-white);
}

.header-marketing .xb-header__top {
  border-bottom: 1px solid #333333;
}

@media (max-width: 991px) {
  .header-marketing .xb-header__top {
    display: none;
  }
}

.header-marketing .xb-header-bar {
  background-color: #333;
}

.header-marketing .xb-header-bar span {
  right: auto;
  left: 0;
}

.header-marketing .xb-header-wrap.style-black .xb-header-menu {
  background: #121212;
}

.header-marketing .xb-header-wrap.style-black .xb-menu-primary li>a:hover,
.header-marketing .xb-header-wrap.style-black .xb-menu-primary li>a.current,
.header-marketing .xb-header-wrap.style-black .xb-menu-primary li.current_page_item>a,
.header-marketing .xb-header-wrap.style-black .xb-menu-primary li.current-menu-item>a,
.header-marketing .xb-header-wrap.style-black .xb-menu-primary li.current_page_ancestor>a,
.header-marketing .xb-header-wrap.style-black .xb-menu-primary li.current-menu-ancestor>a,
.header-marketing .xb-header-wrap.style-black .xb-menu-primary .xb-menu-toggle:hover {
  color: var(--color-marketing);
}

.header-marketing .xb-header-wrap.style-black .xb-header-mobile-search .search-field:focus {
  color: #fff;
  border-color: var(--color-marketing);
}

.header-marketing .main-menu ul li .submenu {
  background-color: #282828;
}

.header-marketing .main-menu ul li .submenu::before {
  background-color: #282828;
}

.header-marketing .main-menu ul li .submenu li a {
  color: #fff;
}

.ad-header-top {
  background-color: var(--color-white);
  padding: 0 30px 10px;
  margin-top: 30px;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  margin-bottom: 12px;
}

.ad-header-top .number {
  font-weight: 700;
  font-size: 12px;
  color: #131217;
  text-transform: uppercase;
}

.ad-header-top .number span {
  font-size: 15px;
}

.xb-social span {
  font-size: 12px;
  font-weight: 700;
  color: #131217;
  text-transform: uppercase;
  display: inline-block;
  margin-right: 7px;
}

.xb-social ul li:not(:last-child) {
  margin-right: 15px;
}

.xb-social ul li a {
  color: #131217;
  font-size: 14px;
  opacity: 0.5;
}

.xb-social ul li a:hover {
  color: #131217;
  opacity: 1;
}

.xb-header-bar {
  width: 50px;
  height: 50px;
  background-color: #121A1B;
  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;
}

.xb-header-bar:hover span:nth-child(2),
.xb-header-bar:hover span:nth-child(4) {
  width: 100%;
}

.xb-header-bar:hover span:nth-child(1),
.xb-header-bar:hover span:nth-child(3) {
  width: 50%;
}

.xb-header-bar span {
  right: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 48px;
  -webkit-border-radius: 48px;
  -moz-border-radius: 48px;
  -ms-border-radius: 48px;
  -o-border-radius: 48px;
  display: inline-block;
  position: absolute;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.xb-header-bar span:nth-child(1) {
  top: 0;
}

.xb-header-bar span:nth-child(2) {
  top: 5px;
  width: 50%;
}

.xb-header-bar span:nth-child(3) {
  bottom: 5px;
}

.xb-header-bar span:nth-child(4) {
  bottom: 0;
  width: 50%;
}

.xb-header-bar__icon {
  width: 19px;
  height: 17px;
  position: relative;
}

#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 cubic-bezier(0.23, 0.76, 0.53, 0.99);
  -o-transition: 0.6s cubic-bezier(0.23, 0.76, 0.53, 0.99);
  transition: 0.6s cubic-bezier(0.23, 0.76, 0.53, 0.99);
  visibility: hidden;
  background-color: 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);
}

.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: 60px;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .main-menu ul li:not(:last-child) {
    margin-right: 45px;
  }
}

@media (max-width: 1199px) {
  .main-menu ul li:not(:last-child) {
    margin-right: 40px;
  }
}

.main-menu ul li .submenu li {
  margin-right: 0;
}

.main-menu ul li a {
  display: inline-block;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 1.96px;
  padding: 33px 0;
  position: relative;
  line-height: 22px;
  text-transform: uppercase;
}

.main-menu ul li a span i {
  font-size: 11px;
  margin-left: 5px;
}

.main-menu ul li.menu-item-has-children:hover>.submenu {
  opacity: 1;
  visibility: visible;
}

.main-menu ul li:hover>a,
.main-menu ul li.active>a {
  color: var(--color-primary);
}

.main-menu ul li:hover .submenu>li {
  opacity: 1;
  transform: translateY(0);
}

.main-menu ul li:hover .submenu>li:nth-child(2) {
  transition-delay: 70ms;
}

.main-menu ul li:hover .submenu>li:nth-child(3) {
  transition-delay: 140ms;
}

.main-menu ul li:hover .submenu>li:nth-child(4) {
  transition-delay: 210ms;
}

.main-menu ul li:hover .submenu>li:nth-child(5) {
  transition-delay: 280ms;
}

.main-menu ul li:hover .submenu>li:nth-child(6) {
  transition-delay: 350ms;
}

.main-menu ul li:hover .submenu>li:nth-child(7) {
  transition-delay: 420ms;
}

.main-menu ul li:hover .submenu>li:nth-child(8) {
  transition-delay: 490ms;
}

.main-menu ul li:hover .submenu>li:nth-child(9) {
  transition-delay: 560ms;
}

.main-menu ul li:hover .submenu>li:nth-child(10) {
  transition-delay: 610ms;
}

.main-menu ul li:hover .submenu>li:nth-child(11) {
  transition-delay: 680ms;
}

.main-menu ul li:hover .submenu>li:nth-child(12) {
  transition-delay: 750ms;
}

.main-menu ul li .submenu {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: absolute;
  min-width: 380px;
  top: 100%;
  opacity: 0;
  visibility: hidden;
  background: var(--color-white);
  left: 0;
  padding: 21px 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  z-index: 3;
  text-align: left;
  box-shadow: 0 0.5rem 1.875rem rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}

.main-menu ul li .submenu::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 15px;
  z-index: 2;
  display: block;
  width: 16px;
  height: 16px;
  -webkit-transform: rotate(-45deg) translateY(1rem);
  -ms-transform: rotate(-45deg) translateY(1rem);
  transform: rotate(-45deg) translateY(1rem);
  border-radius: 3px;
  background: #fff;
  box-shadow: none;
}

.main-menu ul li .submenu li {
  opacity: 0;
  -webkit-transition: all 0.35s cubic-bezier(0.39, 0.66, 0.56, 1.05);
  -o-transition: all 0.35s cubic-bezier(0.39, 0.66, 0.56, 1.05);
  transition: all 0.35s cubic-bezier(0.39, 0.66, 0.56, 1.05);
  transform: translateY(12px);
}

.main-menu ul li .submenu li a {
  color: var(--color-black);
  padding: 8px 32px;
  display: block;
  margin: 0;
  font-size: 16px;
  text-transform: capitalize;
  letter-spacing: 0;
  font-weight: 400;
}

.main-menu ul li .submenu li:hover>a,
.main-menu ul li .submenu li.active>a {
  color: var(--color-primary);
}

.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';
}

.xb-btn {
  font-size: 13px;
  font-weight: 600;
  text-transform: None;
  color: var(--color-white);
  border-style: none;
  padding: 23px 40px;
  align-self: center;
  position: relative;
  display: inline-block;
  line-height: 1.1;
  letter-spacing: 0.6px;
  transition: all 0.2s cubic-bezier(0.68, 0.01, 0.58, 0.75);
  background-color: #131217;
  text-transform: uppercase;
}

.xb-btn:hover {
  color: var(--color-white);
  background-color: var(--color-primary);
}

.xb-btn--white {
  background-color: var(--color-white);
  color: #131217;
}

.xb-btn--white:hover {
  background-color: #131217;
  color: var(--color-white);
}

.xb-btn--insurance {
  background-color: var(--color-ins);
  font-size: 16px;
  color: #052328;
  padding: 19px 40px;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.xb-btn--insurance:hover {
  background-color: #052328;
  color: var(--color-white);
}

.xb-btn--insurance.btn-dark {
  background-color: #052328;
  color: var(--color-white);
}

.xb-btn--insurance.btn-dark:hover {
  background-color: var(--color-white);
  color: #052328;
}

.xb-btn--law {
  background-color: var(--color-law);
  font-size: 16px;
  color: #fff;
  padding: 21px 40px;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding-right: 60px;
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
}

.xb-btn--law:hover {
  background-color: var(--color-law);
  color: var(--color-law);
}

.xb-btn--law.has-icon i {
  display: inline-block;
  -webkit-transform: translateX(38px);
  -ms-transform: translateX(38px);
  transform: translateX(38px);
  color: var(--color-law);
}

.xb-btn--law.has-icon::before {
  position: absolute;
  width: 50px;
  height: 50px;
  background-color: var(--color-white);
  content: "";
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  right: 5px;
  top: 5px;
  z-index: -1;
  -webkit-transition: 0.3s var(--easing);
  -o-transition: 0.3s var(--easing);
  transition: 0.3s var(--easing);
}

.xb-btn--law.has-icon:hover::before {
  width: calc(100% - 10px);
}

.xb-btn--law.btn-dark {
  background-color: #121A1B;
}

.xb-btn--law.btn-dark:hover {
  background-color: var(--color-law);
  color: var(--color-white);
}

.xb-btn--law.btn-white {
  background-color: var(--color-white);
  color: #121A1B;
}

.xb-btn--law.btn-white:hover {
  color: var(--color-white);
}

.xb-btn--law.btn-white::before {
  background-color: var(--color-law);
}

.xb-btn--law.btn-white i {
  color: var(--color-white);
}

.xb-btn--advisor {
  background-color: var(--color-advisor);
  font-size: 16px;
  letter-spacing: 0.8px;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  padding: 18px 40px;
}

.xb-btn--advisor:hover {
  background-color: #131217;
}

.xb-btn--marketing {
  border: 1px solid var(--color-marketing);
  background-color: #121212;
  padding: 20px 30px;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  outline: 1px solid #2D2D2D;
  outline-offset: 10px;
  margin-left: 10px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.8px;
}

.xb-btn--marketing .btn-anim-wrap {
  transition: opacity .6s, transform .8s;
  transition-timing-function: ease, ease;
  transition-timing-function: cubic-bezier(0.15, 0.85, 0.31, 1);
  display: inline-block;
  color: var(--color-white);
}

.xb-btn--marketing .btn-anim-wrap .button-text {
  transition: opacity .6s, transform .8s;
  transition-timing-function: ease, ease;
  transition-timing-function: cubic-bezier(0.15, 0.85, 0.31, 1);
  flex-grow: 1;
  order: 10;
  display: inline-block;
  color: currentColor;
}

.xb-btn--marketing .btn-anim-wrap .button-text:nth-child(2) {
  display: inline-block;
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 80%);
  opacity: 0;
  color: currentColor;
}

.xb-btn--marketing:hover {
  background-color: var(--color-marketing);
  border-color: var(--color-marketing);
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
}

.xb-btn--marketing:hover .button-text:nth-child(1) {
  opacity: 0;
}

.xb-btn--marketing:hover .button-text:nth-child(2) {
  transform: translate(-50%, 100%);
  opacity: 1;
}

.xb-btn--marketing:hover .btn-anim-wrap {
  transform: translateY(-150%);
}

.xb-btn--marketing:hover i {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.xb-btn--business {
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  letter-spacing: 0.7px;
  padding: 20px 42px;
  background-color: var(--color-business);
  color: #03080B;
  font-weight: 700;
}

.xb-btn--business .btn-anim-wrap {
  transition: opacity .6s, transform .8s;
  transition-timing-function: ease, ease;
  transition-timing-function: cubic-bezier(0.15, 0.85, 0.31, 1);
  display: inline-block;
}

.xb-btn--business .btn-anim-wrap .button-text {
  transition: opacity .6s, transform .8s;
  transition-timing-function: ease, ease;
  transition-timing-function: cubic-bezier(0.15, 0.85, 0.31, 1);
  flex-grow: 1;
  order: 10;
  display: inline-block;
  color: currentColor;
}

.xb-btn--business .btn-anim-wrap .button-text:nth-child(2) {
  display: inline-block;
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 80%);
  opacity: 0;
  color: currentColor;
}

.xb-btn--business:hover {
  background-color: var(--color-white);
  color: #03080B;
}

.xb-btn--business:hover .button-text:nth-child(1) {
  opacity: 0;
}

.xb-btn--business:hover .button-text:nth-child(2) {
  transform: translate(-50%, 100%);
  opacity: 1;
}

.xb-btn--business:hover .btn-anim-wrap {
  transform: translateY(-150%);
}

.xb-btn--business.btn-dark {
  background-color: #222528;
  color: var(--color-white);
  position: relative;
}

.xb-btn--business.btn-dark::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: inherit;
  padding: 1px;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: add, add;
  -webkit-mask-composite: source-out;
  mask-composite: exclude;
  background: var(--Linear, linear-gradient(316deg, #121212 15.47%, #333 84.34%));
}

.xb-btn--business.btn-dark:hover {
  color: #03080B;
  background-color: var(--color-white);
}

.xb-btn--business.btn-black {
  background-color: #03080B;
  border: 1px solid rgba(20, 17, 37, 0.1);
  color: var(--color-white);
}

.xb-btn--business.btn-black:hover {
  background-color: var(--color-business);
  border-color: var(--color-business);
  color: #03080B;
}

.xb-btn--business.hover-dark:hover {
  color: var(--color-white);
  background-color: #03080B;
}

.xb-btn--business.btn-white {
  background-color: var(--color-white);
}

.xb-btn--business.hover-white:hover {
  background-color: var(--color-white);
}

.xb-btn--business.hover-black:hover {
  background-color: #03080B;
  color: var(--color-white);
}

.btns {
  margin: -12px;
}

.btns a {
  margin: 12px;
}

/*----------------------------------------*/
/*  03. globel
/*----------------------------------------*/
@media (min-width: 1024px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1320px;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.demo_insurance {
  background-color: #052328;
  color: #575757;
}

.demo_insurance main {
  background-color: #052328;
}

.demo_insurance h1,
.demo_insurance h2,
.demo_insurance h3,
.demo_insurance h4,
.demo_insurance h5,
.demo_insurance h6 {
  color: #052328;
  font-weight: 700;
  font-family: var(--font-lato);
}

.demo_law {
  color: #7B7B7B;
  font-size: 20px;
  line-height: 30px;
}

.demo_law h1,
.demo_law h2,
.demo_law h3,
.demo_law h4,
.demo_law h5,
.demo_law h6 {
  font-family: var(--font-noto);
  font-weight: 700;
  color: #121A1B;
}

.demo_advisor {
  background-color: #F4F4F8;
  color: #6A6A7A;
  font-size: 20px;
  line-height: 30px;
}

.demo_advisor main {
  background-color: #F4F4F8;
}

.demo_advisor h1,
.demo_advisor h2,
.demo_advisor h3,
.demo_advisor h4,
.demo_advisor h5,
.demo_advisor h6 {
  font-family: var(--font-raleway);
  font-weight: 700;
  color: #131217;
  text-transform: uppercase;
}

.demo_digital_marketing {
  background-color: #121212;
  color: #838788;
  font-size: 20px;
  line-height: 30px;
  position: relative;
  z-index: 1;
}

.demo_digital_marketing .body_wrap {
  position: unset;
}

.demo_digital_marketing main {
  background: #121212;
  z-index: 3;
  position: relative;
}

.demo_digital_marketing h1,
.demo_digital_marketing h2,
.demo_digital_marketing h3,
.demo_digital_marketing h4,
.demo_digital_marketing h5,
.demo_digital_marketing h6 {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--color-white);
}

.demo_business {
  font-size: 18px;
  line-height: 30px;
  color: #888686;
  background-color: #03080B;
}

.demo_business h1,
.demo_business h2,
.demo_business h3,
.demo_business h4,
.demo_business h5,
.demo_business h6 {
  font-weight: 500;
  color: #03080B;
}

.mxw_1775 {
  max-width: 1775px;
}

.mxw_1710 {
  max-width: 1710px;
}

.px-60 {
  padding: 0 60px;
}

@media (max-width: 991px) {
  .container.px-60 {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.g-12 {
  padding: 0 6px;
}

.g-12>* {
  padding-left: 6px;
  padding-right: 6px;
}

.mt-12 {
  margin-top: 12px;
}

.mt-none-12 {
  margin-top: -12px;
}

.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: #787B84;
  border: 1px solid #EDF3F5;
  min-height: 36px;
  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: 2px 17px 5px;
  margin: 7px;
  position: relative;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}

.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;
}

.body-overlay.active {
  opacity: .5;
  visibility: visible;
}

.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;
}

.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 var(--easing);
  -o-transition: 0.3s var(--easing);
  transition: 0.3s var(--easing);
}

.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;
}

.mr-bg {
  position: relative;
}

.mr-bg::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(286deg, #333 -10.28%, #121212 98.2%);
  content: "";
  z-index: -2;
}

.mr-all-link {
  color: var(--color-white);
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 700;
}

.mr-all-link:hover {
  color: var(--color-white);
  text-decoration: underline;
}

.mr-all-link:hover span {
  -webkit-transform: translate(4px, -4px);
  -ms-transform: translate(4px, -4px);
  transform: translate(4px, -4px);
}

.mr-all-link span {
  margin-left: 10px;
  width: 14px;
  display: inline-block;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translate(0px, -2px);
  -ms-transform: translate(0px, -2px);
  transform: translate(0px, -2px);
}

#rev_slider_2_1_wrapper .tp-bullet {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 3px;
  background-color: #fff;
  transition: all 200ms linear 0s;
  transform: scaleX(0.3);
  transform-origin: right;
}

#rev_slider_2_1_wrapper .tp-bullet:before {
  position: absolute;
  left: -27px;
  top: -12px;
  content: "01";
  width: 10px;
  height: 10px;
  opacity: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

#rev_slider_2_1_wrapper .tp-bullet:nth-child(2):before {
  content: "02";
}

#rev_slider_2_1_wrapper .tp-bullet:nth-child(3):before {
  content: "03";
}

#rev_slider_2_1_wrapper .tp-bullet:nth-child(4):before {
  content: "04";
}

#rev_slider_2_1_wrapper .tp-bullet:nth-child(5):before {
  content: "05";
}

#rev_slider_2_1_wrapper .tp-bullet.selected {
  background-color: #CCFF86;
  transform: scaleX(1);
}

#rev_slider_2_1_wrapper .tp-bullet.selected:before {
  opacity: 1;
}

.xb-title--typewriter {
  display: inline-flex;
  white-space: nowrap;
  position: relative;
}

.xb-title--typewriter .xb-item--text {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.xb-title--typewriter .xb-item--text.is-active {
  position: relative;
  opacity: 1;
  animation: xbKeywordRotatingIn 0.8s cubic-bezier(0.86, 0, 0.07, 1) both;
}

.xb-title--typewriter .xb-item--text:not(.is-active) {
  animation: xbKeywordRotatingOut 0.8s cubic-bezier(0.86, 0, 0.07, 1) both;
}

@keyframes xbKeywordRotatingIn {
  from {
    transform: translateY(70%) rotateX(-100deg);
    opacity: 0;
  }

  to {
    transform: translateY(0) rotateX(0);
    opacity: 1;
  }
}

@keyframes xbKeywordRotatingOut {
  from {
    transform: translateY(0) rotateX(0);
    opacity: 1;
  }

  to {
    transform: translateY(-70%) rotateX(100deg);
    opacity: 0;
  }
}

.sidebar-area {
  padding-left: 10px;
}

@media (max-width: 1199px) {
  .sidebar-area {
    padding-left: 0;
  }
}

.widget__title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 25px;
}

@media (max-width: 1199px) {
  .widget__title {
    font-size: 20px;
  }
}

.widget__search {
  position: relative;
}

.widget__search input {
  height: 60px;
  background-color: rgba(44, 26, 78, 0.05);
  padding: 20px;
  border: 0;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0;
}

.widget__search input::-webkit-input-placeholder {
  color: #4A4C51;
  opacity: 1;
}

.widget__search input::-moz-placeholder {
  color: #4A4C51;
  opacity: 1;
}

.widget__search input:-ms-input-placeholder {
  color: #4A4C51;
  opacity: 1;
}

.widget__search input:-moz-placeholder {
  color: #4A4C51;
  opacity: 1;
}

.widget__search button {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  background-color: var(--color-primary);
}

.widget__category li:not(:last-child) {
  margin-bottom: 13px;
  padding-bottom: 13px;
  border-bottom: 1px solid #E7E9EE;
}

.widget__category li a {
  position: relative;
  display: block;
  z-index: 1;
  color: #888686;
  font-size: 16px;
  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: 20px;
}

.widget__post-item .post-thumb {
  width: 90px;
  height: 90px;
  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: #4A4C51;
  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: 10px;
  color: #191B1E;
}

.widget__post-item .post-content {
  width: calc(100% - 110px);
}

.widget__post-item .post-content .post-title {
  font-size: 16px;
  color: var(--color-black);
  font-weight: 600;
}

.widget__post-item .post-content .post-title a {
  color: inherit;
}

.comments-form {
  padding: 50px;
  border: 1px solid #E7E9EE;
  padding-top: 40px;
}

@media (max-width: 767px) {
  .comments-form {
    padding: 30px 20px;
    padding-top: 25px;
  }
}

.comments-form .comment-heading {
  margin-bottom: 30px;
}

.comments-form .title {
  font-size: 30px;
  margin-bottom: 7px;
  font-weight: 700;
  font-family: var(--font-body);
}

@media (max-width: 767px) {
  .comments-form .title {
    font-size: 26px;
  }
}

.comments-form .form input,
.comments-form .form textarea {
  height: 55px;
  margin-bottom: 20px;
  padding: 0 20px;
  width: 100%;
  font-size: 15px;
  color: var(--color-black);
  border-radius: 0px;
  background-color: #F8F8FB;
  border: 2px solid transparent;
  font-weight: 400;
}

.comments-form .form input::-webkit-input-placeholder,
.comments-form .form textarea::-webkit-input-placeholder {
  color: #6E6D79;
  opacity: 1;
}

.comments-form .form input::-moz-placeholder,
.comments-form .form textarea::-moz-placeholder {
  color: #6E6D79;
  opacity: 1;
}

.comments-form .form input:-ms-input-placeholder,
.comments-form .form textarea:-ms-input-placeholder {
  color: #6E6D79;
  opacity: 1;
}

.comments-form .form input:-moz-placeholder,
.comments-form .form textarea:-moz-placeholder {
  color: #6E6D79;
  opacity: 1;
}

.comments-form .form input:focus,
.comments-form .form textarea:focus {
  border-color: var(--color-primary);
}

.comments-form .form textarea {
  padding: 20px 30px;
  height: 150px;
}

.comments-form__btn button {
  padding: 18px 35px;
}

.mr-noise-bg {
  position: relative;
  z-index: 1;
}

.mr-noise-bg::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/shape/noise.png);
  content: "";
  opacity: .16;
  z-index: -1;
}

/*----------------------------------------*/
/*  04. hero
/*----------------------------------------*/
.hero-default {
  min-height: 800px;
}

@media (max-width: 991px) {
  .hero-default {
    min-height: 650px;
  }
}

@media (max-width: 767px) {
  .hero-default {
    padding: 100px 0;
    background-position: 40%;
  }
}

.hero-content .xb-item--list li {
  font-size: 18px;
  color: #131217;
}

.hero-content .xb-item--list li:not(:last-child) {
  margin-bottom: 15px;
}

.hero-content .xb-item--list li i {
  margin-right: 20px;
  color: #787B84;
}

.hero-business {
  min-height: 100vh;
  background-size: cover;
  background-position: top center;
}

.hero-law {
  min-height: 745px;
  padding-top: 140px;
}

@media (max-width: 991px) {
  .hero-law {
    padding-top: 100px;
  }
}

.law-hero-content .xb-item--title {
  font-size: 70px;
  line-height: 85px;
  margin-bottom: 44px;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .law-hero-content .xb-item--title {
    font-size: 60px;
    line-height: 77px;
  }
}

@media (max-width: 1199px) {
  .law-hero-content .xb-item--title {
    font-size: 50px;
    line-height: 65px;
  }
}

@media (max-width: 767px) {
  .law-hero-content .xb-item--title {
    font-size: 35px;
    line-height: 50px;
  }
}

.law-hero-content .xb-item--content {
  margin-bottom: 43px;
}

.law-hero-content .btn-video {
  width: 60px;
  height: 60px;
  background-color: var(--color-law);
  color: var(--color-white);
  font-size: 15px;
}

.law-hero-content .btn-video::before {
  background-color: var(--color-law);
}

.hero-advisor {
  padding-top: 120px;
}

@media (max-width: 991px) {
  .hero-advisor {
    padding-top: 80px;
  }
}

.ad-hero-img img {
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.ad-hero-img-btn {
  position: absolute;
  top: -97px;
  right: 166px;
  width: 210px;
  height: 210px;
  background-color: var(--color-advisor);
  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;
}

@media only screen and (min-width: 1200px) and (max-width: 1300px) {
  .ad-hero-img-btn {
    top: -101px;
    right: 141px;
  }
}

@media (max-width: 1199px) {
  .ad-hero-img-btn {
    top: -90px;
    right: 121px;
    width: 180px;
    height: 180px;
    padding: 10px;
  }
}

@media (max-width: 991px) {
  .ad-hero-img-btn {
    top: -75px;
    right: 77px;
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 767px) {
  .ad-hero-img-btn {
    right: 30px;
  }
}

.ad-hero-shape {
  position: absolute;
  top: 15%;
  left: 0;
  z-index: -1;
  width: 100%;
}

.ad-hero-shape img {
  width: 100%;
}

.hero-marketing {
  padding-top: 230px;
  padding-bottom: 100px;
}

@media (max-width: 991px) {
  .hero-marketing {
    padding-top: 170px;
  }
}

.mr-hero-content .xb-item--subtitle {
  font-size: 14px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 5px;
  font-weight: 700;
}

.mr-hero-content .xb-item--subtitle span {
  display: inline-block;
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}

.mr-hero-content .xb-item--title {
  font-size: 80px;
  letter-spacing: -2.4px;
  line-height: 95px;
  margin-bottom: 22px;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .mr-hero-content .xb-item--title {
    font-size: 60px;
    line-height: 77px;
    letter-spacing: -1.4px;
  }
}

@media (max-width: 1199px) {
  .mr-hero-content .xb-item--title {
    font-size: 50px;
    letter-spacing: -0.4px;
    line-height: 70px;
  }
}

@media (max-width: 767px) {
  .mr-hero-content .xb-item--title {
    font-size: 40px;
    letter-spacing: 0;
    line-height: 60px;
  }
}

.mr-hero-content .xb-item--title .icon {
  display: inline-block;
  line-height: 0;
  margin-left: 7px;
  margin-right: 5px;
}

.mr-hero-content .xb-item--title .icon img {
  animation: spin 10s infinite linear;
  -webkit-animation: spin 10s infinite linear;
}

.mr-hero-img {
  margin-right: -180px;
  text-align: right;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .mr-hero-img {
    margin-right: 0;
  }
}

@media (max-width: 1199px) {
  .mr-hero-img {
    margin-right: 0;
  }
}

@media (max-width: 991px) {
  .mr-hero-img {
    text-align: left;
    margin-top: 50px;
  }
}

.mr-hero-img-inner .chart {
  position: absolute;
}

.mr-hero-img-inner .chart--1 {
  left: 22%;
  top: 9%;
}

@media (max-width: 1199px) {
  .mr-hero-img-inner .chart--1 {
    left: 11%;
    top: 3%;
  }
}

.mr-hero-img-inner .chart--2 {
  left: 20%;
  bottom: 34%;
}

@media (max-width: 1199px) {
  .mr-hero-img-inner .chart--2 {
    left: 7%;
    bottom: 11%;
  }
}

.mr-hero-img-inner .chart--3 {
  top: 13%;
  right: 4%;
}

.mr-hero-img-inner .chart--4 {
  right: 0;
  bottom: 0;
}

@media (max-width: 1199px) {
  .mr-hero-img-inner .chart--4 {
    max-width: 150px;
  }
}

body[data-aos-easing="ease"] [data-aos="zoom-in"] {
  transition-timing-function: cubic-bezier(0.18, 0.57, 0.61, 1.32);
}

.mr-hero-shape {
  position: absolute;
  top: 52%;
  left: 34px;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .mr-hero-shape {
    display: none;
  }
}

@media (max-width: 1199px) {
  .mr-hero-shape {
    display: none;
  }
}

.mr-hero-shape img {
  animation: animationFramesFive 15s alternate infinite linear;
  -webkit-animation: animationFramesFive 15s alternate infinite linear;
}

.lw-hero-img {
  position: absolute;
  right: -80px;
  max-width: 980px;
  bottom: 1%;
  z-index: 1;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .lw-hero-img {
    max-width: 750px;
    bottom: 20%;
  }
}

@media (max-width: 1199px) {
  .lw-hero-img {
    max-width: 600px;
    bottom: 35%;
  }
}

@media (max-width: 991px) {
  .lw-hero-img {
    position: relative;
    right: 0;
    bottom: 0%;
    margin-top: 40px;
  }
}

.xb-lw-feature {
  background-color: var(--color-law);
  padding: 50px;
}

@media (max-width: 991px) {
  .xb-lw-feature {
    padding: 30px 20px;
  }
}

.xb-lw-feature__wrap {
  position: relative;
  z-index: 2;
}

.xb-lw-feature.active {
  background-color: #121A1B;
}

.xb-lw-feature .xb-item--icon {
  margin-bottom: 23px;
  min-height: 60px;
  display: flex;
  align-items: center;
}

.xb-lw-feature .xb-item--title {
  color: var(--color-white);
  margin-bottom: 30px;
  font-family: var(--font-body);
}

.xb-lw-feature .xb-item--year {
  color: var(--color-white);
}

.lw-hero-shape .shape {
  position: absolute;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  z-index: -1;
}

.lw-hero-shape .shape--1 {
  top: 8%;
  left: 20%;
  width: 143px;
  height: 143px;
  background-color: var(--color-law);
}

.xb-lw-hero-shape {
  position: absolute;
  top: -7%;
  right: -2%;
  background-repeat: no-repeat;
  z-index: -1;
}

.xb-lw-hero-shape .xb-anim-dot {
  top: -9%;
  width: 1670px;
  height: 1670px;
  right: -2%;
  position: absolute;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  z-index: -1;
  animation: spin 20s infinite linear;
  -webkit-animation: spin 20s infinite linear;
}

.xb-lw-hero-shape .xb-anim-dot::before {
  bottom: -13px;
  left: 50%;
  width: 12px;
  height: 12px;
  content: '';
  position: absolute;
  border-radius: 100%;
  background-color: var(--color-law);
  transform: translateY(-50%);
}

.lw-hero-explore {
  width: 94px;
  height: 94px;
  background-color: #fff;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  position: absolute;
  bottom: -17px;
  right: 31%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 94px;
  box-shadow: 0px 28px 37px 0px rgba(153, 164, 181, 0.17);
  z-index: 2;
}

@media (max-width: 767px) {
  .lw-hero-explore {
    right: 10%;
  }
}

.lw-hero-explore .scroll-down {
  width: 22px;
  height: 30px;
  border: 2px solid #121A1B;
  border-radius: 11px;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  top: -5px;
}

.lw-hero-explore .scroll-down:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 5px;
  width: 3px;
  height: 8px;
  border-radius: 3px;
  transform: translateX(-50%);
  background: #121A1B;
  animation: scrollDown 1.5s ease infinite;
}

.lw-hero-explore span {
  position: absolute;
  bottom: 17px;
  -webkit-transition: 0.3s var(--easing);
  -o-transition: 0.3s var(--easing);
  transition: 0.3s var(--easing);
}

.lw-hero-explore:hover span {
  -webkit-transform: translateY(4px);
  -ms-transform: translateY(4px);
  transform: translateY(4px);
}

@keyframes scrollDown {
  0% {
    transform: translate(-50%, 0px);
    opacity: 0;
  }

  50% {
    transform: translate(-50%, 4px);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, 7px);
    opacity: 0;
  }
}

.lw-hr-content {
  padding-top: 220px;
  padding-bottom: 200px;
}

@media (max-width: 1199px) {
  .lw-hr-content {
    padding-top: 130px;
    padding-bottom: 130px;
  }
}

.lw-hr-content__text {
  font-size: 65px;
  line-height: 85px;
  text-align: center;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .lw-hr-content__text {
    font-size: 58px;
    line-height: 77px;
    padding: 0 100px;
  }
}

@media (max-width: 1199px) {
  .lw-hr-content__text {
    font-size: 45px;
    line-height: 65px;
    padding: 0 100px;
  }
}

@media (max-width: 991px) {
  .lw-hr-content__text {
    font-size: 35px;
    line-height: 54px;
  }
}

@media (max-width: 767px) {
  .lw-hr-content__text {
    padding: 0;
    font-size: 30px;
    line-height: 48px;
  }
}

.lw-hr-content__text span {
  color: var(--color-law);
}

.lw-hr-shape .shape {
  position: absolute;
  z-index: -1;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .lw-hr-shape .shape {
    max-width: 200px;
  }
}

@media (max-width: 1199px) {
  .lw-hr-shape .shape {
    max-width: 170px;
  }
}

@media (max-width: 767px) {
  .lw-hr-shape .shape {
    display: none;
  }
}

.lw-hr-shape .shape--1 {
  top: 60%;
  left: 33px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.lw-hr-shape .shape--2 {
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.insurance_hero_subtitle {
  padding: 0 23px;
  position: relative;
}

.insurance_hero_subtitle::before,
.insurance_hero_subtitle::after {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  content: "";
  background-image: url(../img/icon/ins_star.svg);
  background-repeat: no-repeat;
  background-size: cover;
}

.insurance_hero_subtitle::after {
  left: auto;
  right: 0;
}

@media (max-width: 991px) {
  #rev_slider_2_1_wrapper .tp-bullets {
    -webkit-transform: translate(-72px, -90px) !important;
    -ms-transform: translate(-72px, -90px) !important;
    transform: translate(-72px, -90px) !important;
  }
}

/*----------------------------------------*/
/*  05. feature
/*----------------------------------------*/
.xb-feature__wrap {
  margin: 0 -45px;
  margin-top: -70px;
}

@media (max-width: 767px) {
  .xb-feature__wrap {
    margin-left: 0;
    margin-right: 0;
    margin-top: -20px;
  }
}

.feature-pb {
  padding-bottom: 180px;
}

.xb-feature1 .xb-item--inner {
  background-color: #0F2C31;
  padding: 40px 30px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  display: flex;
  flex-wrap: wrap;
}

.xb-feature1 .xb-item--holder {
  width: calc(100% - 70px);
}

.xb-feature1 .xb-item--icon {
  width: 50px;
  height: 50px;
  margin-right: 20px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background-color: #052328;
  display: flex;
  align-items: center;
  justify-content: center;
}

.xb-feature1 .xb-item--title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-white);
  letter-spacing: -0.48px;
}

.xb-feature1 .xb-item--content {
  color: #8DB7BE;
}

.lw-feature-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 57.6%;
  height: 100%;
  background-image: url(../img/bg/lw_feat_img.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

@media (max-width: 991px) {
  .lw-feature-img {
    position: relative;
    width: 100%;
    min-height: 400px;
  }
}

.lw-feat-funfact {
  min-width: 330px;
  background-color: #121A1B;
  width: 50%;
  padding: 50px;
}

.lw-feat-funfact__wrap {
  flex-wrap: nowrap;
}

@media (max-width: 991px) {
  .lw-feat-funfact__wrap {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .lw-feat-funfact__wrap {
    flex-wrap: wrap;
  }
}

@media (max-width: 1199px) {
  .lw-feat-funfact {
    min-width: 310px;
  }
}

@media (max-width: 767px) {
  .lw-feat-funfact {
    width: 100%;
  }
}

.lw-feat-funfact.active {
  background-color: var(--color-law);
}

.lw-feat-funfact .number {
  color: var(--color-white);
  font-size: 52px;
  margin-bottom: 6px;
}

@media (max-width: 1199px) {
  .lw-feat-funfact .number {
    font-size: 45px;
  }
}

.lw-feat-funfact .number .suffix {
  -webkit-transform: translateY(6px);
  -ms-transform: translateY(6px);
  transform: translateY(6px);
  display: inline-block;
  padding-left: 3px;
}

.lw-feat-funfact .title {
  font-size: 22px;
  color: var(--color-white);
  font-family: var(--font-body);
}

.xb-lw-list li {
  font-size: 18px;
  color: #121A1B;
  font-weight: 500;
}

.xb-lw-list li:not(:last-child) {
  margin-bottom: 7px;
}

.xb-lw-list li i {
  margin-right: 20px;
  color: var(--color-law);
}

.lw-feat-shape {
  position: absolute;
  bottom: 0;
  left: 0;
}

.xb-feature2 {
  width: 50%;
  padding: 0 25px;
}

@media (max-width: 767px) {
  .xb-feature2 {
    padding: 0 13px;
    margin-top: 30px;
  }
}

.xb-feature2:hover .xb-item--icon::before {
  opacity: 1;
}

.xb-feature2 .xb-item--icon {
  width: 71px;
  height: 71px;
  background-color: #14CAF4;
  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;
  margin-bottom: 25px;
  position: relative;
}

.xb-feature2 .xb-item--icon::before {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 91px;
  height: 91px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.28);
  content: "";
  animation: spin 15s infinite linear;
  -webkit-animation: spin 15s infinite linear;
  opacity: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.xb-feature2 .xb-item--title {
  color: var(--color-white);
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 10px;
  letter-spacing: -0.4px;
}

.xb-feature2 .xb-item--content {
  color: #BCBFEE;
}

.mr-feature .xb-item--inner {
  text-align: center;
  position: relative;
  padding: 32px 30px 40px;
}

@media (max-width: 1199px) {
  .mr-feature .xb-item--inner {
    padding: 32px 65px 40px;
  }
}

@media (max-width: 991px) {
  .mr-feature .xb-item--inner {
    padding: 32px 20px 40px;
  }
}

.mr-feature .xb-item--icon {
  margin-bottom: 19px;
  min-height: 113px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 991px) {
  .mr-feature .xb-item--icon {
    margin-bottom: 13px;
  }
}

.mr-feature .xb-item--bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.mr-feature .xb-item--title {
  margin-bottom: 70px;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}

@media (max-width: 991px) {
  .mr-feature .xb-item--title {
    margin-bottom: 40px;
  }
}

.mr-feature-shape {
  position: absolute;
  bottom: 10%;
  left: 0;
}

.feature-area {
  padding-right: 100px;
}

@media (max-width: 767px) {
  .feature-area {
    padding-right: 0;
  }
}

.xb-feature-item {
  position: relative;
}

.xb-feature-item::before {
  position: absolute;
  top: 0;
  right: -47%;
  width: 1px;
  height: 100%;
  background-color: #E9E9E9;
  content: "";
}

@media (max-width: 1199px) {
  .xb-feature-item::before {
    display: none;
  }
}

.xb-feature-item:last-child::before {
  display: none;
}

.xb-feature-item .xb-item--icon {
  background-color: rgba(32, 40, 188, 0.1);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.xb-feature-item .xb-item--title {
  font-size: 20px;
  margin-bottom: 17px;
}

@media (max-width: 991px) {
  .feature-sec-title {
    padding-left: 0;
  }
}

/*----------------------------------------*/
/*  06. about
/*----------------------------------------*/
@media (max-width: 1199px) {
  .ins-about__info {
    padding-left: 0;
  }
}

.ins-about__img {
  width: 330px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  margin-right: 50px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .ins-about__img {
    margin-right: 0;
  }
}

.ins-about__content {
  width: calc(100% - 380px);
}

@media (max-width: 767px) {
  .ins-about__content {
    width: 100%;
    margin-top: 30px;
  }
}

.ins-about__count-item {
  margin-top: 30px;
}

.ins-about__count-item:not(:last-child) {
  margin-right: 30px;
}

.ins-about__count-item .icon {
  margin-bottom: 12px;
}

.ins-about__count-item .number {
  font-size: 44px;
  color: var(--color-white);
  margin-bottom: 10px;
  font-weight: 400;
}

.ins-about__count-item .number .suffix {
  -webkit-transform: translateY(4px);
  -ms-transform: translateY(4px);
  transform: translateY(4px);
  position: relative;
  display: inline-block;
  padding-left: 2px;
}

.ins-about__count-item .title {
  font-size: 16px;
  font-weight: 700;
  color: #8DB7BE;
}

.ins-list li {
  color: var(--color-white);
  font-weight: 700;
  color: #8DB7BE;
}

.ins-list li:not(:last-child) {
  margin-bottom: 14px;
}

.ins-list li span {
  margin-right: 10px;
}

.xb-about-list li {
  width: 50%;
  font-size: 20px;
  color: #131217;
  margin-top: 35px;
}

.xb-about-list li span {
  margin-right: 8px;
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  display: inline-block;
}

.ad-about-inner {
  margin-right: -30px;
}

@media (max-width: 991px) {
  .ad-about-inner {
    margin-right: 0;
  }
}

.ad-about-img {
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  overflow: hidden;
}

.ad-about-content {
  padding-left: 60px;
}

@media (max-width: 1199px) {
  .ad-about-content {
    padding-left: 30px;
  }
}

@media (max-width: 991px) {
  .ad-about-content {
    padding-left: 0;
  }
}

.ad-about-author-img {
  width: 366px;
  height: 366px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border: 5px solid var(--color-white);
  margin-left: 50px;
}

@media (max-width: 1199px) {
  .ad-about-author-img {
    margin-left: 0;
    margin-top: 40px;
  }
}

.ad-about-shape {
  position: absolute;
  bottom: 6%;
  left: 0;
  z-index: -1;
  width: 100%;
}

.ad-about-shape img {
  width: 100%;
}

.ad-about-social {
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  width: 100%;
  text-align: center;
}

.ad-about-social li:not(:last-child) {
  margin-right: 10px;
}

.ad-about-social li a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background-color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #131217;
}

.ad-about-social li a:hover {
  color: var(--color-advisor);
}

.ad-about-social li a:hover svg path {
  fill: var(--color-advisor);
}

.ad-about-social li a svg path {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.bc-about__tab {
  border: 0;
  margin: -5px;
  margin-bottom: 40px;
}

.bc-about__tab .nav-item {
  margin: 5px;
}

.bc-about__tab .nav-item .nav-link {
  font-size: 14px;
  color: #03080B;
  font-weight: 700;
  background-color: var(--color-business);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  letter-spacing: 0.7px;
  padding: 13px 44px;
  text-transform: uppercase;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

@media (max-width: 767px) {
  .bc-about__tab .nav-item .nav-link {
    font-size: 12px;
    padding: 8px 25px;
  }
}

.bc-about__tab .nav-item .nav-link.active,
.bc-about__tab .nav-item .nav-link:hover {
  background-color: #03080B;
  color: var(--color-white);
}

.bc-about__info {
  margin: -15px;
}

.bc-about__info-item {
  max-width: 315px;
  padding: 38px 40px;
  background-color: #F8FFEF;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  margin: 15px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bc-about__info-item .xb-item--icon {
  width: 61px;
  height: 61px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background-color: #03080B;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.bc-about__info-item .xb-item--title {
  font-size: 20px;
  letter-spacing: -0.4px;
}

.bc-about__info-item .xb-item--content {
  font-size: 14px;
  line-height: 24px;
}

.bc-about__img {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .bc-about__img {
    max-width: 70%;
  }
}

@media (max-width: 1199px) {
  .bc-about__img {
    max-width: 600px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .bc-about__img.img-2 {
    max-width: 38%;
  }
}

@media (max-width: 1199px) {
  .bc-about__img.img-2 {
    max-width: 350px;
  }
}

.bc-about__img.style-2 {
  right: 10%;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .bc-about__img.style-2 {
    max-width: 450px;
    right: 0;
  }
}

@media (max-width: 1199px) {
  .bc-about__img.style-2 {
    right: 0;
    max-width: 350px;
  }
}

.bc-about__revirew {
  background-color: #F8FFEF;
  border: 1px solid var(--color-white);
  filter: drop-shadow(0px 30px 50px rgba(18, 17, 22, 0.08));
  backdrop-filter: blur(10px);
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  display: inline-block;
  min-width: 264px;
  padding: 25px 20px;
  position: absolute;
  bottom: 24%;
  right: 22%;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .bc-about__revirew {
    right: 11%;
  }
}

@media (max-width: 1199px) {
  .bc-about__revirew {
    right: 3%;
  }
}

@media (max-width: 991px) {
  .bc-about__revirew {
    position: unset;
    margin-top: 50px;
  }
}

.bc-about__revirew.style-2 {
  bottom: 15%;
  right: 11%;
}

@media (max-width: 1199px) {
  .bc-about__revirew.style-2 {
    right: 3%;
  }
}

.bc-about__revirew.style-3 {
  bottom: 20%;
  right: 19%;
}

@media (max-width: 1199px) {
  .bc-about__revirew.style-3 {
    right: 4%;
  }
}

.bc-about__revirew .xb-item--review {
  padding: 3px 12px;
  color: #03080B;
  font-size: 12px;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  background-color: var(--color-business);
  display: inline-block;
  margin-bottom: 12px;
  line-height: 1.2;
}

.bc-about__revirew .xb-item--title {
  font-size: 20px;
}

.bc-about__revirew .xb-item--rating {
  position: absolute;
  top: -16px;
  right: -18px;
  background-color: #03080B;
  line-height: 1.2;
  padding: 3px 13px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  color: var(--color-white);
}

.bc-about__revirew .xb-item--rating span {
  margin-left: 4px;
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  display: inline-block;
}

.bc-about__shape {
  position: absolute;
  right: 4%;
  bottom: 0;
  z-index: -2;
}

.xb-about-content .sec-title .title {
  font-size: 42px;
  letter-spacing: -0.9px;
  line-height: 52px;
}

@media (max-width: 1199px) {
  .xb-about-content .sec-title .title {
    font-size: 36px;
    letter-spacing: 0;
    line-height: 50px;
  }
}

@media (max-width: 767px) {
  .xb-about-content .sec-title .title {
    font-size: 28px;
    line-height: 42px;
  }
}

.xb-about-info {
  margin-left: 55px;
  padding-left: 90px;
  border-left: 1px solid #E7E9EE;
}

@media (max-width: 1199px) {
  .xb-about-info {
    margin-left: 15px;
    padding-left: 50px;
  }
}

@media (max-width: 991px) {
  .xb-about-info {
    margin-left: 0;
    padding-left: 0;
    border: 0;
  }
}

.xb-about-info__item:not(:last-child) {
  margin-bottom: 40px;
}

.xb-about-info__item .xb-item--icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background-color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 30px;
}

.xb-about-info__item .xb-item--holder {
  width: calc(100% - 95px);
}

.xb-about-info__item .xb-item--title {
  font-size: 20px;
  margin-bottom: 10px;
}

.xb-about-info__item:nth-child(odd) .xb-item--icon {
  background-color: var(--color-secondary);
}

/*----------------------------------------*/
/*  07. service
/*----------------------------------------*/
.xb-service__sec-title {
  margin-top: 12px;
  background-color: var(--color-white);
  padding: 60px 50px;
  position: relative;
  height: calc(100% - 12px);
}

.xb-service__sec-title .sec-title .subtitle {
  margin-bottom: 10px;
}

.xb-service__img {
  position: absolute;
  bottom: 0;
  left: 0;
}

@media (max-width: 991px) {
  .xb-service__img {
    left: auto;
    right: 0;
    max-width: 331px;
  }
}

@media (max-width: 767px) {
  .xb-service__img {
    display: none;
  }
}

.xb-service__shape .shape {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: -1;
}

.xb-service__shape .shape--1 {
  left: 0;
  top: 55%;
}

.xb-service__shape .shape--2 {
  right: 0;
}

.xb-service1 .xb-item--inner {
  padding: 50px 42px;
  padding-top: 58px;
  background-color: var(--color-white);
  position: relative;
  overflow: hidden;
}

@media (max-width: 1199px) {
  .xb-service1 .xb-item--inner {
    padding: 30px;
  }
}

.xb-service1 .xb-item--inner:hover .xb-item--shape {
  top: 0;
  right: 0;
  opacity: 1;
}

.xb-service1 .xb-item--inner:hover .xb-item--icon {
  -webkit-animation: xb-danceTop 600ms ease-in-out;
  animation: xb-danceTop 600ms ease-in-out;
}

.xb-service1 .xb-item--icon {
  margin-bottom: 35px;
}

.xb-service1 .xb-item--title {
  margin-bottom:15px;
  font-size: 20px;
}

.xb-service1 .xb-item--title a {
  color: currentColor;
}

.xb-service1 .xb-item--shape {
  position: absolute;
  top: -25px;
  right: -25px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
}

.ins-service .xb-item--inner {
  background-color: var(--color-white);
  padding: 34px 50px;
  padding-top: 19px;
  padding-right: 100px;
  position: relative;
  -webkit-transition: 0.3s var(--easing);
  -o-transition: 0.3s var(--easing);
  transition: 0.3s var(--easing);
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.ins-service .xb-item--inner:hover {
  filter: drop-shadow(0px 24px 21px rgba(183, 183, 183, 0.25));
}

.ins-service .xb-item--inner:hover .xb-item--link {
  background-color: var(--color-ins);
  -webkit-transform: translateY(-50%) rotate(0deg);
  -ms-transform: translateY(-50%) rotate(0deg);
  transform: translateY(-50%) rotate(0deg);
}

.ins-service .xb-item--holder {
  width: calc(100% - 160px);
  margin-top: 15px;
}

@media (max-width: 767px) {
  .ins-service .xb-item--holder {
    width: 100%;
  }
}

.ins-service .xb-item--icon {
  width: 110px;
  height: 110px;
  background: linear-gradient(99deg, #F8F8F8 6.12%, #FFF 96.98%);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  margin-right: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
}

.ins-service .xb-item--title {
  font-size: 24px;
  letter-spacing: -0.48px;
  margin-bottom: 4px;
}

.ins-service .xb-item--link {
  position: absolute;
  top: 50%;
  right: 50px;
  -webkit-transform: translateY(-50%) rotate(-50deg);
  -ms-transform: translateY(-50%) rotate(-50deg);
  transform: translateY(-50%) rotate(-50deg);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background-color: rgba(177, 242, 0, 0.2);
  font-size: 13px;
  color: #052328;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: 0.3s var(--easing);
  -o-transition: 0.3s var(--easing);
  transition: 0.3s var(--easing);
}

@media (max-width: 767px) {
  .ins-service .xb-item--link {
    top: 50px;
    right: 30px;
  }
}

.ins-service-bottom-text {
  color: #575757;
  font-weight: 700;
}

.ins-service-bottom-text a {
  text-transform: uppercase;
  text-decoration: underline;
  color: #052328;
}

.lw-service .xb-item--inner {
  background-color: var(--color-white);
  -webkit-transition: 0.3s var(--easing);
  -o-transition: 0.3s var(--easing);
  transition: 0.3s var(--easing);
  position: relative;
  border: 1px solid #F2F3F4;
  margin-top: -1px;
  margin-right: -1px;
}

.lw-service .xb-item--inner::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-law);
  z-index: 2;
  content: "";
  -webkit-transition: 0.3s var(--easing);
  -o-transition: 0.3s var(--easing);
  transition: 0.3s var(--easing);
  transform: scaleY(1);
  opacity: 0;
  filter: drop-shadow(0px 7px 22px rgba(25, 85, 255, 0.28));
}

.lw-service .xb-item--inner:hover::before,
.lw-service .xb-item--inner.active::before {
  opacity: 1;
  transform: scaleY(1.3);
}

.lw-service .xb-item--inner:hover .xb-item--icon,
.lw-service .xb-item--inner.active .xb-item--icon {
  filter: brightness(0) invert(1);
  -webkit-transform: translateY(-22px);
  -ms-transform: translateY(-22px);
  transform: translateY(-22px);
}

.lw-service .xb-item--inner:hover .xb-item--icon::before,
.lw-service .xb-item--inner.active .xb-item--icon::before {
  background-color: #fff;
  opacity: 0.1;
}

.lw-service .xb-item--inner:hover .xb-item--title,
.lw-service .xb-item--inner.active .xb-item--title {
  -webkit-transform: translateY(-22px);
  -ms-transform: translateY(-22px);
  transform: translateY(-22px);
}

.lw-service .xb-item--inner:hover .xb-item--title a,
.lw-service .xb-item--inner.active .xb-item--title a {
  color: var(--color-white);
}

.lw-service .xb-item--inner:hover .xb-item--link,
.lw-service .xb-item--inner.active .xb-item--link {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
  transition-delay: .2s;
  z-index: 2;
}

.lw-service .xb-item--holder {
  z-index: 2;
  position: relative;
  padding: 65px 35px 43px 50px;
}

.lw-service .xb-item--icon {
  margin-bottom: 25px;
  -webkit-transition: 0.3s var(--easing);
  -o-transition: 0.3s var(--easing);
  transition: 0.3s var(--easing);
  position: relative;
  z-index: 1;
}

.lw-service .xb-item--icon::before {
  position: absolute;
  top: -14px;
  left: -8px;
  width: 60px;
  height: 60px;
  background-color: #EDF5F6;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  content: "";
  z-index: -1;
  -webkit-transition: 0.3s var(--easing);
  -o-transition: 0.3s var(--easing);
  transition: 0.3s var(--easing);
}

.lw-service .xb-item--title {
  font-size: 22px;
  color: #121A1B;
  -webkit-transition: 0.3s var(--easing);
  -o-transition: 0.3s var(--easing);
  transition: 0.3s var(--easing);
  letter-spacing: -0.66px;
  font-family: var(--font-body);
}

.lw-service .xb-item--title a {
  color: #121A1B;
}

.lw-service .xb-item--link {
  color: var(--color-white);
  opacity: 0;
  visibility: hidden;
  position: relative;
  position: absolute;
  bottom: 8px;
  transform: translateY(20px);
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
}

.lw-service .xb-item--link:hover span {
  -webkit-transform: translateX(10px);
  -ms-transform: translateX(10px);
  transform: translateX(10px);
}

.lw-service .xb-item--link span {
  margin-left: 40px;
  display: inline-block;
  -webkit-transition: 0.3s var(--easing);
  -o-transition: 0.3s var(--easing);
  transition: 0.3s var(--easing);
}

.lw-service-btn {
  font-size: 20px;
  color: #7B7B7B;
  font-weight: 500;
  text-decoration: underline;
}

.lw-service-btn:hover span {
  -webkit-transform: translate(4px, -3px);
  -ms-transform: translate(4px, -3px);
  transform: translate(4px, -3px);
}

.lw-service-btn span {
  margin-left: 8px;
  display: inline-block;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.xb-service2 .xb-item--inner {
  position: relative;
  z-index: 1;
  min-height: 249px;
  padding: 70px 40px 42px 50px;
  display: flex;
  align-items: start;
  flex-direction: column;
  justify-content: end;
  -webkit-transition: 0.3s var(--easing);
  -o-transition: 0.3s var(--easing);
  transition: 0.3s var(--easing);
  width: 100%;
}

@media (max-width: 1199px) {
  .xb-service2 .xb-item--inner {
    padding: 40px 42px 50px;
    background-color: #F4F4F8;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    text-align: center;
    display: inline-block;
  }

  .xb-service2 .xb-item--inner:hover {
    background-color: var(--color-advisor);
  }
}

.xb-service2 .xb-item--inner:hover {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
}

.xb-service2 .xb-item--inner:hover .xb-item--bg svg path {
  fill: var(--color-advisor);
}

.xb-service2 .xb-item--inner:hover .xb-item--title,
.xb-service2 .xb-item--inner:hover .xb-item--content {
  color: var(--color-white);
}

.xb-service2 .xb-item--bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

@media (max-width: 1199px) {
  .xb-service2 .xb-item--bg {
    display: none;
  }
}

.xb-service2 .xb-item--bg svg {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.xb-service2 .xb-item--bg svg path {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.xb-service2 .xb-item--icon {
  position: absolute;
  top: -2px;
  left: 0;
  width: 84px;
  height: 84px;
  background-color: #F4F4F8;
  border: 1px solid #F4F4F8;
  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;
}

@media (max-width: 1199px) {
  .xb-service2 .xb-item--icon {
    position: unset;
    margin: 0 auto 10px;
  }
}

.xb-service2 .xb-item--title {
  font-size: 24px;
  margin-bottom: 15px;
  font-family: var(--font-body);
  text-transform: capitalize;
}

.xb-service2 .xb-item--title a {
  color: currentColor;
}

.xb-service2 .xb-item--content {
  font-size: 16px;
  line-height: 28px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.mr-service {
  border: 0;
  padding-right: 70px;
}

@media (max-width: 1199px) {
  .mr-service {
    padding-right: 20px;
  }
}

@media (max-width: 991px) {
  .mr-service {
    padding-right: 0;
  }
}

.mr-service .nav-link {
  width: 100%;
  padding: 0;
  border: 0;
  border-top: 1px solid #333333;
  border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  -ms-border-radius: 0 !important;
  -o-border-radius: 0 !important;
  background: transparent !important;
  padding-left: 72px;
}

@media (max-width: 991px) {
  .mr-service .nav-link {
    padding-left: 50px;
  }
}

.mr-service .nav-link.active,
.mr-service .nav-link:hover {
  border-color: #333333;
}

.bc-service .xb-item--inner {
  background-color: var(--color-white);
  padding: 92px 80px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .bc-service .xb-item--inner {
    padding: 45px 50px;
  }
}

@media (max-width: 991px) {
  .bc-service .xb-item--inner {
    padding: 50px 30px;
  }
}

.bc-service .xb-item--inner:hover .xb-item--icon img {
  -webkit-animation: xb-danceTop 700ms ease-in-out;
  animation: xb-danceTop 700ms ease-in-out;
}

.bc-service .xb-item--icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  z-index: 1;
  height: 115px;
}

.bc-service .xb-item--icon::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  width: 67px;
  height: 67px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background-color: var(--color-business);
  content: "";
  z-index: -1;
}

.bc-service .xb-item--icon.-mr-20::before {
  margin-right: -25px;
}

.bc-service .xb-item--title {
  font-size: 30px;
  color: #03080B;
  letter-spacing: -0.3px;
  margin-bottom: 55px;
}

.bc-service .xb-item--title a {
  color: currentColor;
}

.bc-service-slider__inner {
  margin-left: -150px;
  margin-right: -150px;
  position: relative;
}

@media (max-width: 767px) {
  .bc-service-slider__inner {
    padding: 0 15px;
  }
}

@media (max-width: 767px) {
  .bc-service-slider__inner {
    margin-left: 0;
    margin-right: 0;
  }
}

.bc-carousel-button {
  display: flex;
  align-items: center;
}

.bc-carousel-button .xb-swiper-arrow {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  box-shadow: 0px 7px 13px 0px rgba(44, 65, 97, 0.13);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: var(--color-white);
  top: 50%;
  left: 23.3%;
  z-index: 1;
  color: #202026;
  font-size: 20px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

@media (max-width: 767px) {
  .bc-carousel-button .xb-swiper-arrow {
    display: none;
  }
}

@media (max-width: 991px) {
  .bc-carousel-button .xb-swiper-arrow.xb-swiper-arrow-prev {
    left: 30%;
  }
}

.bc-carousel-button .xb-swiper-arrow.xb-swiper-arrow-prev:hover {
  -webkit-transform: translate(-7px, -50%);
  -ms-transform: translate(-7px, -50%);
  transform: translate(-7px, -50%);
}

.bc-carousel-button .xb-swiper-arrow.xb-swiper-arrow-next {
  left: auto;
  right: 23.3%;
}

@media (max-width: 991px) {
  .bc-carousel-button .xb-swiper-arrow.xb-swiper-arrow-next {
    right: 30%;
  }
}

.bc-carousel-button .xb-swiper-arrow.xb-swiper-arrow-next:hover {
  -webkit-transform: translate(7px, -50%);
  -ms-transform: translate(7px, -50%);
  transform: translate(7px, -50%);
}

.bc-service-text {
  background-color: var(--color-white);
  padding: 15px;
  text-align: center;
  font-weight: 500;
}

@media (max-width: 767px) {
  .bc-service-text {
    margin-left: 15px;
    margin-right: 15px;
    font-size: 17px;
  }
}

.bc-service-text img {
  margin-right: 25px;
}

@media (max-width: 767px) {
  .bc-service-text img {
    height: 30px;
    margin-right: 10px;
  }
}

.bc-service-text a {
  color: #03080B;
  margin-left: 10px;
}

.bc-service-text a:hover {
  text-decoration: underline;
}

.service-single__content .title {
  margin-bottom: 35px;
}

.service-single__content h2 {
  font-size: 35px;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .service-single__content h2 {
    font-size: 28px;
  }
}

.service-single__content p {
  font-weight: 500;
}

.service-single__content p:not(:last-child) {
  margin-bottom: 25px;
}

.service-single__info-item {
  width: 50%;
  position: relative;
  margin-bottom: 60px;
  padding-right: 40px;
}

@media (max-width: 767px) {
  .service-single__info-item {
    width: 100%;
    padding-right: 0;
  }
}

.service-single__info-item .xb-item--number {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 18px;
  font-weight: 600;
}

.service-single__info-item .xb-item--holder {
  padding-left: 60px;
}

.service-single__info-item .xb-item--title {
  font-size: 18px;
  margin-bottom: 20px;
}

.service-single__list li {
  width: 50%;
  margin-bottom: 17px;
  font-weight: 500;
}

@media (max-width: 767px) {
  .service-single__list li {
    width: 100%;
  }
}

.service-single__list li img {
  margin-right: 20px;
}

/*----------------------------------------*/
/*  08. team
/*----------------------------------------*/
.xb-team1 .xb-item--inner {
  background-color: var(--color-white);
  text-align: center;
  padding: 55px 20px 0;
  min-height: 537px;
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
}

@media (max-width: 1199px) {
  .xb-team1 .xb-item--inner {
    min-height: 420px;
  }
}

@media (max-width: 991px) {
  .xb-team1 .xb-item--inner {
    min-height: 500px;
  }
}

.xb-team1 .xb-item--inner:hover::before {
  opacity: 1;
  height: 100%;
}

.xb-team1 .xb-item--inner:hover .xb-item--social {
  opacity: 1;
  transition-delay: .2s;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.xb-team1 .xb-item--inner:hover .xb-item--shape {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.xb-team1 .xb-item--inner::before {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(0deg, #E7E9EE 14.12%, rgba(231, 233, 238, 0.72) 28.36%, rgba(231, 233, 238, 0) 53.79%);
  content: "";
  z-index: 1;
  -webkit-transition: 0.3s var(--easing);
  -o-transition: 0.3s var(--easing);
  transition: 0.3s var(--easing);
  opacity: 0;
}

.xb-team1 .xb-item--name {
  font-size: 26px;
}

.xb-team1 .xb-item--desig {
  font-size: 14px;
  color: #888686;
}

.xb-team1 .xb-item--img {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.xb-team1 .xb-item--shape {
  position: absolute;
  bottom: 35px;
  left: 0;
  right: 0;
  z-index: -1;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  margin: auto;
}

@media (max-width: 1199px) {
  .xb-team1 .xb-item--shape {
    max-width: 200px;
  }
}

.xb-team1 .xb-item--social {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 2;
  opacity: 0;
  -webkit-transition: 0.3s var(--easing);
  -o-transition: 0.3s var(--easing);
  transition: 0.3s var(--easing);
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
}

.xb-team1 .xb-item--social li:not(:last-child) {
  margin-right: 11px;
}

.xb-team1 .xb-item--social li a {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background-color: var(--color-white);
  filter: drop-shadow(0px 13px 25px rgba(12, 25, 61, 0.06));
  border: 1px solid #F2F2F2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.xb-team1 .xb-item--social li a.linkedin {
  color: #0066C8;
}

.xb-team1 .xb-item--social li a.youtube {
  color: #FF0808;
}

.ins-team .xb-item--inner {
  background-color: #0F2C31;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  padding: 20px;
}

.ins-team .xb-item--inner:hover .xb-item--img {
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.ins-team .xb-item--inner:hover .xb-item--img img {
  -webkit-transform: scale(1.08);
  -ms-transform: scale(1.08);
  transform: scale(1.08);
}

.ins-team .xb-item--inner:hover .xb-item--social {
  opacity: 1;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  transition-delay: .1s;
}

.ins-team .xb-item--img {
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  overflow: hidden;
  position: relative;
  -webkit-transition: 0.3s var(--easing);
  -o-transition: 0.3s var(--easing);
  transition: 0.3s var(--easing);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.ins-team .xb-item--img img {
  -webkit-transition: 0.5s var(--easing);
  -o-transition: 0.5s var(--easing);
  transition: 0.5s var(--easing);
}

.ins-team .xb-item--social {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: 0.3s var(--easing);
  -o-transition: 0.3s var(--easing);
  transition: 0.3s var(--easing);
  opacity: 0;
}

.ins-team .xb-item--social li {
  background-color: #052328;
  border: 1px solid #0F2C31;
  margin-right: -1px;
}

.ins-team .xb-item--social li:first-child {
  border-radius: 30px 0 0 30px;
  -webkit-border-radius: 30px 0 0 30px;
  -moz-border-radius: 30px 0 0 30px;
  -ms-border-radius: 30px 0 0 30px;
  -o-border-radius: 30px 0 0 30px;
}

.ins-team .xb-item--social li:last-child {
  border-radius: 0 30px 30px 0;
  -webkit-border-radius: 0 30px 30px 0;
  -moz-border-radius: 0 30px 30px 0;
  -ms-border-radius: 0 30px 30px 0;
  -o-border-radius: 0 30px 30px 0;
}

.ins-team .xb-item--social li a {
  padding: 7px 15px;
  display: inline-block;
  color: #F8F8F8;
  font-size: 14px;
}

.ins-team .xb-item--name {
  color: #F8F8F8;
  font-size: 20px;
  margin-bottom: 7px;
}

.ins-team .xb-item--name a {
  color: currentColor;
}

.ins-team .xb-item--desig {
  color: #8DB7BE;
}

.lw-team .xb-item--inner:hover .xb-item--img::before {
  opacity: 1;
  -webkit-transform: scale(2);
  -ms-transform: scale(2);
  transform: scale(2);
}

.lw-team .xb-item--inner:hover .xb-item--social {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.lw-team .xb-item--inner:hover .xb-item--social-links {
  opacity: 1;
}

.lw-team .xb-item--inner:hover .xb-item--social-links:nth-child(2) {
  bottom: 80px;
}

.lw-team .xb-item--inner:hover .xb-item--social-links:nth-child(3) {
  left: 80px;
}

.lw-team .xb-item--inner:hover .xb-item--icon {
  opacity: 1;
  -webkit-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
}

.lw-team .xb-item--img {
  overflow: hidden;
  position: relative;
}

.lw-team .xb-item--img::before {
  left: -50%;
  opacity: 0;
  z-index: 1;
  content: "";
  bottom: -50%;
  width: 335px;
  height: 335px;
  position: absolute;
  border-radius: 100%;
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  background-color: var(--color-law);
}

.lw-team .xb-item--holder {
  text-align: center;
  padding-top: 20px;
}

.lw-team .xb-item--social {
  left: 0;
  bottom: 0;
  z-index: 2;
  width: 100%;
  padding: 30px;
  position: absolute;
}

.lw-team .xb-item--icon {
  z-index: 1;
  width: 40px;
  height: 40px;
  color: #121A1B;
  cursor: pointer;
  font-size: 20px;
  border-radius: 100%;
  align-items: center;
  display: inline-flex;
  justify-content: center;
  background-color: #ffffff;
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  opacity: 0;
}

.lw-team .xb-item--social-links {
  opacity: 0;
  position: absolute;
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  margin: -5px;
}

.lw-team .xb-item--social-links a {
  z-index: 1;
  width: 40px;
  height: 40px;
  overflow: hidden;
  position: relative;
  align-items: center;
  border-radius: 100%;
  display: inline-flex;
  color: #fff;
  justify-content: center;
  background-color: #2F65FF;
  margin: 5px;
  font-size: 18px;
}

.lw-team .xb-item--social-links a:hover {
  background-color: var(--color-white);
  color: var(--color-law);
}

.lw-team .xb-item--social-links a:hover svg path {
  fill: var(--color-law);
}

.lw-team .xb-item--social-links a svg path {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.lw-team .xb-item--social-links:nth-child(2) {
  left: 30px;
  bottom: 30px;
}

.lw-team .xb-item--social-links:nth-child(3) {
  left: 30px;
  bottom: 30px;
}

.lw-team .xb-item--name {
  font-size: 22px;
  margin-bottom: 4px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  font-family: var(--font-body);
}

.lw-team .xb-item--name:hover {
  text-decoration: underline;
}

.lw-team .xb-item--name a {
  color: currentColor;
}

.lw-team .xb-item--desig {
  font-size: 16px;
}

.xb-team-sldier {
  padding-bottom: 90px;
}

.mr-team .xb-item--inner {
  position: relative;
  padding: 24px;
}

.mr-team .xb-item--bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.mr-team .xb-item--avatar {
  width: 232px;
  height: 232px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 25px;
}

.mr-team .xb-item--title {
  margin-bottom: 4px;
  font-size: 24px;
  color: var(--color-white);
}

.mr-team .xb-item--title a {
  color: currentColor;
}

.mr-team .xb-item--desig {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 14px;
  display: inline-block;
}

.mr-team .xb-item--social li:not(:last-child) {
  margin-right: 15px;
}

.mr-team .xb-item--social li a {
  font-size: 16px;
  color: #939393;
}

.mr-team .xb-item--social li a:hover {
  color: var(--color-white);
}

.mr-team .xb-item--social li a:hover svg path {
  fill: var(--color-white);
}

.mr-team .xb-item--social li a svg path {
  fill: #939393;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.mr-team-shape {
  position: absolute;
  bottom: 30%;
  right: 5%;
  z-index: -1;
}

.team-map__inner {
  margin-bottom: -120px;
  position: relative;
}

@media (max-width: 767px) {
  .team-map__inner {
    margin-bottom: 0;
  }
}

.team-map__avatar .avatar {
  position: absolute;
  border: 2px solid var(--color-white);
  width: 60px;
  height: 60px;
  box-shadow: 0px 4px 17px 0px #B1B1B1;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

@media (max-width: 767px) {
  .team-map__avatar .avatar {
    width: 40px;
    height: 40px;
  }
}

.team-map__avatar .avatar--1 {
  top: 18%;
  left: 6%;
}

.team-map__avatar .avatar--2 {
  top: 18%;
  left: 35%;
}

@media (max-width: 1199px) {
  .team-map__avatar .avatar--2 {
    left: 33%;
  }
}

.team-map__avatar .avatar--3 {
  top: 17%;
  right: 33%;
  animation: xbzoominzoomup 3.5s infinite linear;
  -webkit-animation: xbzoominzoomup 3.5s infinite linear;
}

.team-map__avatar .avatar--4 {
  top: 38%;
  left: 26%;
  animation: xbzoominzoomup 3s infinite linear;
  -webkit-animation: xbzoominzoomup 3s infinite linear;
}

.team-map__avatar .avatar--5 {
  top: 38%;
  left: 49%;
}

.team-map__avatar .avatar--6 {
  top: 47%;
  right: 34%;
}

.team-map__avatar .avatar--7 {
  bottom: 33%;
  left: 29%;
}

@media (max-width: 1199px) {
  .team-map__avatar .avatar--7 {
    left: 24%;
  }
}

.team-map__avatar .avatar--8 {
  bottom: 28%;
  right: 25%;
}

.team-map__dot .dot {
  position: absolute;
  background-color: #FF881B;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: inline-block;
  z-index: 1;
}

.team-map__dot .dot::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #FF881B;
  border-radius: 50%;
  animation: pulse-border-big 1500ms ease-out infinite;
  -webkit-animation: pulse-border-big 1500ms ease-out infinite;
  z-index: -2;
}

.team-map__dot .dot--1 {
  top: 28%;
  left: 24%;
}

.team-map__dot .dot--2 {
  bottom: 27%;
  left: 28%;
  background-color: #392DCA;
}

.team-map__dot .dot--2::before {
  background-color: #392DCA;
}

.team-single {
  padding-top: 226px;
}

@media (max-width: 991px) {
  .team-single {
    padding-top: 150px;
  }
}

.team-single__content-inner {
  margin-right: 200px;
}

@media (max-width: 1199px) {
  .team-single__content-inner {
    margin-right: 0;
  }
}

.team-single__author {
  border: 1px solid #E7E9EE;
}

@media (max-width: 991px) {
  .team-single__author {
    align-items: flex-end;
  }
}

@media (max-width: 767px) {
  .team-single__author {
    align-items: start;
    flex-direction: column-reverse;
  }
}

.team-single__author-info {
  width: 387px;
  background-color: var(--color-white);
  padding: 50px 55px;
}

@media (max-width: 991px) {
  .team-single__author-info {
    width: 355px;
    padding: 39px 30px;
  }
}

.team-single__author-info .xb-item--name {
  font-size: 35px;
  margin-bottom: 60px;
}

@media (max-width: 991px) {
  .team-single__author-info .xb-item--name {
    font-size: 30px;
    margin-bottom: 20px;
  }
}

@media (max-width: 991px) {
  .team-single__author-info .xb-item--list {
    margin-bottom: 30px;
  }
}

.team-single__author-info .xb-item--list li {
  font-weight: 500;
  font-size: 18px;
}

.team-single__author-info .xb-item--list li strong {
  color: #191B1E;
  font-weight: 600;
}

.team-single__author-info .xb-item--list li:not(:last-child) {
  margin-bottom: 20px;
}

.team-single__author-info .xb-item--social-title {
  font-size: 18px;
  margin-bottom: 15px;
}

.team-single__author-info .xb-item--social li:not(:last-child) {
  margin-right: 10px;
}

.team-single__author-info .xb-item--social li a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #E7E9EE;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  font-size: 14px;
  color: #888686;
}

.team-single__author-info .xb-item--social li a:hover {
  color: var(--color-primary);
}

.team-single__img {
  background-color: #E7E9EE;
  width: calc(100% - 387px);
  text-align: center;
  z-index: 1;
}

@media (max-width: 767px) {
  .team-single__img {
    width: 100%;
  }
}

.team-single__img img {
  margin-top: -76px;
}

@media (max-width: 991px) {
  .team-single__img img {
    margin-top: 0;
  }
}

.team-single__img-shape {
  position: absolute;
  top: 76px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: -1;
}

.team-single__content {
  padding-left: 55px;
}

@media (max-width: 767px) {
  .team-single__content {
    padding-left: 20px;
    margin-top: 40px;
  }
}

.team-single__content h3 {
  font-size: 35px;
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .team-single__content h3 {
    font-size: 30px;
    margin-bottom: 20px;
  }
}

.team-single__content p:not(:last-child) {
  margin-bottom: 30px;
}

.team-single__list li {
  font-weight: 500;
}

.team-single__list li img {
  margin-right: 10px;
  -webkit-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  transform: translateY(-1px);
}

.team-single__list li:not(:last-child) {
  margin-bottom: 10px;
}

.team-single__contact {
  border: 1px solid #E7E9EE;
  padding: 50px 55px;
}

@media (max-width: 991px) {
  .team-single__contact {
    padding: 30px 20px;
  }
}

.team-single__contact>p {
  margin-bottom: 35px;
}

.team-single__contact .title {
  font-size: 32px;
  margin-bottom: 5px;
}

.contact-from .xb-item--field {
  margin-bottom: 25px;
  position: relative;
}

.contact-from .xb-item--field label {
  font-size: 20px;
  color: #191B1E;
  margin-bottom: 16px;
  font-weight: 600;
}

.contact-from .xb-item--field input,
.contact-from .xb-item--field textarea,
.contact-from .xb-item--field select,
.contact-from .xb-item--field .nice-select {
  background-color: #F3F4F5;
  height: 60px;
  padding-left: 46px;
  border: 2px solid transparent;
}

.contact-from .xb-item--field input:focus,
.contact-from .xb-item--field textarea:focus,
.contact-from .xb-item--field select:focus,
.contact-from .xb-item--field .nice-select:focus {
  border-color: var(--color-primary);
}

.contact-from .xb-item--field textarea {
  min-height: 156px;
  padding-top: 18px;
}

.contact-from .xb-item--field .icon {
  position: absolute;
  top: 16px;
  left: 20px;
  z-index: 1;
}

.contact-from .xb-item--field .nice-select {
  line-height: 60px;
  min-height: 60px;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.contact-from .xb-item--field .nice-select::after {
  border-bottom: 2px solid #888686;
  border-right: 2px solid #888686;
  height: 8px;
  width: 8px;
  right: 22px;
}

.team-skills__inner {
  margin-left: -55px;
  margin-right: -55px;
}

@media (max-width: 1199px) {
  .team-skills__inner {
    margin-right: 0;
  }
}

.team-skills.style-2 .xb-item--inner:before {
  background-color: var(--color-secondary);
}

.team-skills.style-3 .xb-item--inner:before {
  background-color: #FFBD0F;
}

.team-skills.style-4 .xb-item--inner:before {
  background-color: #0091FF;
}

.team-skills .xb-item--inner {
  border: 1px solid #EDF3F5;
  padding: 55px 20px;
  text-align: center;
  letter-spacing: -0.48px;
  position: relative;
}

.team-skills .xb-item--inner::before {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 4px;
  width: 140px;
  background-color: var(--color-primary);
  content: "";
}

.team-skills .xb-item--number {
  font-size: 65px;
  font-weight: 300;
  line-height: 60px;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.team-skills .xb-item--number .suffix {
  top: 8px;
  position: relative;
}

.team-skills .xb-item--number span {
  width: auto;
  padding: 0px;
  margin-left: -1px;
  line-height: 1;
}

.team-skills .xb-item--title {
  font-size: 16px;
}

/*----------------------------------------*/
/*  09. testimonial
/*----------------------------------------*/
.ins-testimonial-slider {
  padding: 0 70px;
}

@media (max-width: 1199px) {
  .ins-testimonial-slider {
    padding: 0;
  }
}

.ins-testimonial-slider .swiper-slide-active .xb-item--content {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: 0.5s var(--easing);
  -o-transition: 0.5s var(--easing);
  transition: 0.5s var(--easing);
}

.ins-testimonial-slider .xb-item--content {
  font-size: 30px;
  color: #8DB7BE;
  line-height: 42px;
  text-align: center;
  opacity: 0;
  -webkit-transform: translateY(40px);
  -ms-transform: translateY(40px);
  transform: translateY(40px);
}

@media (max-width: 767px) {
  .ins-testimonial-slider .xb-item--content {
    font-size: 22px;
    line-height: 33px;
  }
}

.ins-testimonial-slider .ins-testimonial-quote {
  position: absolute;
  top: 26%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.ins-testimonial-nav-slider {
  padding: 20px 0;
}

.ins-testimonial-nav-slider .swiper-slide-active .xb-item--avatar::before {
  opacity: 1;
}

.ins-testimonial-nav-slider .xb-item--author {
  cursor: pointer;
}

.ins-testimonial-nav-slider .xb-item--avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  margin-right: 21px;
  position: relative;
}

.ins-testimonial-nav-slider .xb-item--avatar::before {
  position: absolute;
  top: -6px;
  left: -6px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  content: "";
  border: 1px dashed var(--color-ins);
  opacity: 0;
  animation: spin 12s infinite linear;
  -webkit-animation: spin 12s infinite linear;
}

.ins-testimonial-nav-slider .xb-item--name {
  font-size: 20px;
  color: var(--color-white);
}

@media (max-width: 767px) {
  .ins-testimonial-nav-slider .xb-item--name {
    font-size: 15px;
  }
}

.ins-testimonial-nav-slider .xb-item--desig {
  color: #8DB7BE;
}

.lw-testimonial .xb-item--inner {
  border: 1px solid #F2F3F4;
  padding: 27px 30px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.lw-testimonial .xb-item--inner:hover {
  box-shadow: 0px 14px 17px rgba(216, 216, 216, 0.25);
}

.lw-testimonial .xb-item--author {
  padding-bottom: 27px;
  margin-bottom: 30px;
  border-bottom: 1px solid #F2F3F4;
}

.lw-testimonial .xb-item--avatar {
  width: 50px;
  height: 50px;
  position: relative;
  margin-right: 20px;
}

.lw-testimonial .xb-item--avatar img {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.lw-testimonial .xb-item--check {
  position: absolute;
  top: 0;
  right: 0;
  width: 13px;
  height: 13px;
  background-color: #55C31D;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  color: var(--color-white);
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lw-testimonial .xb-item--meta {
  margin-bottom: 18px;
}

.lw-testimonial .xb-item--name {
  font-size: 20px;
  font-family: var(--font-body);
}

.lw-testimonial .xb-item--date {
  font-size: 16px;
}

.lw-testimonial .xb-item--desig {
  font-size: 16px;
}

.lw-testimonial .xb-item--content {
  font-size: 16px;
  line-height: 26px;
}

.lw-testimonial-sliders .xb-carousel-inner {
  margin: -40px;
  margin-bottom: -45px;
}

.lw-testimonial-sliders .xb-swiper-container {
  padding: 40px;
  padding-bottom: 70px;
}

.xb-grd-number {
  font-size: 260px;
  letter-spacing: 5.2px;
  text-transform: capitalize;
  background: linear-gradient(180deg, #14CAF4 -14.15%, #0D16A8 109.76%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  display: flex;
  align-items: center;
}

@media (max-width: 1199px) {
  .xb-grd-number {
    font-size: 150px;
  }
}

@media (max-width: 767px) {
  .xb-grd-number {
    font-size: 60px;
  }
}

.xb-grd-number .xbo-value {
  background: linear-gradient(180deg, #14CAF4 -14.15%, #0D16A8 109.76%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.xb-grd-number .xbo.xbo-auto-theme .xbo-digit .xbo-value,
.xb-grd-number .xbo.xbo-theme-default .xbo-digit .xbo-value {
  display: block;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

@media (min-width: 1100px) {

  .xb-grd-number .xbo.xbo-auto-theme .xbo-digit .xbo-value,
  .xb-grd-number .xbo.xbo-theme-default .xbo-digit .xbo-value {
    width: 170px;
  }
}

.xb-grd-number .xbo.xbo-auto-theme.xbo-animating-up .xbo-ribbon-inner,
.xb-grd-number .xbo.xbo-theme-minimal.xbo-animating-up .xbo-ribbon-inner,
.xb-grd-number .xbo.xbo-auto-theme.xbo-animating-down.xbo-animating .xbo-ribbon-inner,
.xb-grd-number .xbo.xbo-theme-minimal.xbo-animating-down.xbo-animating .xbo-ribbon-inner {
  transition: 1s !important;
}

.xb-testimonial1 .xb-item--inner {
  background-color: var(--color-white);
  padding: 80px 68px;
  position: relative;
  z-index: 1;
}

.xb-testimonial1 .xb-item--inner::before {
  position: absolute;
  top: 30px;
  left: 30px;
  right: 30px;
  bottom: 30px;
  border: 1px solid #E7E9EE;
  content: "";
  z-index: -1;
}

.xb-testimonial1 .xb-item--avatar {
  position: absolute;
  top: -38px;
  left: 68px;
}

.xb-testimonial1 .xb-item--quote {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-white);
  box-shadow: 0px 4px 4px 0px rgba(13, 16, 49, 0.07);
  position: absolute;
  top: 17px;
}

.xb-testimonial1 .xb-item--name {
  font-size: 20px;
  line-height: 1.1;
}

.xb-testimonial1 .xb-item--desig {
  font-size: 12px;
  color: #888686;
}

.xb-testimonial1 .xb-item--content {
  font-size: 16px;
  line-height: 26px;
  color: #191B1E;
  font-family: var(--font-heading);
}

.xb-testimonial1 .xb-item--bottom span {
  color: #888686;
  font-size: 12px;
}

.xb-testimonial-sldier {
  padding-bottom: 90px;
}

.testimonial-map {
  position: absolute;
  top: 7%;
  right: 13%;
  z-index: -1;
}

.testimonial-map__dot {
  z-index: 2;
  position: absolute;
  width: 100%;
  height: 100%;
}

.testimonial-map__dot .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background-color: var(--color-primary);
  position: absolute;
}

.testimonial-map__dot .dot::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--color-primary);
  border-radius: 50%;
  animation: pulse-border-big 1500ms ease-out infinite;
  -webkit-animation: pulse-border-big 1500ms ease-out infinite;
  z-index: -2;
}

.testimonial-map__dot .dot--1 {
 top: -45%;
  right: 48%;
}

.testimonial-map__dot .dot--2 {
  top: -16%;
  right: 20%;
  background-color: var(--color-secondary);
}

.testimonial-map__dot .dot--2::before {
  background-color: var(--color-secondary);
}

.testimonial-shape {
  position: absolute;
  left: 0;
  top: 30%;
  z-index: -1;
}

.ad-testimonial .xb-item--avatar {
  width: 241px;
  height: 241px;
  margin-right: 213px;
  position: relative;
  -webkit-transform: translateX(50px);
  -ms-transform: translateX(50px);
  transform: translateX(50px);
  opacity: 0;
}

@media (max-width: 1199px) {
  .ad-testimonial .xb-item--avatar {
    margin-right: 100px;
  }
}

@media (max-width: 991px) {
  .ad-testimonial .xb-item--avatar {
    width: 200px;
    height: 200px;
    margin-right: 70px;
  }
}

.ad-testimonial .xb-item--avatar::before {
  position: absolute;
  top: -31px;
  left: -31px;
  width: 302px;
  height: 302px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border: 1px dashed var(--color-advisor);
  content: "";
  animation: spin 12s infinite linear;
  -webkit-animation: spin 12s infinite linear;
}

@media (max-width: 991px) {
  .ad-testimonial .xb-item--avatar::before {
    top: -26px;
    left: -26px;
    width: 250px;
    height: 250px;
  }
}

.ad-testimonial .xb-item--avatar img {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.ad-testimonial .xb-item--holder {
  width: calc(100% - 454px);
  -webkit-transform: translateX(50px);
  -ms-transform: translateX(50px);
  transform: translateX(50px);
  opacity: 0;
}

@media (max-width: 1199px) {
  .ad-testimonial .xb-item--holder {
    width: calc(100% - 341px);
  }
}

@media (max-width: 991px) {
  .ad-testimonial .xb-item--holder {
    width: calc(100% - 270px);
  }
}

@media (max-width: 767px) {
  .ad-testimonial .xb-item--holder {
    width: 100%;
    margin-top: 50px;
  }
}

.ad-testimonial .xb-item--content {
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 35px;
}

@media (max-width: 991px) {
  .ad-testimonial .xb-item--content {
    font-size: 18px;
    line-height: 30px;
  }
}

.ad-testimonial .xb-item--name {
  font-size: 24px;
  font-family: var(--font-body);
  text-transform: capitalize;
}

.ad-testimonial .xb-item--desig {
  font-size: 16px;
}

.ad-testimonial__inner {
  padding-left: 57px;
  margin-left: -50px;
  margin: -50px;
  margin-right: 0;
}

@media (max-width: 991px) {
  .ad-testimonial__inner {
    padding-left: 15px;
  }
}

.ad-testimonial-slider {
  padding-left: 50px;
  padding: 50px;
  padding-right: 80px;
}

@media (max-width: 991px) {
  .ad-testimonial-slider {
    padding-right: 20px;
  }
}

.ad-testimonial-slider .swiper-slide-active .xb-item--avatar,
.ad-testimonial-slider .swiper-slide-active .xb-item--holder {
  -webkit-transition: 0.5s var(--easing);
  -o-transition: 0.5s var(--easing);
  transition: 0.5s var(--easing);
  opacity: 1;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.ad-testimonial-slider .swiper-slide-active .xb-item--holder {
  transition-delay: .1s;
}

.ad-testimonial-slider .swiper-pagination {
  text-align: right;
  transition: .3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  align-items: j;
  top: 50%;
  transform: translateY(-50%);
  justify-content: center;
}

.ad-testimonial-slider .swiper-pagination .swiper-pagination-bullet {
  background-color: var(--color-advisor);
  opacity: .4;
  width: 8px;
  height: 8px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  -webkit-transition: 0.3s var(--easing);
  -o-transition: 0.3s var(--easing);
  transition: 0.3s var(--easing);
}

.ad-testimonial-slider .swiper-pagination .swiper-pagination-bullet:not(:last-child) {
  margin-bottom: 5px;
}

@media (max-width: 767px) {
  .ad-testimonial-slider .swiper-pagination .swiper-pagination-bullet:not(:last-child) {
    margin-bottom: 0;
    margin-right: 5px;
  }
}

.ad-testimonial-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  height: 22px;
  opacity: 1;
}

@media (max-width: 767px) {
  .ad-testimonial-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 22px;
    height: 8px;
  }
}

@media (max-width: 767px) {
  .ad-testimonial-slider .swiper-pagination {
    display: flex;
    align-items: center;
    flex-direction: unset;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    justify-content: center;
    bottom: 0;
    top: auto;
  }
}

.mr-testimonial .xb-item--inner {
  position: relative;
  border-top: 1px solid #333333;
  padding-top: 35px;
  opacity: 0.4;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  margin: 0 30px;
}

@media (max-width: 1199px) {
  .mr-testimonial .xb-item--inner {
    margin: 0;
  }
}

.mr-testimonial .xb-item--quote {
  position: absolute;
  top: 27px;
  left: 0;
}

.mr-testimonial .xb-item--content {
  padding-left: 80px;
}

.mr-testimonial .xb-item--avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  overflow: hidden;
  margin-right: 20px;
}

.mr-testimonial .xb-item--name {
  font-size: 24px;
}

.mr-testimonial .xb-item--desig {
  font-size: 16px;
}

.mr-testimonial-slider .swiper-slide-active .xb-item--inner {
  opacity: 1;
}

.bc-testimonial__pb {
  padding-bottom: 385px;
}

.bc-testimonial__inner {
  margin-left: -420px;
  margin-right: -420px;
  position: relative;
}

@media (max-width: 767px) {
  .bc-testimonial__inner {
    margin: 0;
  }
}

.bc-testimonial .xb-item--inner {
  background-color: #222528;
  position: relative;
  z-index: 1;
  text-align: center;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  overflow: hidden;
}

.bc-testimonial .xb-item--inner::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, #03080B -2.09%, rgba(34, 37, 40, 0) 93.95%);
  content: "";
}

.bc-testimonial .xb-item--inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  padding: 1px;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: add, add;
  mask-composite: add, add;
  mask-composite: add, add;
  -webkit-mask-composite: source-out;
  mask-composite: exclude;
  background: var(--stock-gr, linear-gradient(180deg, rgba(255, 255, 255, 0.13) -11.54%, rgba(255, 255, 255, 0) 92.31%));
}

.bc-testimonial .xb-item--content {
  padding: 90px 110px 0;
  font-size: 28px;
  line-height: 43px;
  color: var(--color-white);
  font-weight: 500;
  font-family: var(--font-heading);
  z-index: 2;
  position: relative;
}

@media (max-width: 1199px) {
  .bc-testimonial .xb-item--content {
    padding: 90px 70px 0;
    font-size: 25px;
  }
}

@media (max-width: 991px) {
  .bc-testimonial .xb-item--content {
    padding: 71px 70px 0;
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .bc-testimonial .xb-item--content {
    padding: 40px 40px 0;
  }
}

.bc-testimonial .xb-item--img {
  width: 100%;
}

.bc-testimonial .xb-item--author {
  position: absolute;
  bottom: 60px;
  z-index: 2;
  margin: 0 auto;
  left: 0;
  right: 0;
}

@media (max-width: 767px) {
  .bc-testimonial .xb-item--author {
    padding: 10px;
  }
}

.bc-testimonial .xb-item--quote-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  box-shadow: 0px 4px 4px 0px rgba(13, 16, 49, 0.07);
  margin: 0 auto 28px;
  background-color: var(--color-business);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bc-testimonial .xb-item--name {
  color: var(--color-white);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.44px;
}

.bc-testimonial .xb-item--desig {
  font-size: 12px;
  color: #B4B4B4;
}

.bc-testimonial .xb-item--quote {
  position: absolute;
  top: 210px;
  width: 100%;
  text-align: center;
  z-index: -1;
}

@media (max-width: 767px) {
  .bc-testimonial .xb-item--quote {
    max-width: 150px;
    margin: auto;
    left: 0;
    right: 0;
  }
}

.bc-testimonial .xb-item--circle {
  position: absolute;
  bottom: -185px;
  left: 0;
  right: 0;
  margin: auto;
  width: 530px;
  height: 530px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  content: "";
  background-color: var(--color-business);
  z-index: -1;
}

@media (max-width: 767px) {
  .bc-testimonial .xb-item--circle {
    width: 380px;
    height: 398px;
  }
}

.bc-testimonial__carousel .xb-swiper-arrow {
  left: 23.6%;
}

@media (max-width: 991px) {
  .bc-testimonial__carousel .xb-swiper-arrow {
    left: 31%;
  }
}

.bc-testimonial__carousel .xb-swiper-arrow:hover {
  background-color: var(--color-business);
}

.bc-testimonial__carousel .xb-swiper-arrow.xb-swiper-arrow-next {
  left: auto;
  right: 23.6%;
}

@media (max-width: 991px) {
  .bc-testimonial__carousel .xb-swiper-arrow.xb-swiper-arrow-next {
    right: 31%;
  }
}

.testimonial-shape2 .shape {
  position: absolute;
  z-index: -1;
}

@media (max-width: 991px) {
  .testimonial-shape2 .shape {
    display: none;
  }
}

.testimonial-shape2 .shape--1 {
  top: 0;
  left: 0;
}

.testimonial-shape2 .shape--2 {
  top: 0;
  right: 0;
}

/*----------------------------------------*/
/*  10. contact
/*----------------------------------------*/
.xb-contact__wrap {
  padding: 70px 80px;
  padding-bottom: 80px;
  background-color: var(--color-white);
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .xb-contact__wrap {
    padding: 30px 25px;
  }
}

.xb-contact .xb-item--field {
  margin-bottom: 25px;
  position: relative;
}

.xb-contact .xb-item--field>span {
  position: absolute;
  top: 22px;
  left: 25px;
  z-index: 1;
}

.xb-contact .xb-item--field input,
.xb-contact .xb-item--field textarea {
  padding-left: 57px;
}

.xb-contact .xb-item--field input:focus::-webkit-input-placeholder,
.xb-contact .xb-item--field textarea:focus::-webkit-input-placeholder {
  color: #191B1E;
  opacity: 1;
}

.xb-contact .xb-item--field input:focus::-moz-placeholder,
.xb-contact .xb-item--field textarea:focus::-moz-placeholder {
  color: #191B1E;
  opacity: 1;
}

.xb-contact .xb-item--field input:focus:-ms-input-placeholder,
.xb-contact .xb-item--field textarea:focus:-ms-input-placeholder {
  color: #191B1E;
  opacity: 1;
}

.xb-contact .xb-item--field input:focus:-moz-placeholder,
.xb-contact .xb-item--field textarea:focus:-moz-placeholder {
  color: #191B1E;
  opacity: 1;
}

.xb-contact .xb-item--field textarea {
  min-height: 145px;
}

.xb-contact .xb-item--field button {
  height: 75px;
}

.xb-contact .xb-item--field .nice-select {
  padding-left: 57px;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.xb-contact .xb-item--field .nice-select::after {
  border-bottom: 2px solid #B3B2B2;
  border-right: 2px solid #B3B2B2;
  height: 8px;
  width: 8px;
  right: 27px;
}

.xb-contact .xb-item--field .nice-select.open .current {
  color: #191B1E;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.xb-contact__shape {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

@media (max-width: 991px) {
  .xb-contact__shape {
    display: none;
  }
}

.xb-contact__img {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

@media (max-width: 991px) {
  .xb-contact__img {
    display: none;
  }
}

.xb-contact__area {
  border: 1px solid #E7E9EE;
  background-color: var(--color-white);
  padding: 50px;
  margin-bottom: -100px;
  z-index: 2;
  position: relative;
}

@media (max-width: 767px) {
  .xb-contact__area {
    padding: 30px 20px;
  }
}

.contact-shape .shape {
  position: absolute;
  z-index: -1;
}

.contact-shape .shape--1 {
  top: 30%;
}

.contact-shape .shape--2 {
  bottom: 21%;
  right: 0;
}

.ins-contact-form__wrap {
  padding: 50px;
  margin-right: 90px;
  background-color: var(--color-white);
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

@media (max-width: 767px) {
  .ins-contact-form__wrap {
    padding: 25px;
    margin-right: 0;
  }
}

.ins-contact-form__wrap .sec-title .title {
  font-size: 30px;
  line-height: 40px;
}

.ins-contact-form .xb-item--field {
  margin-bottom: 20px;
  position: relative;
}

.ins-contact-form .xb-item--field>span,
.ins-contact-form .xb-item--field .icon {
  position: absolute;
  top: 21px;
  left: 20px;
  display: inline-block;
  line-height: 1;
  z-index: 1;
}

.ins-contact-form .xb-item--field input,
.ins-contact-form .xb-item--field textarea {
  padding: 15px 46px 18px;
  background-color: #F8F8F8;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  height: 60px;
  font-size: 16px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.ins-contact-form .xb-item--field input::-webkit-input-placeholder,
.ins-contact-form .xb-item--field textarea::-webkit-input-placeholder {
  color: #575757;
  opacity: 1;
}

.ins-contact-form .xb-item--field input::-moz-placeholder,
.ins-contact-form .xb-item--field textarea::-moz-placeholder {
  color: #575757;
  opacity: 1;
}

.ins-contact-form .xb-item--field input:-ms-input-placeholder,
.ins-contact-form .xb-item--field textarea:-ms-input-placeholder {
  color: #575757;
  opacity: 1;
}

.ins-contact-form .xb-item--field input:-moz-placeholder,
.ins-contact-form .xb-item--field textarea:-moz-placeholder {
  color: #575757;
  opacity: 1;
}

.ins-contact-form .xb-item--field input:focus::-webkit-input-placeholder,
.ins-contact-form .xb-item--field textarea:focus::-webkit-input-placeholder {
  color: #052328;
  opacity: 1;
}

.ins-contact-form .xb-item--field input:focus::-moz-placeholder,
.ins-contact-form .xb-item--field textarea:focus::-moz-placeholder {
  color: #052328;
  opacity: 1;
}

.ins-contact-form .xb-item--field input:focus:-ms-input-placeholder,
.ins-contact-form .xb-item--field textarea:focus:-ms-input-placeholder {
  color: #052328;
  opacity: 1;
}

.ins-contact-form .xb-item--field input:focus:-moz-placeholder,
.ins-contact-form .xb-item--field textarea:focus:-moz-placeholder {
  color: #052328;
  opacity: 1;
}

.ins-contact-form .xb-item--field textarea {
  min-height: 150px;
}

.ins-contact-form .xb-item--field .nice-select {
  padding: 0 46px;
  margin-bottom: 20px;
  background-color: #F8F8F8;
  border: 0;
  font-size: 16px;
  height: 60px;
  line-height: 60px;
  min-height: 60px;
}

.ins-contact-form .xb-item--field .nice-select::after {
  border-bottom: 1.9px solid #575757;
  border-right: 1.9px solid #575757;
  height: 7px;
  width: 7px;
}

.ins-location-map {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .ins-location-map {
    top: auto;
    bottom: -12%;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .ins-location-map img {
    height: 80%;
    object-fit: cover;
  }
}

@media (max-width: 1199px) {
  .ins-location-map {
    position: relative;
    width: 100%;
    margin-bottom: -250px;
    margin-top: -100px;
  }
}

@media (max-width: 767px) {
  .ins-location-map {
    margin-bottom: -150px;
    margin-top: -0;
  }
}

.ins-location-inner .map {
  position: absolute;
}

.ins-location-inner .map--1 {
  top: 33%;
  left: 33%;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .ins-location-inner .map--1 {
    top: 20%;
    left: 35%;
  }
}

@media (max-width: 767px) {
  .ins-location-inner .map--1 {
    top: 24%;
    left: 29%;
  }
}

.ins-location-inner .map--2 {
  bottom: 21%;
  left: 26%;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .ins-location-inner .map--2 {
    bottom: 41%;
  }
}

.ins-location-inner .map--3 {
  bottom: 42%;
  left: 47%;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .ins-location-inner .map--3 {
    bottom: 54%;
    left: 55%;
  }
}

@media (max-width: 767px) {
  .ins-location-inner .map--3 {
    bottom: 46%;
    left: 59%;
  }
}

.ins-location-inner .map .icon {
  position: absolute;
  cursor: pointer;
}

.ins-location-inner .map-info {
  background-color: var(--color-white);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  top: -63px;
  left: -23px;
  display: flex;
  align-items: center;
  padding: 20px 32px;
  -webkit-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  transform: translateY(-10px);
  box-shadow: 1px 9px 25px rgba(169, 169, 169, 0.46);
  font-size: 25px;
  font-weight: 600;
  color: #052328;
  border-radius: 7px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
}

.ins-location-inner .map-info::before {
  position: absolute;
  bottom: -54px;
  left: 0;
  background-image: url(../img/shape/map_arrow.png);
  width: 73px;
  height: 71px;
  content: "";
  background-repeat: no-repeat;
  cursor: pointer;
}

.ins-location-inner .map-info img {
  margin-right: 10px;
}

.ins-location-inner .active~.map-info {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}

@media (min-width: 1400px) {
  .ins-location-inner.style-law .map--2 {
    bottom: 25%;
  }
}

@media (min-width: 1400px) {
  .ins-location-inner.style-law .map--3 {
    bottom: 46%;
  }
}

.lw-contact__inner {
  padding: 50px;
  background-color: var(--color-white);
  filter: drop-shadow(0px 16px 17px rgba(216, 216, 216, 0.25));
  border: 1px solid #EDF3F5;
  margin-right: -20px;
}

.lw-contact__inner .title {
  font-size: 45px;
  color: var(--color-white);
  margin-bottom: 40px;
}

.lw-contact-form .xb-item--field {
  position: relative;
}

.lw-contact-form .xb-item--field:not(:last-child) {
  margin-bottom: 20px;
}

.lw-contact-form .xb-item--field input,
.lw-contact-form .xb-item--field .nice-select,
.lw-contact-form .xb-item--field textarea {
  background-color: #F2F3F4;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.lw-contact-form .xb-item--field textarea {
  min-height: 132px;
}

.lw-contact-form .xb-item--field .nice-select::after {
  border-bottom: 2px solid #7B7B7B;
  border-right: 2px solid #7B7B7B;
  height: 8px;
  width: 8px;
  right: 23px;
}

.lw-contact-form .xb-item--field .icon {
  top: 18px;
}

.lw-contact-bg {
  position: relative;
}

.lw-contact-bg::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80%;
  background-color: #F2F3F4;
  content: "";
}

.lw-contact-shape {
  position: absolute;
  bottom: 12%;
  right: 0;
}

.ad-contact {
  padding: 80px 100px;
  padding-top: 70px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  background-color: var(--color-white);
  overflow: hidden;
}

@media (max-width: 991px) {
  .ad-contact {
    padding: 50px;
  }
}

@media (max-width: 767px) {
  .ad-contact {
    padding: 40px 25px;
  }
}

.ad-contact .sec-title .title {
  font-size: 24px;
  line-height: 34px;
}

.ad-contact__img {
  position: absolute;
  bottom: 0;
  right: 0;
}

@media (max-width: 1199px) {
  .ad-contact__img {
    max-width: 500px;
  }
}

@media (max-width: 991px) {
  .ad-contact__img {
    display: none;
  }
}

.ad-contact .xb-item--field>span {
  top: 17px;
}

.ad-contact .ins-contact-form {
  padding-right: 40px;
}

@media (max-width: 991px) {
  .ad-contact .ins-contact-form {
    padding-right: 0;
  }
}

.xb-contact-info {
  border: 1px solid #E7E9EE;
  padding: 60px 15px 30px;
  height: 100%;
}

.xb-contact-info .xb-item--icon {
  font-size: 24px;
  color: var(--color-primary);
  background-color: rgba(32, 40, 188, 0.1);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.xb-contact-info .xb-item--title {
  font-size: 20px;
  margin-bottom: 17px;
}

.xb-contact-info .xb-item--content {
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
}

.google-map {
  height: 600px;
}

@media (max-width: 1199px) {
  .google-map {
    height: 400px;
  }
}

.google-map iframe {
  height: 100%;
  width: 100%;
}

/*----------------------------------------*/
/*  11. blog
/*----------------------------------------*/
.ins-blog .xb-item--inner {
  padding: 20px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  background-color: #0F2C31;
}

.ins-blog .xb-item--img {
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  overflow: hidden;
}

.ins-blog .xb-item--holder {
  padding: 10px;
  padding-bottom: 0;
  padding-top: 30px;
}

.ins-blog .xb-item--meta li {
  font-size: 14px;
  color: #8DB7BE;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.ins-blog .xb-item--meta li:not(:last-child) {
  margin-right: 40px;
}

.ins-blog .xb-item--meta li span {
  margin-right: 8px;
}

.ins-blog .xb-item--title {
  color: var(--color-white);
  letter-spacing: -0.48px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #052328;
  line-height: 1.5;
}

.ins-blog .xb-item--title a {
  color: currentColor;
}

.ins-blog .xb-item--link {
  font-size: 16px;
  color: #8DB7BE;
  position: relative;
  display: inline-block;
}

.ins-blog .xb-item--link:hover {
  color: var(--color-ins);
}

.ins-blog .xb-item--link:hover::before {
  background-color: var(--color-ins);
}

.ins-blog .xb-item--link::before {
  position: absolute;
  top: 52%;
  right: -35px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 25px;
  height: 1px;
  background-color: #8DB7BE;
  content: "";
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.xb-blog .xb-item--shape {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: -1;
}

.xb-blog .xb-item--inner {
  border: 1px solid #E7E9EE;
  padding: 60px 46px;
  padding-right: 87px;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .xb-blog .xb-item--inner {
    padding: 40px 30px;
  }
}

.xb-blog .xb-item--cat {
  background-color: #1B1A1A;
  padding: 1px 13px;
  display: inline-block;
  margin-bottom: 53px;
  color: var(--color-white);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .xb-blog .xb-item--cat {
    margin-bottom: 30px;
  }
}

.xb-blog .xb-item--cat.color-2 {
  background-color: var(--color-secondary);
}

.xb-blog .xb-item--cat.color-3 {
  background-color: var(--color-primary);
}

.xb-blog .xb-item--title {
  font-size: 26px;
  margin-bottom: 17px;
}

@media (max-width: 991px) {
  .xb-blog .xb-item--title {
    font-size: 24px;
  }
}

.xb-blog .xb-item--title a {
  color: currentColor;
}

.xb-blog .xb-item--content {
  margin-bottom: 50px;
}

.xb-blog .xb-item--avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  margin-right: 11px;
}

.xb-blog .xb-item--name {
  font-size: 16px;
  color: #191B1E;
}

.xb-blog .xb-item--like {
  color: #191B1E;
}

.xb-blog .xb-item--like i {
  color: #FF3E3E;
  font-size: 15px;
  margin-left: 7px;
}

.xb-blog .xb-item--date i {
  color: #191B1E;
  font-size: 15px;
  margin-left: 7px;
}

.mr-blog {
  padding: 73px 0;
  padding-top: 53px;
  padding-left: 111px;
  padding-right: 111px;
  margin-left: -111px;
  margin-right: -111px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.mr-blog::before,
.mr-blog::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #333333;
  content: "";
  z-index: -2;
}

.mr-blog:last-child::after {
  top: auto;
  bottom: 0;
}

.mr-blog:hover .xb-item--img,
.mr-blog.active .xb-item--img {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.mr-blog:hover .xb-item--cat span,
.mr-blog.active .xb-item--cat span {
  background-color: var(--color-marketing);
}

.mr-blog .xb-item--holder {
  width: 55%;
}

@media (max-width: 991px) {
  .mr-blog .xb-item--holder {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .mr-blog .xb-item--holder {
    flex-wrap: wrap;
  }
}

.mr-blog .xb-item--cat {
  min-width: 143px;
  display: inline-block;
  margin-right: 100px;
  margin-top: 20px;
}

@media (max-width: 767px) {
  .mr-blog .xb-item--cat {
    margin-right: 20px;
  }
}

.mr-blog .xb-item--cat span {
  color: #F8F8F8;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  background-color: #333333;
  display: inline-flex;
  align-items: center;
  padding: 0px 10px;
  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;
}

.mr-blog .xb-item--cat span img {
  margin-right: 4px;
}

.mr-blog .xb-item--title {
  font-size: 28px;
  line-height: 42px;
  letter-spacing: -0.56px;
  margin-top: 20px;
}

@media (max-width: 767px) {
  .mr-blog .xb-item--title {
    font-size: 25px;
    line-height: 38px;
  }
}

.mr-blog .xb-item--date,
.mr-blog .xb-item--read {
  font-size: 18px;
  color: var(--color-white);
  font-weight: 700;
  letter-spacing: -0.36px;
  display: inline-block;
  margin-top: 20px;
}

.mr-blog .xb-item--img {
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  overflow: hidden;
  -webkit-transition: 0.5s cubic-bezier(0.4, 0.01, 0.14, 0.99);
  -o-transition: 0.5s cubic-bezier(0.4, 0.01, 0.14, 0.99);
  transition: 0.5s cubic-bezier(0.4, 0.01, 0.14, 0.99);
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  background-size: cover;
  opacity: 0;
}

.bc-blog .xb-item--img {
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  overflow: hidden;
}

.bc-blog .xb-item--holder {
  padding: 34px 20px 0;
}

.bc-blog .xb-item--date {
  font-size: 14px;
  display: inline-block;
  margin-bottom: 18px;
  color: #B4B4B4;
  font-weight: 500;
}

.bc-blog .xb-item--title {
  font-size: 24px;
  line-height: 32px;
  color: var(--color-white);
  margin-bottom: 32px;
}

@media (max-width: 1199px) {
  .bc-blog .xb-item--title {
    font-size: 18px;
    line-height: 30px;
  }
}

.bc-blog .xb-item--title a {
  color: currentColor;
}

.bc-blog .xb-item--link {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-white);
  display: inline-flex;
}

.bc-blog .xb-item--link i {
  width: 39px;
  height: 39px;
  font-size: 14px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background-color: var(--color-white);
  color: #03080B;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.bc-blog .xb-item--link:hover i {
  background-color: var(--color-business);
}

.bc-blog__btn a {
  background-color: transparent;
  color: var(--color-business);
  font-size: 20px;
  font-weight: 500;
  border: 1px solid #3C4044;
  text-transform: capitalize;
  padding: 18px 42px;
}

.bc-blog__btn a:hover {
  border-color: #03080B;
}

.lw-blog .xb-item--inner {
  padding: 0;
  background-color: var(--color-white);
  border: 0;
}

.lw-blog .xb-item--holder {
  padding: 55px 45px;
}

.lw-blog .xb-item--cat {
  margin-bottom: 35px;
  background-color: var(--color-law);
}

.lw-blog .xb-item--content {
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 26px;
}

.lw-blog .xb-item--name {
  font-weight: 500;
}

.lw-blog .xb-item--like,
.lw-blog .xb-item--date {
  font-size: 16px;
}

.lw-blog-shape {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.single-post-item {
  padding: 30px;
  border: 1px solid #E7E9EE;
  font-weight: 500;
}

.post-thumbnail-wrapper {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.post-thumbnail-wrapper img {
  -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-meta {
  margin-bottom: 20px;
  margin-top: -4px;
}

.post-meta li {
  font-size: 16px;
  line-height: 25px;
  margin-right: 50px;
  color: #787B84;
  margin-top: 7px;
}

.post-meta li i {
  margin-right: 5px;
  color: #191B1E;
}

.post-meta li a {
  color: #787B84;
}

article .post-title {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 30px;
  line-height: 1.4;
  word-break: break-word;
  letter-spacing: -.6px;
}

@media (max-width: 767px) {
  article .post-title {
    font-size: 24px;
  }
}

article .post-title a {
  color: currentColor;
}

.post-read-more {
  margin-top: 35px;
}

.post-read-more .xb-btn {
  padding: 18px 40px;
}

.single-post-item {
  margin-bottom: 40px;
}

.single-post-item:hover .post-thumbnail-wrapper img {
  -webkit-transform: scale(1.08);
  -ms-transform: scale(1.08);
  transform: scale(1.08);
}

.post-details .post-thumb {
  margin-bottom: 30px;
}

.post-details h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .post-details h2 {
    font-size: 24px;
  }
}

.post-details h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 25px;
}

@media (max-width: 767px) {
  .post-details h3 {
    font-size: 22px;
  }
}

.post-details p {
  font-size: 18px;
  line-height: 30px;
}

.post-details p:not(:last-child) {
  margin-bottom: 30px;
}

blockquote {
  background-color: #F3F4F5;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 40px 55px;
  padding-left: 130px;
  position: relative;
  font-family: var(--font-heading);
  margin: 40px 0;
}

@media (max-width: 767px) {
  blockquote {
    padding: 30px 55px;
    padding-left: 55px;
    padding-left: 100px;
  }
}

blockquote p {
  font-size: 20px;
  font-weight: 600;
  color: #0F172A;
  line-height: 34px;
  margin-bottom: 20px !important;
}

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;
  border-radius: 20px 0;
  -webkit-border-radius: 20px 0;
  -moz-border-radius: 20px 0;
  -ms-border-radius: 20px 0;
  -o-border-radius: 20px 0;
}

.post-info-list {
  padding-left: 5;
}

@media (max-width: 1199px) {
  .post-info-list {
    padding-left: 0;
  }
}

.post-info-list li {
  font-size: 18px;
  color: #787B84;
}

.post-info-list li:not(:last-child) {
  margin-bottom: 18px;
}

.post-info-list li img {
  margin-right: 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: 20px;
}

.social-share li a {
  border: 1px solid #EDF3F5;
  color: #787B84;
  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 {
  background-color: var(--color-primary);
  border-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 */
.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: #787B84;
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  -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;
  background: #F3F4F5;
  padding: 9px 20px;
}

.latest__comments .reply:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.latest__comments--2 p {
  font-size: 14px;
  line-height: 24px;
  color: var(--color-black);
}

.blog-sidebar .widget {
  padding: 30px;
  border: 1px solid #E7E9EE;
}

/*----------------------------------------*/
/*  12. bramd
/*----------------------------------------*/
.ins-brand .xb-item--brand a {
  position: relative;
  width: 100%;
  height: 60px;
  display: inline-block;
}

.ins-brand .xb-item--brand a:hover {
  -webkit-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  transform: translateY(-10px);
}

.ins-brand .xb-item--brand a:hover img:nth-child(1) {
  opacity: 0;
}

.ins-brand .xb-item--brand a:hover img:nth-child(2) {
  opacity: 1;
}

.ins-brand .xb-item--brand img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.ins-brand .xb-item--brand img:nth-child(2) {
  opacity: 0;
}

.ins-brand-slider {
  margin-left: -40px;
  margin-right: -40px;
}

.ins-border-bottom {
  border-bottom: 1px solid #0F2C31;
}

.client-section__inner.has-bg .client-section__item {
  background: var(--Linear-logo, linear-gradient(285deg, #1F1F1F -15.2%, #1F1F1F 98.28%));
}

.client-section__inner.style-2 {
  margin-left: -200px;
}

.client-section__inner.style-2 .client-section__item {
  border-left: 1px solid #1F1F1F;
}

.client-section__item {
  min-width: 265px;
  height: 225px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid #131313;
}

@media (max-width: 991px) {
  .client-section__item {
    min-width: 200px;
    height: 200px;
  }

  .client-section__item img {
    max-height: 100px;
  }
}

@media (max-width: 767px) {
  .client-section__item {
    min-width: 120px;
    height: 120px;
  }

  .client-section__item img {
    max-height: 56px;
  }
}

/*----------------------------------------*/
/*  13. pricing
/*----------------------------------------*/
.lw-pricing .xb-item--inner {
  padding: 20px;
  border: 1px solid #F2F3F4;
}

.lw-pricing .xb-item--inner:hover .xb-item--price {
  background-color: var(--color-law);
  color: var(--color-white);
}

.lw-pricing .xb-item--img {
  overflow: hidden;
}

.lw-pricing .xb-item--holder {
  position: relative;
  padding: 45px 5px 16px 5px;
}

.lw-pricing .xb-item--price {
  color: var(--color-law);
  box-shadow: 0px 4px 12px rgba(199, 199, 201, 0.25);
  display: inline-block;
  padding: 7px 20px;
  background-color: var(--color-white);
  font-size: 18px;
  font-weight: 700;
  position: absolute;
  top: -18px;
  left: 0;
  line-height: 1.2;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.lw-pricing .xb-item--title {
  font-style: 24px;
  margin-bottom: 10px;
  font-family: var(--font-body);
}

.lw-pricing .xb-item--title a {
  color: currentColor;
}

.lw-pricing .xb-item--content {
  font-size: 16px;
  letter-spacing: -0.16px;
  line-height: 26px;
}

.xb-pricing-nav {
  background-color: #DDE1EA;
  border-radius: 65px;
  -webkit-border-radius: 65px;
  -moz-border-radius: 65px;
  -ms-border-radius: 65px;
  -o-border-radius: 65px;
  padding: 6px;
  border: 1px solid #D7DCE5;
  display: inline-flex;
}

.xb-pricing-nav .nav-item .nav-link {
  font-size: 14px;
  text-transform: uppercase;
  color: #191B1E;
  font-weight: 700;
  padding: 11px 30px;
  border-radius: 32px;
  -webkit-border-radius: 32px;
  -moz-border-radius: 32px;
  -ms-border-radius: 32px;
  -o-border-radius: 32px;
}

.xb-pricing-nav .nav-item .nav-link span {
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  background-color: #FF5050;
  border-radius: 29px;
  -webkit-border-radius: 29px;
  -moz-border-radius: 29px;
  -ms-border-radius: 29px;
  -o-border-radius: 29px;
  padding: 1px 7px;
  line-height: 1.2;
  color: var(--color-white);
  margin-left: 10px;
}

.xb-pricing-nav .nav-item .nav-link.active {
  background-color: var(--color-white);
  filter: drop-shadow(0px 4px 4px rgba(116, 126, 148, 0.1));
}

.xb-pricing {
  background-color: var(--color-white);
  padding: 40px 30px;
  position: relative;
  border: 1px solid #EDEDED;
  box-shadow: 5px 5px 30px 0px rgba(224, 221, 221, 0.35);
  overflow: hidden;
  z-index: 1;
}

.xb-pricing .xb-item--title {
  color: var(--color-secondary);
  background-color: rgba(21, 203, 244, 0.1);
  font-weight: 600;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  display: inline-block;
  font-size: 16px;
  text-transform: uppercase;
  padding: 4px 15px;
  margin-bottom: 10px;
}

.xb-pricing .xb-item--subtitle {
  font-size: 18px;
  color: #888686;
  margin-bottom: 28px;
}

.xb-pricing .xb-item--price {
  letter-spacing: -1px;
  font-size: 50px;
  border-bottom: 1px solid #D9D9D9;
  padding-bottom: 28px;
  margin-bottom: 30px;
}

.xb-pricing .xb-item--price span {
  font-size: 16px;
  color: #888686;
  font-weight: 400;
  font-family: var(--font-body);
}

.xb-pricing .xb-item--list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.xb-pricing .xb-item--list li:not(:last-child) {
  margin-bottom: 10px;
}

.xb-pricing .xb-item--list li>span {
  -webkit-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  transform: translateY(-1px);
}

.xb-pricing .xb-item--list li.deactive {
  opacity: 0.5;
  text-decoration: line-through;
}

.xb-pricing .xb-item--btn {
  width: 100%;
  text-align: center;
  background-color: var(--color-secondary);
}

.xb-pricing .xb-item--btn:hover {
  background-color: var(--color-primary);
}

.xb-pricing .xb-item--icon {
  position: absolute;
  top: -10px;
  right: -10px;
  z-index: -1;
}

@media (max-width: 1199px) {
  .xb-pricing .xb-item--icon {
    max-width: 100px;
  }
}

.xb-pricing.primary {
  border: 5px solid var(--color-primary);
  padding-top: 35px;
  padding-bottom: 35px;
}

.xb-pricing.primary .xb-item--btn {
  background-color: var(--color-primary);
}

/*----------------------------------------*/
/*  14. project
/*----------------------------------------*/
.lw-project-slider-inner {
  padding: 0 35px;
}

.lw-project-slider-for {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
}

@media (max-width: 991px) {
  .lw-project-slider-for {
    position: relative;
    height: 300px;
    width: 100%;
  }
}

.lw-project-slider-for .lw-project-slider {
  width: 100%;
  height: 100%;
}

.lw-project-slider-for .swiper-slide {
  overflow: hidden;
  color: #fff;
}

.lw-project-slider-for .slide-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.lw-project-wrap {
  background-color: #121A1B;
  padding: 80px 70px;
}

@media (max-width: 1199px) {
  .lw-project-wrap {
    padding: 60px 30px;
  }
}

.lw-project-slider .swiper-slide-active .xb-item--number,
.lw-project-slider .swiper-slide-active .xb-item--title,
.lw-project-slider .swiper-slide-active .xb-item--content p {
  opacity: 1;
  -webkit-transform: translate(0);
  -ms-transform: translate(0);
  transform: translate(0);
  -webkit-transition: 0.5s var(--easing);
  -o-transition: 0.5s var(--easing);
  transition: 0.5s var(--easing);
}

.lw-project-slider .swiper-slide-active .xb-item--title {
  transition-delay: .1s;
}

.lw-project-slider .swiper-slide-active .xb-item--content p {
  transition-delay: .2s;
}

.lw-project-slider .xb-item--inner {
  align-items: start;
}

.lw-project-slider .xb-item--content p,
.lw-project-slider .xb-item--number,
.lw-project-slider .xb-item--title {
  color: var(--color-white);
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  opacity: 0;
}

.lw-project-slider .xb-item--number {
  width: 50px;
  margin-right: 40px;
  font-size: 45px;
  font-family: var(--font-noto);
  font-weight: 700;
  top: 13px;
  position: relative;
}

.lw-project-slider .xb-item--content {
  width: calc(100% - 90px);
}

.lw-project-slider .xb-item--content p {
  font-size: 20px;
  line-height: 30px;
}

.lw-project-slider .xb-item--title {
  font-size: 45px;
  margin-bottom: 40px;
}

@media (max-width: 1199px) {
  .lw-project-slider .xb-item--title {
    font-size: 35px;
  }
}

.mr-project {
  display: flex;
}

@media (max-width: 767px) {
  .mr-project {
    margin-bottom: -20px;
  }
}

.mr-project__btn {
  width: 23.3%;
}

@media (max-width: 991px) {
  .mr-project__btn {
    display: none;
  }
}

.mr-project__lists {
  width: 76.7%;
}

@media (max-width: 991px) {
  .mr-project__lists {
    width: 100%;
  }
}

.mr-project__lists .xb-item--item {
  display: flex;
  align-items: flex-start;
  border: 1px solid #333333;
  margin-top: -1px;
  height: 100%;
  min-height: 464px;
  height: 100%;
  position: relative;
}

@media (max-width: 767px) {
  .mr-project__lists .xb-item--item {
    flex-wrap: wrap;
    flex-direction: column-reverse !important;
    margin-bottom: 20px;
  }
}

.mr-project__lists .xb-item--item:nth-child(even) {
  flex-direction: row-reverse;
}

.mr-project__lists .xb-item--item:nth-child(even) .xb-item--holder {
  border-right: 0;
  border-left: 1px solid #333333;
}

.mr-project__lists .xb-item--item:hover .xb-item--img img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.mr-project__lists .xb-item--item:hover .xb-item--icon {
  top: 37px;
  right: 22px;
}

.mr-project__lists .xb-item--holder {
  width: calc(50% + 1px);
  padding: 41px 30px 50px;
  min-height: 462px;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  border-right: 1px solid #333333;
  position: relative;
}

@media (max-width: 767px) {
  .mr-project__lists .xb-item--holder {
    width: 100%;
    min-height: 370px;
  }
}

.mr-project__lists .xb-item--img {
  width: 50%;
  overflow: hidden;
  padding: 21px;
}

@media (max-width: 767px) {
  .mr-project__lists .xb-item--img {
    width: 100%;
  }
}

.mr-project__lists .xb-item--img img {
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  -o-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.mr-project__lists .xb-item--img-inner {
  overflow: hidden;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.mr-project__lists .xb-item--title {
  font-size: 24px;
  font-weight: 700;
  padding-bottom: 25px;
  border-bottom: 1px solid #333;
}

@media (max-width: 991px) {
  .mr-project__lists .xb-item--title {
    font-size: 20px;
  }
}

.mr-project__lists .xb-item--date {
  font-size: 20px;
  font-weight: 500;
  color: var(--color-white);
}

.mr-project__lists .xb-item--icon {
  position: absolute;
  top: 42px;
  right: 28px;
  -webkit-transition: 0.4s var(--easing);
  -o-transition: 0.4s var(--easing);
  transition: 0.4s var(--easing);
  display: inline-block;
}

.all-project-title {
  font-size: 34px;
}

@media (max-width: 991px) {
  .all-project-title {
    font-size: 26px;
  }
}

.mr-project-shape .shape {
  position: absolute;
  z-index: -1;
}

.mr-project-shape .shape--1 {
  top: 48%;
  left: 5%;
}

.mr-project-shape .shape--2 {
  right: 0;
  bottom: 20%;
}

/*----------------------------------------*/
/*  15. cta
/*----------------------------------------*/
.xb-cta .xb-item--inner {
  background-color: var(--color-white);
  padding: 38px 58px;
  padding-top: 23px;
  top: -85px;
  position: relative;
}

@media (max-width: 1199px) {
  .xb-cta .xb-item--inner {
    padding: 38px 30px;
  }
}

.xb-cta .xb-item--inner::before {
  position: absolute;
  bottom: -55px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background-image: url(../img/shape/cta_shadow.png);
  background-repeat: no-repeat;
  width: 100%;
  height: 250px;
  text-align: center;
  background-position: center center;
  content: "";
  z-index: -1;
}

@media (max-width: 991px) {
  .xb-cta .xb-item--inner::before {
    display: none;
  }
}

.xb-cta .xb-item--number {
  font-size: 40px;
  letter-spacing: -0.8px;
}

@media (max-width: 1199px) {
  .xb-cta .xb-item--number {
    font-size: 30px;
  }
}

@media (max-width: 991px) {
  .xb-cta .xb-item--number {
    font-size: 22px;
  }
}

.xb-cta .xb-item--content {
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .xb-cta .xb-item--icon {
    max-width: 80px;
  }
}

.bc-cta {
  padding-top: 70px;
  padding-bottom: 234px;
}

@media (max-width: 767px) {
  .bc-cta {
    padding-top: 0;
    padding-bottom: 120px;
  }
}

.bc-cta__shape {
  position: absolute;
  bottom: 24%;
  z-index: -1;
  left: 0;
  right: 0;
  width: 100%;
  text-align: center;
}

.bc-cta__dot .dot {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  position: absolute;
  width: 18px;
  height: 18px;
  background-color: #EEBFC5;
  z-index: -1;
}

.bc-cta__dot .dot--1 {
  top: 21%;
  left: 28%;
  width: 8px;
  height: 8px;
  animation: animationFramesOne 15s alternate infinite linear;
  -webkit-animation: animationFramesOne 15s alternate infinite linear;
}

.bc-cta__dot .dot--2 {
  bottom: 33%;
  left: 6%;
  width: 30px;
  height: 30px;
  background-color: #CEF4F5;
  animation: animationFramesTwo 15s alternate infinite linear;
  -webkit-animation: animationFramesTwo 15s alternate infinite linear;
}

.bc-cta__dot .dot--3 {
  top: 16%;
  right: 25%;
  background-color: #EBD1DC;
  animation: animationFramesThree 15s alternate infinite linear;
  -webkit-animation: animationFramesThree 15s alternate infinite linear;
}

.bc-cta__dot .dot--4 {
  bottom: 28%;
  right: 30%;
  background-color: #669AFF;
  animation: animationFramesFour 15s alternate infinite linear;
  -webkit-animation: animationFramesFour 15s alternate infinite linear;
}

.bc-cta__dot .dot--5 {
  width: 8px;
  height: 8px;
  bottom: 46%;
  right: 18%;
  background-color: #FEF2C2;
  animation: animationFramesFive 15s alternate infinite linear;
  -webkit-animation: animationFramesFive 15s alternate infinite linear;
}

.bc-cta__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #222528;
  content: "";
  z-index: -1;
}

.bc-cta__wrap {
  padding: 105px 100px 120px;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  position: relative;
  z-index: 1;
  margin-top: -245px;
}

@media (max-width: 1199px) {
  .bc-cta__wrap {
    padding: 70px 70px 80px;
  }
}

@media (max-width: 767px) {
  .bc-cta__wrap {
    padding: 50px 20px;
  }
}

.bc-cta__btn {
  margin: -10px;
}

.bc-cta__btn a {
  margin: 10px;
}

.bc-cta__img {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

@media (max-width: 1199px) {
  .bc-cta__img {
    max-width: 420px;
  }
}

@media (max-width: 991px) {
  .bc-cta__img {
    max-width: 250px;
  }
}

@media (max-width: 767px) {
  .bc-cta__img {
    display: none;
  }
}

@media (max-width: 767px) {
  .bc-cta-img-wrap {
    display: none;
  }
}

.bc-cta-img {
  width: 376px;
  height: 540px;
  position: absolute;
  top: 50%;
  left: 13%;
  -webkit-transform: translateY(-50%) !important;
  -ms-transform: translateY(-50%) !important;
  transform: translateY(-50%) !important;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .bc-cta-img {
    left: 3%;
  }
}

@media (max-width: 1199px) {
  .bc-cta-img {
    width: 300px;
    left: 0;
  }
}

.bc-cta-img .shape {
  position: absolute;
}

.bc-cta-img .shape .shape-inner {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  box-shadow: 0px 30px 90px rgba(5, 12, 31, 0.12);
  background-color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bc-cta-img .shape--1 {
  top: -30px;
  right: 23%;
  width: 135px;
  height: 135px;
}

.bc-cta-img .shape--1 .shape-inner {
  width: 135px;
  height: 135px;
}

@media (max-width: 991px) {
  .bc-cta-img .shape--1 .shape-inner {
    width: 90px;
    height: 90px;
  }

  .bc-cta-img .shape--1 .shape-inner img {
    width: 50px;
  }
}

.bc-cta-img .shape--2 {
  top: 22%;
  left: -25px;
  width: 66px;
  height: 66px;
}

.bc-cta-img .shape--2 .shape-inner {
  width: 66px;
  height: 66px;
}

.bc-cta-img .shape--3 {
  bottom: 13%;
  left: 20%;
  width: 116px;
  height: 116px;
}

.bc-cta-img .shape--3 .shape-inner {
  width: 116px;
  height: 116px;
}

.bc-cta-img .shape--4 {
  top: 28%;
  right: 29%;
  width: 90px;
  height: 90px;
}

@media (max-width: 991px) {
  .bc-cta-img .shape--4 {
    top: 39%;
    right: 62%;
  }
}

.bc-cta-img .shape--4 .shape-inner {
  width: 90px;
  height: 90px;
}

.bc-cta-img .shape--5 {
  bottom: 16%;
  right: -8%;
  width: 88px;
  height: 88px;
}

.bc-cta-img .shape--5 .shape-inner {
  width: 88px;
  height: 88px;
}

.bc-cta-img.style-2 {
  right: 13%;
  left: auto;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .bc-cta-img.style-2 {
    right: 3%;
  }
}

@media (max-width: 1199px) {
  .bc-cta-img.style-2 {
    width: 300px;
    right: 0;
  }
}

.bc-cta-img.style-2 .shape--1 {
  top: 0;
  left: 5%;
  width: 84px;
  height: 84px;
}

@media (max-width: 991px) {
  .bc-cta-img.style-2 .shape--1 {
    top: -16%;
    left: 37%;
  }
}

.bc-cta-img.style-2 .shape--1 .shape-inner {
  width: 84px;
  height: 84px;
}

.bc-cta-img.style-2 .shape--2 {
  top: auto;
  bottom: 28%;
  left: -15%;
  width: 130px;
  height: 130px;
}

@media (max-width: 991px) {
  .bc-cta-img.style-2 .shape--2 {
    bottom: 3%;
    left: 3%;
  }
}

.bc-cta-img.style-2 .shape--2 .shape-inner {
  width: 130px;
  height: 130px;
}

@media (max-width: 991px) {
  .bc-cta-img.style-2 .shape--2 .shape-inner {
    width: 100px;
    height: 100px;
  }

  .bc-cta-img.style-2 .shape--2 .shape-inner img {
    width: 50px;
  }
}

.bc-cta-img.style-2 .shape--3 {
  left: auto;
  top: 28%;
  right: 45%;
  width: 75px;
  height: 75px;
}

@media (max-width: 991px) {
  .bc-cta-img.style-2 .shape--3 {
    top: 46%;
    right: 17%;
  }
}

.bc-cta-img.style-2 .shape--3 .shape-inner {
  width: 75px;
  height: 75px;
}

.bc-cta-img.style-2 .shape--4 {
  top: 9%;
  right: -8%;
  width: 110px;
  height: 110px;
}

.bc-cta-img.style-2 .shape--4 .shape-inner {
  width: 110px;
  height: 110px;
}

.bc-cta-img.style-2 .shape--5 {
  bottom: 17%;
  right: 6%;
  width: 80px;
  height: 80px;
}

.bc-cta-img.style-2 .shape--5 .shape-inner {
  width: 80px;
  height: 80px;
}

.service-cta-img {
  margin-right: -100px;
}

@media (max-width: 1199px) {
  .service-cta-img {
    margin-right: 0;
  }
}

.xb-icon-img .icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background-color: var(--color-secondary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  position: relative;
  z-index: 1;
}

.xb-icon-img .icon::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--color-secondary);
  border-radius: 50%;
  animation: pulse-border-cta 1500ms ease-out infinite;
  -webkit-animation: pulse-border-cta 1500ms ease-out infinite;
  z-index: -2;
}

.xb-icon-img .avatar {
  width: 52px;
  height: 52px;
  overflow: hidden;
  margin-left: -11px;
  z-index: 2;
}

.xb-icon-img.style-2 .icon {
  background-color: var(--color-primary);
}

.xb-icon-img.style-2 .icon::before {
  background-color: var(--color-primary);
}

.xb-icon-img.style-2 .avatar {
  margin-left: 0;
  margin-right: -11px;
}

@keyframes pulse-border-cta {
  0% {
    transform: scale(1);
    opacity: 0.67;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

@-webkit-keyframes pulse-border-cta {
  0% {
    transform: scale(1);
    opacity: 0.67;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/*----------------------------------------*/
/*  16. fanfact
/*----------------------------------------*/
.xb-fanfact .xb-item--inner {
  background-color: var(--color-white);
  padding: 21px 30px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

@media (max-width: 1199px) {
  .xb-fanfact .xb-item--inner {
    padding: 21px 25px;
  }
}

@media (max-width: 991px) {
  .xb-fanfact .xb-item--inner {
    padding: 30px 35px;
  }
}

.xb-fanfact .xb-item--icon {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 81, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  margin-right: 15px;
}

.xb-fanfact .xb-item--holder {
  width: calc(100% - 65px);
}

@media (max-width: 1199px) {
  .xb-fanfact .xb-item--holder {
    margin-top: 20px;
    width: 100%;
  }
}

.xb-fanfact .xb-item--title {
  text-transform: uppercase;
  font-size: 14px;
  color: var(--color-black);
  font-weight: 700;
}

.xb-fanfact .xb-item--number {
  font-size: 45px;
  color: var(--color-black);
  font-family: var(--font-body);
  -webkit-transform: translateX(-4px);
  -ms-transform: translateX(-4px);
  transform: translateX(-4px);
  line-height: 1.1;
}

.xb-fanfact .xb-item--number .xbo-digit {
  display: inline-block;
  padding-right: 4px;
}

.xb-fanfact .xb-item--number .suffix {
  padding-left: 3px;
}

.xb-fanfact__inner {
  background-color: var(--color-white);
  position: absolute;
  bottom: 8px;
  padding: 69px 0;
  width: 100%;
  z-index: 2;
  overflow: hidden;
}

@media (max-width: 767px) {
  .xb-fanfact__inner {
    position: relative;
    padding-top: 49px;
  }
}

.xb-fanfact__inner::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
  content: "";
  z-index: -2;
}

.xb-fanfact__inner::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -15px;
  width: 48%;
  height: 219px;
  background: #CBCFDA;
  filter: blur(23px);
  z-index: -3;
}

.xb-fanfact__shape .shape {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: -1;
}

@media (max-width: 767px) {
  .xb-fanfact__shape .shape {
    display: none;
  }
}

.xb-fanfact__shape .shape--1 {
  left: 0;
}

.xb-fanfact__shape .shape--2 {
  right: 0;
}

.fanfact-video {
  width: 100%;
  height: 900px;
  object-fit: cover;
}

@media (max-width: 1199px) {
  .fanfact-video {
    height: 700px;
  }
}

@media (max-width: 767px) {
  .fanfact-video {
    height: 100%;
  }
}

.xb-fanfact2 {
  width: 25%;
  text-align: center;
}

@media (max-width: 767px) {
  .xb-fanfact2 {
    width: 50%;
    margin-top: 30px;
  }
}

.xb-fanfact2:not(:nth-child(4)) {
  border-right: 1px dashed #888686;
}

@media (max-width: 991px) {
  .xb-fanfact2:not(:nth-child(4)) {
    border: 0;
  }
}

.xb-fanfact2 .number {
  font-size: 45px;
  margin-bottom: 12px;
  letter-spacing: -0.9px;
}

@media (max-width: 991px) {
  .xb-fanfact2 .number {
    font-size: 35px;
  }
}

.xb-fanfact2>span {
  font-size: 18px;
  color: #888686;
  text-transform: capitalize;
}

@media (max-width: 991px) {
  .xb-fanfact2>span {
    font-size: 16px;
  }
}

/*----------------------------------------*/
/*  17. marquee
/*----------------------------------------*/
.js-marquee,
.js-marquee-wrapper {
  display: flex;
  align-items: center;
}

.mr-marquee__item {
  margin-right: 85px;
  display: flex;
  align-items: center;
  padding: 31px 0;
  font-size: 22px;
  font-weight: 700;
  color: var(--color-white);
}

.mr-marquee__item span {
  margin-right: 10px;
}

.xb-marquee__item {
  display: flex;
  align-items: center;
  padding: 15px 27px;
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
  font-size: 22px;
  margin-right: 60px;
  box-shadow: 0px 16px 34px 0px rgba(109, 121, 152, 0.13);
}

@media (max-width: 767px) {
  .xb-marquee__item {
    margin-right: 15px;
    padding: 10px 20px;
  }

  .xb-marquee__item img {
    height: 25px;
  }
}

/*----------------------------------------*/
/*  18. process
/*----------------------------------------*/
@media (max-width: 991px) {
  .mr-process {
    justify-content: center;
  }
}

.mr-process__item {
  max-width: 300px;
  text-align: center;
  position: relative;
}

@media (max-width: 991px) {
  .mr-process__item {
    padding: 0 10px;
  }
}

.mr-process__item::before {
  position: absolute;
  top: 37%;
  left: 70%;
  width: 371px;
  height: 1px;
  background-color: #333333;
  content: "";
}

@media (max-width: 991px) {
  .mr-process__item::before {
    display: none;
  }
}

.mr-process__item:last-child::before {
  display: none;
}

.mr-process__item .xb-item--icon {
  margin-bottom: 65px;
}

.mr-process__item .xb-item--check {
  margin-bottom: 63px;
  display: inline-block;
}

.mr-process__item .xb-item--title {
  font-size: 24px;
  margin-bottom: 29px;
}

.mr-process__item .xb-item--number {
  position: absolute;
  top: 62%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: var(--color-white);
  font-size: 110px;
  font-weight: 700;
  letter-spacing: -3.3px;
  opacity: 0.05;
  z-index: -1;
}

.mr-process__item .xb-item--icon-bg {
  position: absolute;
  top: 54%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
}

.mr-process-shape {
  position: absolute;
  bottom: 20%;
}

/*----------------------------------------*/
/*  19. banner
/*----------------------------------------*/
.bc-banner {
  min-height: 625px;
  background-repeat: no-repeat;
  background-position: bottom center;
  width: 100%;
  display: flex;
  align-items: flex-end;
  position: relative;
  z-index: 1;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .bc-banner {
    min-height: 450px;
  }
}

@media (max-width: 1199px) {
  .bc-banner {
    min-height: 400px;
  }
}

@media (max-width: 991px) {
  .bc-banner {
    min-height: 300px;
  }
}

@media (max-width: 767px) {
  .bc-banner {
    min-height: 200px;
  }
}

.bc-banner__img {
  text-align: center;
  width: 100%;
}

.bc-banner__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bc-banner__bg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: -1;
}

.bc-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bc-banner__shape .shape {
  position: absolute;
  z-index: -1;
}

.bc-banner__shape .shape--1 {
  top: 29%;
  left: 4%;
}

.bc-banner__shape .shape--2 {
  top: 38%;
  left: 17%;
}

.bc-banner__shape .shape--3 {
  top: 31%;
  left: 31%;
}

.bc-banner__shape .shape--4 {
  bottom: 47%;
  right: 24%;
}

.bc-banner__shape .shape--5 {
  bottom: 55%;
  right: 6%;
}

/*----------------------------------------*/
/*  20. portfolio
/*----------------------------------------*/
.bc-portfolio {
  margin-bottom: 10px;
}

.bc-portfolio .xb-item--inner {
  padding: 60px 150px;
  margin-left: -150px;
  margin-right: -150px;
  border: 1px solid #EDEDED;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

@media (max-width: 767px) {
  .bc-portfolio .xb-item--inner {
    flex-direction: column-reverse;
    padding: 20px;
    margin: 0;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
  }
}

.bc-portfolio .xb-item--inner:hover {
  background-color: #FAFAFA;
}

.bc-portfolio .xb-item--holder {
  width: 470px;
  padding-right: 50px;
}

@media (max-width: 767px) {
  .bc-portfolio .xb-item--holder {
    width: 100%;
    padding-right: 0;
  }
}

.bc-portfolio .xb-item--cat {
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 37px;
  font-size: 16px;
  font-weight: 700;
}

@media (max-width: 767px) {
  .bc-portfolio .xb-item--cat {
    margin-bottom: 10px;
  }
}

.bc-portfolio .xb-item--title {
  font-size: 30px;
}

.bc-portfolio .xb-item--title a {
  color: currentColor;
}

.bc-portfolio .xb-item--content {
  color: #03080B;
}

.bc-portfolio .xb-item--img {
  width: calc(100% - 470px);
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .bc-portfolio .xb-item--img {
    width: 100%;
    margin-bottom: 20px;
  }
}

.bc-portfolio__menu {
  text-align: right;
  margin: -5px;
  margin-bottom: 15px;
  max-width: 670px;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .bc-portfolio__menu {
    max-width: 600px;
  }
}

@media (max-width: 767px) {
  .bc-portfolio__menu {
    text-align: left;
  }
}

.bc-portfolio__menu button {
  font-size: 14px;
  color: #03080B;
  font-weight: 700;
  border: 1px solid #EDEDED;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  letter-spacing: 0.7px;
  padding: 13px 40px;
  text-transform: uppercase;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  background: transparent;
  margin: 5px;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .bc-portfolio__menu button {
    padding: 12px 28px;
  }
}

@media (max-width: 767px) {
  .bc-portfolio__menu button {
    font-size: 12px;
    padding: 6px 20px;
  }
}

.bc-portfolio__menu button.active,
.bc-portfolio__menu button:hover {
  background-color: #F1F1F1;
}

.bc-portfolio__btn a {
  padding: 22px 42px;
  font-size: 20px;
  text-transform: capitalize;
  font-weight: 500;
}

.xb-portfolio:hover .xb-item--img img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.xb-portfolio .xb-item--img {
  overflow: hidden;
}

.xb-portfolio .xb-item--img img {
  -webkit-transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  -o-transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.xb-portfolio .xb-item--holder {
  border: 1px solid #E7E9EE;
}

.xb-portfolio .xb-item--content {
  border: 1px solid #E7E9EE;
  margin: 5px;
  padding: 32px;
  text-align: center;
}

.xb-portfolio .xb-item--cat {
  font-size: 14px;
  color: #888686;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 6px;
  font-weight: 500;
}

.xb-portfolio .xb-item--title {
  font-size: 26px;
  letter-spacing: -0.52px;
  text-transform: capitalize;
}

@media (max-width: 767px) {
  .xb-portfolio .xb-item--title {
    font-size: 22px;
    letter-spacing: 0;
  }
}

.xb-portfolio .xb-item--title a {
  color: currentColor;
}

.xb-portfolio__menu {
  border: 1px solid #E7E9EE;
  padding: 7px;
  display: inline-block;
}

.xb-portfolio__menu button {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  color: #888686;
  padding: 9px 40px;
  background-color: transparent;
}

.xb-portfolio__menu button.active {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.portfolio-single__content h2 {
  margin-bottom: 35px;
  font-size: 35px;
}

@media (max-width: 767px) {
  .portfolio-single__content h2 {
    font-size: 28px;
  }
}

.portfolio-single__content p {
  font-weight: 500;
}

.portfolio-single__content p:not(:last-child) {
  margin-bottom: 30px;
}

.portfolio-single__meta {
  border-top: 1px solid #E7E9EE;
  padding-top: 5px;
}

.portfolio-single__meta li {
  font-size: 16px;
  margin-top: 20px;
}

.portfolio-single__meta li strong {
  color: #191B1E;
  margin-right: 11px;
  text-transform: uppercase;
}

.portfolio-single__list {
  width: 70%;
}

@media (max-width: 991px) {
  .portfolio-single__list {
    width: 100%;
  }
}

.portfolio-single__list li {
  width: 50%;
  margin-bottom: 15px;
}

@media (max-width: 767px) {
  .portfolio-single__list li {
    width: 100%;
  }
}

.portfolio-single__list li img {
  margin-right: 20px;
}

/*----------------------------------------*/
/*  21. accordion
/*----------------------------------------*/
.accordion_box {
  position: relative;
  list-style: none;
}

.accordion_box .block {
  position: relative;
  overflow: hidden;
}

.accordion_box .block:last-child {
  margin-bottom: 0;
}

.accordion_box .block .acc-btn {
  color: var(--color-white);
  position: relative;
  font-weight: 700;
  font-size: 24px;
  cursor: pointer;
  padding: 24px 0;
  padding-right: 70px;
  -webkit-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

@media (max-width: 991px) {
  .accordion_box .block .acc-btn {
    font-size: 20px;
  }
}

.accordion_box .block .acc-btn .arrow {
  position: absolute;
  right: 0;
  top: 24px;
}

.accordion_box .block .acc-btn .arrow::before {
  top: 8px;
  right: 0;
  content: "";
  background-image: url(../img/icon/mr_arrow_right.svg);
  width: 24px;
  height: 20px;
  background-repeat: no-repeat;
  position: absolute;
  -webkit-transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.accordion_box .block.active-block .acc-btn .arrow::before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.accordion_box .block .content {
  position: relative;
  padding-right: 40px;
  padding-bottom: 35px;
}

.accordion_box .block .content p {
  color: #838788;
}

.accordion_box .block .content p:not(:last-child) {
  margin-bottom: 20px;
}

.accordion_box .block .content a {
  color: var(--color-white);
  font-size: 18px;
  font-weight: 700;
}

.accordion_box .block .content a:hover span {
  -webkit-transform: translate(4px, -2px);
  -ms-transform: translate(4px, -2px);
  transform: translate(4px, -2px);
}

.accordion_box .block .content a span {
  margin-left: 10px;
  width: 15px;
  height: 15px;
  display: inline-block;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.accordion_box .block .acc_body {
  position: relative;
  display: none;
}

.accordion_box .block .number {
  position: absolute;
  top: 23px;
  left: 0;
  font-size: 20px;
  color: var(--color-white);
  font-weight: 700;
}

.accordion_box .block .acc_body.current {
  display: block;
}

.xb-accordion .block {
  border: 1px solid #E7E9EE;
  margin-top: -1px;
  margin-top: 35px;
  overflow: unset;
}

.xb-accordion .block.active-block {
  box-shadow: 0px 14px 14px rgba(178, 186, 197, 0.26);
}

.xb-accordion .block.active-block .acc-btn .arrow::before {
  content: "\f068";
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}

.xb-accordion .block .acc-btn {
  color: var(--color-heading);
  padding: 26px 70px;
  font-size: 22px;
}

@media (max-width: 767px) {
  .xb-accordion .block .acc-btn {
    padding: 20px 50px;
    font-size: 18px;
  }
}

.xb-accordion .block .acc-btn .arrow {
  position: absolute;
  left: -20px;
  top: 20px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background-color: #fff;
  box-shadow: 0px 7px 13px rgba(44, 65, 97, 0.13);
}

@media (max-width: 767px) {
  .xb-accordion .block .acc-btn .arrow {
    left: -10px;
  }
}

.xb-accordion .block .acc-btn .arrow::before {
  top: 9px;
  left: 16px;
  font-size: 16px;
  color: var(--color-dark);
  content: "\f067";
  font-family: "Font Awesome 5 Pro";
  font-weight: 500;
  position: absolute;
  -webkit-transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  background-image: none;
  width: auto;
  height: auto;
  right: auto;
}

.xb-accordion .block .content {
  padding: 0 70px 30px;
}

@media (max-width: 767px) {
  .xb-accordion .block .content {
    padding: 0 50px 30px;
  }
}

.xb-accordion .block .content p {
  line-height: 30px;
  font-weight: 500;
}

.xb-accordion .block .content ul {
  line-height: 30px;
  padding-left: 25px;
  list-style: inside;
  line-height: 30px;
  padding-left: 15px;
}

/*----------------------------------------*/
/*  22. mission
/*----------------------------------------*/
.mission-mt-none {
  margin-top: -8px;
}

.xb-mission {
  padding-right: 40px;
}

.xb-mission .xb-item--icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background-color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.xb-mission .xb-item--title {
  font-size: 20px;
  letter-spacing: -0.4px;
  margin-bottom: 30px;
}

/*----------------------------------------*/
/*  23. career
/*----------------------------------------*/
.xb-career {
  border: 1px solid #E7E9EE;
  padding: 5px 50px 35px;
}

.xb-career .xb-item--title {
  font-size: 22px;
  margin-bottom: 10px;
}

.xb-career .xb-item--title a {
  color: currentColor;
}

.xb-career .xb-item--meta li {
  font-weight: 500;
  font-size: 14px;
}

.xb-career .xb-item--meta li:not(:last-child) {
  margin-right: 28px;
}

.xb-career .xb-item--meta li i {
  margin-right: 6px;
}

.xb-career .xb-item--btn {
  padding: 13px 20px;
  font-size: 14px;
  text-transform: capitalize;
}

.xb-career .xb-item--btn:hover i {
  -webkit-transform: translate(5px, -3px) rotate(-45deg);
  -ms-transform: translate(5px, -3px) rotate(-45deg);
  transform: translate(5px, -3px) rotate(-45deg);
}

.xb-career .xb-item--btn i {
  margin-left: 12px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.career-single {
  font-weight: 500;
}

.career-single__content h2 {
  font-size: 35px;
  margin-bottom: 32px;
}

@media (max-width: 767px) {
  .career-single__content h2 {
    font-size: 28px;
  }
}

.career-single__content h3 {
  font-size: 30px;
  margin-bottom: 32px;
}

@media (max-width: 767px) {
  .career-single__content h3 {
    font-size: 26px;
  }
}

.career-single__content p:not(:last-child) {
  margin-bottom: 28px;
}

.career-single__content ul {
  padding-left: 20px;
}

.career-single__content ul li:not(:last-child) {
  margin-bottom: 10px;
}

.career-single__list {
  list-style: none;
  padding-left: 0 !important;
}

.career-single__list li:not(:last-child) {
  margin-bottom: 13px;
}

.career-single__list li span {
  color: #191B1E;
}

.job-apply {
  padding: 80px;
  padding-top: 70px;
  border: 1px solid #E7E9EE;
}

@media (max-width: 991px) {
  .job-apply {
    padding: 40px 30px;
  }
}

.job-apply__holder h3 {
  font-size: 30px;
  margin-bottom: 15px;
}

.job-apply__holder p {
  margin-bottom: 30px;
}

.job-apply__form label {
  font-size: 20px;
  font-weight: 600;
  color: #191B1E;
  margin-bottom: 10px;
}

.job-apply__form input,
.job-apply__form textarea {
  height: 60px;
  background-color: #F3F4F5;
  font-size: 16px;
  border: 2px solid transparent;
}

.job-apply__form input:focus,
.job-apply__form textarea:focus {
  border-color: var(--color-primary);
}

.job-apply__form textarea {
  min-height: 154px;
}

.job-apply__form .xb-field {
  margin-bottom: 33px;
}

.job-apply__form input[type="file"] {
  border: 0;
  padding: 0;
  height: auto;
  cursor: pointer;
  background: transparent;
}

.job-apply__form .xb-btn {
  background-color: var(--color-primary);
}

.job-apply__form .xb-btn:hover {
  background-color: #191B1E;
}

.input-filed-text span {
  color: #191B1E;
}

/*----------------------------------------*/
/*  24. shop
/*----------------------------------------*/
.woocommerce-content-wrap {
  border: 1px solid #E7E9EE;
  padding: 25px;
  padding-top: 0;
}

@media (max-width: 767px) {
  .woocommerce-content-wrap {
    padding-top: 10px;
  }
}

.woocommerce-toolbar-top {
  margin-bottom: 30px;
  border-bottom: 1px solid #E7E9EE;
  margin-left: -25px;
  margin-right: -25px;
  padding: 0 25px;
}

@media (max-width: 767px) {
  .woocommerce-toolbar-top {
    justify-content: center;
  }
}

.woocommerce-toolbar-top .woocommerce-ordering {
  margin-left: 20px;
}

.woocommerce-toolbar-top .woocommerce-ordering select {
  background-color: transparent;
  width: auto;
  margin: 0;
  padding: 10px 20px;
  height: 50px;
  border: 0;
  cursor: pointer;
  color: #818181;
  background-position: calc(100% - 0px) 50%;
}

.woocommerce-toolbar-top .woocommerce-ordering select option {
  color: #191B1E;
}

@media (max-width: 767px) {
  .woocommerce-toolbar-top-right {
    justify-content: center;
  }
}

.products .product {
  text-align: center;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  background-color: var(--color-white);
  margin-bottom: 30px;
}

.products .product--img {
  position: relative;
}

.products .product--img img {
  width: 100%;
}

.products .product--img::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 40px;
  right: 40px;
  bottom: 40px;
  opacity: 0;
  -webkit-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
  -khtml-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
  -moz-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
  -ms-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
  -o-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
  transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
}

.products .product--btn {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.products .product--btn a {
  font-size: 15px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  -webkit-transform: translateY(10px);
  -ms-transform: translateY(10px);
  transform: translateY(10px);
  opacity: 0;
  padding: 15px 21px;
  text-transform: capitalize;
  background-color: var(--color-primary);
}

.products .product--btn a:hover {
  color: var(--color-white);
}

.products .product--btn a i {
  color: var(--color-white);
  margin-right: 5px;
  font-size: 14px;
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
}

.products .product:hover .product--img::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: .2;
  background-color: var(--color-primary);
}

.products .product:hover .product--btn a {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  transition-delay: .1s;
}

.products .product--holder {
  padding: 22px 15px 0px;
}

.products .product--title {
  font-size: 20px;
  color: var(--color-black);
  font-weight: 600;
  margin-bottom: 7px;
}

@media (max-width: 1199px) {
  .products .product--title {
    font-size: 18px;
    margin-bottom: 0px;
  }
}

.products .product--title a {
  color: inherit;
}

.products .product--price {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-primary);
  display: inline-block;
}

.widget-product {
  list-style: none;
}

.widget-product__item {
  display: flex;
  align-items: center;
  position: relative;
}

.widget-product__item:not(:last-child) {
  margin-bottom: 20px;
}

.widget-product__item .thumb {
  width: 92px;
  height: 92px;
  margin-right: 15px;
}

.widget-product__item .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-right: 20px;
}

.widget-product__item .content {
  width: calc(100% - 107px);
}

.widget-product__item .content h3 {
  font-size: 16px;
  color: var(--color-black);
  font-weight: 500;
}

.widget-product__item .content h3 a {
  color: inherit;
}

.widget-product__item .content .price {
  font-size: 14px;
}

.widget-product__item .content .rating {
  position: absolute;
  right: 15px;
  bottom: 20px;
}

@media (max-width: 1199px) {
  .widget-product__item .content .rating {
    position: unset;
  }
}

.widget-product__item .content .rating li {
  font-size: 11px;
  color: #FC7632;
}

.widget-product__item .content .rating li:not(:last-child) {
  margin-right: 2px;
}

.shop-sidebar .widget_price_filter .filter-price {
  position: relative;
  font-size: 15px;
  font-size: 1rem;
}

.shop-sidebar .widget_price_filter .filter-price input {
  border: 0;
  padding: 0;
  display: inline-block;
  width: auto;
  position: absolute;
}

.shop-sidebar .widget_price_filter .filter-price input:focus {
  border: 0;
  outline: none;
}

.shop-sidebar .widget_price_filter .filter-price button {
  background-color: transparent;
  color: var(--color-black);
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  display: inline-block;
  border: 0;
  outline: none;
  position: absolute;
  right: 0;
  bottom: 0;
}

.shop-sidebar .widget_price_filter .filter-price #amount {
  color: var(--color-default);
  font-weight: 500;
  height: auto;
  box-shadow: none;
  background: transparent;
  margin: 0;
  padding-left: 3px;
  color: #6E6D79;
}

.shop-sidebar .widget_price_filter #slider-range {
  height: 6px;
  background: #EEEEED;
  border: 0;
  border-radius: 50px;
  margin-bottom: 12px;
}

.shop-sidebar .widget_price_filter .ui-state-default,
.shop-sidebar .widget_price_filter .ui-widget-content .ui-state-default,
.shop-sidebar .widget_price_filter .ui-widget-header .ui-state-default {
  width: 5px;
  height: 14px;
  margin: 0;
  border: none;
  background: var(--color-primary);
  border-radius: 0;
  top: -4px;
}

.shop-sidebar .widget_price_filter .ui-state-default:focus,
.shop-sidebar .widget_price_filter .ui-widget-content .ui-state-default:focus,
.shop-sidebar .widget_price_filter .ui-widget-header .ui-state-default:focus {
  outline: none;
}

.shop-sidebar .widget_price_filter #slider-range .ui-slider-range {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  background-color: var(--color-primary);
}

.product-single-wrap {
  display: flex;
  flex-wrap: wrap;
  padding-right: 70px;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .product-single-wrap {
    padding-right: 30px;
  }
}

@media (max-width: 1199px) {
  .product-single-wrap {
    padding-right: 10px;
  }
}

.product_details_img {
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.shop_thumb_tab {
  margin-top: 10px;
}

.shop_thumb_tab ul {
  flex-wrap: wrap;
  margin: -10px;
  margin-top: 0;
}

.shop_thumb_tab ul li {
  margin-bottom: 20px;
}

.shop_thumb_tab ul li .nav-link {
  width: 100%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  padding: 10px;
}

.shop_thumb_tab ul li:last-child {
  margin-bottom: 0;
}

.shop_thumb_tab ul li button {
  padding: 0;
  border: transparent;
  overflow: hidden;
}

.shop_thumb_tab ul li button {
  max-width: 145px;
  height: auto;
  background: transparent;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .shop_thumb_tab ul li button {
    max-width: 130px;
  }
}

@media (max-width: 1199px) {
  .shop_thumb_tab ul li button {
    max-width: 100px;
  }
}

.shop_thumb_tab ul li button.active {
  border-color: var(--color-primary);
}

.product_details_img .pl_thumb img {
  width: 100%;
}

.shop_details .details_content {
  padding-left: 40px;
}

.details_content .title {
  font-size: 45px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.details_content .pl_list {
  margin-top: 25px;
  margin-bottom: 30px;
}

.details_content .price {
  font-size: 25px;
  margin-bottom: 6px;
  font-weight: 700;
}

.details_content .review_wrap {
  margin-bottom: 22px;
}

.details_content .review_wrap .review li {
  color: #ffab50;
  font-size: 13px;
  margin-right: 6px;
}

.product-details p {
  font-size: 17px;
  color: #4A4C51;
  line-height: 30px;
}

.product-details h2 {
  font-size: 36px;
  margin-bottom: 14px;
  font-weight: 600;
}

@media (max-width: 767px) {
  .product-details h2 {
    font-size: 24px;
  }
}

.shop-single-section {
  font-weight: 500;
}

.shop-single-section .product-details .price {
  font-size: 18px;
  margin: 0.4em 0 0.7em;
  font-weight: 500;
  color: var(--color-black);
}

.shop-single-section .product-details .price span {
  color: currentColor;
}

.shop-single-section .product-details .price .old {
  font-size: 18px;
  font-weight: normal;
  color: var(--color-default);
  text-decoration: line-through;
  display: inline-block;
  margin-left: 5px;
}

.shop-single-section .product-details .rating {
  margin-bottom: 20px;
}

.product-details .rating i::before {
  font-size: 12px;
  color: #ffab50;
}

.shop-single-section .product-details .color-size span {
  font-size: 14px;
  font-size: 0.9333333333rem;
  font-weight: bold;
  color: var(--color-default);
  text-transform: uppercase;
  display: inline-block;
  padding-right: 15px;
  display: block;
  margin-bottom: 5px;
}

.shop-single-section .product-details .color-size select {
  min-width: 80px;
  height: 40px;
  border: 1px solid var(--color-border);
  color: var(--color-black);
  outline: 0;
  padding: 6px 15px;
  background-position: calc(100% - 15px) 17px;
}

.shop-single-section .product-details .color-size>div+div {
  margin-top: 15px;
}

.product-details .product-option .product-row {
  display: flex;
  align-items: center;
}

.product-details .product-option .product-row input {
  margin-bottom: 0;
}

.product-details .product-option .product-row .add-to-cart-btn button {
  margin-left: 20px;
  padding: 17px 30px;
  font-weight: 600;
  height: 50px;
  max-width: 300px;
  width: 100%;
  background: var(--color-primary);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.product-details .product-option .product-row .add-to-cart-btn button i {
  -webkit-transform: translate(0);
  -ms-transform: translate(0);
  transform: translate(0);
  font-size: 13px;
  margin-left: 0;
  margin-right: 10px;
}

.shop-single-section .product-details .product-option .product-row>div:first-child {
  width: 150px;
  height: 50px;
}

.shop-single-section .product-details .color-size {
  margin-bottom: 30px;
}

.shop-single-section .product-details .product-option .bootstrap-touchspin {
  border: 1px solid #E7E9EE;
  background-color: transparent;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.shop-single-section .product-details .product-option .bootstrap-touchspin button {
  text-decoration: none;
  height: 50px;
  width: 50px;
  line-height: 50px;
  padding: 0 15px;
  font-size: 16px;
  font-size: 1.0666666667rem;
  font-weight: 500;
  color: #191B1E;
}

.shop-single-section .product-details .product-option .bootstrap-touchspin-down {
  left: 0;
  border-right: 1px solid #E7E9EE;
}

.shop-single-section .product-details .product-option .bootstrap-touchspin-up {
  right: 0;
  border-left: 1px solid #E7E9EE;
}

.shop-single-section .product-details .product-option .bootstrap-touchspin input {
  border: 0;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 16px;
  font-size: 1.0666666667rem;
  font-weight: 500;
  color: #191B1E;
  padding: 0;
  background-color: transparent;
}

.shop-single-section .product-details .product-count:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
}

.shop-single-section .thb-product-meta-after .product_meta>span {
  font-size: 16px;
  font-weight: 500;
  color: #232323;
  display: block;
  margin-bottom: 15px;
}

.shop-single-section .thb-product-meta-after .product_meta>span a {
  font-weight: 400;
  font-size: 15px;
  color: #4A4C51;
}

.shop-single-section .product-details .product-option {
  margin-top: 40px;
}

.shop-single-section .single-product-info {
  margin-top: 20px;
}

.product-share-wrap a {
  margin-left: 15px;
}

.product-share-wrap a:hover {
  color: var(--color-primary);
}

@media (max-width: 767px) {
  .shop-single-section .single-product-info .tablist {
    margin-bottom: 25px;
  }
}

.shop-single-section .single-product-info h4 {
  font-size: 18px;
  font-size: 1.2rem;
  font-weight: 400;
  margin: 0;
  line-height: 1.7em;
  font-weight: 500;
}

.shop-single-section .single-product-info p {
  margin-bottom: 1.3em;
}

.shop-single-section .single-product-info .tab-pane p:last-child {
  margin-bottom: 0;
}

.shop-single-section .single-product-info .nav-tabs {
  border: 0;
  display: inline-block;
  margin-top: 5px;
}

.shop-single-section .single-product-info .nav-tabs {
  margin-top: -10px;
}

.shop-single-section .single-product-info .nav-tabs li {
  float: left;
  margin-right: 30px;
  margin-top: 10px;
}

.shop-single-section .single-product-info .nav-tabs li:last-child {
  margin-right: 0;
}

.shop-single-section .single-product-info .nav-tabs button {
  background: transparent;
  font-weight: 500;
  font-size: 16px;
  display: block;
  border: 1px solid #E0DDE5;
  padding: 13px 45px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.shop-single-section .single-product-info .nav-tabs button.active {
  color: var(--color-white);
  border-color: var(--color-primary);
  background-color: var(--color-primary);
}

.shop-single-section .single-product-info .nav-tabs button.active::before {
  opacity: 1;
}

@media (max-width: 767px) {
  .shop-single-section .single-product-info .nav-tabs button {
    font-size: 12px;
    padding: 8px 25px;
  }
}

.shop-single-section .single-product-info .nav-tabs a:hover,
.shop-single-section .single-product-info .nav-tabs .active a {
  background-color: transparent;
  color: #00394f;
}

.shop-single-section .single-product-info .tab-content {
  padding: 35px 0;
  margin-top: -1px;
  text-align: left;
}

@media (max-width: 767px) {
  .shop-single-section .single-product-info .tab-content {
    border: 0;
    padding: 0;
    margin: 0;
  }
}

.shop-single-section .single-product-info .client-rv {
  overflow: hidden;
  margin-bottom: 30px;
}

.shop-single-section .single-product-info .client-rv:last-child {
  margin-bottom: 0;
}

.shop-single-section .single-product-info .client-rv .client-pic {
  width: 60px;
  float: left;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  overflow: hidden;
}

@media (max-width: 767px) {
  .shop-single-section .single-product-info .client-rv .client-pic {
    width: 100%;
    float: none;
    margin-bottom: 10px;
  }
}

.shop-single-section .single-product-info .client-rv .details {
  width: calc(100% - 80px);
  float: right;
}

@media (max-width: 767px) {
  .shop-single-section .single-product-info .client-rv .details {
    width: 100%;
    float: none;
  }
}

@media (max-width: 767px) {
  .shop-single-section .single-product-info .client-rv .name-rating-time {
    padding-bottom: 3px;
  }
}

.shop-single-section .single-product-info .client-rv .name-rating-time>div,
.shop-single-section .single-product-info .client-rv .name-rating>div {
  display: inline-block;
  font-size: 14px;
  font-size: 0.9333333333rem;
}

@media (max-width: 767px) {

  .shop-single-section .single-product-info .client-rv .name-rating-time>div,
  .shop-single-section .single-product-info .client-rv .name-rating>div {
    font-size: 12px;
    font-size: 0.8rem;
    display: block;
  }
}

.shop-single-section .single-product-info .client-rv .rating .fi:before {
  font-size: 12px;
}

.shop-single-section .single-product-info .client-rv .rating {
  font-size: 12px;
  color: #E0A500;
  padding-left: 12px;
}

@media (max-width: 767px) {
  .shop-single-section .single-product-info .client-rv .rating {
    padding-left: 0;
    margin: 4px 0 7px;
  }
}

.shop-single-section .single-product-info .client-rv .name-rating-time .time {
  font-size: 14px;
  font-size: 0.9333333333rem;
  font-weight: 500;
  margin-top: 3px;
  display: block;
  color: #b3b3b3;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .shop-single-section .single-product-info .client-rv .name-rating-time .time {
    float: none;
  }
}

.shop-single-section .single-product-info .client-rv .review-body {
  padding-top: 12px;
}

.shop-single-section .single-product-info .review-form-wrapper {
  margin-top: 50px;
}

@media screen and (min-width: 1200px) {
  .shop-single-section .single-product-info .review-form-wrapper {
    padding-left: 15px;
  }
}

@media (max-width: 991px) {
  .shop-single-section .single-product-info .review-form {
    margin-top: 45px;
  }
}

.shop-single-section .single-product-info .review-form h4 {
  margin-bottom: 1.73em;
  font-weight: 500;
}

.shop-single-section .single-product-info .review-form form input,
.shop-single-section .single-product-info .review-form form textarea {
  width: 100%;
  height: auto;
  border: 1px solid #ddd;
  border-radius: 0;
  padding: 12px 15px;
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}

@media (max-width: 991px) {

  .shop-single-section .single-product-info .review-form form input,
  .shop-single-section .single-product-info .review-form form textarea {
    padding: 10px 15px;
  }
}

.shop-single-section .single-product-info .review-form form input:focus,
.shop-single-section .single-product-info .review-form form textarea:focus {
  border: 1px solid var(--color-primary);
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.shop-single-section .single-product-info .review-form form textarea {
  height: 130px;
}

.shop-single-section .single-product-info .review-form form>div {
  margin-bottom: 27px;
}

.shop-single-section .single-product-info .review-form form>div:last-child {
  margin-bottom: 0;
}

.shop-single-section .single-product-info .review-form form .rating-wrapper>div {
  display: inline-block;
}

@media (max-width: 767px) {
  .shop-single-section .single-product-info .review-form form .rating-wrapper>div {
    display: block;
    float: none !important;
  }
}

.shop-single-section .single-product-info .review-form form .rating-wrapper>div:last-child {
  float: right;
}

@media (max-width: 767px) {
  .shop-single-section .single-product-info .review-form form .rating-wrapper>div:last-child {
    margin-top: 20px;
  }
}

.shop-single-section .single-product-info .review-form form .rating a {
  font-size: 14px;
  color: #cccccc;
  display: inline-block;
  margin-right: 5px;
}

@media (max-width: 767px) {
  .shop-single-section .single-product-info .review-form form .rating a {
    font-size: 12px;
  }
}

.shop-single-section .single-product-info .review-form form .rating a:last-child {
  margin: 0;
}

.shop-single-section .single-product-info .review-form form .rating a:hover {
  color: #E0A500;
}

.shop-single-section .single-product-info .review-form .submit button {
  border: 0;
  outline: none;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.shop-single-section .realted-porduct {
  margin-top: 20px;
}

.shop-single-section .realted-porduct .title {
  font-size: 28px;
  line-height: 0.95em;
  margin: 0 0 0.7em;
  position: relative;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 30px;
}

.account-form {
  border: 1px solid #E0DDE5;
  padding: 30px;
}

@media (max-width: 767px) {
  .account-form {
    padding: 20px 15px;
  }
}

.account-form label {
  color: var(--color-black);
  margin-bottom: 10px;
}

.account-form .form-check-input {
  margin-top: 0;
  margin-bottom: 10px;
  margin-right: 10px;
  box-shadow: none;
}

.account-form .form-check-input:focus {
  border-color: var(--color-primary);
}

.account-form .form-check-input:checked {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.account-form__inner h3 {
  font-size: 28px;
  margin-bottom: 12px;
  font-weight: 600;
}

@media (max-width: 767px) {
  .account-form__inner h3 {
    font-size: 24px;
  }
}

.account-form__btn button {
  padding: 15px 50px;
}

.account-form__chekbox {
  display: flex;
  align-items: center;
}

.account-form .lost-password {
  color: #4A4C51;
  margin-top: 15px;
  display: inline-block;
}

.account-form .lost-password:hover {
  color: var(--color-black);
}

.account-form__content a {
  color: var(--color-black);
}

.woocommerce-content-wrap .pagination_wrap {
  margin-bottom: -54px;
}

.woocommerce-cart .grop-page-content_warp .woocommerce {
  margin-top: 20px;
  margin-bottom: 41px;
}

.woocommerce .quantity {
  width: 76px;
}

.woocommerce-cart .woocommerce table.shop_table th {
  padding: 15px 19px 13px;
  text-transform: uppercase;
  color: #191B1E;
  font-weight: 500;
}

.woocommerce table.shop_table {
  border: 0;
  border-radius: 0;
}

.shop_table tfoot tr th {
  font-weight: normal;
}

.woocommerce table.shop_table tbody th,
.woocommerce table.shop_table tfoot td,
.woocommerce table.shop_table tfoot th {
  font-weight: 500;
}

.shop_table {
  table-layout: auto;
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  text-align: left;
}

.shop_table thead tr th:first-child {
  text-align: left;
}

.shop_table.woocommerce-checkout-review-order-table th,
.shop_table.woocommerce-checkout-review-order-table td {
  padding-top: 15px;
  padding-bottom: 15px;
}

.shop_table th,
.shop_table td {
  padding: 25px 0;
}

.shop_table.woocommerce-checkout-review-order-table th,
.shop_table.woocommerce-checkout-review-order-table td {
  padding-top: 15px;
  padding-bottom: 15px;
}

.shop_table tbody tr td {
  padding-right: 25px;
}

.shop_table th,
.shop_table td {
  padding: 25px 0;
}

.add_payment_method #payment,
.woocommerce-cart #payment,
.woocommerce-checkout #payment {
  background: #f5f5f5;
  border-radius: 0;
  padding: 25px;
}

#add_payment_method #payment ul.payment_methods,
.woocommerce-cart #payment ul.payment_methods,
.woocommerce-checkout #payment ul.payment_methods {
  padding: 0;
  list-style: none;
}

#add_payment_method #payment div.payment_box,
.woocommerce-cart #payment div.payment_box,
.woocommerce-checkout #payment div.payment_box {
  background-color: #e6e6e6;
}

#add_payment_method #payment div.payment_box:before,
.woocommerce-cart #payment div.payment_box:before,
.woocommerce-checkout #payment div.payment_box:before {
  border: 1em solid rgba(22, 29, 57, 0.1);
  border-right-color: transparent;
  border-left-color: transparent;
  border-top-color: transparent;
}

#add_payment_method #payment div.form-row,
.woocommerce-cart #payment div.form-row,
.woocommerce-checkout #payment div.form-row {
  padding-left: 0;
}

.woocommerce table.shop_table td {
  border-top: 1px solid rgba(22, 29, 57, 0.1);
}

.woocommerce-cart .woocommerce table.shop_table td.actions {
  padding-top: 19px;
  padding-bottom: 19px;
  text-align: right;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  font-size: 15px;
  font-size: 1rem;
  padding: 17px 19px 15px;
  color: #191B1E;
}

.woocommerce-cart .woocommerce table.shop_table .cart_single td.product-name,
.woocommerce-cart .woocommerce table.shop_table .cart_single td.product-name a {
  color: var(--color-default);
}

.woocommerce #content table.cart td.actions .coupon,
.woocommerce table.cart td.actions .coupon,
.woocommerce-page #content table.cart td.actions .coupon,
.woocommerce-page table.cart td.actions .coupon {
  float: left;
}

.woocommerce table.cart td.actions .coupon {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .woocommerce table.cart td.actions .coupon {
    display: unset;
  }
}

.widget_products .product-list-widget>li {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.widget_products .product-list-widget>li:last-child {
  margin-bottom: 0;
}

.widget_products .product-thumb {
  width: 80px;
  margin-right: 15px;
}

.rating_star li {
  font-size: 12px;
  color: #ffab50;
  margin-right: 2px;
}

.widget_products .rating_star {
  margin-bottom: 6px;
}

.widget_products .procuct-title {
  font-size: 16px;
  margin-bottom: 7px;
}

.widget_products .woocommerce-Price-amount.amount {
  font-size: 14px;
}

.widget_products .prodcut-content del {
  font-size: 15px;
  padding-left: 5px;
  color: var(--color-default);
}

.widget_products .prodcut-content ins {
  text-decoration: none;
  color: var(--color-black);
}

.woocommerce-cart .woocommerce table.shop_table td.actions .coupon label:first-child {
  display: none;
}

.woocommerce-cart .woocommerce table.shop_table td.actions #coupon_code {
  height: 52px;
  padding-left: 18px;
  width: 227px;
  box-shadow: none;
  border: 1px solid rgba(22, 29, 57, 0.1);
  color: var(--color-black);
  margin: 0;
  margin-right: 20px;
  padding: 10px 20px;
}

.woocommerce-cart .woocommerce table.shop_table td.actions input:focus {
  border-color: var(--color-primary) !important;
}

.woocommerce-cart .woocommerce table.shop_table tr.cart-subtotal td[data-title*=Subtotal],
.woocommerce-cart .woocommerce table.shop_table tr.shipping td[data-title*=Subtotal],
.woocommerce-cart .woocommerce table.shop_table tr.order-total td[data-title*=Subtotal] {
  color: var(--color-black);
}

.woocommerce-cart .woocommerce table.shop_table tr.cart-subtotal td[data-title*=Subtotal]::-webkit-input-placeholder,
.woocommerce-cart .woocommerce table.shop_table tr.shipping td[data-title*=Subtotal]::-webkit-input-placeholder,
.woocommerce-cart .woocommerce table.shop_table tr.order-total td[data-title*=Subtotal]::-webkit-input-placeholder {
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "alpha(opacity=100)";
  color: var(--color-default);
}

.woocommerce-cart .woocommerce table.shop_table tr.cart-subtotal td[data-title*=Subtotal]::-moz-placeholder,
.woocommerce-cart .woocommerce table.shop_table tr.shipping td[data-title*=Subtotal]::-moz-placeholder,
.woocommerce-cart .woocommerce table.shop_table tr.order-total td[data-title*=Subtotal]::-moz-placeholder {
  /* Firefox 19+ */
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "alpha(opacity=100)";
  color: var(--color-default);
}

.woocommerce-cart .woocommerce table.shop_table tr.cart-subtotal td[data-title*=Subtotal]:-ms-input-placeholder,
.woocommerce-cart .woocommerce table.shop_table tr.shipping td[data-title*=Subtotal]:-ms-input-placeholder,
.woocommerce-cart .woocommerce table.shop_table tr.order-total td[data-title*=Subtotal]:-ms-input-placeholder {
  /* IE 10+ */
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "alpha(opacity=100)";
  color: var(--color-default);
}

.woocommerce-cart .woocommerce table.shop_table tr.cart-subtotal td[data-title*=Subtotal]:-moz-placeholder,
.woocommerce-cart .woocommerce table.shop_table tr.shipping td[data-title*=Subtotal]:-moz-placeholder,
.woocommerce-cart .woocommerce table.shop_table tr.order-total td[data-title*=Subtotal]:-moz-placeholder {
  /* Firefox 18- */
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "alpha(opacity=100)";
  color: var(--color-default);
}

.woocommerce-cart .woocommerce table.shop_table tr.cart-subtotal th,
.woocommerce-cart .woocommerce table.shop_table tr.cart-subtotal td,
.woocommerce-cart .woocommerce table.shop_table tr.shipping th,
.woocommerce-cart .woocommerce table.shop_table tr.shipping td,
.woocommerce-cart .woocommerce table.shop_table tr.order-total th,
.woocommerce-cart .woocommerce table.shop_table tr.order-total td {
  padding: 16px 15px 14px;
}

.woocommerce-cart .woocommerce-shipping-calculator .shipping-calculator-button {
  color: var(--color-black);
  margin-top: 6px;
  display: block;
  margin-bottom: 12px;
}

.woocommerce-cart .shipping-calculator-form .form-row {
  margin: 0 0 13px;
}

.woocommerce-cart .shipping-calculator-form button.button {
  background-color: #000 !important;
  color: #ffffff !important;
  height: 45px;
  line-height: 45px;
  padding: 1px 27px 0;
  margin-top: 4px;
}

#add_payment_method table.cart img,
.woocommerce-cart table.cart img,
.woocommerce-checkout table.cart img {
  width: 70px;
  object-fit: cover;
}

.woocommerce-cart .woocommerce table.shop_table .cart_single td a.remove {
  width: 18px;
  height: 18px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  line-height: 17px;
  color: #fff;
  border-radius: 50%;
  background: #dbdbdb;
}

.woocommerce-cart .woocommerce table.shop_table .cart_single td a.remove:hover {
  background-color: #000;
}

.woocommerce #respond input#submit.disabled,
.woocommerce #respond input#submit:disabled,
.woocommerce #respond input#submit[disabled]:disabled,
.woocommerce a.button.disabled,
.woocommerce a.button:disabled,
.woocommerce a.button[disabled]:disabled,
.woocommerce button.button.disabled,
.woocommerce button.button:disabled,
.woocommerce button.button[disabled]:disabled,
.woocommerce input.button.disabled,
.woocommerce input.button:disabled,
.woocommerce input.button[disabled]:disabled {
  padding-top: 0;
  padding-bottom: 0;
}

.woocommerce .cart-collaterals .cart_totals,
.woocommerce-page .cart-collaterals .cart_totals {
  margin-top: 50px;
}

.woocommerce .cart-collaterals .cart_totals>h2,
.woocommerce-page .cart-collaterals .cart_totals>h2 {
  font-size: 24px;
  font-size: 1.6rem;
  margin: 0 0 1.3em;
}

#add_payment_method .cart-collaterals .cart_totals table select,
.woocommerce-cart .cart-collaterals .cart_totals table select,
.woocommerce-checkout .cart-collaterals .cart_totals table select {
  border: 1px solid rgba(22, 29, 57, 0.1);
  color: var(--color-default);
  font-size: 14px;
  height: 50px;
  width: 100%;
}

#add_payment_method .wc-proceed-to-checkout,
.woocommerce-cart .wc-proceed-to-checkout,
.woocommerce-checkout .wc-proceed-to-checkout {
  padding: 0;
  text-align: right;
}

#add_payment_method .wc-proceed-to-checkout,
.woocommerce-cart .wc-proceed-to-checkout,
.woocommerce-checkout .wc-proceed-to-checkout {
  padding: 0;
}

#add_payment_method .wc-proceed-to-checkout a.checkout-button,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce-checkout .wc-proceed-to-checkout a.checkout-button {
  margin-bottom: 0;
  margin-top: 16px;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  padding: 20px 50px;
}

.woocommerce-cart .input-text.qty.text {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.woocommerce-cart input::-webkit-outer-spin-button,
.woocommerce-cart input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

@media (max-width: 600px) {
  .woocommerce-cart thead {
    display: none;
  }

  .woocommerce-cart table,
  .woocommerce-cart th,
  .woocommerce-cart td,
  .woocommerce-cart tr,
  .woocommerce-cart tbody {
    width: 100%;
    display: block;
    border: 0;
    text-align: center;
  }

  .woocommerce table.shop_table {
    border: 1px solid rgba(22, 29, 57, 0.1);
  }

  .quantity {
    margin: 0 auto;
  }

  .woocommerce table.shop_table td {
    border: 0;
  }

  .woocommerce-cart tbody>tr {
    position: relative;
  }

  .woocommerce-cart tbody>tr+tr {
    border-top: 1px solid rgba(22, 29, 57, 0.1);
  }

  .woocommerce-cart tbody>tr {
    padding: 30px 20px;
  }

  .woocommerce-cart .woocommerce table.shop_table .cart_single td {
    padding: 8px 10px;
  }

  .woocommerce-cart .woocommerce table.shop_table .cart_single td.product-remove {
    border-right: 0;
    width: auto;
  }

  .woocommerce-cart .woocommerce table.shop_table .cart_single td.product-remove {
    position: absolute;
    right: 15px;
    top: 15px;
  }

  .woocommerce-cart .woocommerce table.shop_table td.actions {
    text-align: center;
  }

  .woocommerce-cart .woocommerce table.shop_table td.actions input,
  .woocommerce-cart .woocommerce table.shop_table td.actions button {
    display: block;
    float: none;
  }

  .woocommerce-cart .coupon {
    float: none !important;
  }

  .woocommerce-cart .woocommerce table.shop_table td.actions input,
  .woocommerce-cart .woocommerce table.shop_table td.actions button {
    display: inline-block;
    float: none;
    margin-top: 10px;
  }

  .woocommerce-cart .woocommerce table.shop_table .cart_single td.product-name,
  .woocommerce-cart .woocommerce table.shop_table .cart_single td.product-name a,
  .woocommerce-cart .woocommerce table.shop_table .cart_single td,
  .woocommerce-cart .woocommerce table.shop_table .cart_single td a {
    font-weight: 500;
  }
}

@media (max-width: 767px) {
  .cart-section .container {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .cart-section .wc-proceed-to-checkout {
    text-align: center;
  }
}

.cart-section .btn {
  padding: 7px 4px 7px 6px;
  font-size: 8px;
  font-weight: normal;
  position: relative;
}

.cart-section .btn:hover {
  background-color: #000 !important;
}

.cart-section .bootstrap-touchspin {
  border: 1px solid rgba(22, 29, 57, 0.1);
  width: 100px;
}

.cart-section .bootstrap-touchspin button {
  text-decoration: none;
  border: 0;
  height: 38px;
  line-height: 38px;
  padding: 0 10px;
  font-size: 16px;
  font-size: 1.0666666667rem;
  font-weight: 500;
  color: var(--color-default);
}

.cart-section .bootstrap-touchspin input {
  border: 0;
  height: 38px;
  line-height: 38px;
  text-align: center;
  font-size: 16px;
  font-size: 1.0666666667rem;
  font-weight: 500;
  color: var(--color-default);
  background: transparent;
}

.cart-section .bootstrap-touchspin-up {
  right: 10px;
}

.cart-section .bootstrap-touchspin-up:hover {
  background: transparent !important;
}

.cart-section .bootstrap-touchspin-down {
  left: 10px;
}

.cart-section .bootstrap-touchspin-down:hover {
  background: transparent !important;
}

/* Firefox */
.woocommerce-cart input[type=number] {
  -moz-appearance: textfield;
}

.woocommerce strong {
  font-weight: 500;
}

.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up,
.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down {
  border-radius: 0;
}

.checkout-section .checkout.woocommerce-checkout {
  overflow: hidden;
  clear: both;
}

@media screen and (min-width: 992px) {
  .checkout-section .checkout.woocommerce-checkout .col2-set {
    width: 70%;
    float: left;
    padding-right: 85px;
  }

  .checkout-section .checkout.woocommerce-checkout .woocommerce-checkout-review-order {
    width: 30%;
    float: right;
  }

  .checkout-section .checkout.woocommerce-checkout form .form-row.form-row-first,
  .checkout-section .checkout.woocommerce-checkout form .form-row.form-row-last,
  .checkout-section .checkout.woocommerce-checkout .form-row.form-row-first,
  .checkout-section .checkout.woocommerce-checkout .form-row.form-row-last {
    width: 50%;
    float: left;
  }

  .checkout-section .checkout.woocommerce-checkout form .form-row.form-row-first,
  .checkout-section .checkout.woocommerce-checkout .form-row.form-row-first {
    padding-right: 15px;
  }

  .checkout-section .checkout.woocommerce-checkout .form-row label,
  .woocommerce .form-row label {
    color: #191B1E;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
  }

  .checkout-section .checkout.woocommerce-checkout form .form-row.form-row-last,
  .checkout-section .checkout.woocommerce-checkout .form-row.form-row-last {
    padding-left: 15px;
  }
}

.checkout-section .checkout.woocommerce-checkout .form-row label.checkbox,
.checkout-section .checkout.woocommerce-checkout .woocommerce-shipping-fields label.checkbox {
  display: inline-block;
}

.checkout-section .checkout.woocommerce-checkout .form-row textarea {
  height: 180px;
}

.woocommerce-cart .actions .xb-btn {
  border: 0;
  height: 52px;
  padding: 10px 50px;
}

.woocommerce table.shop_table {
  border: 1px solid #E7E9EE;
  margin: 0 -1px 24px 0;
  text-align: left;
  width: 100%;
  border-collapse: separate;
  border-radius: 5px;
}

.woocommerce table.shop_table tbody th,
.woocommerce table.shop_table tfoot td,
.woocommerce table.shop_table tfoot th {
  font-weight: 700;
  border-top: 1px solid #E7E9EE;
}

/*** woocommerce ***/
.woocommerce-Button,
.woocommerce-button {
  background: rgba(0, 0, 0, 0.9);
  font-size: 12px;
  font-size: 0.8rem;
  font-weight: 500;
  font-weight: 500;
  padding: 12px 30px;
  color: #fff;
  margin-top: 20px;
  color: white;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  text-transform: uppercase;
  letter-spacing: 3px;
  border: 0;
}

.woocommerce-Button:hover,
.woocommerce-button:hover {
  background: #000;
}

.woocommerce-info:before {
  display: none;
}

.woocommerce-privacy-policy-text a {
  font-weight: 500;
  color: #E0A500;
  text-decoration: underline;
}

.woocommerce-error a,
.woocommerce-info a,
.woocommerce-message a,
.lost_password a {
  color: #191B1E;
}

.woocommerce-error a:hover,
.woocommerce-info a:hover,
.woocommerce-message a:hover,
.lost_password a:hover {
  text-decoration: underline;
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
  background-color: #2029BD0F;
  width: auto;
  padding: 15px 15px 15px 35px;
  margin: 0 0 2em;
  position: relative;
  color: #191B1E;
  list-style: none;
  word-wrap: break-word;
}

@media (max-width: 767px) {

  .woocommerce-error,
  .woocommerce-info,
  .woocommerce-message {
    padding: 15px;
  }
}

.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register {
  padding: 34px 35px 33px;
  border: 1px solid var(--color-border);
  margin: 19px 0;
  text-align: left;
  border-radius: 0;
}

.woocommerce .login p {
  margin-bottom: 15px;
}

@media (max-width: 767px) {

  .woocommerce form.checkout_coupon,
  .woocommerce form.login,
  .woocommerce form.register {
    padding: 34px 20px 33px;
  }
}

.woocommerce form .form-row .required {
  color: red;
  font-weight: 600;
  border: 0;
}

.woocommerce form.login>p:not(.form-row) {
  margin-bottom: 2em;
}

#customer_login form.login>p:not(.form-row) {
  margin-top: 2em;
  margin-bottom: 0;
}

.woocommerce form.login input[type=submit],
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  color: #fff;
  font-size: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 14px 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  border: 0;
  border-radius: 0;
  outline: 0;
}

.woocommerce .checkout_coupon input[type="submit"] {
  padding: 18px 30px;
  border: 0;
  margin-top: 10px;
}

.woocommerce form.login input[type=submit]:hover,
.woocommerce form.login input[type=submit]:focus,
.woocommerce form.login input[type=submit]:active,
.woocommerce #respond input#submit:hover,
.woocommerce #respond input#submit:focus,
.woocommerce #respond input#submit:active,
.woocommerce a.button:hover,
.woocommerce a.button:focus,
.woocommerce a.button:active,
.woocommerce button.button:hover,
.woocommerce button.button:focus,
.woocommerce button.button:active,
.woocommerce input.button:hover,
.woocommerce input.button:focus,
.woocommerce input.button:active {
  background-color: var(--color-primary);
  color: #fff;
}

.woocommerce form .form-row label.inline {
  display: inline;
  padding-left: 15px;
}

.woocommerce h3 {
  font-size: 22px;
  font-size: 1.4666666667rem;
  margin: 1em 0 1.5em;
}

abbr,
abbr[title] {
  border-bottom: 1px dotted #0a0a0a;
  cursor: help;
  text-decoration: none;
}

@media (max-width: 767px) {
  .woocommerce form .form-row label.inline {
    padding-left: 5px;
  }
}

.checkout-section input[type="text"],
.checkout-section input[type="password"],
.checkout-section input[type="email"],
.checkout-section input[type="tel"],
.checkout-section select,
.checkout-section textarea {
  height: 55px;
  box-shadow: none;
  padding: 10px 20px;
  border: 2px solid transparent;
}

.checkout-section input[type="text"]:focus,
.checkout-section input[type="password"]:focus,
.checkout-section input[type="email"]:focus,
.checkout-section input[type="tel"]:focus,
.checkout-section select:focus,
.checkout-section textarea:focus {
  border-color: var(--color-primary);
}

#add_payment_method #payment ul.payment_methods li,
.woocommerce-cart #payment ul.payment_methods li,
.woocommerce-checkout #payment ul.payment_methods li {
  line-height: 2;
  text-align: left;
  margin: 0;
  font-weight: 400;
}

#add_payment_method #payment div.payment_box,
.woocommerce-cart #payment div.payment_box,
.woocommerce-checkout #payment div.payment_box {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  padding: 1em;
  margin: 1em 0;
  font-size: .92em;
  border-radius: 2px;
  line-height: 1.5;
  background-color: #e6e6e6;
  color: var(--color-default);
}

#add_payment_method #payment ul.payment_methods li img,
.woocommerce-cart #payment ul.payment_methods li img,
.woocommerce-checkout #payment ul.payment_methods li img {
  vertical-align: middle;
  margin: -2px 0 0 .5em;
  padding: 0;
  position: relative;
  box-shadow: none;
}

#add_payment_method #payment .payment_method_paypal img,
.woocommerce-cart #payment .payment_method_paypal img,
.woocommerce-checkout #payment .payment_method_paypal img {
  max-height: 52px;
  vertical-align: middle;
}

#add_payment_method #payment .payment_method_paypal .about_paypal,
.woocommerce-cart #payment .payment_method_paypal .about_paypal,
.woocommerce-checkout #payment .payment_method_paypal .about_paypal {
  float: right;
  line-height: 52px;
  font-size: .83em;
  color: var(--color-default);
  margin-left: 10px;
}

#add_payment_method #payment ul.payment_methods li input,
.woocommerce-cart #payment ul.payment_methods li input,
.woocommerce-checkout #payment ul.payment_methods li input {
  margin: 0 5px 0 0;
}

#add_payment_method #payment div.payment_box::before,
.woocommerce-cart #payment div.payment_box::before,
.woocommerce-checkout #payment div.payment_box::before {
  border: 1em solid var(--color-border);
  border-right-color: transparent;
  border-left-color: transparent;
  border-top-color: transparent;
}

#add_payment_method #payment div.payment_box::before,
.woocommerce-cart #payment div.payment_box::before,
.woocommerce-checkout #payment div.payment_box::before {
  content: "";
  display: block;
  border: 1em solid var(--color-border);
  border-right-color: transparent;
  border-left-color: transparent;
  border-top-color: transparent;
  position: absolute;
  top: -.75em;
  left: 0;
  margin: -1em 0 0 2em;
}

#add_payment_method #payment div.payment_box p:last-child,
.woocommerce-cart #payment div.payment_box p:last-child,
.woocommerce-checkout #payment div.payment_box p:last-child {
  margin-bottom: 0;
}

.woocommerce-billing-fields p {
  margin-bottom: 15px;
}

/*----------------------------------------*/
/*  25. breadcrumb
/*----------------------------------------*/
.breadcrumb {
  min-height: 450px;
  padding: 120px 0;
  margin: 0;
  display: flex;
  align-items: center;
}

@media (max-width: 1199px) {
  .breadcrumb {
    min-height: 320px;
    background-position-x: 20%;
  }
}

@media (max-width: 767px) {
  .breadcrumb {
    padding: 100px 0;
    min-height: 300px;
  }
}

.breadcrumb__title {
  font-size: 55px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -1.1px;
}

@media (max-width: 1199px) {
  .breadcrumb__title {
    font-size: 45px;
    letter-spacing: -.8px;
  }
}

@media (max-width: 767px) {
  .breadcrumb__title {
    font-size: 35px;
    letter-spacing: 0px;
  }
}

.breadcrumb__list {
  display: inline-block;
}

.breadcrumb__list li {
  display: inline-block;
  font-weight: 700;
  color: var(--color-default);
  font-size: 14px;
  position: relative;
  text-transform: uppercase;
}

.breadcrumb__list li a {
  color: var(--color-dark);
}

/*----------------------------------------*/
/*  26. sidebar
/*----------------------------------------*/
.offcanvas-sidebar .sidebar-logo,
.offcanvas-sidebar .sidebar-content,
.offcanvas-sidebar .sidebar-contact-info,
.offcanvas-sidebar .sidebar-newsletter,
.offcanvas-sidebar .sidebar-social {
  -webkit-transition: all 0.35s cubic-bezier(0.39, 0.66, 0.56, 1.05);
  -o-transition: all 0.35s cubic-bezier(0.39, 0.66, 0.56, 1.05);
  transition: all 0.35s cubic-bezier(0.39, 0.66, 0.56, 1.05);
  -webkit-transform: translateY(40px);
  -ms-transform: translateY(40px);
  transform: translateY(40px);
  opacity: 0;
}

.offcanvas-sidebar.active .sidebar-logo,
.offcanvas-sidebar.active .sidebar-content,
.offcanvas-sidebar.active .sidebar-contact-info,
.offcanvas-sidebar.active .sidebar-newsletter,
.offcanvas-sidebar.active .sidebar-menu-close,
.offcanvas-sidebar.active .sidebar-social {
  -webkit-transition: all 0.35s cubic-bezier(0.39, 0.66, 0.56, 1.05);
  -o-transition: all 0.35s cubic-bezier(0.39, 0.66, 0.56, 1.05);
  transition: all 0.35s cubic-bezier(0.39, 0.66, 0.56, 1.05);
  -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-newsletter {
  transition-delay: .5s;
}

.offcanvas-sidebar.active .sidebar-social {
  transition-delay: .6s;
}

.offcanvas-sidebar.active .sidebar-menu-close {
  transition-delay: .7s;
}

.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: #242424;
  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: var(--color-white);
}

.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: #121212;
  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: #fff;
  font-weight: 600;
}

.sidebar-heading {
  font-size: 14px;
  color: #838788 !important;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 22px;
  letter-spacing: 0.7px;
}

.sidebar-info-list li {
  display: flex;
  align-items: center;
  font-size: 24px;
  letter-spacing: -0.72px;
  color: var(--color-white);
}

.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-form {
  max-width: 340px;
}

.sidebar-newsletter p {
  font-size: 14px;
  line-height: 24px;
}

.law-sidebar {
  background-color: var(--color-white);
}

.law-sidebar .sidebar-content {
  color: #121A1B;
}

.law-sidebar .sidebar-heading {
  color: #7B7B7B !important;
  font-family: var(--font-body);
}

.law-sidebar .sidebar-info-list li {
  color: #121A1B;
}

.law-sidebar .sidebar-social .xb-item--social li a {
  color: #888C8D;
  opacity: 1;
}

.law-sidebar .sidebar-social .xb-item--social li a:hover {
  color: var(--color-law);
}

.law-sidebar .sidebar-social .xb-item--social li a:hover svg path {
  fill: var(--color-law);
}

.law-sidebar .mr-footer-newsletter input {
  color: var(--color-black);
  border-bottom: 1px solid rgba(18, 26, 27, 0.08);
}

.law-sidebar .mr-footer-newsletter button {
  background-color: #121A1B;
}

.law-sidebar .mr-footer-newsletter button:hover {
  background-color: var(--color-law);
}

.law-sidebar .xb-close {
  background: #cccccc45;
}

.law-sidebar .xb-close::before,
.law-sidebar .xb-close::after {
  background-color: var(--color-black);
}

/* cart sidebar */
.cart_sidebar {
  padding: 30px;
  padding-bottom: 50px;
}

.cart_sidebar_top {
  background-color: rgba(0, 0, 0, 0.04);
  justify-content: space-between;
  display: flex;
  padding: 20px 30px;
  margin-top: -30px;
  margin-left: -30px;
  margin-right: -30px;
  margin-bottom: 40px;
  align-items: center;
}

.cart_sidebar_top .xb-close {
  background-color: transparent;
  right: -13px;
}

.cart_sidebar .heading_title {
  line-height: 1;
  font-size: 17px;
  color: var(--color-heading);
  font-weight: 600;
}

.cart_item {
  display: flex;
  position: relative;
  align-items: center;
  padding-right: 25px;
}

.cart_item:not(:last-child) {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #F0F0F0;
}

.cart_item .item_image {
  display: block;
  min-width: 70px;
  overflow: hidden;
  position: relative;
  margin-right: 10px;
  width: 60px;
  padding: 5px;
}

.cart_item .item_title {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--color-heading);
}

.cart_item .item_price {
  line-height: 1;
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  opacity: .6;
}

.cart_item .remove_btn {
  top: 50%;
  right: 0px;
  color: #E93538;
  font-size: 14px;
  line-height: 19px;
  text-align: center;
  position: absolute;
  border-radius: 100%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  background: transparent;
}

.cart_sidebar {
  top: 0;
  width: 350px;
  right: -370px;
  height: 100vh;
  z-index: 9999;
  position: fixed;
  overflow-y: scroll;
  scrollbar-width: none;
  background-color: #fff;
  -webkit-transition: 0.5s var(--easing);
  -o-transition: 0.5s var(--easing);
  transition: 0.5s var(--easing);
}

.cart_sidebar.active {
  right: 0px;
}

.cart_sidebar .xb-close {
  right: -11px;
}

.cart_sidebar .xb-close:before,
.cart_sidebar .xb-close:after {
  background-color: var(--color-black);
}

.cart_sidebar_bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 30px 30px 55px;
  width: 100%;
}

.cart_sidebar_button a {
  text-align: center;
  width: 100%;
  padding: 15px 25px 17px;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}

.cart_sidebar_button a:not(:last-child) {
  margin-bottom: 10px;
}

.cart_sidebar_button a:nth-child(2) {
  background: #0e0f11;
  color: #fff;
}

.cart_sidebar_button a:nth-child(2):hover {
  background-color: var(--color-ins);
  color: #052328;
}

.cart_sidebar .total_price {
  display: flex;
  font-size: 16px;
  font-weight: 500;
  margin-top: 30px;
  padding: 10px 0px;
  margin-bottom: 10px;
  align-items: center;
  color: var(--color-heading);
  border-top: 1px solid #F0F0F0;
  justify-content: space-between;
}

/*----------------------------------------*/
/*  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 .scroll {
  z-index: 1;
  width: 40px;
  height: 40px;
  display: block;
  background-color: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: var(--color-white);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  font-size: 14px;
}

.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;
}

/*----------------------------------------*/
/*  28. sec-title
/*----------------------------------------*/
.sec-title .subtitle {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.7px;
  display: inline-block;
  margin-bottom: 10px;
  color: #191B1E;
  margin-bottom: 15px;
}
.hero-content .text-heading {
  font-size: 18px;
  line-height: 26px;
}

.sec-title .subtitle img {
  margin-right: 5px;
  -webkit-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  transform: translateY(-1px);
}

.sec-title .title {
  font-size: 46px;
  line-height: 1.1;
  letter-spacing: -1px;
}

.sec-title .title.title-big {
  font-size: 65px;
}

@media (max-width: 1199px) {
  .sec-title .title.title-big {
    font-size: 50px;
  }
}

@media (max-width: 767px) {
  .sec-title .title.title-big {
    font-size: 40px;
  }
}

@media (max-width: 1199px) {
  .sec-title .title {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .sec-title .title {
    font-size: 28px;
    line-height: 1.3;
  }
}

.sec-title p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
}

.sec-title p a {
  color: currentColor;
  text-decoration: underline;
}

.sec-title--advisor .subtitle {
  color: #131217;
  margin-bottom: 20px;
}

.sec-title--advisor .title {
  font-size: 45px;
}

@media (max-width: 1199px) {
  .sec-title--advisor .title {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .sec-title--advisor .title {
    font-size: 30px;
  }
}

.sec-title--advisor .title.title-big {
  font-size: 67px;
}

@media (max-width: 1199px) {
  .sec-title--advisor .title.title-big {
    font-size: 56px;
  }
}

@media (max-width: 991px) {
  .sec-title--advisor .title.title-big {
    font-size: 45px;
  }
}

@media (max-width: 767px) {
  .sec-title--advisor .title.title-big {
    font-size: 32px;
  }
}

.sec-title--advisor p {
  color: #6A6A7A;
}

.sec-title--advisor p.text-20 {
  font-size: 20px;
  line-height: 30px;
}

.sec-title--marketing .subtitle {
  color: var(--color-white);
  position: relative;
  padding-left: 24px;
  margin-bottom: 17px;
}

.sec-title--marketing .subtitle::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 14px;
  height: 9px;
  border-radius: 0px 5px 5px 0px;
  -webkit-border-radius: 0px 5px 5px 0px;
  -moz-border-radius: 0px 5px 5px 0px;
  -ms-border-radius: 0px 5px 5px 0px;
  -o-border-radius: 0px 5px 5px 0px;
  content: "";
  background-color: var(--color-marketing);
}

.sec-title--marketing .title {
  font-size: 48px;
  color: var(--color-white);
  letter-spacing: 0;
}

@media (max-width: 1199px) {
  .sec-title--marketing .title {
    font-size: 40px;
    line-height: 1.3;
    letter-spacing: 0;
  }
}

@media (max-width: 767px) {
  .sec-title--marketing .title {
    font-size: 28px;
  }
}

.sec-title--marketing .title span {
  color: var(--color-marketing);
}

.sec-title--marketing p {
  font-size: 20px;
  line-height: 30px;
}

.sec-title--business .title {
  font-size: 60px;
  letter-spacing: -1.8px;
  line-height: 1.2;
}

@media (max-width: 1199px) {
  .sec-title--business .title {
    font-size: 50px;
    letter-spacing: 1px;
  }
}

@media (max-width: 991px) {
  .sec-title--business .title {
    font-size: 40px;
    letter-spacing: 0.8px;
  }
}

@media (max-width: 767px) {
  .sec-title--business .title {
    font-size: 30px;
    letter-spacing: 0.2px;
  }
}

.sec-title--business .title span {
  color: var(--color-business);
}

.sec-title--business p {
  font-weight: 500;
  color: #33382C;
  font-size: 18px;
  line-height: 30px;
}

.sec-title--business p:not(:last-child) {
  margin-bottom: 30px;
}

.sec-title--business p.text-default {
  color: #888686;
}

.sec-title--md .title {
  font-size: 50px;
}

@media (max-width: 1199px) {
  .sec-title--md .title {
    font-size: 36px;
  }
}

.sec-title--ins .subtitle {
  font-size: 14px;
  font-weight: 700;
  color: #052328;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin-bottom: 19px;
  padding: 0 23px;
  position: relative;
}

.sec-title--ins .subtitle::before,
.sec-title--ins .subtitle::after {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  content: "";
  background-image: url(../img/icon/ins_star.svg);
  background-repeat: no-repeat;
  background-size: cover;
}

.sec-title--ins .subtitle::after {
  left: auto;
  right: 0;
}

.sec-title--ins .title {
  font-size: 44px;
  font-weight: 700;
  line-height: 54px;
  letter-spacing: -1.32px;
}

@media (max-width: 991px) {
  .sec-title--ins .title {
    font-size: 36px;
    line-height: 47px;
    letter-spacing: 0;
  }
}

@media (max-width: 767px) {
  .sec-title--ins .title {
    font-size: 32px;
    line-height: 44px;
  }
}

.sec-title--ins p {
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  color: #8DB7BE;
}

.sec-title--ins.sec-title--white .subtitle,
.sec-title--ins.sec-title--white .title {
  color: #F8F8F8;
}

.sec-title--white .subtitle,
.sec-title--white .title,
.sec-title--white p {
  color: var(--color-white);
}

.sec-title--law .subtitle {
  text-transform: uppercase;
  font-size: 14px;
  color: #7B7B7B;
  font-weight: 700;
  margin-bottom: 10px;
}

.sec-title--law .title {
  font-size: 52px;
  line-height: 60px;
  color: #121A1B;
  letter-spacing: -2.08px;
}

@media (max-width: 1199px) {
  .sec-title--law .title {
    font-size: 40px;
    line-height: 51px;
    letter-spacing: -1px;
  }
}

@media (max-width: 767px) {
  .sec-title--law .title {
    font-size: 34px;
    line-height: 44px;
    letter-spacing: 0;
  }
}

.sec-title--law p {
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
}

.sec-title--law.sec-title--white .subtitle,
.sec-title--law.sec-title--white .title,
.sec-title--law.sec-title--white p {
  color: var(--color-white);
}

.sec-title--law.sec-title--white .subtitle::before,
.sec-title--law.sec-title--white .subtitle::after {
  background-color: var(--color-white);
}

/*----------------------------------------*/
/*  29. search
/*----------------------------------------*/
.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.style-black {
  background-color: #121212;
}

.header-search-form-wrapper.style-black .search-form input[type="search"] {
  border-color: #333;
  color: var(--color-white);
}

.header-search-form-wrapper.style-black .xb-search-close {
  background: #cccccc14;
}

.header-search-form-wrapper.style-black .xb-search-close::before,
.header-search-form-wrapper.style-black .xb-search-close::after {
  background-color: var(--color-white);
}

.header-search-form-wrapper.style-insurance {
  background-color: #052328;
}

.header-search-form-wrapper.style-insurance .search-form input[type="search"] {
  border-color: #0F2C31;
  color: var(--color-white);
}

.header-search-form-wrapper.style-insurance .xb-search-close {
  background: #0F2C31;
}

.header-search-form-wrapper.style-insurance .xb-search-close::before,
.header-search-form-wrapper.style-insurance .xb-search-close::after {
  background-color: var(--color-white);
}

.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: #9F9F9F;
  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 {
  background: #cccccc45;
  width: 54px;
  height: 54px;
  border-width: 18px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}

.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: 1170px;
  border: 0;
  padding: 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;
}

/*----------------------------------------*/
/*  30. 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: 25px;
  color: var(--color-dark);
}

.xb-nav-mobile-button.btn-white {
  color: var(--color-white);
}

.xb-header-menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  -khtml-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  -ms-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
  visibility: hidden;
}

.xb-header-menu {
  position: fixed;
  height: 100vh;
  width: 300px;
  top: 0;
  left: 0;
  bottom: 0;
  margin: 0;
  z-index: 1010;
  overflow: hidden;
  -webkit-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  -khtml-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  -ms-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transform: translateX(-100%);
  -khtml-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
  visibility: hidden;
  background-color: #fff;
}

.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-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: 28px;
}

.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: transparent;
  font-size: 16px;
}

.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(--primary-color);
}

.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-header-wrap.style-black .xb-header-menu {
  background-color: #03080B;
}

.xb-header-wrap.style-black .xb-menu-primary li a {
  color: #FFF;
  border-color: rgba(255, 255, 255, 0.06);
}

.xb-header-wrap.style-black .xb-menu-toggle {
  color: var(--color-white);
  background-color: rgba(255, 255, 255, 0.03);
}

.xb-header-wrap.style-black .xb-header-mobile-search .search-field {
  color: #fff;
}

.xb-header-wrap.style-black .xb-menu-close {
  background-color: rgba(255, 255, 255, 0.03);
}

.xb-header-wrap.style-black .xb-close::before,
.xb-header-wrap.style-black .xb-close::after {
  background-color: #fff;
}

.xb-header-wrap.style-black .xb-header-mobile-search .search-field:focus {
  color: #fff;
  border-color: var(--color-business);
}

.xb-header-wrap.style-black .xb-menu-primary li>a:hover,
.xb-header-wrap.style-black .xb-menu-primary li>a.current,
.xb-header-wrap.style-black .xb-menu-primary li.current_page_item>a,
.xb-header-wrap.style-black .xb-menu-primary li.current-menu-item>a,
.xb-header-wrap.style-black .xb-menu-primary li.current_page_ancestor>a,
.xb-header-wrap.style-black .xb-menu-primary li.current-menu-ancestor>a,
.xb-header-wrap.style-black .xb-menu-primary .xb-menu-toggle:hover {
  color: var(--color-business);
}

/*----------------------------------------*/
/*  31. 404
/*----------------------------------------*/
.error-page__content h2 {
  font-size: 50px;
  margin-bottom: 23px;
  letter-spacing: -1px;
}

@media (max-width: 991px) {
  .error-page__content h2 {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .error-page__content h2 {
    font-size: 30px;
  }
}

.error-page__content p {
  font-size: 18px;
  font-weight: 500;
}

/*----------------------------------------*/
/*  32. preloader
/*----------------------------------------*/
@keyframes xb_dual_ring {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes xb_dual_ring {
  0% {
    -webkit-transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes BgAnimated1 {
  0% {
    background-position: bottom 10px left;
  }

  50% {
    background-position: bottom 10px right;
  }

  100% {
    background-position: bottom 10px left;
  }
}

@keyframes tx_prixClipFix {
  0% {
    clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0);
  }

  25% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0);
  }

  50% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%);
  }

  75% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%);
  }

  100% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0);
  }
}

#xb-loadding {
  height: 100%;
  position: fixed;
  width: 100%;
  z-index: 999999;
  top: 0;
  left: 0;
  background-color: var(--color-white);
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
  z-index: -1;
  z-index: 999998;
  transform-origin: right center;
  pointer-events: none;
}

#xb-loadding.style2 {
  background-color: #00061a;
}

#xb-loadding.xb-loader-marketing {
  background-color: #121212;
}

#xb-loadding.xb-loader-business {
  background-color: #03080B;
}

#xb-loadding .loading-image {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#xb-loadding .loading-image img {
  max-height: 80px;
}

#xb-loadding .xb-dual-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
}

#xb-loadding .xb-dual-ring:after {
  content: " ";
  display: block;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border-width: 4px;
  border-style: solid;
  border-right-color: transparent;
  border-left-color: transparent;
  animation: xb_dual_ring 1.2s linear infinite;
  border-bottom-color: var(--color-secondary);
  border-top-color: var(--color-secondary);
}

#xb-loadding .xb-dot-square {
  display: block;
  font-size: 13px;
  width: 2px;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: initial;
  transform: translate(-50%, -50%);
  animation: stevloader 3s infinite linear;
  -webkit-animation: stevloader 3s infinite linear;
}

#xb-loadding .loading-spin {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  position: relative;
  animation: xb_dual_ring 1s linear infinite;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}

#xb-loadding .loading-spin:before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 4px solid var(--color-secondary);
  animation: tx_prixClipFix 2s linear infinite;
}

#xb-loadding .loading-ring {
  width: 80px;
  height: 80px;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}

#xb-loadding .loading-ring:after {
  content: " ";
  display: block;
  width: 64px;
  height: 64px;
  margin: 8px;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  border-width: 6px;
  border-style: solid;
  border-color: var(--color-secondary) transparent var(--color-secondary) transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}

#xb-loadding.xb-loader-law .loading-spin:before {
  border: 4px solid var(--color-law);
}

#xb-loadding.xb-loader-ins .loading-spin:before {
  border: 4px solid var(--color-ins);
}

#xb-loadding.xb-loader-advisor .loading-spin:before {
  border: 4px solid var(--color-advisor);
}

#xb-loadding.xb-loader-marketing .loading-spin:before {
  border-color: var(--color-marketing);
}

#xb-loadding.xb-loader-business .loading-spin:before {
  border-color: var(--color-business);
}

/*----------------------------------------*/
/*  23. footer
/*----------------------------------------*/
.ins-footer {
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
}

.ins-footer__top .xb-item--icon-avatar {
  margin-right: 21px;
}

.ins-footer__top .xb-item--icon-avatar span {
  width: 50px;
  height: 50px;
  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;
  background-color: #052328;
}

.ins-footer__top .xb-item--avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  overflow: hidden;
  margin-left: -10px;
}

.ins-footer__top .xb-item--cta span {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 4px;
  letter-spacing: 1.96px;
}

.ins-footer__top .xb-item--cta h3 {
  font-size: 30px;
  letter-spacing: -0.9px;
}

@media (max-width: 991px) {
  .ins-footer__top .xb-item--cta h3 {
    font-size: 28px;
  }
}

.ins-footer__main {
  padding: 60px 40px;
  background-color: var(--color-white);
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.ins-footer__main .footer-widget {
  position: relative;
}

.ins-footer__main .footer-widget .widget-title {
  font-size: 20px;
  margin-bottom: 25px;
  letter-spacing: -0.4px;
}

.ins-footer__main .widget-links li:not(:last-child) {
  margin-bottom: 8px;
}

.ins-footer__main .widget-links li a {
  color: #575757;
}

.ins-footer__main .widget-links li a:hover {
  color: #052328;
}

.ins-footer__main .widget-links li a:hover svg path {
  fill: #052328;
}

.ins-footer__main .widget-links li a span {
  margin-right: 10px;
}

.ins-footer__main .widget-links li a span svg path {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.ins-footer__main .ins-footer-col:nth-child(2) .footer-widget {
  left: 74px;
}

@media (max-width: 1199px) {
  .ins-footer__main .ins-footer-col:nth-child(2) .footer-widget {
    left: 20px;
    margin-right: -40px;
  }
}

@media (max-width: 767px) {
  .ins-footer__main .ins-footer-col:nth-child(2) .footer-widget {
    left: 0;
    margin-right: 0;
  }
}

.ins-footer__main .ins-footer-col:nth-child(3) .footer-widget {
  left: 140px;
}

@media (max-width: 1199px) {
  .ins-footer__main .ins-footer-col:nth-child(3) .footer-widget {
    left: 50px;
    margin-right: -50px;
  }
}

@media (max-width: 991px) {
  .ins-footer__main .ins-footer-col:nth-child(3) .footer-widget {
    left: 0;
    margin-right: 0;
  }
}

.ins-footer__main .ins-footer-col:nth-child(4) .footer-widget {
  left: 185px;
}

@media (max-width: 1199px) {
  .ins-footer__main .ins-footer-col:nth-child(4) .footer-widget {
    left: 100px;
  }
}

@media (max-width: 991px) {
  .ins-footer__main .ins-footer-col:nth-child(4) .footer-widget {
    left: 0;
    margin-right: 0;
  }
}

.ins-footer__copyright p {
  color: #131217;
  font-weight: 500;
}

.ins-footer__copyright .xb-item--social span {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #052328;
  margin-right: 10px;
}

.ins-footer__copyright .xb-item--social ul li:not(:last-child) {
  margin-right: 15px;
}

.ins-footer__copyright .xb-item--social ul li a {
  font-size: 14px;
  color: #575757;
}

.ins-footer__copyright .xb-item--social ul li a:hover {
  color: #052328;
}

.ins-footer-newsletter {
  position: relative;
}

.ins-footer-newsletter .icon {
  position: absolute;
  top: 50%;
  left: 25px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.ins-footer-newsletter input {
  background-color: #F8F8F8;
  height: 60px;
  padding: 15px;
  padding-left: 51px;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}

.ins-footer-newsletter button {
  position: absolute;
  width: 52px;
  height: 40px;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 50px;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  background: #FFF;
  box-shadow: 1px 0px 10px 0px rgba(228, 211, 211, 0.29);
}

.footer-cta {
  padding: 25px 75px 55px;
  background-color: var(--color-white);
  position: relative;
  z-index: 2;
}

@media (max-width: 1199px) {
  .footer-cta {
    padding: 25px 30px 55px;
  }
}

@media (max-width: 991px) {
  .footer-cta {
    padding: 25px 40px 55px;
  }
}

@media (max-width: 767px) {
  .footer-cta {
    padding: 25px 30px 55px;
  }
}

@media (max-width: 991px) {
  .footer-cta__avatar.mr-35 {
    margin-right: 15px;
  }
}

@media (max-width: 991px) {
  .footer-cta__avatar.ml-35 {
    margin-left: 15px;
  }
}

.footer-cta__line {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 1px;
  height: 90px;
  background-color: #E7E9EE;
  content: "";
}

@media (max-width: 991px) {
  .footer-cta__line {
    display: none;
  }
}

.footer-cta::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
  content: "";
  z-index: -2;
}

.footer-cta::after {
  position: absolute;
  bottom: -55px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background-image: url(../img/shape/cta_shadow.png);
  background-repeat: no-repeat;
  width: 100%;
  height: 250px;
  text-align: center;
  background-position: center center;
  content: "";
  z-index: -3;
}

.footer-cta__holder span {
  font-size: 14px;
  color: #888686;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-cta__holder h3 {
  font-size: 30px;
  line-height: 1.2;
}

@media (max-width: 1199px) {
  .footer-cta__holder h3 {
    font-size: 22px;
  }
}

@media (max-width: 991px) {
  .footer-cta__holder h3 {
    font-size: 18px;
  }
}

.footer-style-one .footer-main {
  background-color: var(--color-white);
  padding: 65px 75px;
}

@media (max-width: 1199px) {
  .footer-style-one .footer-main {
    padding: 65px 30px;
  }
}

@media (max-width: 991px) {
  .footer-style-one .footer-main {
    padding: 50px 45px;
  }
}

@media (max-width: 767px) {
  .footer-style-one .footer-main {
    padding: 50px 30px;
  }
}

.footer-style-one .footer-widget .widget-title {
  font-size: 18px;
  margin-bottom: 30px;
  letter-spacing: -0.36px;
}

.footer-style-one .widget-links li:not(:last-child) {
  margin-bottom: 8px;
}

.footer-style-one .widget-links li a {
  color: #888686;
  font-weight: 500;
}

.footer-style-one .widget-links li a:hover {
  color: #191B1E;
}
.footer-style-one .footer-col:nth-child(2){width: 20%;}
.footer-style-one .footer-col {
  width: 30%;
}

@media (max-width: 991px) {
  .footer-style-one .footer-col {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .footer-style-one .footer-col {
    width: 100%;
  }
}

.footer-style-one .footer-col:nth-child(1) {
  width: 45%;
}

@media (max-width: 991px) {
  .footer-style-one .footer-col:nth-child(1) {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .footer-style-one .footer-col:nth-child(1) {
    width: 100%;
  }
}

.footer-style-one .footer-col:nth-child(1) .footer-widget {
  max-width: 450px;
}

@media (max-width: 991px) {
  .footer-style-one .footer-col:nth-child(2) {
    padding-left: 50px;
  }
}

@media (max-width: 767px) {
  .footer-style-one .footer-col:nth-child(2) {
    width: 100%;
    padding-left: 12px;
  }
}

.footer-style-one .footer-col:nth-child(4) {
  width: 17%;
}

@media (max-width: 991px) {
  .footer-style-one .footer-col:nth-child(4) {
    width: 50%;
    padding-left: 50px;
  }
}

@media (max-width: 767px) {
  .footer-style-one .footer-col:nth-child(4) {
    width: 100%;
    padding-left: 12px;
  }
}

.footer-newsletter {
  position: relative;
}

.footer-newsletter .icon {
  position: absolute;
  top: 17px;
  left: 20px;
}

.footer-newsletter input {
  height: 60px;
  padding-left: 46px;
}

.footer-newsletter input::-webkit-input-placeholder {
  color: #575757;
  opacity: 1;
}

.footer-newsletter input::-moz-placeholder {
  color: #575757;
  opacity: 1;
}

.footer-newsletter input:-ms-input-placeholder {
  color: #575757;
  opacity: 1;
}

.footer-newsletter input:-moz-placeholder {
  color: #575757;
  opacity: 1;
}

.footer-newsletter button {
  width: 60px;
  height: 60px;
  background-color: #191B1E;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  color: var(--color-white);
  font-size: 20px;
}

.footer-copyright {
  color: #191B1E;
  background-color: var(--color-white);
  padding-left: 75px;
  padding-right: 75px;
  padding-bottom: 17px;
  padding-top: 2px;
}

@media (max-width: 991px) {
  .footer-copyright {
    padding-left: 45px;
    padding-right: 45px;
  }
}

.footer-copyright .footer-social span {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #191B1E;
  margin-right: 10px;
}

.footer-copyright .footer-social ul li:not(:last-child) {
  margin-right: 15px;
}

.footer-copyright .footer-social ul li a {
  color: #575757;
  font-size: 20px;
  opacity: 0.5;
}

.footer-copyright .footer-social ul li a:hover {
  color: #191B1E;
  opacity: 1;
}

.footer-shape .shape {
  position: absolute;
  z-index: -1;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.footer-shape .shape--1 {
  left: 0;
}

.footer-shape .shape--2 {
  right: 0;
}

.footer-advisor .footer__custom-col:nth-child(2) .footer__widget {
  padding-left: 15px;
}

@media (max-width: 991px) {
  .footer-advisor .footer__custom-col:nth-child(2) .footer__widget {
    padding-left: 0;
  }
}

.footer-advisor .footer__custom-col:nth-child(3) .footer__widget {
  padding-left: 70px;
}

@media (max-width: 991px) {
  .footer-advisor .footer__custom-col:nth-child(3) .footer__widget {
    padding-left: 0;
  }
}

.footer-advisor .footer__widget h4 {
  letter-spacing: 0;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-body);
  margin-bottom: 30px;
  text-transform: uppercase;
}

.footer-advisor .footer__widget p {
  font-size: 16px;
  line-height: 26px;
}

.footer-advisor .footer-links li:not(:last-child) {
  margin-right: 45px;
}

@media (max-width: 991px) {
  .footer-advisor .ad-footer-social {
    justify-content: start;
  }
}

.footer-advisor .ad-footer-social li:not(:last-child) {
  margin-right: 15px;
}

.footer-advisor .ad-footer-social li a {
  color: #848388;
}

.footer-advisor .ad-footer-social li a:hover {
  color: var(--color-advisor);
}

.ad-footer-nav li:not(:last-child) {
  margin-right: 50px;
}

.ad-footer-nav li a {
  font-size: 20px;
  color: #131217;
}

.ad-footer-nav li a:hover {
  text-decoration: underline;
}

.ad-footer-nav__inner {
  padding-top: 55px;
  border-top: 1px solid #D2D2D9;
}

.ad-copyright-area p {
  color: #6A6A7A;
}

.ad-copyright-area p a {
  color: #131217;
  font-weight: 500;
}

.mr-footer-cta {
  padding-bottom: 70px;
  margin-bottom: 43px;
  border-bottom: 1px solid #333333;
}

.mr-footer-holder h2 {
  font-size: 80px;
  line-height: 1;
  letter-spacing: -2.4px;
}

@media (max-width: 1199px) {
  .mr-footer-holder h2 {
    font-size: 65px;
    letter-spacing: -1px;
  }
}

@media (max-width: 991px) {
  .mr-footer-holder h2 {
    font-size: 55px;
    letter-spacing: 0;
  }
}

@media (max-width: 767px) {
  .mr-footer-holder h2 {
    font-size: 25px;
    line-height: 38px;
  }
}

.mr-footer-holder .xb-btn {
  margin-left: 66px;
}

@media (max-width: 991px) {
  .mr-footer-holder .xb-btn {
    margin-left: 40px;
  }
}

.mr-footer-holder .xb-item--logo {
  margin-right: 46px;
}

@media (max-width: 991px) {
  .mr-footer-holder .xb-item--logo {
    margin-right: 30px;
  }
}

@media (max-width: 767px) {
  .mr-footer-holder .xb-item--logo {
    margin-right: 20px;
    width: 40px;
  }
}

.mr-footer-info {
  padding-right: 90px;
}

@media (max-width: 1199px) {
  .mr-footer-info {
    padding-right: 0;
  }
}

.mr-footer-info .xb-item--title {
  margin-bottom: 25px;
  letter-spacing: -0.4px;
}

.mr-footer-info .xb-item--info {
  font-weight: 500;
  line-height: 35px;
  letter-spacing: -0.32px;
  margin-bottom: 14px;
}

.mr-footer-info .xb-item--social li:not(:last-child) {
  margin-right: 20px;
}

.mr-footer-info .xb-item--social li a {
  font-size: 20px;
  color: var(--color-white);
  opacity: 0.5;
}

.mr-footer-info .xb-item--social li a svg {
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}

.mr-footer-info .xb-item--social li a svg path {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.mr-footer-info .xb-item--social li a:hover {
  opacity: 1;
}

.footer-marketing {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.32px;
  position: relative;
}

.footer-marketing .footer-widget .widget-title {
  font-size: 20px;
  margin-bottom: 25px;
  letter-spacing: -0.4px;
}

.footer-marketing .footer-links li:not(:last-child) {
  margin-bottom: 5px;
}

.footer-marketing .footer-links li a {
  font-size: 16px;
  color: #838788;
}

.footer-marketing .footer-links li a:hover {
  color: var(--color-marketing);
}

.footer-marketing .footer-col {
  width: 23.5%;
}

@media (max-width: 991px) {
  .footer-marketing .footer-col {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .footer-marketing .footer-col {
    width: 100% !important;
  }
}

.footer-marketing .footer-col:nth-child(1) {
  width: 38%;
}

@media (max-width: 991px) {
  .footer-marketing .footer-col:nth-child(1) {
    width: 50%;
  }
}

.footer-marketing .footer-col:nth-child(1) .footer-widget {
  max-width: 332px;
}

@media (max-width: 991px) {
  .footer-marketing .footer-col:nth-child(1) .footer-widget {
    max-width: 100%;
  }
}

.footer-marketing .footer-col:nth-child(4) {
  width: 15%;
}

@media (max-width: 991px) {
  .footer-marketing .footer-col:nth-child(4) {
    width: 50%;
  }
}

@media (max-width: 991px) {

  .footer-marketing .footer-col:nth-child(2),
  .footer-marketing .footer-col:nth-child(4) {
    padding-left: 40px;
  }
}

@media (max-width: 767px) {

  .footer-marketing .footer-col:nth-child(2),
  .footer-marketing .footer-col:nth-child(4) {
    padding-left: 13px;
  }
}

.footer-business .footer-widget .widget-title {
  color: var(--color-white);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 26px;
}

.footer-business .widget-links li:not(:last-child) {
  margin-bottom: 6px;
}

.footer-business .widget-links li a {
  color: #C2C2C2;
}

.footer-business .widget-links li a:hover {
  color: var(--color-white);
}

.mr-footer-newsletter {
  position: relative;
}

.mr-footer-newsletter input {
  background-color: transparent;
  height: 50px;
  padding: 10px 0;
  padding-left: 27px;
  font-size: 16px;
  color: var(--color-white);
  border-bottom: 1px solid #333333;
}

.mr-footer-newsletter .icon {
  position: absolute;
  top: 9px;
  left: 0;
}

.mr-footer-newsletter button {
  background-color: transparent;
  position: absolute;
  bottom: 10px;
  right: 0;
  width: 30px;
  height: 30px;
  background-color: #838788;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.mr-footer-newsletter button:hover {
  background-color: var(--color-white);
}

.mr-footer-nav li {
  position: relative;
}

.mr-footer-nav li:not(:last-child) {
  margin-right: 20px;
  padding-right: 20px;
}

.mr-footer-nav li:not(:last-child)::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  width: 1px;
  height: 20px;
  background-color: #838788;
  content: "";
}

.mr-footer-nav li a {
  color: #838788;
}

.mr-footer-nav li a:hover {
  color: var(--color-marketing);
}

.bc-footer-top {
  padding-bottom: 40px;
  margin-bottom: 80px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.bc-footer-newsletter {
  max-width: 423px;
  width: 100%;
  position: relative;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  overflow: hidden;
}

.bc-footer-newsletter .icon {
  position: absolute;
  top: 14px;
  left: 20px;
}

.bc-footer-newsletter input {
  background-color: #222528;
  height: 60px;
  padding-left: 46px;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-white);
}

.bc-footer-newsletter input::-webkit-input-placeholder {
  color: #B4B4B4;
  opacity: 1;
}

.bc-footer-newsletter input::-moz-placeholder {
  color: #B4B4B4;
  opacity: 1;
}

.bc-footer-newsletter input:-ms-input-placeholder {
  color: #B4B4B4;
  opacity: 1;
}

.bc-footer-newsletter input:-moz-placeholder {
  color: #B4B4B4;
  opacity: 1;
}

.bc-footer-newsletter button {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 20px;
  color: #03080B;
  width: 60px;
  height: 60px;
  background-color: var(--color-business);
}

.bc-footer-social-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: inline-block;
}

.bc-footer-social li:not(:last-child) {
  margin-right: 10px;
}

.bc-footer-social li a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background-color: #222528;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--color-white);
}

.bc-footer-social li a:hover {
  color: #242528;
  background-color: var(--color-business);
}

.bc-footer-social li a:hover svg path {
  fill: #242528;
}

.bc-footer-social li a svg path {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.bc-footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 7px;
}

.bc-footer-copyright p {
  color: var(--color-white);
}

.bc-footer-copyright p a {
  color: currentColor;
}

.bc-footer-copyright p a:hover {
  text-decoration: underline;
}

.bc-footer-img .bc-img {
  position: absolute;
  height: 100%;
  z-index: -1;
}

.bc-footer-img .bc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bc-footer-img .bc-img--1 {
  top: 0;
  left: 0;
}

@media (max-width: 991px) {
  .bc-footer-img .bc-img--1 {
    width: 100%;
  }
}

.bc-footer-img .bc-img--2 {
  top: 0;
  right: 0;
}

@media (max-width: 991px) {
  .bc-footer-img .bc-img--2 {
    display: none;
  }
}

.footer-law {
  font-size: 16px;
}

.footer-law .bc-footer-newsletter {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.footer-law .bc-footer-newsletter button {
  color: var(--color-white);
  background-color: var(--color-law);
}

.footer-law .footer-widget .widget-title {
  font-family: var(--font-body);
  font-weight: 700;
}

.footer-law .bc-footer-social li a:hover {
  background-color: var(--color-law);
  color: var(--color-white);
}

.footer-law .bc-footer-social li a:hover svg path {
  fill: var(--color-white);
}

.lw-footer-info p {
  color: #C2C2C2;
}

@media (min-width: 1400px) {
  .xb-footer.sticky {
    position: sticky;
    bottom: 0;
  }
}

/*# sourceMappingURL=main.css.map */

/* sri */
.xb-header__logo img {
  height: 70px;
}

.header-default .main-menu ul li a {
  color: #131217;
  padding: 32px 0;
}

.main-menu ul li:not(:last-child) {
  margin-right: 50px;
}

.xb-btn {
  padding: 18px 40px;
}

.xb-service1 .xb-item--inner {
  height: 100%;
  max-height: 280px;
}
.testimonial .mt-140 {
    margin-top: 100px;
}
.footer-logo img {
    height: 100%;
    max-height: 120px;
    margin-bottom: 15px;
}
.footer-contact h4{
  font-family: "poppins",sans-serif;
  padding-bottom: 10px;
}

.footer-cta__holder h3 {
    font-size: 25px;
    line-height: 1.2;
}

.woocommerce-billing-fields.ss {
  border: 1px solid #E7E9EE;
  background-color: var(--color-white);
  padding: 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.woocommerce-billing-fields.ss > p {
  width: 48%;
}
.form_align_set{
  margin-top: 30px !important;
}
.woocommerce-billing-fields.ss p#account_password_field {
  max-width: 64%;
}
.sub_btn .xb-btn {
  padding: 30px 40px;
}
.sub_btn {
  display: block;
  width: 100%;
}


/* responsive */
@media screen and (max-width:768px) {
  .woocommerce-billing-fields.ss > p {
  width: 100%;
}
}
@media screen and (max-width:576px) {
  .feature {
  padding-top: 50px;
  padding-bottom: 120px;
}
.xb-feature2 {
  width: 100%;}
  .xb-cta .xb-item--inner {
  margin-bottom: -70px;
}
.services {
  padding-bottom: 40px;
}
.team.bg_img .sec-title {
  margin-bottom: 15px;
}
.team.bg_img {
  padding-block: 40px;
}
 .xb-team1 .xb-item--inner {
    min-height: 430px;
    padding-top: 25px;
  }
  .testimonial {
  padding-block: 40px;
}
.testimonial .row.mt-140 {
  margin-top: 50px;
}
.testimonial .sec-title .title {
  margin-bottom: 10px;
}
.xb-testimonial1 .xb-item--inner {
padding: 40px 30px;}
.xb-testimonial1 .xb-item--inner::before {
top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;}
  .xb-item--author.mb-45 {
  margin-bottom: 10px;
}
.xb-testimonial1 .xb-item--content {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 20px;
}
.xb-testimonial-sldier {
  padding-bottom: 55px;
}
.sec-title.mb-45 {
  margin-bottom: 15px;
}
  .xb-contact__wrap {
    padding: 30px 20px;
  }
  .sec-title .subtitle {
margin-bottom: 5px;
}
  .sec-title .title {
    font-size: 22px;}
    .xb-contact .xb-item--field input, .xb-contact .xb-item--field textarea {
  padding-left: 40px;
}
input[type="text"], input[type="password"], input[type="email"], input[type="tel"], form select, textarea {height: 60px;padding: 20px 20px;}
.xb-contact .xb-item--field {
  margin-bottom: 15px;}
  .xb-contact .xb-item--field > span {
  top: 16px;
  left: 15px;}
  .nice-select {
  height: 60px;
  line-height: 60px;
  min-height: 60px;}
  .contact {
  padding-bottom: 40px;
}
.blog {
  padding-block: 40px;
}
.sec-title .title.mb-40 {
  margin-bottom: 15px;
}
.xb-footer.sticky.footer-style-one {
  padding-block: 40px 20px;
}
.footer-cta__holder h3 a {
  font-size: 16px;
}
.footer-cta__holder {
  margin-top: 10px;
}
.footer-cta__inner.ul_li.mt-30 {
  margin-top: 10px;
}
.footer-cta.ul_li_between .footer-cta__inner.ul_li:nth-child(2){
  flex-direction: column-reverse;
  align-items: baseline;
}
.footer-cta__holder.text-end {
  text-align: left !important;
}
.footer-cta.ul_li_between .footer-cta__inner.ul_li:nth-child(2) > div{margin-left: 0;margin-top: 15px;}
  .footer-cta {
    padding: 25px 30px 30px;}
     .footer-style-one .footer-main {
    padding: 30px 30px;
    margin-top: 30px;
  }
  .footer-logo img {
  height: 100%;
  max-height: 90px;}
  .footer-contact p br {
  display: none;
}
.footer-style-one .footer-col:nth-child(2), .footer-style-one .footer-col:nth-child(3) {
  margin-top: 20px;
}
.footer-style-one .footer-widget .widget-title {margin-bottom: 10px;}
.about.pt-145.pb-150 {
  padding-block: 60px 40px;
}
.xb-about-content .sec-title .title {
    font-size: 25px;
    line-height: 34px;
    margin-bottom: 10px;
  }
  .sec-title.about-sec-title.mb-50 {
  margin-bottom: 25px;
}
.sec-title.about-sec-title.mb-50 p.mb-25 {
  margin-bottom: 15px;
}
.xb-about-info__item:not(:last-child) {
  margin-bottom: 20px;
}
.xb-about-info__item .xb-item--icon {
margin-right: 20px;
}
.ul_li, .ul_li_right, .ul_li_center, .ul_li_between {
  align-items: flex-start;
}
.xb-fanfact__inner.ul_li_between {
  padding-block: 20px 40px;
}
.xb-fanfact2 .number {margin-bottom: 5px;}
  .xb-fanfact2 {
    margin-top: 10px;
  }
  .mission.mission-mt-none.pt-100 {
  padding-block: 40px 0;
}
.xb-mission {
  padding-right: 10px;
}
.xb-mission .xb-item--title {
margin-bottom: 10px;
}
.marquee.pt-140.pb-150 {
  padding-block: 40px;
}
.xb-logo-mobile img {
  height: 70px;
}
 .xb-header__wrap {
    padding: 10px 0;
  }
  .ul_li_between {
  align-items: center;
}
.xb-menu-primary li a {
  text-transform: uppercase;
}
.xb-header-menu-scroll .xb-menu-primary > li.menu-item.menu-item-has-children ul a {
  text-transform: capitalize;
}
.breadcrumb__list {
  display: none;
}
.breadcrumb {
    padding: 76px 0;
    min-height: 200px;
  }
  .cta.pt-60 {
  padding-top: 40px;
}
 .sec-title .title.title-big {
    font-size: 36px;
    line-height: 46px;
  }
  .hero-content .text-heading {
  display: none;
}
.hero-default {
    min-height: 450px;
  }
  .xb-btn {
  padding: 15px 30px;
}
.xb-service__sec-title {padding: 30px 30px;}
.xb-service__sec-title .sec-title .title{
  margin-bottom: 10px !important;
}
.xb-service__sec-title .sec-title .title br, .xb-service__sec-title .sec-title p br {
  display: none;
}
.title br{display: none;}
.testimonial h5.text-heading.text-24.text-bold.weight-medium {
  font-size: 20px;
}
.xb-contact .xb-item--field button {
  height: 55px;
}
.services.pt-100.pb-150 {
  padding-block: 40px;
}
.service-single__video.pos-rel.mb-80 {
  margin-bottom: 20px;
}
.service-single__content .title {
  margin-bottom: 10px;
}
.service-single__content h2.mt-80 {
  margin-top: 0;
  margin-bottom: 12px;
}
.service-single__info-item .xb-item--title {
  margin-bottom: 10px;
}
.service-single__info-item {margin-bottom: 25px;}
.service-single__content h2 {
  margin-bottom: 10px;
}
.services.z-1.pos-rel.pt-140.pb-150 {
  padding-block: 40px;
}
.xb-service1 .xb-item--icon {
  margin-bottom: 15px;
}
.xb-service1 .xb-item--title {
  margin-bottom: 5px;}
    .feature {
    padding-top: 40px;
    padding-bottom: 50px;
  }
    article .post-title {
    font-size: 20px;
  }
.career.pt-140.pb-150 {
  padding-block: 40px;

}
.sec-title.text-center.mb-60 {
  margin-bottom: 15px;
}
.xb-portfolio__menu.portfolio-menu.mb-50 {
  margin-bottom: 0;
}
.xb-career {
  border: 1px solid #E7E9EE;
  padding: 5px 30px 30px;
}
.contact-info.pt-100.pb-80 {
  padding-block: 40px;
}
.xb-contact-info {
  padding: 30px 15px 30px;}
  .xb-contact-info .xb-item--title {
  margin-bottom: 5px;
}
.registration-form.pt-100.pb-80 {
  padding-block: 40px;
}
.woocommerce-billing-fields.ss {
  padding: 20px;
}
.woocommerce-billing-fields.ss p#account_password_field {
  max-width: 100%;
}
input[type="text"], input[type="password"], input[type="email"], input[type="tel"], form select, textarea {
  width: 100%;
  height: 60px;}
  .woocommerce-billing-fields p {
  margin-bottom: 5px;
}
.login-form.pt-100.pb-80 {
  padding-block: 40px;
}
}