:root {
  --style-font: 'Manrope', sans-serif;
  --style-reey-font: "reeyregular";
  --style-gray: #818487;
  --style-gray-rgb: 129, 135, 132;
  --style-white: #ffffff;
  --style-white-rgb: 255, 255, 255;
  --style-base: #ea1d2a;
  --style-base-rgb: 254, 144, 67;
  --style-black: #30353a;
  --style-black-rgb: 48, 53, 58;
  --style-primary: #089fac;
  --style-primary-rgb: 8, 159, 172;
  --style-extra: #f1f2f4;
  --style-extra-rgb: 247, 245, 241;
  --style-bdr-color: #e6e1d8;
  --style-bdr-color-rgb: 230, 225, 216;
  --style-letter-spacing: -0.04em;
  --style-letter-spacing-two: -0.02em;

}

.row {
  --bs-gutter-x: 30px;
}

.gutter-y-30 {
  --bs-gutter-y: 30px;
}

body {
  /* font-family: var(--style-font); */
  color: var(--style-gray);
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
}

body.locked {
  overflow: hidden;
}

a {
  color: var(--style-gray);
}

a,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--style-black);
  margin: 0;
  letter-spacing: var(--style-letter-spacing);
}

p {
  margin: 0;
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 0;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
}

.container {
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

.section-separator {
  border-color: var(--style-border);
  border-width: 1px;
  margin-top: 0;
  margin-bottom: 0;
}

#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  opacity: 0.4;
  z-index: -1;
}

/*--------------------------------------------------------------
# Custom Cursor
--------------------------------------------------------------*/


.thm-btn {
  border: none;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  outline: none !important;
  background-color: #ea1d2a;
  color: var(--style-white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  border-radius: 25px;
  padding: 10px 50px 10px;
  transition: all 0.5s linear;
  overflow: hidden;
  z-index: 1;
}

.thm-btn::before {
  position: absolute;
  content: '';
  background-color: #009dde;
  width: 100%;
  height: 0%;
  left: 50%;
  top: 50%;
  border-radius: 25px;
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: -1;
  transition: all 500ms ease;
}

.thm-btn:hover {
  color: var(--style-white);
}

.thm-btn:hover:before {
  height: 380%;
}


.section-title {
  position: relative;
  display: block;
  margin-top: -11px;
  margin-bottom: 48px;
}

.section-title__tagline {
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 14px;
  color: var(--style-base);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding-left: 20px;
  z-index: 1;
}

.section-title__tagline:before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  height: 10px;
  width: 2px;
  background-color: var(--style-base);
  transform: rotate(15deg);
}

.section-title__tagline:after {
  content: "";
  position: absolute;
  top: 2px;
  left: 6px;
  height: 10px;
  width: 2px;
  background-color: var(--style-base);
  transform: rotate(15deg);
}

.section-title__title {
  margin: 0;
  color: var(--style-black);
  font-size: 49px;
  line-height: 60px;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-top: 5px;
}

/* scroll to top */
.scroll-to-top {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: var(--style-primary);
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 99;
  text-align: center;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  display: none;
  border-radius: 50%;
  cursor: pointer;
}

.scroll-to-top i {
  color: var(--style-white);
  font-size: 18px;
  line-height: 50px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.scroll-to-top:hover {
  background-color: var(--style-base);
}

.scroll-to-top:hover i {
  color: #fff;
}


/*--------------------------------------------------------------
# Navigations One
--------------------------------------------------------------*/
.main-header {
  background: white;
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  transition: all 500ms ease;
  z-index: 999;
}

.main-menu {
  position: relative;
  display: block;
}

.main-menu__wrapper {
  display: block;
/*  padding-left: 40px;*/
  padding-right: 40px;
  background-color: rgb(255, 255, 255);
 /* box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);*/
}

.main-menu__left {
  position: relative;
  display: block;
  float: left;
  max-width: 170px;
  width: 100%;
}

.main-menu__logo {
  display: block;
  padding: 16.5px 0;
}

.main-menu__logo img {
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -ms-transform: translateZ(0);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.main-menu__right {
  display: block;
  float: right;
  max-width: 920px;
  width: 100%;
}

.main-menu__right-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background:#009dde;
  padding-left: 30px;
  padding-top: 5px;
  padding-bottom: 5px;
  z-index: 1;
}

.main-menu__right-top:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 100%;
  right: -40px;
  content: "";
  background-color: #009dde;
  z-index: -1;
}

.main-menu__contact-list {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu__contact-list li {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu__contact-list li+li {
  margin-left: 27px;
}

.main-menu__contact-list li .icon {
  display: flex;
  align-items: center;
}

.main-menu__contact-list li .icon i {
  font-size: 14px;
  color: var(--style-white);
}

.main-menu__contact-list li .text {
  margin-left: 6px;
}

.main-menu__contact-list li .text p {
  font-size: 13px;
  font-weight: 500;
  color: var(--style-white);
}

.main-menu__contact-list li .text p a {
  color: var(--style-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__contact-list li .text p a:hover {
  color: var(--style-black);
}

.main-menu__social {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu__social a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 15px;
  color: var(--style-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__social a:hover {
  color: var(--style-black);
}

.main-menu__social a+a {
  margin-left: 25px;
}

.main-menu__right-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-menu__main-menu-box {
  display: block;
}

.main-menu__main-menu-content-box {
  display: block;
}

.main-menu__search-help-line {
  display: flex;
  align-items: center;
}

.main-menu__search-box {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu__search-box .main-menu__search+.main-menu__search {
  margin-left: 20px;
}

.main-menu__search-box:before {
  content: "";
  position: absolute;
  top: -4px;
  bottom: -4px;
  left: -20px;
  width: 1px;
  background-color: var(--style-bdr-color);
}

.main-menu__search {
  font-size: 24px;
  color: var(--style-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__search:hover {
  color: var(--style-base);
}

.main-menu__help-line {
  display: flex;
  align-items: center;
  margin-left: 20px;
}

.main-menu__help-line-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  width: 48px;
  background-color: var(--style-extra);
  border-radius: 50%;
  font-size: 24px;
  color: var(--style-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__help-line-icon:hover {
  background-color: var(--style-base);
  color: var(--style-white);
}

.main-menu__help-line-content {
  margin-left: 10px;
}

.main-menu__help-line-sub-title {
  font-size: 13px;
  font-weight: 600;
  line-height: 13px;
}

.main-menu__help-line-number {
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0;
  margin-top: 2px;
}

.main-menu__help-line-number a {
  color: var(--style-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__help-line-number a:hover {
  color: var(--style-base);
}

.stricky-header.main-menu {
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
}

.stricky-header .main-menu__wrapper {
  padding-left: 0;
  padding-right: 0;
  box-shadow: none;
}

.stricky-header .main-menu__right-top {
  padding-right: 40px;
}

.stricky-header .main-menu__right-top:before {
  display: none;
}

.main-menu .main-menu__list,
.main-menu .main-menu__list>li>ul,
.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list,
.stricky-header .main-menu__list>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: none;
}



@media (min-width: 1200px) {

  .main-menu .main-menu__list,
  .main-menu .main-menu__list>li>ul,
  .main-menu .main-menu__list>li>ul>li>ul,
  .stricky-header .main-menu__list,
  .stricky-header .main-menu__list>li>ul,
  .stricky-header .main-menu__list>li>ul>li>ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.main-menu .main-menu__list>li,
.stricky-header .main-menu__list>li {
  padding-top: 23px;
  padding-bottom: 23px;
  position: relative;
}

.main-menu .main-menu__list>li+li,
.stricky-header .main-menu__list>li+li {
  margin-left: 45px;
}

.main-menu .main-menu__list>li>a,
.stricky-header .main-menu__list>li>a {
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--style-gray);
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-weight: 700;
}

.main-menu .main-menu__list>li.current>a,
.main-menu .main-menu__list>li:hover>a,
.stricky-header .main-menu__list>li.current>a,
.stricky-header .main-menu__list>li:hover>a {
  color: var(--style-black);
}

.main-menu .main-menu__list>li>ul,
.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 270px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-transform: scaleY(0) translateZ(100px);
  transform: scaleY(0) translateZ(100px);
  -webkit-transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease, -webkit-transform 700ms ease;
  z-index: 99;
  background-color: rgb(255, 255, 255);
  padding: 31px 20px 31px;
}

.shadow-box {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}

.main-menu .main-menu__list>li>ul>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul>li>ul {
  display: none;
}

.main-menu .main-menu__list>li:hover>ul,
.main-menu .main-menu__list>li>ul>li:hover>ul,
.stricky-header .main-menu__list>li:hover>ul,
.stricky-header .main-menu__list>li>ul>li:hover>ul {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1) translateZ(0px);
  transform: scaleY(1) translateZ(0px);
}

.main-menu .main-menu__list>li>ul>li,
.main-menu .main-menu__list>li>ul>li>ul>li,
.stricky-header .main-menu__list>li>ul>li,
.stricky-header .main-menu__list>li>ul>li>ul>li {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  width: 100%;
  position: relative;
}

.main-menu .main-menu__list>li>ul>li+li,
.main-menu .main-menu__list>li>ul>li>ul>li+li,
.stricky-header .main-menu__list>li>ul>li+li,
.stricky-header .main-menu__list>li>ul>li>ul>li+li {
  border-top: none;
  margin-top: 10px;
}

.main-menu .main-menu__list>li>ul>li>a,
.main-menu .main-menu__list>li>ul>li>ul>li>a,
.stricky-header .main-menu__list>li>ul>li>a,
.stricky-header .main-menu__list>li>ul>li>ul>li>a {
  position: relative;
  font-size: 16px;
  line-height: 30px;
  color: var(--style-gray);
  letter-spacing: 0;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 5px 20px 5px;
  -webkit-transition: 500ms;
  transition: 500ms;
  background-color: var(--style-white);
}

.main-menu .main-menu__list>li>ul>li:hover>a,
.main-menu .main-menu__list>li>ul>li>ul>li:hover>a,
.stricky-header .main-menu__list>li>ul>li:hover>a,
.stricky-header .main-menu__list>li>ul>li>ul>li:hover>a {
  background-color: var(--style-extra);
  color: var(--style-black);
}

.main-menu .main-menu__list>li>ul>li>a::before,
.main-menu .main-menu__list>li>ul>li>ul>li>a::before,
.stricky-header .main-menu__list>li>ul>li>a::before,
.stricky-header .main-menu__list>li>ul>li>ul>li>a::before {
  position: absolute;
  top: 50%;
  right: 20px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f30b";
  font-size: 14px;
  color: var(--style-base);
  transform: translateY(-50%) scale(0);
  -webkit-transition: 500ms;
  transition: 500ms;
}

.main-menu .main-menu__list>li>ul>li:hover>a::before,
.main-menu .main-menu__list>li>ul>li>ul>li:hover>a::before,
.stricky-header .main-menu__list>li>ul>li:hover>a::before,
.stricky-header .main-menu__list>li>ul>li>ul>li:hover>a::before {
  transform: translateY(-50%) scale(1);
}

.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  top: 0;
  left: 100%;
}

.main-menu .main-menu__list li ul li>ul.right-align,
.stricky-header .main-menu__list li ul li>ul.right-align {
  top: 0;
  left: auto;
  right: 100%;
}

.main-menu-three__main-menu-box .main-menu__list>.megamenu,
.main-menu-two__main-menu-box .main-menu__list>.megamenu,
.main-menu__wrapper .main-menu__list>.megamenu {
  position: static;
}

.main-menu-three__main-menu-box .main-menu__list>.megamenu>ul,
.main-menu-two__main-menu-box .main-menu__list>.megamenu>ul,
.main-menu__wrapper .main-menu__list>.megamenu>ul {
  top: 100% !important;
  left: 0 !important;
  right: 0 !important;
  background-color: transparent;
}

.main-menu-three__main-menu-box .main-menu__list>.megamenu>ul>li,
.main-menu-two__main-menu-box .main-menu__list>.megamenu>ul>li,
.main-menu__wrapper .main-menu__list>.megamenu>ul>li {
  padding: 0 !important;
}

.stricky-header {
  position: fixed;
  z-index: 991;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  visibility: hidden;
  -webkit-transform: translateY(-120%);
  transform: translateY(-120%);
  -webkit-transition: visibility 500ms ease, -webkit-transform 500ms ease;
  transition: visibility 500ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms ease, visibility 500ms ease;
  transition: transform 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1199px) {
  .stricky-header {
    display: none !important;
  }
}

.stricky-header.stricky-fixed {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
}

.stricky-header .main-menu__inner {
  -webkit-box-shadow: none;
  box-shadow: none;
  padding-right: 0;
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
}

.mobile-nav__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  margin-right: 10px;
}

@media (min-width: 1200px) {
  .mobile-nav__buttons {
    display: none;
  }
}

.mobile-nav__buttons a {
  font-size: 20px;
  color: var(--style-base);
  cursor: pointer;
}

.mobile-nav__buttons a+a {
  margin-left: 10px;
}

.mobile-nav__buttons a:hover {
  color: var(--style-base);
}

.main-menu .mobile-nav__toggler {
  font-size: 20px;
  color: var(--style-base);
  cursor: pointer;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.main-menu .mobile-nav__toggler:hover {
  color: var(--style-black);
}

@media (min-width: 1200px) {
  .main-menu .mobile-nav__toggler {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/
.mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  visibility: hidden;
}

.mobile-nav__wrapper .container {
  padding-left: 0;
  padding-right: 0;
}

.mobile-nav__wrapper.expanded {
  opacity: 1;
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  visibility: visible;
  -webkit-transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000000;
  opacity: 0.5;
  cursor: pointer;
}

.mobile-nav__content {
  width: 300px;
  background-color: var(--style-black);
  z-index: 10;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.mobile-nav__wrapper.expanded .mobile-nav__content {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
}

.mobile-nav__content .logo-box {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mobile-nav__content .logo-box img {
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -ms-transform: translateZ(0);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 15px;
  font-size: 18px;
  color: var(--style-white);
  cursor: pointer;
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list>li>ul,
.mobile-nav__content .main-menu__list>li>ul>li>ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.mobile-nav__content .main-menu__list>li>ul,
.mobile-nav__content .main-menu__list>li>ul>li>ul {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-left: 0.5em;
}

.mobile-nav__content .main-menu__list>li:not(:last-child),
.mobile-nav__content .main-menu__list>li>ul>li:not(:last-child),
.mobile-nav__content .main-menu__list>li>ul>li>ul>li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list>li>a>.main-menu-border {
  display: none !important;
}

.mobile-nav__content .main-menu__list>li>a,
.mobile-nav__content .main-menu__list>li>ul>li>a,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  line-height: 30px;
  color: #ffffff;
  font-size: 14px;
  font-family: var(--style-font, "Rubik", sans-serif);
  font-weight: 500;
  height: 46px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__content .main-menu__list>li>a.expanded .mobile-nav__content .main-menu__list>li>ul>li>a.expanded .mobile-nav__content .main-menu__list>li>ul>li>ul>li>a.expanded {
  color: var(--style-base);
}

.mobile-nav__content .main-menu__list>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button {
  width: 30px;
  height: 30px;
  background-color: var(--style-base);
  border: none;
  outline: none;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
  padding: 0;
}

.mobile-nav__content .main-menu__list>li>a>button.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>a>button.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button.expanded {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  background-color: #fff;
  color: var(--style-base);
}

/* no menu after 2rd level dropdown */
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>ul {
  display: none !important;
}

.mobile-nav__content .main-menu__list li.cart-btn span {
  position: relative;
  top: auto;
  right: auto;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.mobile-nav__content .main-menu__list li.cart-btn i {
  font-size: 16px;
}

.mobile-nav__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 30px;
}

.mobile-nav__top .main-menu__login a {
  color: var(--style-text-dark);
}

.mobile-nav__container {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav__social a {
  font-size: 16px;
  color: var(--style-white);
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__social a+a {
  margin-left: 30px;
}

.mobile-nav__social a:hover {
  color: var(--style-base);
}

.mobile-nav__contact {
  margin-bottom: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}

.mobile-nav__contact li {
  color: var(--style-text-dark);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav__contact li+li {
  margin-top: 15px;
}

.mobile-nav__contact li a {
  color: #ffffff;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__contact li a:hover {
  color: var(--style-base);
}

.mobile-nav__contact li>i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--style-base);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  font-size: 11px;
  margin-right: 10px;
  color: #fff;
}

.mobile-nav__container .main-logo,
.mobile-nav__container .topbar__buttons,
.mobile-nav__container .main-menu__language,
.mobile-nav__container .main-menu__login {
  display: none;
}



/*--------------------------------------------------------------
# Home Showcase
--------------------------------------------------------------*/
.home-showcase {
  margin-top: -31px;
  margin-bottom: -31px;
}

.mobile-nav__container .home-showcase {
  margin: 0;
}

.home-showcase__inner {
  padding: 40px 40px 40px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 39.2px 0.8px rgb(0 0 0 / 10%);
}

.home-showcase .row {
  --bs-gutter-x: 42px;
  --bs-gutter-y: 20px;
}

.home-showcase__image {
  position: relative;
  background-color: var(--style-base);
  overflow: hidden;
}

.home-showcase__image>img {
  width: 100%;
  -webkit-transition: 500ms ease;
  transition: 500ms ease;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.home-showcase__image:hover>img {
  opacity: 0.75;
}

.home-showcase__image:hover .home-showcase__buttons {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  opacity: 1;
  visibility: visible;
}

.home-showcase__buttons {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  opacity: 0;
  visibility: hidden;
  -webkit-transform-origin: bottom center;
  transform-origin: bottom center;
  -webkit-transition: 500ms ease;
  transition: 500ms ease;
}

.home-showcase__buttons__item {
  padding: 10px 20px;
  width: 150px;
  text-align: center;
}

.home-showcase__buttons__item+.home-showcase__buttons__item {
  margin-top: 10px;
}

.home-showcase__title {
  margin: 0;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--style-black);
  margin-top: 17px;
  font-family: var(--style-font);
}

.mobile-nav__wrapper .home-showcase .row [class*=col-] {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
}

.mobile-nav__wrapper .home-showcase__inner {
  padding: 15px 0px;
  background-color: rgba(0, 0, 0, 0);
}

.mobile-nav__wrapper .home-showcase__title {
  color: var(--style-white, #ffffff);
}

.stricky-header .megamenu-left .container {
  margin: 0;
  margin-left: -35px;
}

/*--------------------------------------------------------------
# Navigations Two
--------------------------------------------------------------*/
.main-header-two {
  background: transparent;
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  transition: all 500ms ease;
  z-index: 999;
}

.main-header-two:before {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  height: 1px;
  background-color: rgba(var(--style-white-rgb), .10);
}

.stricky-header.main-menu-two {
  background-color: var(--style-black);
}

.main-menu-two__wrapper {
  position: relative;
  display: block;
  padding: 0 60px 0;
}

.main-menu-two__wrapper-inner {
  position: relative;
  display: block;
}

.main-menu-two__left {
  position: relative;
  display: block;
  float: left;
}

.main-menu-two__logo {
  position: relative;
  display: block;
  padding: 34px 0;
}

.main-menu-two__logo img {
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -ms-transform: translateZ(0);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.main-menu-two__right {
  display: block;
  float: right;
}

.main-menu-two__right-inner {
  display: flex;
  align-items: center;
}

.main-menu-two__main-menu-box {
  display: block;
}

.main-menu-two__main-menu-content-box {
  position: relative;
  display: block;
  margin-left: 180px;
  padding: 33px 0;
}

.main-menu-two__search-help-line-btn-box {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-two__search-box {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-two__search-box .main-menu-two__search+.main-menu-two__search {
  margin-left: 20px;
}

.main-menu-two__search-box:before {
  content: "";
  position: absolute;
  top: -6px;
  bottom: -6px;
  left: -20px;
  width: 1px;
  background-color: rgba(var(--style-white-rgb), .10);
}

.main-menu-two__search {
  font-size: 24px;
  color: var(--style-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-two__search:hover {
  color: var(--style-base);
}

.main-menu-two__help-line {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 20px;
  margin-right: 30px;
}

.main-menu-two__help-line-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  width: 48px;
  background-color: rgba(var(--style-white-rgb), .10);
  border-radius: 50%;
  font-size: 24px;
  color: var(--style-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-two__help-line-icon:hover {
  background-color: rgba(var(--style-white-rgb), 1);
}

.main-menu-two__help-line-content {
  margin-left: 10px;
}

.main-menu-two__help-line-sub-title {
  font-size: 13px;
  font-weight: 600;
  line-height: 13px;
}

.main-menu-two__help-line-number {
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0;
  margin-top: 2px;
}

.main-menu-two__help-line-number a {
  color: var(--style-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-two__help-line-number a:hover {
  color: var(--style-base);
}

.main-menu-two__btn-box {
  position: relative;
  display: block;
}

.main-menu-two__btn:hover {
  color: var(--style-base);
}

.main-menu-two__btn::before {
  background-color: var(--style-white);
}

.main-menu-two .main-menu__list>li>a,
.stricky-header.main-menu-two .main-menu__list>li>a {
  color: var(--style-white);
}

.main-menu-two .main-menu__list>li.current>a,
.main-menu-two .main-menu__list>li:hover>a,
.stricky-header.main-menu-two .main-menu__list>li.current>a,
.stricky-header.main-menu-two .main-menu__list>li:hover>a {
  color: var(--style-white);
}

.main-menu-two .main-menu__list>li,
.stricky-header.main-menu-two .main-menu__list>li {
  padding-top: 43px;
  padding-bottom: 43px;
}



/*--------------------------------------------------------------
# Navigations Three
--------------------------------------------------------------*/
.main-header-three {
  position: relative;
  display: block;
  width: 100%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 999;
}

.stricky-header.main-menu-three {
  background-color: var(--style-white);
}

.main-header-three__top {
  position: relative;
  display: block;
  background-color: #272b30;
  z-index: 1;
}

.main-header-three__top:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 255px;
  content: "";
  background-color: var(--style-black);
  z-index: -1;
}

.main-header-three__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 60px 4px;
}

.main-header-three__top-left {
  position: relative;
  display: block;
}

.main-menu-three__contact-list {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-three__contact-list li {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-three__contact-list li+li {
  margin-left: 25px;
}

.main-menu-three__contact-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-three__contact-list li .icon i {
  font-size: 14px;
  color: var(--style-base);
}

.main-menu-three__contact-list li .text {
  margin-left: 5px;
}

.main-menu-three__contact-list li .text p {
  font-size: 13px;
  color: #a4a9ae;
}

.main-menu-three__contact-list li .text p a {
  color: #a4a9ae;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-three__contact-list li .text p a:hover {
  color: var(--style-base);
}

.main-header-three__top-right {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header-three__top-menu-box {
  position: relative;
  display: block;
}

.main-header-three__top-menu {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header-three__top-menu li+li {
  margin-left: 25px;
}

.main-header-three__top-menu li a {
  font-size: 13px;
  color: #a4a9ae;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header-three__top-menu li a:hover {
  color: var(--style-base);
}

.main-menu-three__social {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 120px;
}

.main-menu-three__social a {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--style-white);
  font-size: 15px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-three__social a:hover {
  color: var(--style-base);
}

.main-menu-three__social a+a {
  margin-left: 25px;
}

.main-menu-three__wrapper {
  position: relative;
  display: block;
  padding: 0 60px 0;
}

.main-menu-three__wrapper-inner {
  position: relative;
  display: block;
}

.main-menu-three__left {
  position: relative;
  display: block;
  float: left;
}

.main-menu-three__logo {
  position: relative;
  display: block;
  padding: 34px 0;
}

.main-menu-three__logo img {
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -ms-transform: translateZ(0);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.main-menu-three__right {
  display: block;
  float: right;
}

.main-menu-three__right-inner {
  display: flex;
  align-items: center;
}

.main-menu-three__main-menu-box {
  display: block;
}

.main-menu-three__main-menu-content-box {
  position: relative;
  display: block;
  margin-left: 180px;
  padding: 33px 0;
}

.main-menu-three__search-help-line-btn-box {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-three__search-box {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-three__search-box .main-menu-three__search+.main-menu-three__search {
  margin-left: 20px;
}

.main-menu-three__search-box:before {
  content: "";
  position: absolute;
  top: -6px;
  bottom: -6px;
  left: -20px;
  width: 1px;
  background-color: var(--style-bdr-color);
}

.main-menu-three__search {
  font-size: 24px;
  color: var(--style-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-three__search:hover {
  color: var(--style-base);
}

.main-menu-three__help-line {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 20px;
  margin-right: 30px;
}

.main-menu-three__help-line-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  width: 48px;
  background-color: var(--style-extra);
  border-radius: 50%;
  font-size: 24px;
  color: var(--style-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-three__help-line-icon:hover {
  background-color: var(--style-base);
  color: var(--style-white);
}

.main-menu-three__help-line-content {
  margin-left: 10px;
}

.main-menu-three__help-line-sub-title {
  font-size: 13px;
  font-weight: 600;
  line-height: 13px;
}

.main-menu-three__help-line-number {
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0;
  margin-top: 2px;
}

.main-menu-three__help-line-number a {
  color: var(--style-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-three__help-line-number a:hover {
  color: var(--style-base);
}

.main-menu-three__btn-box {
  position: relative;
  display: block;
}


.main-menu-three .main-menu__list>li>a,
.stricky-header.main-menu-three .main-menu__list>li>a {
  color: var(--style-gray);
}

.main-menu-three .main-menu__list>li.current>a,
.main-menu-three .main-menu__list>li:hover>a,
.stricky-header.main-menu-three .main-menu__list>li.current>a,
.stricky-header.main-menu-three .main-menu__list>li:hover>a {
  color: var(--style-black);
}

.main-menu-three .main-menu__list>li,
.stricky-header.main-menu-three .main-menu__list>li {
  padding-top: 43px;
  padding-bottom: 43px;
}

/*--------------------------------------------------------------
# Main Slider
--------------------------------------------------------------*/
.main-slider {
  position: relative;
  display: block;
  z-index: 91;
}

.main-slider .swiper-slide {
  position: relative;
  background-color: var(--style-black);
}

.main-slider .container {
  position: relative;
  padding-top: 255px;
  padding-bottom: 155px;
  z-index: 30;
}

.main-slider .image-layer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left center;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: transform 7000ms ease, opacity 1500ms ease-in;
  transition: transform 7000ms ease, opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  z-index: 1;
}

.main-slider .swiper-slide-active .image-layer {
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
}

.main-slider .image-layer:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: rgba(39, 43, 48, .50);
  z-index: -1;
}

.main-slider-border {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 14.29%;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 10;
}

.main-slider-border-two {
  left: 14.29%;
}

.main-slider-border-three {
  left: 28.59%;
}

.main-slider-border-four {
  left: 42.88%;
}

.main-slider-border-five {
  left: 57.17%;
}

.main-slider-border-six {
  left: 71.46%;
}


.main-slider__content {
  position: relative;
  display: block;
  text-align: left;
}

.main-slider__sub-title {
  position: relative;
  display: inline-block;
  font-size: 20px;
  color: var(--style-white);
  font-weight: 800;
  line-height: 20px;
  padding-left: 20px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-120px);
  transform: translateY(-120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider__sub-title:before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  height: 15px;
  width: 2px;
  background-color: var(--style-white);
  transform: rotate(15deg);
}

.main-slider__sub-title:after {
  content: "";
  position: absolute;
  top: 2px;
  left: 6px;
  height: 15px;
  width: 2px;
  background-color: var(--style-white);
  transform: rotate(15deg);
}

.main-slider__title {
  position: relative;
  font-size: 80px;
  color: var(--style-white);
  font-weight: 800;
  line-height: 90px;
  letter-spacing: -0.04em;
  margin-top: 5px;
  margin-bottom: 16px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-120px);
  transform: translateY(-120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider__text {
  color: var(--style-white);
  padding-bottom: 31px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(120px);
  transform: translateY(120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider .swiper-slide-active .main-slider__text {
  visibility: visible;
  opacity: .50;
  -webkit-transform: translateY(0) translateX(0);
  transform: translateY(0) translateX(0);
}

.main-slider__btn-box {
  position: relative;
  display: block;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(120px);
  transform: translateY(120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider__btn:hover {
  color: black;
}

.main-slider__btn:before {
  background-color: var(--style-white);
}

.main-slider__bottom {
  position: absolute;
  bottom: -43px;
  left: 190px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(220px);
  transform: translateX(220px);
  -webkit-transition-delay: 2000ms;
  transition-delay: 2000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider .swiper-slide-active .main-slider__bottom {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0) translateX(0);
  transform: translateY(0) translateX(0);
}

.main-slider__bottom-text {
  font-size: 18px;
  color: var(--style-white);
  font-family: var(--style-reey-font);
  line-height: 28px;
}

.main-slider__icon {
  position: absolute;
  bottom: -10px;
  left: -46px;
}

.main-slider__icon img {
  width: auto;
}

.main-slider .swiper-slide-active .main-slider__title,
.main-slider .swiper-slide-active .main-slider__sub-title,
.main-slider .swiper-slide-active .main-slider__btn-box {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0) translateX(0);
  transform: translateY(0) translateX(0);
}

.main-slider__nav {
  position: absolute;
  top: 52%;
  left: 50%;
  z-index: 100;
  transform: translateY(-50%) translateX(-50%);
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  max-width: 1200px;
  width: 100%;
  padding: 0 15px;
  height: 0;
  line-height: 0;
}


.main-slider__nav .swiper-button-next,
.main-slider__nav .swiper-button-prev {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: 100;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: rgba(var(--style-white-rgb), .20);
  border: 2px solid rgba(var(--style-white-rgb), .20);
  border-radius: 50%;
  margin: 0;
  text-align: center;
  transition: all 500ms ease;
  padding: 23px 0;
}

.main-slider__nav .swiper-button-next:hover,
.main-slider__nav .swiper-button-prev:hover {
  color: rgba(var(--style-white-rgb), 1);
  border: 2px solid rgba(var(--style-white-rgb), 1);
}

.main-slider__nav .swiper-button-next::after,
.main-slider__nav .swiper-button-prev::after {
  display: none;
}

.main-slider__nav .swiper-button-prev {
  margin-bottom: 10px;
}

/*--------------------------------------------------------------
# Main Slider Two
--------------------------------------------------------------*/
.main-slider-two {
  position: relative;
  display: block;
  z-index: 91;
}

.main-slider-two .swiper-slide {
  position: relative;
  background-color: var(--style-black);
}

.main-slider-two .container {
  position: relative;
  padding-top: 240px;
  padding-bottom: 130px;
  z-index: 30;
}

.image-layer-two {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left center;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: transform 7000ms ease, opacity 1500ms ease-in;
  transition: transform 7000ms ease, opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  z-index: 1;
}

.main-slider-two .swiper-slide-active .image-layer-two {
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
}

.image-layer-two:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: rgba(39, 43, 48, .40);
}

.main-slider-two-shape-1 {
  position: absolute;
  top: 0px;
  right: 159px;
  mix-blend-mode: soft-light;
  opacity: .90;
  z-index: 1;
}

.main-slider-two-shape-1 img {
  width: auto;
}

.main-slider-two-shape-2 {
  position: absolute;
  top: 0;
  right: -1px;
  opacity: .40;
  mix-blend-mode: overlay;
  z-index: 1;
}

.main-slider-two-shape-2 img {
  width: auto;
}

.main-slider-two-border {
  position: absolute;
  top: 116px;
  left: 0;
  bottom: 0;
  width: 14.29%;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 10;
}

.main-slider-two-border-two {
  left: 14.29%;
}

.main-slider-two-border-three {
  left: 28.59%;
}

.main-slider-two-border-four {
  left: 42.88%;
}

.main-slider-two-border-five {
  left: 57.17%;
}

.main-slider-two-border-six {
  left: 71.46%;
}

.main-slider-two__content {
  position: relative;
  display: block;
  margin-right: -30px;
}

.main-slider-two__sub-title-box {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 14px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-120px);
  transform: translateY(-120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider-two__sub-title-box span {
  font-size: 12px;
  color: var(--style-white);
  font-weight: 800;
  line-height: 12px;
  position: relative;
  display: inline-block;
  padding: 6px 10px;
  z-index: 1;
}

.main-slider-two__sub-title-box span:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: rgba(var(--style-white-rgb), .20);
  z-index: -1;
}

.main-slider-two__sub-title-box span+span {
  margin-left: 10px;
}

.main-slider-two__title-box {
  position: relative;
  display: block;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-120px);
  transform: translateY(-120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider-two__title {
  position: relative;
  font-size: 70px;
  color: var(--style-white);
  font-weight: 800;
  line-height: 80px;
  letter-spacing: -0.04em;
}

.main-slider-two__text-1 {
  font-size: 14px;
  color: var(--style-white);
  font-weight: 700;
  padding-top: 9px;
  padding-bottom: 21px;
}

.main-slider-two__text-1 i {
  color: var(--style-base);
  position: relative;
  display: inline-block;
  padding-left: 20px;
}

.main-slider-two__text-2 {
  color: var(--style-white);
  opacity: .40;
}

.main-slider-two__list {
  position: relative;
  display: block;
  margin-top: 22px;
  margin-bottom: 41px;
}

.main-slider-two__list li {
  position: relative;
  display: block;
  overflow: hidden;
}

.main-slider-two__list li+li {
  margin-top: 8px;
}

.main-slider-two__list li .left {
  position: relative;
  display: block;
  float: left;
  max-width: 50px;
  width: 100%;
}

.main-slider-two__list li .right {
  position: relative;
  display: block;
  float: left;
  margin-left: 30px;
}

.main-slider-two__list li .left p {
  color: var(--style-white);
  font-weight: 800;
  opacity: .40;
}

.main-slider-two__list li .right h5 {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--style-white);
  line-height: 30px;
}

.main-slider-two__btn-box {
  position: relative;
  display: block;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(120px);
  transform: translateY(120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider-two__btn:hover {
  color: var(--style-base);
}

.main-slider-two__btn:before {
  background-color: var(--style-white);
}

.main-slider-two .swiper-slide-active .main-slider-two__sub-title-box,
.main-slider-two .swiper-slide-active .main-slider-two__title-box,
.main-slider-two .swiper-slide-active .main-slider-two__btn-box {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0) translateX(0);
  transform: translateY(0) translateX(0);
}

.main-slider-two__video-box {
  position: relative;
  display: block;
  margin-top: 109px;
}

.main-slider-two__video-link {
  position: relative;
  display: block;
  float: right;
  z-index: 3;
}

.main-slider-two__video-icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 140px;
  height: 140px;
  line-height: 140px;
  text-align: center;
  font-size: 25px;
  color: var(--style-black);
  background-color: rgba(0, 0, 0, .20);
  border-radius: 50%;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  z-index: 1;
}

.main-slider-two__video-icon:hover {
  background-color: var(--style-white);
  color: var(--style-white);
}

.main-slider-two__video-icon:before {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  content: "";
  border-radius: 50%;
  background-color: var(--style-white);
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  z-index: -1;
}

.main-slider-two__video-icon:hover:before {
  background-color: var(--style-base);
}

.main-slider-two__video-link .ripple,
.main-slider-two__video-icon .ripple:before,
.main-slider-two__video-icon .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140px;
  height: 140px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(var(--style-base-rgb), 0.6);
  -o-box-shadow: 0 0 0 0 rgba(var(--style-base-rgb), 0.6);
  -webkit-box-shadow: 0 0 0 0 rgba(var(--style-base-rgb), 0.6);
  box-shadow: 0 0 0 0 rgba(var(--style-base-rgb), 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
  border-radius: 50%;
}

.main-slider-two__video-icon .ripple:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.main-slider-two__video-icon .ripple:after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

.main-slider-two__video-text-box {
  position: absolute;
  bottom: -55px;
  left: -169px;
}

.main-slider-two__video-text {
  font-size: 24px;
  color: var(--style-white);
  line-height: 34px;
  font-family: var(--style-reey-font);
}

.main-slider-two__video-arrow {
  position: absolute;
  bottom: 5px;
  right: -43px;
}

.main-slider-two__video-arrow img {
  width: auto;
}


.main-slider-two__nav {
  position: absolute;
  top: 51%;
  left: 45px;
  z-index: 100;
  transform: translateY(-50%) translateX(0%);
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  max-width: 1200px;
  width: 100%;
  padding: 0 15px;
  height: 0;
  line-height: 0;
}

.main-slider-two__nav .swiper-button-next,
.main-slider-two__nav .swiper-button-prev {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: 100;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: rgba(var(--style-white-rgb), .20);
  border: 2px solid rgba(var(--style-white-rgb), .20);
  border-radius: 50%;
  margin: 0;
  text-align: center;
  transition: all 500ms ease;
  padding: 23px 0;
}

.main-slider-two__nav .swiper-button-prev {
  margin-bottom: 10px;
}

.main-slider-two__nav .swiper-button-next:hover,
.main-slider-two__nav .swiper-button-prev:hover {
  color: rgba(var(--style-white-rgb), 1);
  border: 2px solid rgba(var(--style-white-rgb), 1);
}

.main-slider-two__nav .swiper-button-next:hover,
.main-slider-two__nav .swiper-button-prev:hover {
  opacity: 1;
}

.main-slider-two__nav .swiper-button-next::after,
.main-slider-two__nav .swiper-button-prev::after {
  display: none;
}

/*--------------------------------------------------------------
# Main Slider Two
--------------------------------------------------------------*/
.main-slider-three {
  position: relative;
  display: block;
  z-index: 91;
}

.main-slider-three .swiper-slide {
  position: relative;
  background-color: var(--style-black);
}

.main-slider-three .container {
  position: relative;
  padding-top: 194px;
  padding-bottom: 180px;
  z-index: 30;
}

.image-layer-three {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left center;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: transform 7000ms ease, opacity 1500ms ease-in;
  transition: transform 7000ms ease, opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  z-index: 1;
}

.main-slider-three .swiper-slide-active .image-layer-three {
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
}

.image-layer-three:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: rgba(39, 43, 48, .50);
}

.main-slider-three__content {
  position: relative;
  display: block;
  text-align: center;
}

.main-slider-three__sub-title {
  position: relative;
  display: inline-block;
  font-size: 20px;
  color: var(--style-white);
  font-weight: 800;
  line-height: 20px;
  padding-left: 20px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-120px);
  transform: translateY(-120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider-three__sub-title:before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  height: 15px;
  width: 2px;
  background-color: var(--style-white);
  transform: rotate(15deg);
}

.main-slider-three__sub-title:after {
  content: "";
  position: absolute;
  top: 2px;
  left: 6px;
  height: 15px;
  width: 2px;
  background-color: var(--style-white);
  transform: rotate(15deg);
}

.main-slider-three__title {
  position: relative;
  font-size: 80px;
  color: var(--style-white);
  font-weight: 800;
  line-height: 90px;
  letter-spacing: -0.04em;
  margin-top: 7px;
  margin-bottom: 35px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-120px);
  transform: translateY(-120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider-three__title span {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.main-slider-three__title span:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -5px;
  right: 0;
  height: 19px;
  width: 211px;
  background-image: url(../images/shapes/main-slider-three-shape-1.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.main-slider-three__btn-box {
  position: relative;
  display: block;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(120px);
  transform: translateY(120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider-three__btn:hover {
  color: var(--style-base);
}

.main-slider-three__btn:before {
  background-color: var(--style-white);
}

.main-slider-three__shape-1 {
  position: absolute;
  top: -7px;
  right: 194px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(120px);
  transform: translateX(120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider-three__shape-1 img {
  width: auto;
}

.main-slider-three .swiper-slide-active .main-slider-three__shape-1 {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0) translateX(0);
  transform: translateY(0) translateX(0);
}

.main-slider-three .swiper-slide-active .main-slider-three__sub-title,
.main-slider-three .swiper-slide-active .main-slider-three__title,
.main-slider-three .swiper-slide-active .main-slider-three__btn-box {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0) translateX(0);
  transform: translateY(0) translateX(0);
}

.main-slider-three__nav {
  width: 100%;
  max-width: 1200px;
  padding-left: 15px;
  padding-right: 15px;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 100;
  transform: translateY(-50%) translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 0;
  line-height: 0;
}

.main-slider-three__nav .swiper-button-next,
.main-slider-three__nav .swiper-button-prev {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: 100;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: rgba(var(--style-white-rgb), .20);
  border: 2px solid rgba(var(--style-white-rgb), .20);
  border-radius: 50%;
  margin: 0;
  text-align: center;
  transition: all 500ms ease;
}

.main-slider-three__nav .swiper-button-next:hover,
.main-slider-three__nav .swiper-button-prev:hover {
  color: rgba(var(--style-white-rgb), 1);
  border: 2px solid rgba(var(--style-white-rgb), 1);
}

.main-slider-three__nav .swiper-button-next:hover,
.main-slider-three__nav .swiper-button-prev:hover {
  opacity: 1;
}

.main-slider-three__nav .swiper-button-next::after,
.main-slider-three__nav .swiper-button-prev::after {
  display: none;
}


/*--------------------------------------------------------------
# Feature One
--------------------------------------------------------------*/
.feature-one {
  position: relative;
  display: block;
  padding: 60px 0 90px;
}

.feature-one__single {
  position: relative;
  display: block;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.feature-one__single:hover {
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}

.feature-one__single-content-box {
  position: relative;
  display: block;
  background-color: #f1f2f4;
  padding-left: 50px;
  padding-right: 30px;
  padding-top: 30px;
  padding-bottom: 80px;
  margin-bottom: 30px;
  overflow: hidden;
  z-index: 1;
}

.feature-one__single-content-box:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: #009dde;
  opacity: 0;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-transform: scale(0.2, 1);
  transform: scale(0.2, 1);
  z-index: -1;
}

.feature-one__single:hover .feature-one__single-content-box:before {
  opacity: 1;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.feature-one-shape {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  transform: perspective(380px) translateX(100%);
  transform-origin: right;
  transition: all 500ms linear;
  transition-delay: 0.1s;
}

.feature-one__single:hover .feature-one-shape {
  transform: perspective(380px) translateX(0);
  transition: all 900ms ease;
  transition-delay: 0.3s;
}

.feature-one-shape img {
  width: 200px;
  opacity: 0.08;
}

.feature-one__single-inner {
  position: relative;
  display: block;
  padding-left: 185px;
}

.feature-one__content {
  position: absolute;
  top: 13px;
  left: 0;
}

.feature-one__title {
  font-size: 24px;
  font-weight: 800;
  line-height: 30px;
  margin-bottom: 15px;
}

.feature-one__title a {
  color: var(--style-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.feature-one__single:hover .feature-one__title a {
  color: var(--style-white);
}

.feature-one__text {
  font-size: 15px;
  line-height: 24px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.feature-one__single:hover .feature-one__text {
  color: #fff;
}

.feature-one__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.03);
  height: 104px;
  width: 104px;
  z-index: 1;
}

.feature-one__icon:before {
  position: absolute;
  top: -1px;
  left: -1px;
  bottom: -1px;
  right: -1px;
  background-color: #fff;
  border-radius: 50%;
  transition: .5s;
  transform: scale(.5);
  opacity: 0;
  content: '';
  z-index: -1;
}

.feature-one__single:hover .feature-one__icon:before {
  transform: scale(1);
  opacity: 1;
}

.feature-one__icon span {
  position: relative;
  display: inline-block;
  font-size: 65px;
  color: #ea1d2a;
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.feature-one__single:hover .feature-one__icon span {
  transform: scale(0.9);
}

/*--------------------------------------------------------------
# Why Choose One
--------------------------------------------------------------*/
.why-choose-one {
  position: relative;
  display: block;
  background-color: var(--style-extra);
  padding: 120px 0 90px;
  overflow: hidden;
  z-index: 1;
}

.why-choose-one-shape-1 {
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: .10;
}

.why-choose-one-shape-1 img {
  width: auto;
}

.why-choose-one-shape-2 {
  position: absolute;
  top: 0;
  right: 0;
  opacity: .10;
}

.why-choose-one-shape-2 img {
  width: auto;
}

.why-choose-one__top {
  position: relative;
  display: block;
  margin-bottom: 48px;
}

.why-choose-one__left {
  position: relative;
  display: block;
}

.why-choose-one__left .section-title {
  margin-bottom: 0;
}

.why-choose-one__right {
  position: relative;
  display: block;
  margin-top: 21px;
  margin-left: 70px;
}

.why-choose-one__bottom {
  position: relative;
  display: block;
}

.why-choose-one__list {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -3px;
  margin-left: -3px;
}

.why-choose-one__single {
  position: relative;
  width: 100%;
  padding-right: 3px;
  padding-left: 3px;
  -ms-flex: 0 0 16.6666667%;
  flex: 0 0 16.6666667%;
  max-width: 16.6666667%;
  text-align: center;
  margin-bottom: 30px;
}

.why-choose-one__content {
  position: relative;
  display: block;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.03);
  padding: 35px 0 32px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.why-choose-one__single:hover .why-choose-one__content {
  transform: translateY(-10px);
}

.why-choose-one__icon {
  position: relative;
  display: block;
  margin-bottom: 16px;
}

.why-choose-one__icon span {
  position: relative;
  display: inline-block;
  font-size: 65px;
  color: var(--style-base);
  transition: all 500ms linear;
  transition-delay: 0.1s;
}

.why-choose-one__single:hover .why-choose-one__icon span {
  transform: rotateY(360deg) scale(1.2);
  color: var(--style-primary);
}

.why-choose-one__title {
  font-size: 18px;
  color: var(--style-black);
  font-weight: 800;
  letter-spacing: var(--style-letter-spacing-two);
}

/*--------------------------------------------------------------
# Brand One
--------------------------------------------------------------*/
.brand-one {
  position: relative;
  display: block;
  background-color: var(--style-base);
  padding: 80px 0 80px;
  overflow: hidden;
  z-index: 1;
}

.brand-one-shape-1 {
  position: absolute;
  top: -36px;
  left: 0;
  opacity: .20;
  z-index: -1;
}

.brand-one-shape-1 img {
  width: auto;
}

.brand-one-shape-2 {
  position: absolute;
  top: -20px;
  right: 0;
  opacity: .20;
  z-index: -1;
}

.brand-one-shape-2 img {
  width: auto;
}

.brand-one .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.brand-one .swiper-slide img {
  -webkit-transition: 500ms;
  transition: 500ms;
  opacity: 0.4;
  max-width: 100%;
}

.brand-one .swiper-slide img:hover {
  opacity: 1;
}

/*--------------------------------------------------------------
# Plans One
--------------------------------------------------------------*/
.plans-one {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}

.plans-one__single {
  position: relative;
  display: block;
  border: 1px solid var(--style-bdr-color);
  padding: 45px 15px 15px;
  margin-bottom: 30px;
}

.plans-one__top {
  position: relative;
  display: block;
  text-align: center;
  padding-bottom: 54px;
}

.plans-one__sub-title {
  font-size: 14px;
  color: var(--style-base);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  line-height: 20px;
}

.plans-one__title {
  font-size: 26px;
  font-weight: 800;
  line-height: 31px;
}

.plans-one__bottom {
  position: relative;
  display: block;
  /* background-color: var(--style-extra); */
  padding: 70px 50px 50px;
}

.plans-one__list {
  position: relative;
  display: block;
}

.plans-one__list li {
  position: relative;
  display: flex;
  align-items: center;
}

.plans-one__list li+li {
  margin-top: 9px;
}

.plans-one__list li .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.plans-one__list li .icon i {
  position: relative;
  display: inline-block;
  font-size: 14px;
  color: #08939f;
}

.plans-one__list li .text {
  margin-left: 10px;
}

.plans-one__price-box {
  position: relative;
  display: block;
  text-align: center;
  border-top: 1px solid var(--style-bdr-color);
  padding-top: 26px;
  margin-top: 40px;
}

.plans-one__price-inner {
  position: relative;
  display: inline-block;
  margin-bottom: 23px;
}

.plans-one__price {
  font-size: 60px;
  font-weight: 800;
  line-height: 60px;
}

.plans-one__price-dolar {
  font-size: 36px;
  top: -17px;
  left: 10px;
}

.plans-one__price-last-text {
  font-size: 36px;
  top: -17px;
  right: 9px;
}

.plans-one__price-time {
  position: absolute;
  bottom: -3px;
  right: -3px;
}

.plans-one__icon-box {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -30px;
  left: 0;
  right: 0;
}

.plans-one__icon-box i {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.07);
  height: 60px;
  width: 60px;
  font-size: 30px;
  color: #08939f;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.plans-one__icon-box i+i {
  margin-left: 10px;
}

.plans-one__icon-box i:hover {
  color: var(--style-white);
  background-color: var(--style-base);
}

/*--------------------------------------------------------------
# News One
--------------------------------------------------------------*/
.news-one {
  position: relative;
  display: block;
  padding: 120px 0 90px;
  z-index: 1;
}

.news-one:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 525px;
  content: "";
  background-color: var(--style-extra);
  z-index: -1;
}

.news-one__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
  z-index: 1;
}

.news-one__img-box {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.news-one__img-box>a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--style-base);
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  -webkit-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: right center;
  -ms-transform-origin: right center;
  transform-origin: right center;
  background-position: center center;
  z-index: 1;
}

.news-one__single:hover .news-one__img-box>a {
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
}

.news-one__img-box>a:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: rgba(var(--style-black-rgb), .50);
  z-index: -1;
}

.news-one__img-box img {
  width: 100%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-one__single:hover .news-one__img-box img {
  transform: scale(1.05);
}

.news-one__content-box {
  position: relative;
  display: block;
  background-color: rgb(255, 255, 255);
  padding: 21px 40px 0;
  margin-left: 20px;
  margin-right: 20px;
  margin-top: -30px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 2;
}

.news-one__single:hover .news-one__content-box {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}

.news-one__content {
  position: relative;
  display: block;
}

.news-one__meta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-one__meta li+li {
  margin-left: 10px;
}

.news-one__meta li a {
  font-size: 14px;
  font-weight: 500;
  color: var(--style-gray);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-one__meta li a:hover {
  color: var(--style-primary);
}

.news-one__meta li a i {
  color: var(--style-primary);
  padding-right: 5px;
}

.news-one__title {
  font-size: 24px;
  font-weight: 800;
  line-height: 29px;
  text-align: center;
  margin-top: 6px;
  margin-bottom: 25px;
}

.news-one__title a {
  color: var(--style-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-one__title a:hover {
  color: var(--style-base);
}

.news-one__bottom {
  position: relative;
  display: block;
  text-align: center;
}

.news-one__read-more {
  font-size: 12px;
  font-weight: 700;
  color: var(--style-gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid var(--style-bdr-color);
  padding: 10px 0px 9px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-one__read-more:hover {
  color: var(--style-base);
}

.news-one__date {
  position: absolute;
  top: -34px;
  left: 0;
  background-color: var(--style-base);
  padding: 12px 20px 12px;
}

.news-one__date p {
  font-size: 10px;
  font-weight: 800;
  color: var(--style-white);
  line-height: 10px;
  text-transform: uppercase;
}

/*--------------------------------------------------------------
# Service Available
--------------------------------------------------------------*/
.service-available {
  position: relative;
  display: block;
  padding: 0 0 120px;
  z-index: 1;
}

.service-available__inne {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #1aa1ae;
  padding: 77px 60px 77px;
  overflow: hidden;
  z-index: 1;
}

.service-available__shape-1 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.service-available__shape-1 img {
  width: auto;
}

.service-available__shape-2 {
  position: absolute;
  top: 0;
  right: 138px;
  bottom: 0;
  mix-blend-mode: color-dodge;
  opacity: .90;
  z-index: -1;
}

.service-available__shape-2 img {
  width: auto;
}

.service-available__shape-3 {
  position: absolute;
  top: 0;
  right: 62px;
  bottom: 0;
  mix-blend-mode: soft-light;
  opacity: .40;
  z-index: -1;
}

.service-available__shape-3 img {
  width: auto;
}

.service-available__shape-4 {
  position: absolute;
  top: 0;
  left: 0;
  opacity: .15;
}

.service-available__shape-4 img {
  width: auto;
}

.service-available__left {
  position: relative;
  display: block;
}

.service-available__title {
  font-size: 30px;
  color: var(--style-white);
  font-weight: 800;
  line-height: 38px;
}

.service-available__right {
  position: relative;
  display: block;
  max-width: 600px;
  width: 100%;
}

.service-available__form {
  position: relative;
  display: block;
}

.service-available__input-box {
  position: relative;
  display: block;
}

.service-available__input-box input[type="text"] {
  height: 80px;
  width: 100%;
  max-width: 600px;
  background-color: #15909c;
  border: 1px solid #31abb6;
  border-radius: 40px;
  font-size: 16px;
  color: var(--style-white);
  padding-left: 40px;
  padding-right: 245px;
  outline: none;
}

.service-available__btn {
  position: absolute;
  top: 50%;
  right: 15px;
  border: 0;
  background-color: var(--style-white);
  color: var(--style-black);
  transform: translateY(-50%);
}

/*--------------------------------------------------------------
# Site Footer
--------------------------------------------------------------*/
.site-footer {
  position: relative;
  display: block;
  background-color: var(--style-black);
  z-index: 1;
}

.site-footer-shape-bg {
  position: absolute;
  top: 90px;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  mix-blend-mode: luminosity;
  opacity: 0.09;
  z-index: -1;

  -webkit-animation-duration: 9s;
  animation-duration: 9s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  animation-name: shapeMover;
}

.footer-widget__title {
  font-size: 18px;
  color: var(--style-white);
  font-weight: 700;
  line-height: 18px;
  margin-bottom: 27px;
  letter-spacing: var(--style-letter-spacing-two);
}

.site-footer__top {
  position: relative;
  display: block;
  padding: 117px 0 111px;
}

.footer-widget__about {
  position: relative;
  display: block;
  margin-top: -6px;
}

.footer-widget__about-text-box {
  position: relative;
  display: block;
}

.footer-widget__about-text {
  color: var(--style-white);
  font-weight: 700;
  font-size: 30px;
  line-height: 40px;
  letter-spacing: var(--style-letter-spacing-two);
}


.site-footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 21px;
}

.site-footer__social a {
  position: relative;
  height: 40px;
  width: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  color: var(--style-white);
  background-color: #272b30;
  font-size: 15px;
  border-radius: 50%;
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.site-footer__social a:hover {
  color: var(--style-base);
  background-color: var(--style-white);
}

.site-footer__social a:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: var(--style-white);
  -webkit-transition-delay: .1s;
  transition-delay: .1s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-duration: .4s;
  transition-duration: .4s;
  -webkit-transition-property: all;
  transition-property: all;
  opacity: 1;
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  z-index: -1;
}

.site-footer__social a:hover:after {
  opacity: 1;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.site-footer__social a+a {
  margin-left: 10px;
}


.footer-widget__links {
  position: relative;
  display: block;
}

.footer-widget__links-list {
  position: relative;
  display: block;
}

.footer-widget__links-list li {
  position: relative;
  display: block;
}

.footer-widget__links-list li a {
  position: relative;
  display: inline-block;
  font-size: 15px;
  color: #a4a9ae;
  font-weight: 500;
  letter-spacing: var(--style-letter-spacing-two);
  transition: all 500ms ease;
}

.footer-widget__links-list li a:hover {
  padding-left: 15px;
  color: #fff;
}



.footer-widget__meet-us {
  position: relative;
  display: block;
}

.ooter-widget__meet-us-text {
  color: #a3a8ad;
  font-size: 15px;
  letter-spacing: var(--style-letter-spacing-two);
}

.footer-widget__contact {
  position: relative;
  display: block;
}

.footer-widget__contact-list {
  position: relative;
  display: block;
}

.footer-widget__contact-list li {
  position: relative;
  display: block;
}


.footer-widget__contact-list li .text {
  position: relative;
  display: block;
}

.footer-widget__contact-list li .text p {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: var(--style-letter-spacing);
}

.footer-widget__contact-list li .text p a {
  position: relative;
  display: inline-block;
  color: #a4a9ae;
  transition: all 500ms ease;
}

.footer-widget__contact-list li .text p a:before {
  content: "";
  position: absolute;
  bottom: 7px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #216b74;
}

.footer-widget__contact-list li:last-child .text p a {
  color: #a4a9ae;
}

.footer-widget__contact-list li:last-child .text p a:before {
  display: none;
}

.footer-widget__contact-list li:hover .text p a {
  color: white;
}

.site-footer__bottom {
  position: relative;
  display: block;
}

.site-footer__bottom-inner {
  position: relative;
  display: block;
  text-align: center;
  padding: 32px 0;
  background-color: rgb(48, 53, 58);
  box-shadow: 0px -1px 0px 0px rgba(255, 255, 255, 0.1);
}

.site-footer__bottom-text {
  font-size: 15px;
  color: #a3a8ad;
  font-weight: 500;
}

.site-footer__bottom-text a {
  color: #98a8a5;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.site-footer__bottom-text a:hover {
  color: var(--style-white);
}

/*--------------------------------------------------------------
# All Time HIt Two
--------------------------------------------------------------*/
.all-time-hit--two {
  background-color: var(--style-white);
}

.all-time-hit--two .section-title__title {
  color: var(--style-black);
}


/*--------------------------------------------------------------
# featured-one
--------------------------------------------------------------*/
.feature-two {
  position: relative;
  display: block;
  padding: 120px 0 133px;
  background-color: #f7f5f1;
  overflow: hidden;
  z-index: 1;
}

.feature-two-shape-1 {
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: .10;
  z-index: -1;
}

.feature-two-shape-1 img {
  width: auto;
}

.feature-two-shape-2 {
  position: absolute;
  top: 0;
  right: 0;
  opacity: .10;
  z-index: -1;
}

.feature-two-shape-2 img {
  width: auto;
}

.feature-two__inner {
  position: relative;
  display: block;
}

.feature-two__inner .section-title {
  position: absolute;
  top: -12px;
  left: 0;
  margin: 0;
}

.feature-two__carousel {
  position: relative;
  display: block;
}

.feature-two__single {
  position: relative;
  display: block;
}

.feature-two__left {
  position: relative;
  display: block;
  margin-right: 100px;
  margin-top: 152px;
}

.feature-two__text {
  font-size: 14px;
  font-weight: 700;
  color: var(--style-black);
  line-height: 28px;
  padding-bottom: 24px;
}

.feature-two__text i {
  color: var(--style-base);
  padding-left: 25px;
  padding-right: 5px;
}

.feature-two__text-two {
  line-height: 27px;
}

.feature-two__right {
  position: relative;
  display: block;
  margin-left: 15px;
}

.feature-two__img-box {
  position: relative;
  display: block;
  z-index: 1;
}

.feature-two__img {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.feature-two__img img {
  width: 100%;
}

.feature-two__bg-img {
  position: absolute;
  top: 50%;
  left: -20px;
  width: 555px;
  height: 348px;
  background-image: -moz-linear-gradient(90deg, rgb(254, 144, 67) 0%, rgb(8, 159, 172) 100%);
  background-image: -webkit-linear-gradient(90deg, rgb(254, 144, 67) 0%, rgb(8, 159, 172) 100%);
  background-image: -ms-linear-gradient(90deg, rgb(254, 144, 67) 0%, rgb(8, 159, 172) 100%);
  transform: translateY(-50%);
  z-index: -1;
}

.feature-two__video-link {
  position: absolute;
  bottom: 0;
  right: 0;
}

.feature-two__video-icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  font-size: 25px;
  color: var(--style-white);
  background-color: var(--style-primary);
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  z-index: 1;
}

.feature-two__video-icon:hover {
  background-color: var(--style-base);
  color: var(--style-white);
}

.feature-two__video-link .ripple,
.feature-two__video-icon .ripple:before,
.feature-two__video-icon .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 101px;
  height: 101px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(var(--style-primary-rgb), 0.6);
  -o-box-shadow: 0 0 0 0 rgba(var(--style-primary-rgb), 0.6);
  -webkit-box-shadow: 0 0 0 0 rgba(var(--style-primary-rgb), 0.6);
  box-shadow: 0 0 0 0 rgba(var(--style-primary-rgb), 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
}

.feature-two__video-icon .ripple:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.feature-two__video-icon .ripple:after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

.feature-two__carousel.owl-theme .owl-nav {
  position: absolute;
  bottom: 22px;
  left: 0px;
  margin: 0;
}

.feature-two__carousel.owl-theme .owl-nav .owl-next {
  height: 50px;
  width: 50px;
  line-height: 50px;
  border-radius: 50%;
  color: var(--style-black);
  background-color: var(--style-white);
  font-size: 15px;
  margin: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.feature-two__carousel.owl-theme .owl-nav .owl-prev {
  height: 50px;
  width: 50px;
  line-height: 50px;
  border-radius: 50%;
  color: var(--style-black);
  background-color: var(--style-white);
  font-size: 15px;
  margin: 0;
  text-align: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.feature-two__carousel.owl-theme .owl-nav .owl-next {
  margin-left: 5px;
}

.feature-two__carousel.owl-theme .owl-nav .owl-prev {
  margin-right: 5px;
}

.feature-two__carousel.owl-theme .owl-nav .owl-next:hover,
.feature-two__carousel.owl-theme .owl-nav .owl-prev:hover {
  background-color: var(--style-base);
  color: var(--style-white);
}

/*--------------------------------------------------------------
# Free Access
--------------------------------------------------------------*/
.free-access {
  position: relative;
  display: block;
  padding: 106px 0 240px;
  overflow: hidden;
  z-index: 1;
}

.free-access-bg {
  position: absolute;
  top: 0;
  bottom: -1px;
  left: 0;
  right: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.free-access-bg:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: rgba(var(--style-black-rgb), .60);
}

.free-access-shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: overlay;
  z-index: -1;
}

.free-access-shape-1 img {
  width: auto;
}

.free-access-shape-2 {
  position: absolute;
  top: -1px;
  left: 75px;
  bottom: 0;
  mix-blend-mode: soft-light;
  opacity: .40;
  z-index: -1;
}

.free-access-shape-2 img {
  width: auto;
}

.free-access-shape-3 {
  position: absolute;
  top: 0;
  left: 243px;
  mix-blend-mode: color-dodge;
  opacity: .90;
  z-index: -1;
}

.free-access-shape-3 img {
  width: auto;
}

.free-access__inner {
  position: relative;
  display: block;
  text-align: center;
}

.free-access__title {
  font-size: 60px;
  font-weight: 800;
  color: var(--style-white);
  line-height: 70px;
}

.free-access__title span {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.free-access__title span:before {
  position: absolute;
  bottom: -6px;
  left: -2px;
  right: -6px;
  content: "";
  height: 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../images/shapes/free-access-shape-4.png);
  z-index: -1;
}

.free-access__btn-box {
  position: relative;
  display: block;
  margin-top: 48px;
}

.free-access__btn:hover {
  color: var(--style-base);
}

.free-access__btn::before {
  background-color: var(--style-white);
}

/*--------------------------------------------------------------
# Counter One
--------------------------------------------------------------*/
.counter-one {
  position: relative;
  display: block;
  margin-top: -120px;
}

.counter-one__inner {
  position: relative;
  display: block;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  padding: 47px 0 28px;
  z-index: 1;
}

.counter-one__inner:before {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  content: "";
  background: #009dde;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

.counter-one__list {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.counter-one__single {
  position: relative;
  flex: 0 0 25%;
  max-width: 25%;
  width: 100%;
  text-align: center;
  margin-bottom: 33px;
}

.counter-one__single:before {
  position: absolute;
  top: 13px;
  bottom: -8px;
  left: 0;
  content: "";
  width: 1px;
  background-color: var(--style-bdr-color);
}

.counter-one__single:first-child:before {
  display: none;
}

.counter-one__count-box {
  position: relative;
  display: block;
  margin-bottom: 5px;
}

.counter-one__count-box h3 {
  font-size: 60px;
  color: var(--style-black);
  font-weight: 800;
  line-height: 60px !important;
  font-family: var(--style-font) !important;
}

.counter-one__text {
  position: relative;
  display: inline-block;
  line-height: 26px;
}

/*--------------------------------------------------------------
# News Two
--------------------------------------------------------------*/
.news-two {
  position: relative;
  display: block;
}

.news-two:before {
  display: none;
}

/*--------------------------------------------------------------
# Services One
--------------------------------------------------------------*/
.services-one {
  position: relative;
  display: block;
  padding: 120px 0 115px;
  background-color: var(--style-extra);
  overflow: hidden;
  z-index: 1;
}

.services-one-shape-1 {
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: .10;
  z-index: -1;
}

.services-one-shape-1 img {
  width: auto;
}

.services-one-shape-2 {
  position: absolute;
  top: 0;
  right: 0;
  opacity: .10;
  z-index: -1;
}

.services-one-shape-2 img {
  width: auto;
}

.services-one__top {
  position: relative;
  display: block;
  margin-bottom: 48px;
}

.services-one__top-left {
  position: relative;
  display: block;
}

.services-one__top-left .section-title {
  margin-bottom: 0;
}

.services-one__top-right {
  position: relative;
  display: block;
  margin-top: 31px;
}

.services-one__bottom {
  position: relative;
  display: block;
}

.services-one__single {
  position: relative;
  display: block;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  margin-bottom: 30px;
  z-index: 1;
}

.services-one__single-inner {
  position: relative;
  display: block;
  padding: 40px 40px 52px;
  overflow: hidden;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
  z-index: 1;
}

.services-one__single:hover .services-one__single-inner {
  background-color: var(--style-black);
}

.services-one__single-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: var(--style-black);
  background-blend-mode: luminosity;
  opacity: 0.08;
  background-position: center top;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
  transform-origin: top;
  transform-style: preserve-3d;
  transform: scaleY(0);
  z-index: -1;
}

.services-one__single:hover .services-one__single-bg {
  transform: scaleY(1.0);
}

.services-one__icon {
  position: relative;
  display: block;
}

.services-one__icon span {
  position: relative;
  display: inline-block;
  font-size: 72px;
  color: var(--style-base);
}

.services-one__title {
  font-size: 24px;
  font-weight: 800;
  line-height: 24px;
  margin-top: 16px;
  margin-bottom: 18px;
}

.services-one__title a {
  color: var(--style-black);
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
}

.services-one__single:hover .services-one__title a {
  color: var(--style-white);
}

.services-one__text {
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
}

.services-one__single:hover .services-one__text {
  color: #a4a9ae;
}

.services-one__arrow {
  position: absolute;
  bottom: -25px;
  right: 20px;
  z-index: 2;
}

.services-one__arrow a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  height: 50px;
  width: 50px;
  font-size: 15px;
  color: var(--style-black);
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
}

.services-one__single:hover .services-one__arrow a {
  background-color: var(--style-base);
  color: var(--style-white);
}



/*--------------------------------------------------------------
# Price
--------------------------------------------------------------*/
.price {
  position: relative;
  display: block;
  padding: 120px 0 110px;
}

.price__inner {
  position: relative;
  display: block;
}

.price__single {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--style-bdr-color);
  background-color: rgb(255, 255, 255);
  padding-left: 60px;
  padding-right: 15px;
  padding-top: 15px;
  padding-bottom: 15px;
  margin-bottom: 10px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.price__single:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
}

.price__main-progress-box {
  position: relative;
  display: block;
}

.price__progress-single {
  position: relative;
  display: flex;
  align-items: center;
}

.price__progress-box {
  position: relative;
  display: inline-block;
}

.price__progress-box canvas {
  transform: rotate(90deg);
}

.price__progress-box .price__pack {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  text-align: center;
}

.price__progress-box .price__pack p {
  font-size: 20px;
  font-weight: 800;
  color: var(--style-black);
  line-height: 20px;
}

.price__progress-box .price__pack span {
  position: relative;
  display: block;
  line-height: 20px;
}

.price__progress-content {
  margin-left: 30px;
}

.price__progress-content p {
  font-size: 14px;
  color: var(--style-base);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  line-height: 20px;
}

.price__progress-content h3 {
  font-size: 26px;
  font-weight: 800;
  line-height: 30px;
}

.price__right-content-box {
  position: relative;
  display: flex;
  align-items: center;
}

.price__right-points {
  position: relative;
  display: block;
  margin-right: 95px;
}

.price__right-points li {
  position: relative;
  display: flex;
  align-items: center;
}

.price__right-points li+li {
  margin-top: 10px;
}

.price__right-points li .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.price__right-points li .icon i {
  font-size: 12px;
  color: var(--style-primary);
  position: relative;
  top: 1px;
}

.price__right-points li .text {
  margin-left: 15px;
}

.price__box {
  position: relative;
  display: block;
  text-align: center;
  background-color: var(--style-extra);
  padding: 45px 60px 45px;
}

.price__box-price {
  font-size: 60px;
  font-weight: 800;
  line-height: 60px;
}

.price__box-price-dolar {
  font-size: 36px;
  top: -17px;
  left: 10px;
}

.price__box-price-last-text {
  font-size: 36px;
  top: -17px;
  right: 9px;
}

.price__btn-box {
  position: relative;
  display: block;
  margin-top: 20px;
}


/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
  position: relative;
  display: block;
  padding: 262px 0 110px;
  z-index: 1;
}

.page-header-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.page-header-bg:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: rgba(39, 43, 48, .60);
}

.page-header__inner {
  position: relative;
  display: block;
  text-align: center;
  z-index: 15;
}

.page-header__inner h2 {
  font-size: 40px;
  color: var(--style-white);
  line-height: 50px;
  margin-bottom: 6px;
  font-weight: 800;
  letter-spacing: var(--style-letter-spacing);
}

.thm-breadcrumb {
  position: relative;
  display: block;
}

.thm-breadcrumb li {
  position: relative;
  display: inline-block;
  color: var(--style-white);
  font-size: 16px;
  font-weight: 800;
  opacity: .6;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.thm-breadcrumb li+li {
  margin-left: 2px;
}

.thm-breadcrumb li a {
  position: relative;
  display: inline-block;
  color: var(--style-white);
  font-size: 16px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.thm-breadcrumb li:hover a {
  color: var(--style-base);
  opacity: 1;
}

/*--------------------------------------------------------------
# News Page
--------------------------------------------------------------*/
.news-page {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}

/*--------------------------------------------------------------
# News Sidebar
--------------------------------------------------------------*/
.news-sidebar {
  position: relative;
  display: block;
  padding: 120px 0 120px;
}

.news-sidebar__left {
  position: relative;
  display: block;
}

.news-sidebar__content {
  position: relative;
  display: block;
}

.news-sidebar__single {
  position: relative;
  display: block;
}

.news-sidebar__single+.news-sidebar__single {
  margin-top: 39px;
}

.news-sidebar__img {
  position: relative;
  display: block;
}

.news-sidebar__img img {
  width: 100%;
}

.news-sidebar__date {
  position: absolute;
  bottom: 0px;
  left: 0;
  background-color: var(--style-base);
  padding: 12px 20px 12px;
  z-index: 1;
}

.news-sidebar__date p {
  font-size: 10px;
  font-weight: 800;
  color: var(--style-white);
  line-height: 10px;
  text-transform: uppercase;
}

.news-sidebar__content-box {
  position: relative;
  display: block;
  margin-top: 21px;
}

.news-sidebar__meta {
  display: flex;
  align-items: center;
}

.news-sidebar__meta li+li {
  margin-left: 10px;
}

.news-sidebar__meta li a {
  font-size: 14px;
  color: var(--style-gray);
  font-weight: 500;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-sidebar__meta li a:hover {
  color: var(--style-primary);
}

.news-sidebar__meta li a i {
  color: var(--style-primary);
  padding-right: 3px;
}

.news-sidebar__title {
  font-size: 30px;
  line-height: 40px;
  font-weight: 800;
  letter-spacing: var(--style-letter-spacing-two);
  margin-top: 3px;
}

.news-sidebar__title a {
  color: var(--style-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-sidebar__title a:hover {
  color: var(--style-base);
}

.news-sidebar__text {
  margin: 0;
  padding-top: 12px;
  padding-bottom: 11px;
  font-size: 16px;
}

.news-sidebar__bottom {
  display: flex;
  align-items: center;
}

.news-sidebar__read-more {
  font-size: 12px;
  color: var(--style-black);
  font-weight: 800;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.news-sidebar__read-more:hover {
  color: var(--style-base);
}

.news-sidebar__arrow {
  display: flex;
  align-items: center;
  font-size: 15px;
  color: var(--style-black);
  margin-left: 10px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-sidebar__arrow:hover {
  color: var(--style-base);
}


.news-sidebar__bottom-box {
  position: relative;
  display: block;
  background-color: var(--style-extra);
  padding: 60px 60px 56px;
  margin-top: 39px;
  overflow: hidden;
  z-index: 1;
}

.news-sidebar__bottom-box-icon {
  margin-bottom: 21px;
}

.news-sidebar__bottom-box-text {
  font-size: 16px;
}

.news-sidebar__delivering-services {
  position: relative;
  display: block;
  background-color: var(--style-extra);
  padding: 60px 60px 59px;
  margin-top: 50px;
  margin-bottom: 50px;
  overflow: hidden;
  z-index: 1;
}

.news-sidebar__delivering-services-icon {
  margin-bottom: 23px;
}

.news-sidebar__delivering-services-title {
  font-size: 30px;
  line-height: 35px;
  font-weight: 800;
  letter-spacing: var(--style-letter-spacing-two);
}

.news-sidebar__delivering-services-title a {
  color: var(--style-black);
  transition: all 500ms ease;
}

.news-sidebar__delivering-services-title a:hover {
  color: var(--style-base);
}

.news-sidebar__shape-1 {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  mix-blend-mode: luminosity;
  opacity: .30;
  z-index: -1;
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .sidebar {
    margin-top: 50px;
  }
}

.sidebar__single+.sidebar__single {
  margin-top: 30px;
}

.sidebar__title {
  margin: 0;
  font-size: 20px;
  margin-bottom: 5px;
  font-weight: 800;
  letter-spacing: var(--style-letter-spacing-two);
}

.sidebar__search {
  position: relative;
  display: block;
}

.sidebar__search-form {
  position: relative;
}

.sidebar__search-form input[type="search"] {
  display: block;
  border: none;
  outline: none;
  background-color: var(--style-primary);
  color: var(--style-white);
  font-size: 18px;
  font-weight: 500;
  padding-left: 50px;
  height: 74px;
  width: 100%;
  padding-right: 80px;
}

.sidebar__search-form ::-webkit-input-placeholder {
  color: var(--style-white);
  opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
  color: var(--style-white);
  opacity: 1;
}

.sidebar__search-form ::-ms-input-placeholder {
  color: var(--style-white);
  opacity: 1;
}

.sidebar__search-form ::placeholder {
  color: var(--style-white);
  opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
  color: var(--style-white);
}

.sidebar__search-form ::-ms-input-placeholder {
  color: var(--style-white);
}

.sidebar__search-form button[type="submit"] {
  background-color: transparent;
  color: var(--style-white);
  font-size: 22px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 72px;
  outline: none;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
}

.sidebar__post {
  position: relative;
  display: block;
  padding: 46px 30px 30px;
  background-color: var(--style-extra);
  overflow: hidden;
  z-index: 1;
}

.sidebar__post .sidebar__title {
  margin-left: 20px;
}

.sidebar__post-list {
  margin: 0;
}

.sidebar__post-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 16px 20px 17px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.sidebar__post-list li:hover {
  background-color: var(--style-white);
}

.sidebar__post-list li+li {
  margin-top: 10px;
}

.sidebar__post-image {
  margin-right: 20px;
}

.sidebar__post-image>img {
  width: 70px;
}

.sidebar__post-content {
  position: relative;
  top: -3px;
}

.sidebar__post-content h3 {
  font-size: 18px;
  margin: 0;
  line-height: 26px;
}

.sidebar__post-content-meta {
  font-size: 14px;
  font-weight: 500;
  color: var(--style-gray) !important;
  font-family: var(--style-font);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.sidebar__post-content-meta i {
  color: var(--style-base);
  font-size: 15px;
  padding-right: 4px;
}

.sidebar__post-content h3 a {
  color: var(--style-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  display: block;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: var(--style-letter-spacing-two);
}

.sidebar__category {
  position: relative;
  display: block;
  background-color: var(--style-extra);
  padding: 46px 30px 36px;
  overflow: hidden;
  z-index: 1;
}

.sidebar__category .sidebar__title {
  padding-left: 20px;
  margin-bottom: 9px;
}

.sidebar__category-list {
  margin: 0;
}

.sidebar__category-list li+li {
  margin-top: 6px;
}

.sidebar__category-list li a {
  color: var(--style-gray);
  font-size: 16px;
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  display: block;
  background: none;
  padding: 7px 20px 7px;
  font-weight: 500;
}

.sidebar__category-list li a:hover {
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  color: var(--style-black);
}

.sidebar__category-list li.active a {
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  color: var(--style-black);
}

.sidebar__category-list li a span {
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%) scale(0);
  transform: translateY(-50%) scale(0);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  color: var(--style-base);
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 15px;
}

.sidebar__category-list li a:hover span {
  color: var(--style-base);
  -webkit-transform: translateY(-50%) scale(1);
  transform: translateY(-50%) scale(1);
}

.sidebar__category-list li.active a span {
  -webkit-transform: translateY(-50%) scale(1);
  transform: translateY(-50%) scale(1);
  color: var(--style-base);
}

.sidebar__tags {
  position: relative;
  display: block;
  background: var(--style-extra);
  padding: 46px 45px 50px;
  overflow: hidden;
  z-index: 1;
}

.sidebar__tags .sidebar__title {
  margin-left: 5px;
  margin-bottom: 25px;
}

.sidebar__tags-list {
  margin-top: -10px;
}

.sidebar__tags-list a {
  font-size: 13px;
  color: var(--style-black);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background: var(--style-white);
  display: inline-block;
  padding: 5px 25px 5px;
  margin-left: 5px;
  font-weight: 800;
  border-radius: 20px;
}

.sidebar__tags-list a+a {
  margin-left: 5px;
  margin-top: 10px;
}

.sidebar__tags-list a:hover {
  color: var(--style-white);
  background: var(--style-base);
}

.sidebar__comments {
  position: relative;
  display: block;
  background-color: var(--style-extra);
  padding: 46px 50px 43px;
  overflow: hidden;
  z-index: 1;
}

.sidebar__comments .sidebar__title {
  margin-bottom: 25px;
}

.sidebar__comments-list {
  position: relative;
  display: block;
}

.sidebar__comments-list li {
  position: relative;
  display: block;
  padding-left: 65px;
}

.sidebar__comments-list li+li {
  margin-top: 23px;
}

.sidebar__comments-icon {
  height: 45px;
  width: 45px;
  background-color: var(--style-white);
  border-radius: 50%;
  font-size: 15px;
  color: var(--style-black);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.sidebar__comments-list li:hover .sidebar__comments-icon {
  background-color: var(--style-base);
  color: var(--style-white);
}

.sidebar__comments-text-box p {
  font-size: 15px;
  margin: 0;
  line-height: 26px;
  font-weight: 500;
}

.sidebar__comments-text-box p span {
  color: var(--style-black);
}

.sidebar__comments-text-box h5 {
  font-size: 15px;
  margin: 0;
  line-height: 26px;
  color: var(--style-gray);
  font-weight: 500;
  letter-spacing: 0;
}

/*--------------------------------------------------------------
# Blog Details
--------------------------------------------------------------*/
.news-details {
  position: relative;
  display: block;
  padding: 120px 0 120px;
}

.news-details__left {
  position: relative;
  display: block;
}

.news-details__img {
  position: relative;
  display: block;
}

.news-details__img img {
  width: 100%;
}

.news-details__date {
  position: absolute;
  bottom: 0px;
  left: 0;
  background-color: var(--style-base);
  padding: 12px 20px 12px;
  z-index: 1;
}

.news-details__date p {
  font-size: 10px;
  font-weight: 800;
  color: var(--style-white);
  line-height: 10px;
  text-transform: uppercase;
}

.news-details__content {
  position: relative;
  display: block;
  margin-top: 21px;
}

.news-details__meta {
  position: relative;
  display: flex;
  align-items: center;
}

.news-details__meta li+li {
  margin-left: 10px;
}

.news-details__meta li a {
  font-size: 14px;
  color: var(--style-gray);
  font-weight: 500;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-details__meta li a:hover {
  color: var(--style-primary);
}

.news-details__meta li a i {
  color: var(--style-primary);
  padding-right: 3px;
}

.news-details__title {
  font-size: 30px;
  line-height: 40px;
  margin-top: 3px;
  margin-bottom: 12px;
  font-weight: 800;
  letter-spacing: var(--style-letter-spacing-two);
}

.news-details__text-1 {
  font-size: 16px;
}

.news-details__text-2 {
  font-size: 16px;
  padding-top: 31px;
}

.news-details__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 30px 0 30px;
  margin-top: 51px;
  border-top: 1px solid var(--style-extra);
}

.news-details__bottom p {
  margin: 0;
}

.news-details__tags span {
  color: var(--style-black);
  font-size: 20px;
  margin-right: 14px;
  font-weight: 800;
  letter-spacing: var(--style-letter-spacing-two);
}

.news-details__tags a {
  position: relative;
  color: var(--style-white);
  font-size: 13px;
  background-color: var(--style-base);
  display: inline-block;
  padding: 5px 25px 5px;
  font-weight: 800;
  border-radius: 20px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-details__tags a:hover {
  background-color: var(--style-primary);
  color: var(--style-white);
}

.news-details__tags a+a {
  margin-left: 6px;
}

.news-details__social-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.news-details__social-list a {
  position: relative;
  height: 40px;
  width: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  color: var(--style-black);
  background-color: var(--style-extra);
  font-size: 15px;
  border-radius: 50%;
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.news-details__social-list a:hover {
  color: var(--style-white);
}

.news-details__social-list a:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: var(--style-base);
  -webkit-transition-delay: .1s;
  transition-delay: .1s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-duration: .4s;
  transition-duration: .4s;
  -webkit-transition-property: all;
  transition-property: all;
  opacity: 1;
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  z-index: -1;
}

.news-details__social-list a:hover:after {
  opacity: 1;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.news-details__social-list a+a {
  margin-left: 10px;
}

.news-details__pagenation-box {
  position: relative;
  display: block;
  overflow: hidden;
  margin-bottom: 54px;
}

.news-details__pagenation {
  position: relative;
  display: block;
}

.news-details__pagenation li {
  position: relative;
  float: left;
  font-size: 20px;
  color: var(--style-black);
  font-weight: 800;
  background-color: var(--style-extra);
  line-height: 35px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  max-width: 370px;
  width: 100%;
  padding-left: 60px;
  padding-right: 60px;
  padding-top: 50px;
  padding-bottom: 50px;
  letter-spacing: var(--style-letter-spacing-two);
}

.news-details__pagenation li+li {
  margin-left: 30px;
}

.news-details__pagenation li:hover {
  background-color: var(--style-primary);
  color: var(--style-white);
}


/*--------------------------------------------------------------
# Service Details
--------------------------------------------------------------*/
.service-details {
  position: relative;
  display: block;
  padding: 120px 0 120px;
}

.service-details__left {
  position: relative;
  display: block;
}

.service-details__category {
  position: relative;
  display: block;
}

.service-details__category-title {
  font-size: 20px;
  color: var(--style-base);
  line-height: 20px;
  display: block;
  background-color: #e4e5ea;
  padding: 20px 50px 20px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.service-details__category-list {
  position: relative;
  display: block;
}

.service-details__category-list li {
  position: relative;
  display: block;
}

.service-details__category-list li+li {
  margin-top: 10px;
}

.service-details__category-list li a {
  color: var(--style-black);
  font-size: 16px;
  font-weight: 800;
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  display: block;
  background: none;
  padding: 13px 30px 12px;
  background-color: var(--style-extra);
  z-index: 1;
}

.service-details__category-list li:hover a {
  color: var(--style-white);
}

.service-details__category-list li.active a {
  color: var(--style-white);
}

.service-details__category-list li a:after {
  position: absolute;
  bottom: 0px;
  top: 0px;
  left: 0;
  right: 0px;
  content: "";
  background-color: var(--style-black);
  transform: scaleX(0);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: -1;
}

.service-details__category-list li:hover a:after {
  transform: scaleX(1);
}

.service-details__category-list li.active a:after {
  transform: scaleX(1);
}

.service-details__category-list li a span {
  position: absolute;
  top: 50%;
  right: 30px;
  -webkit-transform: translateY(-50%) scale(1);
  transform: translateY(-50%) scale(1);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  color: var(--style-black);
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 15px;
}

.service-details__category-list li a:hover span {
  color: var(--style-base);
  -webkit-transform: translateY(-50%) scale(1);
  transform: translateY(-50%) scale(1);
}

.service-details__category-list li.active a span {
  -webkit-transform: translateY(-50%) scale(1);
  transform: translateY(-50%) scale(1);
  color: var(--style-base);
}


.service-details__need-help {
  position: relative;
  display: block;
  padding: 50px 50px 45px;
  margin-top: 30px;
  margin-bottom: 30px;
  text-align: center;
  z-index: 1;
  background-color: var(--style-primary);
}

.service-details__need-help-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--style-primary);
  opacity: 0.10;
  border-radius: 30px;
  background-blend-mode: luminosity;
  z-index: -1;
}

.service-details__need-help-icon {
  height: 85px;
  width: 85px;
  background-color: var(--style-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 28px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.service-details__need-help-icon:hover {
  background-color: var(--style-base);
}

.service-details__need-help-icon span {
  font-size: 30px;
  color: var(--style-primary);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.service-details__need-help-icon:hover span {
  color: var(--style-white);
}

.service-details__need-help-title {
  font-size: 26px;
  color: var(--style-white);
  line-height: 32px;
  font-weight: 800;
  letter-spacing: 0;
}

.service-details__need-help-contact {
  position: relative;
  display: block;
  margin-top: 38px;
}

.service-details__need-help-contact p {
  font-size: 16px;
  color: var(--style-white);
  margin: 0;
  line-height: 16px;
  font-weight: 500;
  margin-bottom: 2px;
}

.service-details__need-help-contact a {
  font-size: 20px;
  color: var(--style-white);
  font-weight: 800;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.service-details__need-help-contact a:hover {
  color: var(--style-black);
}

.service-details__download {
  position: relative;
  display: block;
}

.service-details__btn {
  width: 100%;
  text-align: center;
}

.service-details__btn:hover:before {
  height: 580%;
}

.service-details__right {
  position: relative;
  display: block;
}

.service-details__content-box {
  position: relative;
  display: block;
}

.service-details__img {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.service-details__img img {
  width: 100%;
}

.service-details__title {
  font-size: 36px;
  font-weight: 800;
  line-height: 46px;
  margin-bottom: 21px;
}

.service-details__quote {
  position: relative;
  display: block;
  border: 2px solid var(--style-base);
  padding: 15px 40px 22px;
  margin-top: 41px;
  margin-bottom: 41px;
}

.service-details__quote-text {
  font-size: 18px;
  color: var(--style-black);
  font-weight: 800;
  line-height: 30px;
  letter-spacing: var(--style-letter-spacing-two);
}

.service-details__benefit {
  position: relative;
  display: block;
  margin-top: 56px;
  margin-bottom: 60px;
}

.service-details__benefit-img {
  position: relative;
  display: block;
}

.service-details__benefit-img img {
  width: 100%;
}

.service-details__benefit-content {
  position: relative;
  display: block;
  margin-top: -3px;
}

.service-details__benefit-title {
  font-size: 24px;
  font-weight: 800;
  line-height: 24px;
}

.service-details__benefit-text {
  padding-top: 28px;
  padding-bottom: 28px;
}

.service-details__benefit-points {
  position: relative;
  display: block;
}

.service-details__benefit-points li {
  position: relative;
  display: flex;
  align-items: center;
}

.service-details__benefit-points li .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 15px;
  width: 15px;
  border-radius: 50%;
  background-color: var(--style-base);
  font-size: 9px;
  color: var(--style-white);
}

.service-details__benefit-points li .text {
  margin-left: 10px;
}

.service-details__benefit-points li .text p {
  font-size: 16px;
  font-weight: 600;
  color: var(--style-black);
}

/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/
.contact-page {
  position: relative;
  display: block;
  padding: 120px 0 120px;
}

.contact-page__left {
  position: relative;
  display: block;
}

.contact-page__left .section-title {
  margin-bottom: 30px;
}

.contact-page__contact-list {
  position: relative;
  display: block;
  margin-top: 41px;
}

.contact-page__contact-list li {
  position: relative;
  display: flex;
  align-items: center;
}

.contact-page__contact-list li+li {
  margin-top: 15px;
}

.contact-page__contact-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: 80px;
  border: 2px solid var(--style-base);
  border-radius: 50%;
  font-size: 30px;
  color: var(--style-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.contact-page__contact-list li:hover .icon {
  background-color: var(--style-base);
  color: var(--style-white);
}

.contact-page__contact-list li .content {
  margin-left: 20px;
}

.contact-page__contact-list li .content h4 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 28px;
}

.contact-page__contact-list li .content h4 a {
  color: var(--style-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.contact-page__contact-list li .content h4 a:hover {
  color: var(--style-base);
}

.contact-page__right {
  position: relative;
  display: block;
}

.contact-page__content {
  position: relative;
  display: block;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.07);
  z-index: 1;
}

.contact-page__content-inner {
  position: relative;
  display: block;
  padding: 60px 80px 60px;
  border: 1px solid var(--style-bdr-color);
  overflow: hidden;
  z-index: 1;
}

.contact-page-shape-1 {
  position: absolute;
  bottom: 0;
  left: 80px;
  z-index: -1;
}

.contact-page-shape-1 img {
  width: auto;
}

.contact-page__right .section-title {
  margin-bottom: 30px;
}

.contact-page__right .section-title__title {
  font-size: 36px;
  margin-top: 0;
  line-height: 46px;
}

.contact-page__form {
  position: relative;
  display: block;
}

.contact-page__form-input-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.contact-page__form-input-box input[type="text"],
.contact-page__form-input-box input[type="email"] {
  height: 50px;
  width: 100%;
  border: none;
  background-color: var(--style-extra);
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-size: 14px;
  color: var(--style-gray);
  display: block;
  font-weight: 500;
}

.contact-page__form-input-box textarea {
  font-size: 14px;
  color: var(--style-gray);
  height: 150px;
  width: 100%;
  background-color: var(--style-extra);
  padding: 15px 30px 30px;
  border: none;
  outline: none;
  margin-bottom: 0px;
  font-weight: 500;
}

.contact-page__form-input-box.text-message-box {
  height: 150px;
}

.contact-page__btn {
  border: none;
}

/*--------------------------------------------------------------
# About Four
--------------------------------------------------------------*/
.about-four {
  position: relative;
  display: block;
  padding: 120px 0 120px;
}

.about-four__left {
  position: relative;
  display: block;
  margin-left: 100px;
  margin-right: 70px;
}

.about-four__img-box {
  position: relative;
  display: block;
  z-index: 1;
}

.about-four__img-one {
  position: relative;
  display: block;
}

.about-four__img-one img {
  width: 100%;
}

.about-four__img-two {
  position: absolute;
  top: 50%;
  left: -100px;
  transform: translateY(-50%);
  z-index: 2;
}

.about-four__img-two img {
  width: auto;
}

.about-four__border {
  position: absolute;
  top: 50%;
  left: -30px;
  transform: translateY(-50%);
  border-style: solid;
  border-width: 2px;
  border-color: rgb(254, 144, 67);
  background-color: rgba(30, 50, 38, 0);
  width: 184px;
  height: 428px;
  z-index: 1;
}

.about-four__right {
  position: relative;
  display: block;
}

.about-four__right .section-title {
  margin-bottom: 29px;
}

.about-four__points {
  position: relative;
  display: inline-block;
  margin-top: 33px;
  margin-bottom: 46px;
}

.about-four__points li {
  position: relative;
  display: flex;
  align-items: center;
}

.about-four__points li .icon {
  width: 15px;
  height: 15px;
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--style-base);
  border-radius: 50%;
  font-size: 9px;
  justify-content: center;
  color: var(--style-white);
}

.about-four__points li .text {
  margin-left: 10px;
  font-size: 16px;
  font-weight: 800;
  line-height: 30px;
}

.about-four__points li .text p {
  color: var(--style-black);
}

/*--------------------------------------------------------------
# Brand One
--------------------------------------------------------------*/
.brand-two {
  position: relative;
  display: block;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1), inset 0px 1px 0px 0px rgba(230, 225, 216, 0.004);
  border-top: 1px solid var(--style-bdr-color);
  padding: 80px 0 80px;
  z-index: 1;
}

.brand-two .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.brand-two .swiper-slide img {
  -webkit-transition: 500ms;
  transition: 500ms;
  opacity: 0.2;
  max-width: 100%;
}

.brand-two .swiper-slide img:hover {
  opacity: 1;
}

/*--------------------------------------------------------------
# Feature Three
--------------------------------------------------------------*/
.feature-three {
  padding-top: 120px;
}

/*--------------------------------------------------------------
# Service Available TWo
--------------------------------------------------------------*/
.service-available-two {
  padding-top: 120px;
}

/*--------------------------------------------------------------
# Checkout
--------------------------------------------------------------*/
.checkout-page {
  position: relative;
  display: block;
  padding: 110px 0 120px;
}

.checkout-page .billing_details {
  position: relative;
  display: block;
}

.billing_title {
  position: relative;
  display: block;
  margin-bottom: 36px;
}

.billing_title p {
  font-size: 16px;
  margin: 0;
}

.billing_title span {
  color: var(--style-primary);
  font-weight: 600;
}

.billing_title h2 {
  font-size: 30px;
  line-height: 30px;
  margin: 0;
  font-weight: 800;
  margin-top: 17px;
}

.billing_details_form {
  position: relative;
  display: block;
}

.billing_details_form .bs-gutter-x-20 {
  --bs-gutter-x: 20px;
}


.billing_details_form .btn-light {
  border: none;
}

.billing_details_form .btn-light:hover {
  border: none;
}

.billing_input_box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.billing_input_box input[type="text"],
.billing_input_box input[type="email"],
.billing_input_box input[type="tel"],
.billing_input_box input[type="password"] {
  height: 50px;
  width: 100%;
  border: none;
  background-color: var(--style-extra);
  padding-left: 30px;
  padding-right: 30px;
  border-radius: 0;
  outline: none;
  font-size: 14px;
  color: var(--style-gray);
  display: block;
  font-weight: 500;
}

.billing_details .checked-box {
  position: relative;
  display: block;
  margin-top: -7px;
}

.billing_details .checked-box label {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  margin-right: 0px;
  margin-bottom: 0;
  color: var(--style-gray);
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  text-transform: none;
  cursor: pointer;
  font-family: var(--style-font);
}

.billing_details .checked-box input[type="checkbox"] {
  display: none;
}

.billing_details .checked-box input[type="checkbox"]+label span {
  position: absolute;
  top: 4px;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  vertical-align: middle;
  background-color: transparent;
  background: var(--style-base);
  cursor: pointer;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.billing_details .checked-box label span:before {
  position: absolute;
  top: 5px;
  left: 6px;
  display: block;
  border-bottom: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  content: '';
  width: 6px;
  height: 9px;
  pointer-events: none;
  -webkit-transform-origin: 66% 66%;
  -ms-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  opacity: 0;
}

.billing_details.checked-box input[type="checkbox"]:checked+label span {
  border-color: #ffffff;
}

.billing_details .checked-box input[type="checkbox"]:checked+label span:before {
  opacity: 1;
}

.ship_different_address_title {
  margin-top: 47px;
}

.ship_different_address_title h2 span::before {
  position: relative;
  display: inline-block;
  color: var(--style-base);
  font-size: 20px;
  top: -2px;
  left: 15px;
}

.ship_different_address_form .ship_different_input {
  position: relative;
  display: block;
  height: 120px;
}

.ship_different_address_form .ship_different_input textarea {
  font-size: 14px;
  color: var(--style-gray);
  height: 120px;
  width: 100%;
  background-color: var(--style-extra);
  padding: 15px 30px 20px;
  border: none;
  outline: none;
  margin-bottom: 0px;
  border-radius: 0;
  font-weight: 500;
}

.billing_details_form .select-box .nice-select {
  background-color: var(--style-extra);
  border-radius: 0;
  color: var(--style-gray);
  font-size: 14px;
  font-weight: 500;
  height: 50px;
  line-height: 50px;
  padding-left: 30px;
  padding-right: 30px;
  width: 100%;
  margin-bottom: 20px;
}

.billing_details_form .select-box .nice-select:after {
  position: absolute;
  right: 30px;
}

.your_order {
  position: relative;
  display: block;
  padding-top: 36px;
}

.your_order h2 {
  font-size: 30px;
  line-height: 30px;
  font-weight: 800;
  margin: 0;
  margin-bottom: 56px;
}

.order_table_box {
  position: relative;
  width: 100%;
  border-bottom: 1px solid var(--style-bdr-color);
  padding-bottom: 24px;
}

.order_table_detail {
  position: relative;
  width: 100%;
}


.order_table_detail tbody td {
  padding: 29px 0 2px;
}

.order_table_detail tbody td.pro__title {
  color: var(--style-gray);
  font-size: 16px;
  line-height: 18px;
}

.order_table_detail tbody td.pro__price {
  color: var(--style-gray);
  font-size: 16px;
  line-height: 18px;
  text-align: right;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.checkout__payment {
  background-color: var(--style-extra);
  border-radius: 0;
  padding: 49px 50px 18px;
  margin-bottom: 30px;
}

.checkout__payment__item+.checkout__payment__item {
  margin-top: 41px;
}


.checkout__payment__title {
  display: flex;
  color: var(--style-black);
  font-size: 18px;
  font-weight: 800;
  margin: 0;
  align-items: center;
  margin-bottom: 27px;
  cursor: pointer;
  letter-spacing: var(--style-letter-spacing-two);
}

.checkout__payment__title::before {
  content: '';
  width: 20px;
  height: 20px;
  background-color: #ffffff;
  border: 2px solid var(--style-bdr-color);
  border-radius: 50%;
  margin-right: 10px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 10px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  position: relative;
  top: 0px;
  transition: all 500ms ease;
}

.checkout__payment__title img {
  margin-left: 15px;
}

.checkout__payment__item--active .checkout__payment__title::before {
  background-color: var(--style-base);
  border-color: var(--style-base);
  content: '\f00c';
}

.checkout__payment__content {
  font-size: 16px;
  line-height: 30px;
  color: var(--style-gray);
}

/*--------------------------------------------------------------
# News Carousel Page
--------------------------------------------------------------*/
.news-carousel-page {
  position: relative;
  display: block;
  padding: 120px 0 165px;
}

.news-carousel-page .news-one__single {
  margin-bottom: 0;
}

.carousel-dot-style.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.carousel-dot-style.owl-carousel .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.carousel-dot-style.owl-carousel .owl-item.active {
  opacity: 1;
  visibility: visible;
}

.carousel-dot-style.owl-carousel .owl-dots {
  position: absolute;
  bottom: -48px;
  left: 0px;
  right: 0;
  text-align: center;
  margin: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-dot-style.owl-carousel .owl-dots .owl-dot {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--style-primary);
  margin: 0px 5px;
  padding: 0px;
  transition: all 100ms linear;
  transition-delay: 0.1s;
}

.carousel-dot-style.owl-carousel .owl-dot.active {
  width: 16px;
  height: 16px;
  background-color: var(--style-base);
}

.carousel-dot-style.owl-carousel .owl-dot:focus {
  outline: none;
}

.carousel-dot-style.owl-carousel .owl-dots .owl-dot span {
  display: none;
}

/*--------------------------------------------------------------
# Gallery Carousel Page
--------------------------------------------------------------*/
.gallery-carousel-page {
  position: relative;
  display: block;
  padding: 120px 0 165px;
}

.gallery-carousel-page .gallery-page__single {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Testimonial Carousel Page
--------------------------------------------------------------*/
.testimonials-carousel-page {
  position: relative;
  display: block;
  padding: 152px 0 165px;
}

/*--------------------------------------------------------------
# Team Carousel Page
--------------------------------------------------------------*/
.team-carousel-page {
  position: relative;
  display: block;
  padding: 120px 0 165px;
}

.team-carousel-page .team-one__single {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Services Carousel Page
--------------------------------------------------------------*/
.services-carousel-page {
  position: relative;
  display: block;
  padding: 120px 0 165px;
  background-color: var(--style-extra);
}

.services-carousel-page .services-one__single {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Boxed Version
--------------------------------------------------------------*/

body.boxed-wrapper {
  background-color: #f7f5f1;
}

.boxed-wrapper .page-wrapper {
  max-width: 1530px;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 100px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 0px 100px 0px rgba(0, 0, 0, 0.08);
}

@media (max-width:767px){
  .news-details__content{
    text-align: center;
  }
}