
:root {
  --theme-font: 'Plus Jakarta Sans', sans-serif;
  --theme-reey-font: "reeyregular";
  --theme-gray: #696e77;
  --theme-gray-rgb: 105, 110, 119;
  --theme-white: #ffffff;
  --theme-white-rgb: 255, 255, 255;
  --theme-base: #56227F;
  --theme-base-rgb: 1, 95, 201;
  --theme-black: #070707;
  --theme-black-rgb: 22, 36, 61;
  --theme-primary: #FCB407;
  --theme-primary-rgb: 12, 224, 255;
  --theme-extra: #f2f5f9;
  --theme-extra-rgb: 242, 245, 249;
  --theme--bdr-color: #e0e4e8;
  --theme--bdr-color-rgb: 224, 228, 232;
  --theme--bdr-radius: 10px;
  --theme-letter-spacing: -0.02em;

}

.row {
  --bs-gutter-x: 30px;
}

.gutter-y-30 {
  --bs-gutter-y: 30px;
}

body {
  font-family: var(--theme-font);
  color: var(--theme-gray);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
}

body.locked {
  overflow: hidden;
}

a {
  color: var(--theme-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(--theme-black);
  margin: 0;
}

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(--theme-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
--------------------------------------------------------------*/
.custom-cursor__cursor {
  width: 25px;
  height: 25px;
  border-radius: 100%;
  border: 1px solid var(--theme-base, #a47c68);
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
  position: fixed;
  pointer-events: none;
  left: 0;
  top: 0;
  -webkit-transform: translate(calc(-50% + 5px), -50%);
  transform: translate(calc(-50% + 5px), -50%);
  z-index: 999991;
}

.custom-cursor__cursor-two {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: var(--theme-base);
  opacity: .3;
  position: fixed;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  -webkit-transition: width .3s, height .3s, opacity .3s;
  transition: width .3s, height .3s, opacity .3s;
  z-index: 999991;
}

.custom-cursor__hover {
  background-color: var(--theme-base);
  opacity: 0.4;
}

.custom-cursor__innerhover {
  width: 25px;
  height: 25px;
  opacity: .4;
}


.thm-btn {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  outline: none !important;
  background-color: var(--theme-base);
  color: var(--theme-white);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: var(--theme-letter-spacing);
  border-radius: var(--theme--bdr-radius);
  padding: 17px 40px 17px;
  transition: all 0.5s linear;
  overflow: hidden;
  z-index: 1;

}

.thm-btn:hover {
  color: var(--theme-white);
  background-color: var(--theme-primary);
}

.thm-btn:before {
  position: absolute;
  content: '';
  background-color: var(--theme-black);
  width: 120%;
  height: 0;
  padding-bottom: 120%;
  top: -110%;
  left: -10%;
  border-radius: 50%;
  transform: translate3d(0, 68%, 0) scale3d(0, 0, 0);
  z-index: -1;
}

.thm-btn:hover::before {
  transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
  transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}

.thm-btn:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  background-color: var(--theme-black);
  transform: translate3d(0, -100%, 0);
  transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
  z-index: -1;
}

.thm-btn:hover::after {
  transform: translate3d(0, 0, 0);
  transition-duration: 0.05s;
  transition-delay: 0.4s;
  transition-timing-function: linear;
}

.section-title {
  position: relative;
  display: block;
  margin-top: -7px;
  margin-bottom: 48px;
}

.section-sub-title-box {
  position: relative;
  display: inline-block;
  margin-left: 40px;
}

.section-sub-title {
  font-size: 16px;
  color: var(--theme-black);
  font-weight: 700;
  line-height: 26px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 3px;
}

.section-title-shape-1 {
  position: absolute;
  top: -1px;
  left: -40px;
}

.section-title-shape-1 img {
  width: auto;
}

.section-title-shape-2 {
  position: absolute;
  top: -1px;
  right: -39px;
}

.section-title-shape-2 img {
  width: auto;
}

.section-title__title {
  margin: 0;
  color: var(--theme-black);
  font-size: 38px;
  line-height: 50px;
  font-weight: 700;
  letter-spacing: var(--theme-letter-spacing);
}

.bootstrap-select .btn-light:not(:disabled):not(.disabled).active,
.bootstrap-select .btn-light:not(:disabled):not(.disabled):active,
.bootstrap-select .show>.btn-light.dropdown-toggle {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  outline: none !important;
}

.bootstrap-select>.dropdown-toggle {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.bootstrap-select .dropdown-toggle:focus,
.bootstrap-select>select.mobile-device:focus+.dropdown-toggle {
  outline: none !important;
}

.bootstrap-select .dropdown-menu {
  border: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  z-index: 991;
  border-radius: 0;
}

.bootstrap-select .dropdown-menu>li+li>a {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.bootstrap-select .dropdown-menu>li.selected>a {
  background: var(--theme-primary);
  color: #fff;
}

.bootstrap-select .dropdown-menu>li>a {
  font-size: 16px;
  font-weight: 500;
  padding: 4px 20px;
  color: #ffffff;
  background: var(--theme-base);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.bootstrap-select .dropdown-menu>li>a:hover {
  background: var(--theme-white);
  color: var(--theme-base);
  cursor: pointer;
}

.preloader {
  position: fixed;
  background-color: #fff;
  background-position: center center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  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;
}

.preloader__image {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  background-image: url(https://lntedutech.com/wp-content/uploads/2022/06/edutech_logo.png.webp);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 60px auto;
  width: 100%;
  height: 100%;
}

/* scroll to top */
.scroll-to-top {
  display: inline-block;
  width: 45px;
  height: 45px;
  background: var(--theme-base);
  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%;
  transition: all 0.4s ease;
}

.scroll-to-top i {
  color: #ffffff;
  font-size: 18px;
  line-height: 45px;
}

.scroll-to-top:hover {
  background-color: var(--theme-base);
}

.scroll-to-top:hover i {
  color: #fff;
}


/*--------------------------------------------------------------
# Navigations One
--------------------------------------------------------------*/
.main-header {
  position: relative;
  display: block;
  width: 100%;
  background: transparent;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 99;
  position: relative;
}

.main-header__top {
  position: relative;
  display: block;
  background-color: var(--theme-black);
  padding: 7px 0;
}

.main-header__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-header__top-address {
  position: relative;
  display: block;
}

.main-header__top-address-list {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header__top-address-list li {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header__top-address-list li+li {
  margin-left: 30px;
}

.main-header__top-address-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header__top-address-list li .icon span {
  font-size: 13px;
  color: var(--theme-base);
}

.main-header__top-address-list li .text {
  margin-left: 10px;
}

.main-header__top-address-list li .text p {
  font-size: 13px;
  color: #97a2b7;
  line-height: 15px;
  letter-spacing: var(--theme-letter-spacing);
}

.main-header__top-address-list li .text p a {
  color: #97a2b7;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header__top-address-list li .text p a:hover {
  color: var(--theme-base);
}

.main-header__top-right {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header__top-menu-box {
  position: relative;
  display: block;
}

.main-header__top-menu {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header__top-menu li+li {
  margin-left: 20px;
}

.main-header__top-menu li a {
  font-size: 13px;
  color: #97a2b7;
  display: flex;
  align-items: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header__top-menu li a:hover {
  color: var(--theme-base);
}

.main-header__top-social-box {
  margin-left: 40px;
}

.main-header__top-social {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header__top-social a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 15px;
  color: var(--theme-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header__top-social a:hover {
  color: var(--theme-base);
}

.main-header__top-social a+a {
  margin-left: 25px;
}

.main-menu {
  position: relative;
  display: block;
}

.main-menu__wrapper {
  position: relative;
  display: block;
}

.main-menu__wrapper-inner {
  display: block;
  padding: 20px 0;
}

.main-menu__left {
  display: block;
  float: left;
}

.main-menu__logo {
  float: left;
  display: block;
  padding: 5px 0px;
  margin-right: 45px;
}

.main-menu__main-menu-box {
  display: flex;
  float: left;
  align-items: center;
  padding-left: 50px;
  border-radius: var(--theme--bdr-radius);
}

.main-menu__main-menu-box-inner {
  display: block;
}

.main-menu__main-menu-box-search-get-quote-btn {
  display: flex;
  align-items: center;
  padding-left: 80px;
}

.main-menu__main-menu-box-search {
  position: relative;
  display: flex;
  align-items: center;
  margin-right: 20px;
}

.main-menu__main-menu-box-search:before {
  position: absolute;
  top: -5px;
  bottom: -5px;
  content: "";
  left: -20px;
  width: 1px;
  background-color: var(--theme--bdr-color);
}

.main-menu__search {
  font-size: 20px;
  color: var(--theme-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__search:hover {
  color: var(--theme-base);
}

.main-menu__main-menu-box-get-quote-btn {
  font-size: 14px;
  padding: 12px 15px 12px;
  
}

.main-menu__right {
  position: relative;
  display: block;
  float: right;
}

.main-menu__call {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu__call-icon {
  position: relative;
  height: 50px;
  width: 50px;
  border: 2px solid var(--theme--bdr-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-primary);
  font-size: 20px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__call-icon:hover {
  background-color: var(--theme-base);
  border: 2px solid var(--theme-base);
  color: var(--theme-white);
}

.main-menu__call-content {
  position: relative;
  margin-left: 10px;
  top: -2px;
}

.main-menu__call-content a {
  font-size: 16px;
  font-weight: 700;
  color: var(--theme-black);
  display: inline-block;
  letter-spacing: var(--theme-letter-spacing);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__call-content a:hover {
  color: var(--theme-base);
}

.main-menu__call-content p {
  font-size: 14px;
  letter-spacing: var(--theme-letter-spacing);
  line-height: 16px;
}

.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: 12px;
  padding-bottom: 12px;
  position: relative;
}

.main-menu .main-menu__list>li+li,
.stricky-header .main-menu__list>li+li {
  margin-left: 20px;
}

.main-menu .main-menu__list>li>a,
.stricky-header .main-menu__list>li>a {
  font-size: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--theme-gray);
  letter-spacing: var(--theme-letter-spacing);
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-weight: 600;
}

.main-menu .main-menu__list>li>a::before,
.stricky-header .main-menu__list>li>a::before {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 4px solid var(--theme-base);
  transform: translateX(-50%);
  opacity: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu .main-menu__list>li.current>a::before,
.main-menu .main-menu__list>li:hover>a::before,
.stricky-header .main-menu__list>li.current>a::before,
.stricky-header .main-menu__list>li:hover>a::before {
  opacity: 1;
}

.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(--theme-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: 160%;
  left: 0;
  min-width: 250px;
  -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: #fff;
  overflow: hidden;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  border-radius: var(--theme--bdr-radius);
  padding: 31px 20px 31px;
}

.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(--theme-gray);
  letter-spacing: 0;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 4px 20px 3px;
  letter-spacing: var(--theme-letter-spacing);
  -webkit-transition: 500ms;
  transition: 500ms;
  background-color: var(--theme-white);
  border-radius: var(--theme--bdr-radius);
}

.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(--theme-extra);
  color: var(--theme-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: "\f101";
  font-size: 14px;
  color: var(--theme-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;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.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(--theme-base);
  cursor: pointer;
}

.mobile-nav__buttons a+a {
  margin-left: 10px;
}

.mobile-nav__buttons a:hover {
  color: var(--theme-base);
}

.main-menu .mobile-nav__toggler {
  font-size: 20px;
  color: var(--theme-white);
  cursor: pointer;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.main-menu .mobile-nav__toggler:hover {
  color: var(--theme-primary);
}

@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(--theme-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: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 15px;
  font-size: 18px;
  color: var(--theme-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(--theme-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(--theme-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(--theme-primary);
  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(--theme-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(--theme-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(--theme-white);
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__social a+a {
  margin-left: 30px;
}

.mobile-nav__social a:hover {
  color: var(--theme-primary);
}

.mobile-nav__contact {
  margin-bottom: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}

.mobile-nav__contact li {
  color: var(--theme-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(--theme-primary);
}

.mobile-nav__contact li>i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--theme-primary);
  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;
}

.home-showcase__inner {
  background-color: #fff;
  padding: 40px 40px 34px;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  border-radius: var(--theme--bdr-radius);
}

.home-showcase .row {
  --bs-gutter-x: 42px;
  --bs-gutter-y: 20px;
}

.home-showcase__image {
  position: relative;
  background-color: var(--theme-base);
  overflow: hidden;
  border-radius: 10px;
}

.home-showcase__image>img {
  width: 100%;
  border-radius: 10px;
  -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: 18px;
  font-weight: 700;
  color: var(--theme-black);
  margin-top: 16px;
}

.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(--theme-white, #ffffff);
}



/*--------------------------------------------------------------
# Navigations Two
--------------------------------------------------------------*/
.main-header-two {
  width: 100%;
  background: transparent;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 99;
  position: relative;
}

.main-header-two__top {
  position: relative;
  display: block;
  background-color: transparent;
}

.main-header-two__top-social-box {
  position: relative;
  display: block;
  background-color: #ffffff;
  padding: 7px 0;
  z-index: 1;
}

.main-header-two__top-social-box-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-header-two__top-social-text {
  font-size: 13px;
  letter-spacing: var(--theme-letter-spacing);
}

.main-header-two__top-social-text i {
  color: var(--theme-base);
}

.main-header-two__top-social-text span {
  color: var(--theme-black);
  font-weight: 700;
}

.main-header-two__top-menu-social-box {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header-two__top-menu-box {
  position: relative;
  display: block;
}

.main-header-two__top-menu {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header-two__top-menu li+li {
  margin-left: 20px;
}

.main-header-two__top-menu li a {
  position: relative;
  display: flex;
  font-size: 13px;
  letter-spacing: var(--theme-letter-spacing);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header-two__top-menu li a:hover {
  color: var(--theme-base);
}

.main-header-two__top-social {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 40px;
}

.main-header-two__top-social a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 15px;
  color: var(--theme-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header-two__top-social a:hover {
  color: var(--theme-base);
}

.main-header-two__top-social a+a {
  margin-left: 25px;
}

.main-header-two__top-details {
  position: relative;
  display: block;
  padding: 29px 0 64px;
  background-color: rgb(22, 36, 61);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

.main-header-two__top-details-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-header-two__top-details-list {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.main-header-two__top-details-list li {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header-two__top-details-list li+li {
  margin-left: 40px;
}

.main-header-two__top-details-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header-two__top-details-list li .icon span {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 39px;
  background: rgb(1, 200, 248);
  background: linear-gradient(90deg, rgba(1, 200, 248, 0.8407738095238095) 35%, rgba(1, 102, 195, 0.8099614845938375) 71%);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.main-header-two__top-details-list li .text {
  margin-left: 20px;
}

.main-header-two__top-details-list li .text h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--theme-white);
  line-height: 24px;
  letter-spacing: var(--theme-letter-spacing);
}

.main-header-two__top-details-list li .text p {
  font-size: 16px;
  color: #97a2b7;
  line-height: 24px;
  letter-spacing: var(--theme-letter-spacing);
}

.main-header-two__top-details-list li .text p a {
  color: #97a2b7;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header-two__top-details-list li .text p a:hover {
  color: var(--theme-primary);
}

.main-menu-two {
  margin-top: -35px;
}

.main-menu-two__wrapper {
  position: relative;
  display: block;
}

.main-menu-two__wrapper-inner {
  display: block;
  background-color: var(--theme-white);
  padding-left: 40px;
  border-radius: var(--theme--bdr-radius);
  box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 5%);
}

.main-menu-two__left {
  display: block;
  float: left;
}

.main-menu-two__main-menu-box {
  display: block;
}

.main-menu-two__right {
  position: relative;
  display: block;
  float: right;
}

.main-menu-two__search-box-get-quote {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-two__search-box {
  position: relative;
  display: flex;
  align-items: center;
  margin-right: 30px;
  padding: 25px 0;
}

.main-menu-two__search-box:before {
  position: absolute;
  top: 20px;
  left: -20px;
  bottom: 20px;
  content: "";
  width: 1px;
  background-color: var(--theme--bdr-color);
}

.main-menu-two__search {
  font-size: 20px;
  color: var(--theme-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-two__search:hover {
  color: var(--theme-base);
}

.main-menu-two__get-quote-btn {
  padding-top: 22px;
  padding-bottom: 22px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.main-menu-two .main-menu__list>li,
.stricky-header.main-menu-two .main-menu__list>li {
  padding-top: 22px;
  padding-bottom: 22px;
}

.stricky-header.main-menu-two {
  margin-top: 0;
}

.stricky-header .main-menu-two__wrapper-inner {
  display: block;
  background-color: var(--theme-white);
  padding-left: 0px;
  border-radius: 0;
  box-shadow: none;
}

.stricky-header .main-menu-two__get-quote-btn {
  border-radius: 0;
}

.main-menu-two .main-menu__list>li>ul,
.main-menu-two .main-menu__list>li>ul>li>ul,
.stricky-header.main-menu-two .main-menu__list>li>ul,
.stricky-header.main-menu-two .main-menu__list>li>ul>li>ul {
  top: 100%;
}


.main-menu-two .main-menu__list>li>a::before,
.stricky-header.main-menu-two .main-menu__list>li>a::before {
  display: none;
}

/*--------------------------------------------------------------
# Navigations Three
--------------------------------------------------------------*/
.main-header-three {
  position: relative;
  display: block;
}

.main-menu-three__wrapper {
  position: relative;
  display: block;
}

.main-menu-three__wrapper-inner {
  display: block;
}

.main-menu-three__left {
  display: block;
  float: left;
}

.main-menu-three__logo {
  display: block;
  float: left;
  padding: 41px 0;
  padding-right: 170px;
}

.main-menu-three__main-menu-box {
  display: block;
  float: left;
}

.main-menu-three__right {
  display: block;
  float: right;
}

.main-menu-three__search-get-quote-btn {
  position: relative;
  display: flex;
  align-items: center;
  padding: 30px 0;
}

.main-menu-three__search-box {
  position: relative;
  display: flex;
  align-items: center;
  margin-right: 20px;
  padding: 15px 0;
}

.main-menu-three__search-box:before {
  position: absolute;
  top: 10px;
  left: -20px;
  bottom: 10px;
  content: "";
  width: 1px;
  background-color: var(--theme--bdr-color);
}

.main-menu-three__search {
  font-size: 20px;
  color: var(--theme-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-three__search:hover {
  color: var(--theme-base);
}

.main-menu-three__get-quote-btn {
  font-size: 14px;
  padding: 12px 30px 12px;
}

.main-menu-three .main-menu__list>li,
.stricky-header.main-menu-three .main-menu__list>li {
  padding-top: 42px;
  padding-bottom: 42px;
}

.main-menu-three .main-menu__list>li+li,
.stricky-header.main-menu-three .main-menu__list>li+li {
  margin-left: 50px;
}

.main-menu-three .main-menu__list>li>ul,
.main-menu-three .main-menu__list>li>ul>li>ul,
.stricky-header.main-menu-three .main-menu__list>li>ul,
.stricky-header.main-menu-three .main-menu__list>li>ul>li>ul {
  top: 100%;
}

.main-menu-three .main-menu__list>li>a::before,
.stricky-header.main-menu-three .main-menu__list>li>a::before {
  display: none;
}

/*--------------------------------------------------------------
# Search Popup
--------------------------------------------------------------*/
.search-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  padding-left: 20px;
  padding-right: 20px;
  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-transform: translateY(-110%);
  transform: translateY(-110%);
  -webkit-transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease, -webkit-transform 500ms ease;
}

.search-popup.active {
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}

.search-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--theme-base);
  opacity: 0.75;
  cursor: pointer;
}

.search-popup__content {
  width: 100%;
  max-width: 560px;
}

.search-popup__content form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.search-popup__content form input[type="search"],
.search-popup__content form input[type="text"] {
  width: 100%;
  background-color: #fff;
  font-size: 16px;
  border: none;
  outline: none;
  height: 66px;
  padding-left: 30px;
}

.search-popup__content .thm-btn {
  padding: 0;
  width: 68px;
  height: 68px;
  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;
  position: absolute;
  top: 0;
  right: -1px;
  border-radius: 0;
  background-color: var(--theme-base);
  border: 0;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.search-popup__content .thm-btn:hover {
  background-color: var(--theme-primary);
}

.search-popup__content .thm-btn:before,
.search-popup__content .thm-btn:after {
  display: none;
}

/*--------------------------------------------------------------
# Main Slider
--------------------------------------------------------------*/
.main-slider {
  position: relative;
  display: block;
  z-index: 91;
}

.main-slider .swiper-slide {
  position: relative;
  background-color: var(--theme-extra);
}

.main-slider .container {
  position: relative;
  padding-top: 75px;
  padding-bottom: 65px;
  z-index: 30;
}

.main-slider .image-layer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 63%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 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;
  left: -1px;
  top: 0px;
  bottom: 0;
  width: 535px;
  content: "";
  background-image: -moz-linear-gradient(0deg, rgb(243, 246, 248) 0%, rgba(243, 246, 248, 0) 100%);
  background-image: -webkit-linear-gradient(0deg, rgb(243, 246, 248) 0%, rgba(243, 246, 248, 0) 100%);
  background-image: -ms-linear-gradient(0deg, rgb(243, 246, 248) 0%, rgba(243, 246, 248, 0) 100%);
  z-index: -1;
}

.main-slider-shape-1 {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  mix-blend-mode: luminosity;
  opacity: .20;
  z-index: -1;
}

.main-slider-shape-1 img {
  width: auto;
}

.main-slider__content {
  position: relative;
  display: block;
  text-align: left;
}

.main-slider__title {
  position: relative;
  font-size: 45px;
  color: var(--theme-black);
  font-weight: 400;
  line-height: 60px;
  letter-spacing: -0.04em;
  margin-bottom: 29px;
  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__title span {
  color: var(--theme-base);
  font-weight: 700;
}

.main-slider__title:before {
  
}

.main-slider__text {
  font-size: 18px;
  color: var(--theme-gray);
  font-weight: 600;
  letter-spacing: var(--theme-letter-spacing);
  line-height: 40px;
  padding-bottom: 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__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 .swiper-slide-active .main-slider__title,
.main-slider .swiper-slide-active .main-slider__text,
.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: 50%;
  left: 120px;
  z-index: 100;
  transform: translateY(-50%) translateX(0);
  display: flex;
  align-items: flex-end;
  flex-direction: column;
}


.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(--theme-black-rgb), .20);
  border: 2px solid rgba(var(--theme-black-rgb), .20);
  border-radius: 50%;
  margin: 0;
  text-align: center;
  transition: all 500ms ease;
}

.main-slider__nav .swiper-button-next:hover,
.main-slider__nav .swiper-button-prev:hover {
  color: rgba(var(--theme-black-rgb), 1);
  border: 2px solid rgba(var(--theme-black-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;
  top: -35px;
  margin-bottom: -35px;
}

.main-slider-two .swiper-slide {
  position: relative;
}

.main-slider-two .container {
  position: relative;
  padding-top: 188px;
  padding-bottom: 160px;
  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: 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;
  max-width: 940px;
  width: 100%;
  content: "";
  background-color: rgba(var(--theme-black-rgb), .85);
  clip-path: polygon(0 0, 87% 0, 100% 100%, 0% 100%);
  z-index: -1;
}

.image-layer-two:after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 48%;
  width: 40px;
  content: "";
  background-color: rgba(var(--theme-black-rgb), .85);
  z-index: -1;
  transform: translateX(-50%) rotate(-10deg);
}

.main-slider-two__inner {
  position: relative;
  display: block;
}

.main-slider-two__content {
  position: relative;
  display: block;
}

.main-slider-two__content:before {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 188px;
  width: 5px;
  background-color: rgba(var(--theme-white-rgb), .10);
  content: "";
}

.main-slider-two__title {
  position: relative;
  font-size: 60px;
  color: var(--theme-white);
  font-weight: 700;
  line-height: 60px;
  letter-spacing: -0.04em;
  margin-bottom: 21px;
  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__text {
  font-size: 18px;
  color: var(--theme-white);
  font-weight: 400;
  letter-spacing: var(--theme-letter-spacing);
  line-height: 30px;
  margin-left: 30px;
  padding-bottom: 46px;
  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 .swiper-slide-active .main-slider-two__text {
  visibility: visible;
  opacity: 0.70;
  -webkit-transform: translateY(0) translateX(0);
  transform: translateY(0) translateX(0);
}

.main-slider-two__btn-box {
  position: relative;
  display: block;
  margin-left: 30px;
  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 .swiper-slide-active .main-slider-two__title,
.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__right {
  position: relative;
  display: block;
}

.main-slider-two__video-link {
  position: absolute;
  left: 30px;
  top: 290px;
  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;
}

.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: 85px;
  height: 85px;
  line-height: 85px;
  text-align: center;
  font-size: 18px;
  color: var(--theme-black);
  background-color: var(--theme-white);
  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;
}

.main-slider-two__video-icon:hover {
  background-color: var(--theme-primary);
  color: var(--theme-black);
}

.main-slider-two__video-icon:before {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  content: "";
  border-radius: 50%;
  border: 1px solid var(--theme-white);
  opacity: 0.1;
  z-index: 1;
}

.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: 125px;
  height: 125px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(var(--theme-primary-rgb), 0.6);
  -o-box-shadow: 0 0 0 0 rgba(var(--theme-primary-rgb), 0.6);
  -webkit-box-shadow: 0 0 0 0 rgba(var(--theme-primary-rgb), 0.6);
  box-shadow: 0 0 0 0 rgba(var(--theme-primary-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 {
  font-size: 16px;
  color: var(--theme-white);
  font-weight: 700;
  line-height: 19px;
  letter-spacing: var(--theme-letter-spacing);
  margin-left: 35px;
}

.main-slider-two .main-slider__nav {
  top: 52%;
}

.main-slider-two .main-slider__nav .swiper-button-next,
.main-slider-two .main-slider__nav .swiper-button-prev {
  color: rgba(var(--theme-white-rgb), .20);
  border: 2px solid rgba(var(--theme-white-rgb), .20);
}

.main-slider-two .main-slider__nav .swiper-button-next:hover,
.main-slider-two .main-slider__nav .swiper-button-prev:hover {
  color: rgba(var(--theme-white-rgb), 1);
  border: 2px solid rgba(var(--theme-white-rgb), 1);
}

/*--------------------------------------------------------------
# Main Slider Three
--------------------------------------------------------------*/
.main-slider-three {
  position: relative;
  display: block;
}

.main-slider-three .swiper-slide {
  position: relative;
}

.main-slider-three .container {
  position: relative;
  padding-top: 177px;
  padding-bottom: 185px;
  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: 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(17, 29, 50, .60);
  z-index: -1;
}

.main-slider-three__content {
  position: relative;
  display: block;
}

.main-slider-three__title {
  position: relative;
  font-size: 70px;
  color: var(--theme-white);
  font-weight: 700;
  line-height: 70px;
  margin-bottom: 19px;
  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__text {
  font-size: 18px;
  color: var(--theme-white);
  font-weight: 400;
  letter-spacing: var(--theme-letter-spacing);
  line-height: 30px;
  padding-bottom: 41px;
  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 .swiper-slide-active .main-slider-three__text {
  visibility: visible;
  opacity: 0.70;
  -webkit-transform: translateY(0) translateX(0);
  transform: translateY(0) translateX(0);
}

.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 .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: flex-end;
  flex-direction: column;
}


.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(--theme-white-rgb), .20);
  border: 2px solid rgba(var(--theme-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(--theme-white-rgb), 1);
  border: 2px solid rgba(var(--theme-white-rgb), 1);
}

.main-slider-three__nav .swiper-button-next::after,
.main-slider-three__nav .swiper-button-prev::after {
  display: none;
}

.main-slider-three__nav .swiper-button-prev {
  margin-bottom: 10px;
}

/*--------------------------------------------------------------
# Feature One
--------------------------------------------------------------*/
.feature-one {
  position: relative;
  display: block;
  padding: 100px 0 100px;
  background-color: #eee;
}

.feature-one__inner {
  position: relative;
  display: block;
  counter-reset: count;
}

.feature-one__single {
  position: relative;
  display: block;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  border-radius: var(--theme--bdr-radius);
  margin-bottom: 30px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.feature-one__single:hover {
  transform: translateY(-10px);
}

.feature-one__single-inner {
  position: relative;
  display: block;
  padding: 132px 50px 32px;
  border-radius: var(--theme--bdr-radius);
  overflow: hidden;
  z-index: 1;
}

.feature-one__single-inner:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: var(--theme-black);
  border-radius: var(--theme--bdr-radius);
  transition: all 500ms ease;
  transform: translate3d(0px, 100%, 0px);
  z-index: -1;
}

.feature-one__single:hover .feature-one__single-inner:before {
  transform: translate3d(0px, 0, 0px);
}

.feature-one__icon {
  position: absolute;
  left: -40px;
  top: -90px;
  border-radius: 50%;
  background-image: -moz-linear-gradient(90deg, rgb(1, 95, 201) 0%, rgb(12, 224, 255) 100%);
  background-image: -webkit-linear-gradient(90deg, rgb(1, 95, 201) 0%, rgb(12, 224, 255) 100%);
  background-image: -ms-linear-gradient(90deg, rgb(1, 95, 201) 0%, rgb(12, 224, 255) 100%);
  width: 197px;
  height: 197px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.feature-one__single:hover .feature-one__icon {
  background-image: -moz-linear-gradient(0deg, rgb(12, 224, 255) 0%, rgb(1, 95, 201) 100%);
  background-image: -webkit-linear-gradient(0deg, rgb(12, 224, 255) 0%, rgb(1, 95, 201) 100%);
  background-image: -ms-linear-gradient(0deg, rgb(12, 224, 255) 0%, rgb(1, 95, 201) 100%);
}

.feature-one__icon span {
  font-size: 65px;
  color: var(--theme-white);
  position: relative;
  display: inline-block;
  top: 107px;
  left: 81px;
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.feature-one__single:hover .feature-one__icon span {
  transform: scale(.9);
}

.feature-one__count {
  position: absolute;
  top: 50px;
  right: 54px;
  height: 45px;
  width: 56px;
  text-align: center;
}

.feature-one__count:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  color: transparent;
  -webkit-text-stroke: 1px #e0e4e8;
  font-size: 60px;
  line-height: 45px;
  font-weight: 700;
  counter-increment: count;
  content: counters(count, ".", decimal-leading-zero);
  letter-spacing: var(--theme-letter-spacing);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.feature-one__single:hover .feature-one__count:before {
  -webkit-text-stroke: 1px var(--theme-primary);
}

.feature-one__shape {
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  transition-delay: 400ms;
  transform: translateX(100%);
  z-index: -1;
}

.feature-one__single:hover .feature-one__shape {
  transform: translateX(0%);
}

.feature-one__shape img {
  width: auto;
  mix-blend-mode: luminosity;
  opacity: 0.07;
}

.feature-one__title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: var(--theme-letter-spacing);
  line-height: 34px;
  margin-bottom: 14px;
}

.feature-one__title a {
  color: var(--theme-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.feature-one__single:hover .feature-one__title a {
  color: var(--theme-white);
}

.feature-one__text {
  letter-spacing: var(--theme-letter-spacing);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.feature-one__single:hover .feature-one__text {
  color: #97a2b7;
}

/*--------------------------------------------------------------
# About One
--------------------------------------------------------------*/
.about-one {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  background-color: var(--theme-white);
  z-index: 1;
}

.about-one-bg {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 826px;
  height: 627px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
  mix-blend-mode: luminosity;
  opacity: 0.05;
  z-index: -1;
}

.about-one__left {
  position: relative;
  display: block;
  margin-right: 30px;
}

.about-one__img-box {
  position: relative;
  display: block;
}

.about-one__img {
  position: relative;
  display: block;
}

.about-one__img>img {
  width: 100%;
  border-radius: 20px;
}

.about-one__img-two {
  position: absolute;
  bottom: -105px;
  left: -80px;
}

.about-one__img-two>img {
  width: auto;
  border-radius: 20px;
}

.about-one__experience {
  position: absolute;
  bottom: -62px;
  left: 80px;
  align-items: center;
  background-color: var(--theme-base);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  padding: 27px 40px 23px;
}

.about-one__experience:before {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  content: "";
  border: 2px dashed var(--theme-primary);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
}

.about-one__experience:after {
  position: absolute;
  bottom: 0px;
  right: -65px;
  content: "";
  border-top: 0px solid transparent;
  
  border-bottom: 62px solid transparent;
}

.about-one__experience-year {
  font-size: 30px;
  color: var(--theme-white);
  font-weight: 700;
  line-height: 50px;
  letter-spacing: var(--theme-letter-spacing);
}

.about-one__experience-text {
  font-size: 20px;
  color: var(--theme-white);
  line-height: 24px;
  font-weight: 500;
  letter-spacing: var(--theme-letter-spacing);
  text-align: center;
}

.about-one__shape-1 {
  position: absolute;
  top: 35px;
  right: -30px;
  opacity: .30;
  z-index: -1;
}

.about-one__shape-1 img {
  width: auto;
}

.about-one__right {
  position: relative;
  display: block;
  margin-left: 30px;
}

.about-one__right .section-title {
  margin-bottom: 27px;
}

.about-one__text-1 {
  font-size: 24px;
  color: var(--theme-base);
  font-weight: 500;
  line-height: 40px;
  letter-spacing: var(--theme-letter-spacing);
}

.about-one__points {
  position: relative;
  display: block;
  margin-top: 33px;
  margin-bottom: 37px;
}

.about-one__points li {
  position: relative;
  display: flex;
  align-items: center;
}

.about-one__points li+li {
  margin-top: 8px;
}

.about-one__points li .icon {
  height: 16px;
  width: 16px;
  background-color: var(--theme-primary);
  font-size: 10px;
  color: var(--theme-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-one__points li .text {
  margin-left: 15px;
}

.about-one__points li .text p {
  font-size: 18px;
  color: var(--theme-black);
  font-weight: 500;
  letter-spacing: var(--theme-letter-spacing);
}

.about-one__text-2 {
  font-size: 16px;
  line-height: 26px; padding-bottom: 20px;
  letter-spacing: var(--theme-letter-spacing);
}

.about-one__btn-call {
  position: relative;
  display: flex;
  align-items: center;
  
}

.about-one__call {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 20px;
}

.about-one__call-icon {
  position: relative;
  height: 50px;
  width: 50px;
  border: 2px solid var(--theme--bdr-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-primary);
  font-size: 20px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.about-one__call-icon:hover {
  background-color: var(--theme-base);
  color: var(--theme-white);
  border: 2px solid var(--theme-base);
}

.about-one__call-content {
  position: relative;
  margin-left: 10px;
  top: -2px;
}

.about-one__call-content a {
  font-size: 16px;
  font-weight: 700;
  color: var(--theme-black);
  display: inline-block;
  letter-spacing: var(--theme-letter-spacing);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.about-one__call-content a:hover {
  color: var(--theme-base);
}

.about-one__call-content p {
  font-size: 14px;
  letter-spacing: var(--theme-letter-spacing);
  line-height: 16px;
}

/*--------------------------------------------------------------
# Services One
--------------------------------------------------------------*/
.services-one {
  position: relative;
  display: block;
  background-color: var(--theme-extra);
  padding: 120px 0 90px;
}

.services-one__top {
  position: relative;
  display: block;
}

.services-one__top-left {
  position: relative;
  display: block;
}

.services-one__top-right {
  position: relative;
  display: block;
  margin-left: 170px;
  margin-top: 16px;
}

.services-one__top-text {
  font-size: 18px;
  line-height: 30px;
  letter-spacing: var(--theme-letter-spacing);
}

.services-one__bottom {
  position: relative;
  display: block;
}

.services-one__container {
  position: relative;
  display: block;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.services-one__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.service-one__img {
  position: relative;
  display: block;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  overflow: hidden;
  z-index: 1;
}

.service-one__img:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: rgba(var(--theme-black-rgb), .30);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  transition: all 500ms ease;
  transform: translate3d(0px, -100%, 0px);
  z-index: 1;
}

.services-one__single:hover .service-one__img:before {
  transform: translate3d(0px, 0, 0px);
}

.service-one__img img {
  width: 100%;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-one__single:hover .service-one__img img {
  transform: scale(1.05);
}

.service-one__content {
  position: relative;
  display: block;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.07);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  padding: 37px 30px 28px;
}

.services-one__icon {
  position: absolute;
  top: -40px;
  right: 20px;
  height: 60px;
  width: 60px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.05);
  border-radius: var(--theme--bdr-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 3;
}

.services-one__single:hover .services-one__icon {
  background-color: var(--theme-base);
}

.services-one__icon span {
  position: relative;
  display: inline-block;
  font-size: 36px;
  color: var(--theme-base);
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.services-one__single:hover .services-one__icon span {
  color: var(--theme-white);
  transform: scale(0.9);
}

.service-one__title {
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: var(--theme-letter-spacing);
  margin-bottom: 5px;
}

.service-one__title:before {
  
}

.service-one__title a {
  color: var(--theme-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-one__single:hover .service-one__title a {
  color: var(--theme-base);
}

.service-one__text {
  font-size: 14px;
  letter-spacing: var(--theme-letter-spacing);
  line-height: 24px;
}

/*--------------------------------------------------------------
# Why Choose One
--------------------------------------------------------------*/
.why-choose-one {
  position: relative;
  display: block;
  background-color: var(--theme-black);
  padding: 120px 0 110px;
  overflow: hidden;
  z-index: 1;
}

.why-choose-one-shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.why-choose-one-shape-2 {
  position: absolute;
  right: 596px;
  top: -215px;
  z-index: 2;
}

.why-choose-one-shape-2 img {
  width: auto;
}

.why-choose-one-shape-3 {
  position: absolute;
  top: -260px;
  right: 150px;
}

.why-choose-one-shape-3 img {
  width: auto;
}

.why-choose-one-shape-4 {
  position: absolute;
  top: -81px;
  right: 0;
}

.why-choose-one-shape-4 img {
  width: auto;
}

.why-choose-one-shape-5 {
  position: absolute;
  bottom: -215px;
  right: 0;
  z-index: 1;
}

.why-choose-one-shape-5 img {
  width: auto;
}

.why-choose-one-shape-6 {
  position: absolute;
  bottom: -295px;
  right: 160px;
}

.why-choose-one-shape-6 img {
  width: auto;
}

.why-choose-one-img {
  position: absolute;
  top: -111px;
  bottom: 0;
  right: 0;
  z-index: 3;
}

.why-choose-one-img img {
  width: auto;
}

.why-choose-one__left {
  position: relative;
  display: block;
}

.why-choose-one__left .section-title {
  margin-bottom: 31px;
}

.why-choose-one__left .section-sub-title {
  color: var(--theme-white);
}

.why-choose-one__left .section-title__title {
  color: var(--theme-white);
}

.why-choose-one__text {
  color: #97a2b7;
  line-height: 28px;
  letter-spacing: var(--theme-letter-spacing);
}

.why-choose-one__list-box {
  position: relative;
  display: block;
  width: 100%;
  margin-top: 30px;
}

.why-choose-one__list {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}

.why-choose-one__list li {
  position: relative;
  flex: 0 0 25%;
  max-width: 25%;
  width: 100%; height: 150px;
  text-align: center;
  margin-bottom: 10px;
  padding-left: 5px;
  padding-right: 5px;
}



.why-choose-one__list1 {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}

.why-choose-one__list1 li {
  position: relative;
  flex: 0 0 33%;
  max-width: 33%;
  width: 100%; height: 150px;
  text-align: center;
  margin-bottom: 10px;
  padding-left: 5px;
  padding-right: 5px;
}

.why-choose-one__single {
  position: relative;
  display: block;
  
  padding: 35px 20px 32px;
  overflow: hidden;
}

.why-choose-one__list-icon {
  position: relative;
  display: block;
  margin-bottom: 9px;
}

.why-choose-one__list-icon span {
  font-size: 45px;
  color: var(--theme-primary);
  position: relative;
  display: inline-block;
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.why-choose-one__single:hover .why-choose-one__list-icon span {
  transform: scale(.9);
}

.why-choose-one__list-title-box {
  position: relative;
  display: block;
}

.why-choose-one__list-title-inner {
  position: relative;
  display: block;
  transform: translateY(0%);
  transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease;
  visibility: visible;
  opacity: 1;
}



.why-choose-one__list-title {
  font-size: 20px;
  color: var(--theme-white);
  line-height: 28px;
  letter-spacing: var(--theme-letter-spacing);
}

.why-choose-one__list-text-box {
  position: absolute;
  top: -6px;
  left: 0;
  right: 0;
  transform: translateY(-100px);
  transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease;
  visibility: hidden;
  opacity: 0;
}



.why-choose-one__list-text {
  font-size: 14px;
  color: #97a2b7;
  line-height: 24px;
  letter-spacing: var(--theme-letter-spacing);
}

/*--------------------------------------------------------------
# Get Insurance
--------------------------------------------------------------*/
.get-insurance {
  position: relative;
  display: block;
  padding: 120px 0px 130px;
  background-color: var(--theme-white);
  z-index: 1;
}

.get-insurance:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-image: -moz-linear-gradient(90deg, rgb(242, 245, 249) 0%, rgba(242, 245, 249, 0) 100%);
  background-image: -webkit-linear-gradient(90deg, rgb(242, 245, 249) 0%, rgba(242, 245, 249, 0) 100%);
  background-image: -ms-linear-gradient(90deg, rgb(242, 245, 249) 0%, rgba(242, 245, 249, 0) 100%);
  z-index: -1;
}

.get-insurance-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-blend-mode: luminosity;
  background-color: var(--theme-white);
  opacity: 0.06;
  z-index: -1;
}

.get-insurance__left {
  position: absolute;
  bottom: 0;
  left: 345px;
}

.get-insurance__img {
  position: relative;
  display: block;
  z-index: 3;
}

.get-insurance__img img {
  width: 100%;
}

.get-insurance__author {
  position: absolute;
  top: 40px;
  left: -176px;
  border-radius: 50%;
  background-color: rgb(242, 245, 249);
  width: 550px;
  height: 550px;
}

.get-insurance__author p {
  position: relative;
  display: inline-block;
  font-size: 34px;
  color: var(--theme-black);
  font-family: var(--theme-reey-font);
  top: 194px;
  left: 70px;
}

.get-insurance__circle {
  position: absolute;
  left: 313px;
  top: 173px;
  border-radius: 50%;
  background-color: rgb(255, 255, 255);
  width: 244px;
  height: 244px;
  z-index: 1;
}

.get-insurance__shape-1 {
  position: absolute;
  bottom: 0;
  left: -145px;
}

.get-insurance__shape-1 img {
  width: auto;
}

.get-insurance__right {
  position: relative;
  display: block;
}

.get-insurance__tab {
  position: relative;
  display: block;
}

.get-insurance__tab-box {
  position: relative;
  display: block;
  z-index: 2;
}

.get-insurance__tab-box .tab-buttons {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 35px;
}

.get-insurance__tab-box .tab-buttons .tab-btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.get-insurance__tab-box .tab-buttons .tab-btn+.tab-btn {
  margin-left: 10px;
}

.get-insurance__tab-box .tab-buttons .tab-btn span {
  position: relative;
  display: inline-block;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
  font-size: 14px;
  color: var(--theme-white);
  background-color: var(--theme-black);
  padding: 7px 25px 7px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 5px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: center;
  z-index: 1;
}

.get-insurance__tab-box .tab-buttons .tab-btn.active-btn span {
  color: var(--theme-white);
  background-color: var(--theme-base);
}

.get-insurance__tab-box .tab-buttons .tab-btn span:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0;
  border-radius: 5px;
  content: "";
  background-color: var(--theme-base);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: -1;
}

.get-insurance__tab-box .tab-buttons .tab-btn.active-btn span:before {
  height: 100%;
}

.get-insurance__tab-box .tabs-content {
  position: relative;
  display: block;
}

.get-insurance__tab-box .tabs-content .tab {
  position: relative;
  display: none;
  -webkit-transform: translateY(35px);
  transform: translateY(35px);
  -webkit-transition: all 600ms ease;
  transition: all 600ms ease;
  z-index: 10;
}

.get-insurance__tab-box .tabs-content .tab.active-tab {
  display: block;
  margin-top: 0px;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

.get-insurance__content {
  position: relative;
  display: block;
}

.get-insurance__form {
  position: relative;
  display: block;
}

.get-insurance__content-box {
  position: relative;
  display: block;
}

.get-insurance__input-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.get-insurance__input-box input[type="text"],
.get-insurance__input-box input[type="email"] {
  height: 60px;
  width: 100%;
  border: 1px solid #dfe3e7;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.05);
  outline: none;
  font-size: 16px;
  color: var(--theme-gray);
  font-weight: 400;
  padding: 0 30px 0;
  border-radius: var(--theme--bdr-radius);
}

.get-insurance__input-box .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
  position: relative;
  display: block;
  width: 100% !important;

}

.get-insurance__input-box .bootstrap-select>.dropdown-toggle::after {
  display: none;
}

.get-insurance__input-box .bootstrap-select>.dropdown-toggle {
  position: relative;
  height: 60px;
  outline: none !important;
  border-radius: var(--theme--bdr-radius);
  border: 1px solid #dfe3e7;
  background-color: rgb(255, 255, 255) !important;
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.05);
  margin: 0;
  padding: 0;
  padding-left: 30px;
  padding-right: 30px;
  color: var(--theme-gray) !important;
  font-size: 16px;
  line-height: 60px;
  font-weight: 400;
  box-shadow: none !important;
  background-repeat: no-repeat;
  background-size: 14px 12px;
  background-position: right 25.75px center;
}

.get-insurance__input-box .bootstrap-select>.dropdown-toggle:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
  font-family: "Font Awesome 5 Free";
  content: "\f107";
  font-weight: 900;
  font-size: 14px;
  color: var(--theme-gray);
}

.get-insurance__progress {
  position: relative;
  display: block;
  width: 100%;
  margin-top: 23px;
  margin-bottom: 50px;
}

.get-insurance__progress-single {
  position: relative;
  display: block;
}

.get-insurance__progress-title {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 14px;
  font-weight: 700;
  letter-spacing: var(--theme-letter-spacing);
}

.get-insurance__progress .bar {
  position: relative;
  width: 100%;
  height: 11px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.05);
  border-radius: 5px;
  border: 1px solid #dfe3e7;
}

.get-insurance__progress .bar-inner {
  position: relative;
  display: block;
  width: 0px;
  height: 11px;
  border-radius: 5px;
  background-image: -moz-linear-gradient(0deg, rgb(1, 95, 201) 0%, rgb(12, 224, 255) 100%);
  background-image: -webkit-linear-gradient(0deg, rgb(1, 95, 201) 0%, rgb(12, 224, 255) 100%);
  background-image: -ms-linear-gradient(0deg, rgb(1, 95, 201) 0%, rgb(12, 224, 255) 100%);
  -webkit-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.get-insurance__progress .count-text {
  position: absolute;
  right: -30px;
  bottom: -8px;
  opacity: 0;
  border-style: solid;
  border-width: 2px;
  border-color: rgb(255, 255, 255);
  border-radius: 50%;
  background-color: rgb(22, 36, 61);
  width: 34px;
  height: 34px;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  transition: all 500ms ease;
}

.get-insurance__progress .bar-inner.counted .count-text {
  opacity: 1;
}

.get-insurance__balance-box {
  position: absolute;
  top: 0;
  right: 0;
}

.get-insurance__balance {
  font-size: 16px;
  color: var(--theme-black);
  font-weight: 700;
  letter-spacing: var(--theme-letter-spacing);
}

.get-insurance__btn {
  border: none;
}

/*--------------------------------------------------------------
# Counter One
--------------------------------------------------------------*/
.counter-one {
  position: relative;
  display: block;
  background-color: var(--theme-base);
  padding: 79px 0 71px;
}

.counter-one-shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  opacity: .20;
}

.counter-one-shape-1 img {
  width: auto;
}

.counter-one-shape-2 {
  position: absolute;
  bottom: -35px;
  right: 0;
  opacity: .20;
}

.counter-one-shape-2 img {
  width: auto;
}

.counter-one__single {
  position: relative;
  display: block;
}

.counter-one__top {
  position: relative;
  display: flex;
  margin-bottom: 13px;
}

.counter-one__icon {
  position: relative;
  display: block;
}

.counter-one__icon span {
  position: relative;
  display: flex;
  font-size: 60px;
  color: var(--theme-primary);
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.counter-one__single:hover .counter-one__icon span {
  color: var(--theme-white);
  transform: scale(.9);
}

.counter-one__count-box {
  position: relative;
  margin-left: 16px;
  margin-top: 27px;
}

.counter-one__count-box:before {
  position: absolute;
  top: -26px;
  left: 0;
  height: 4px;
  width: 40px;
  border-radius: 2px;
  content: "";
  background-image: -moz-linear-gradient(0deg, rgb(242, 245, 249) 0%, rgb(12, 224, 255) 100%);
  background-image: -webkit-linear-gradient(0deg, rgb(242, 245, 249) 0%, rgb(12, 224, 255) 100%);
  background-image: -ms-linear-gradient(0deg, rgb(242, 245, 249) 0%, rgb(12, 224, 255) 100%);
}

.counter-one__count-box-inner {
  position: relative;
  display: flex;
  align-items: center;
}

.counter-one__count-box-inner h3 {
  font-size: 36px;
  color: var(--theme-white);
  font-weight: 700;
  line-height: 36px !important;
  font-family: var(--theme-font) !important;
  letter-spacing: var(--theme-letter-spacing);
}

.counter-one__plus {
  font-size: 36px;
  color: var(--theme-white);
  font-weight: 700;
  line-height: 36px !important;
  font-family: var(--theme-font) !important;
  letter-spacing: var(--theme-letter-spacing);
}

.counter-one__text {
  font-size: 24px;
  color: #c2dfff;
  line-height: 34px;
  letter-spacing: var(--theme-letter-spacing);
}

/*--------------------------------------------------------------
# Team One
--------------------------------------------------------------*/
.team-one {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  overflow: hidden;
}

.team-one__shape-1 {
  position: absolute;
  top: -90px;
  right: 0;
  mix-blend-mode: luminosity;
}

.team-one__shape-1 img {
  width: auto;
  mix-blend-mode: luminosity;
  opacity: .15;
  z-index: -1;
}

.team-one .container {
  max-width: 1070px;
}

.team-one .row {
  --bs-gutter-x: 108px;
}

.team-one .section-title {
  margin-bottom: 63px;
}

.team-one .section-sub-title-box {
  margin-left: 0;
}

.team-one__single {
  position: relative;
  display: block;
  margin-bottom: 23px;
}

.team-one__img {
  position: relative;
  display: block;
  border-radius: 20px;
  z-index: 1;
}

.team-one__img:after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  border-radius: 20px;
  border: 2px dashed var(--theme--bdr-color);
  transform: rotate(-7deg);
  transition: all 500ms ease;
  z-index: -1;
}

.team-one__single:hover .team-one__img:after {
  border: 2px dashed var(--theme-primary);
}

.team-one__img-box {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 20px;
  z-index: 1;
}

.team-one__img-box:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  border-radius: 20px;
  background-color: rgba(var(--theme-black-rgb), .50);
  -webkit-transform: perspective(400px) rotateX(90deg) scaleY(0.5);
  -ms-transform: perspective(400px) rotateX(90deg) scaleY(0.5);
  transform: perspective(400px) rotateX(90deg) scaleY(0.5);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
  z-index: 1;
}

.team-one__single:hover .team-one__img-box:before {
  -webkit-transform: perspective(400px) rotateX(0deg) scaleY(1.0);
  -ms-transform: perspective(400px) rotateX(0deg) scaleY(1.0);
  transform: perspective(400px) rotateX(0deg) scaleY(1.0);
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
}

.team-one__img-box img {
  width: 100%;
  border-radius: 20px;
  -webkit-transform: scale(1);
  transform: scale(1);
  transition: all 500ms ease;
}

.team-one__single:hover .team-one__img-box img {
  transform: scale(1.05);
}

.team-one__social {
  position: absolute;
  right: 20px;
  bottom: 25px;
  background-color: var(--theme-base);
  text-align: center;
  padding: 20px 17.5px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  transform: scaleY(0.0);
  transform-origin: center;
  transform-style: preserve-3d;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  transform-origin: bottom center;
  z-index: 2;
}

.team-one__single:hover .team-one__social {
  transform: scaleY(1.0);
  -webkit-transition-delay: 500ms;
  -moz-transition-delay: 500ms;
  -ms-transition-delay: 500ms;
  -o-transition-delay: 500ms;
  transition-delay: 500ms;
}

.team-one__social li+li {
  margin-top: 25px;
}

.team-one__social li a {
  font-size: 15px;
  color: var(--theme-white);
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.team-one__social li a:hover {
  color: var(--theme-primary);
}


.team-one__content {
  position: relative;
  display: block;
  padding-top: 28px;
}

.team-one__sub-title {
  font-size: 14px;
  color: var(--theme-base);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.team-one__name {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: var(--theme-letter-spacing);
  line-height: 30px;
}

.team-one__name a {
  color: var(--theme-black);
  transition: all 500ms ease;
}

.team-one__name a:hover {
  color: var(--theme-base);
}

.team-one__social-two {
  position: absolute;
  right: 20px;
  top: -25px;
  background-color: var(--theme-primary);
  padding: 17.5px 18.4px;
  border-radius: 10px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 2;
}

.team-one__single:hover .team-one__social-two {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-color: var(--theme-base);
  -webkit-transition-delay: 500ms;
  -moz-transition-delay: 500ms;
  -ms-transition-delay: 500ms;
  -o-transition-delay: 500ms;
  transition-delay: 500ms;
}

.team-one__social-two li a {
  font-size: 15px;
  color: var(--theme-white);
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.team-one__social-two li a:hover {
  color: var(--theme-primary);
}

.team-one__bottom {
  position: relative;
  display: block;
  text-align: center;
  max-width: 560px;
  width: 100%;
  margin: 35px auto 0;
  border: 2px dashed var(--theme-base);
  border-radius: var(--theme--bdr-radius);
  padding: 10px 0;
}

.team-one__bottom-text {
  font-weight: 500;
}

.team-one__bottom-text span {
  color: var(--theme-primary);
  font-weight: 700;
}

/*--------------------------------------------------------------
# Testimonial One
--------------------------------------------------------------*/
.testimonial-one {
  position: relative;
  display: block;
  background-color: var(--theme-extra);
  padding: 120px 0 120px;
  overflow: hidden;
  z-index: 1;
}

.testimonial-one-shape-2 {
  position: absolute;
  top: -40px;
  right: 0;
  mix-blend-mode: luminosity;
}

.testimonial-one-shape-2 img {
  width: auto;
  mix-blend-mode: luminosity;
  opacity: .15;
}

.testimonial-one-shape-3 {
  position: absolute;
  bottom: -90px;
  left: 0;
  mix-blend-mode: luminosity;
}

.testimonial-one-shape-3 img {
  width: auto;
  mix-blend-mode: luminosity;
  opacity: .15;
}

.testimonial-one .container {
  max-width: 1160px;
}

.testimonial-one__top {
  position: relative;
  display: block;
}

.testimonial-one__top-left {
  position: relative;
  display: block;
}

.testimonial-one__top-right {
  position: relative;
  display: block;
  margin-left: 70px;
  margin-top: 16px;
}

.testimonial-one__top-text {
  font-size: 18px;
  line-height: 30px;
  letter-spacing: var(--theme-letter-spacing);
}

.testimonial-one__bottom {
  position: relative;
  display: block;
}

.testimonial-one__carousel {
  position: relative;
  display: block;
}

.testimonial-one__single {
  position: relative;
  display: block;
  border-radius: 20px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.testimonial-one__single:hover {
  transform: translateY(-10px);
}

.testimonial-one__single-inner {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 65px 60px 55px;
  border-radius: 20px;
  background-color: var(--theme-white);
}

.testimonial-one__shape-1 {
  position: absolute;
  top: 0;
  right: 0;
}

.testimonial-one__shape-1>img {
  width: auto !important;
  mix-blend-mode: luminosity;
  border-top-right-radius: 20px;
  opacity: .20;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.testimonial-one__single:hover .testimonial-one__shape-1>img {
  mix-blend-mode: normal;
  opacity: 1;
}

.testimonial-one__client-info {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 5px;
  margin-bottom: 26px;
}

.testimonial-one__client-img-box {
  position: relative;
  display: block;
  width: 100%;
  max-width: 115px;
  z-index: 1;
}

.testimonial-one__client-img-box:before {
  position: absolute;
  content: "";
  top: -5px;
  bottom: -5px;
  left: -5px;
  right: -5px;
  background-image: -moz-linear-gradient(-29deg, rgb(1, 95, 201) 0%, rgb(12, 224, 255) 100%);
  background-image: -webkit-linear-gradient(-29deg, rgb(1, 95, 201) 0%, rgb(12, 224, 255) 100%);
  background-image: -ms-linear-gradient(-29deg, rgb(1, 95, 201) 0%, rgb(12, 224, 255) 100%);
  border-top-left-radius: 45px;
  z-index: -1;
}

.testimonial-one__client-img-box>img {
  width: 100% !important;
  border-top-left-radius: 45px;
  border: 6px solid var(--theme-white);
}

.testimonial-one__quote {
  position: absolute;
  top: -28px;
  right: -33px;
  height: 58px;
  width: 58px;
  border-radius: 50%;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-one__quote>img {
  width: auto !important;
}

.testimonial-one__client-content {
  margin-left: 45px;
  position: relative;
  top: 3px;
}

.testimonial-one__client-review {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}

.testimonial-one__client-review i {
  font-size: 15px;
  color: #fab600;
}

.testimonial-one__client-details {
  position: relative;
  display: block;
}

.testimonial-one__client-name {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: var(--theme-letter-spacing);
  line-height: 34px;
}

.testimonial-one__client-sub-title {
  font-size: 14px;
  color: var(--theme-base);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.testimonial-one__text {
  font-size: 18px;
  line-height: 30px;
  letter-spacing: var(--theme-letter-spacing);
}


.testimonial-one__carousel.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.testimonial-one__carousel.owl-carousel .owl-stage-outer {
  overflow: visible;

}

.testimonial-one__carousel.owl-carousel .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.testimonial-one__carousel.owl-carousel .owl-item.active {
  opacity: 1;
  visibility: visible;
}

/*--------------------------------------------------------------
# News One
--------------------------------------------------------------*/
.news-one {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}

.news-one .section-sub-title-box {
  margin-left: 0;
}

.news-one__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.news-one__img {
  position: relative;
  display: block;
  overflow: hidden;
  border-top-left-radius: var(--theme--bdr-radius);
  border-top-right-radius: var(--theme--bdr-radius);
  z-index: 1;
}

.news-one__img:before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-top-left-radius: var(--theme--bdr-radius);
  border-top-right-radius: var(--theme--bdr-radius);
  background-color: rgba(var(--theme-black-rgb), .50);
  -webkit-transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease, -webkit-transform 500ms ease;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateY(-70%);
  transform: translateY(-70%);
  z-index: 1;
}

.news-one__single:hover .news-one__img:before {
  visibility: visible;
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
  opacity: 1;
}

.news-one__img img {
  width: 100%;
  border-top-left-radius: var(--theme--bdr-radius);
  border-top-right-radius: var(--theme--bdr-radius);
  transition: all 500ms ease;
}

.news-one__single:hover .news-one__img img {
  transform: scale(1.05);
}

.news-one__tag {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: var(--theme-base);
  padding: 14px 20px;
  border-top-left-radius: var(--theme--bdr-radius);
  z-index: 2;
}

.news-one__tag p {
  font-size: 12px;
  color: var(--theme-white);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 12px;
}

.news-one__tag p i {
  font-size: 12px;
  padding-right: 3px;
}

.news-one__arrow-box {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.news-one__arrow {
  height: 50px;
  width: 50px;
  border: 2px solid var(--theme-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-white);
  font-size: 15px;
  opacity: 0;
  transform: translateY(70px);
  transition: all 500ms ease;
}

.news-one__single:hover .news-one__arrow {
  opacity: 1;
  transform: translateY(0%);
  transition-delay: 500ms;
}

.news-one__arrow:hover {
  border: 2px solid var(--theme-primary);
  color: var(--theme-primary);
}

.news-one__content {
  position: relative;
  display: block;
  border-bottom-left-radius: var(--theme--bdr-radius);
  border-bottom-right-radius: var(--theme--bdr-radius);
  border: 1px solid var(--theme--bdr-color);
  border-top: 0;
  padding: 25px 38px 32px;
  transition: all 500ms ease;
}

.news-one__single:hover .news-one__content {
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
}

.news-one__meta {
  position: relative;
  display: flex;
  align-items: center;
}

.news-one__meta li+li {
  margin-left: 10px;
}

.news-one__meta li a {
  font-size: 14px;
  color: var(--theme-gray);
  font-weight: 500;
  letter-spacing: var(--theme-letter-spacing);
  transition: all 500ms ease;
}

.news-one__meta li a:hover {
  color: var(--theme-base);
}

.news-one__meta li a i {
  font-size: 15px;
  color: var(--theme-base);
  padding-right: 2px;
}

.news-one__title {
  font-size: 24px;
  line-height: 30px;
  letter-spacing: var(--theme-letter-spacing);
  font-weight: 700;
  margin-top: 8px;
  margin-bottom: 15px;
}

.news-one__title a {
  color: var(--theme-black);
  transition: all 500ms ease;
}

.news-one__single:hover .news-one__title a {
  color: var(--theme-base);
}

.news-one__text {
  font-size: 18px;
  line-height: 30px;
  letter-spacing: var(--theme-letter-spacing);
}

.news-one__read-more {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 11px;
}

.news-one__read-more a {
  font-size: 15px;
  color: var(--theme-base);
  font-weight: 500;
  display: flex;
  align-items: center;
  transition: all 500ms ease;
}

.news-one__read-more a:hover {
  color: var(--theme-primary);
}
.news-one__read-more a i {
  font-size: 13px;
  position: relative;
  padding-left: 5px;
  top: 2px;
}

.news-one__single:hover .news-one__read-more a {
  color: var(--theme-primary);
}

/*--------------------------------------------------------------
# Tracking
--------------------------------------------------------------*/
.tracking {
  position: relative;
  display: block;
}

.tracking__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 57px 80px 57px;
  background-color: var(--theme-base);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  overflow: hidden;
}

.tracking-shape-1 {
  position: absolute;
  bottom: 0;
  left: -55px;
}

.tracking-shape-1 img {
  width: auto;
}

.tracking-shape-2 {
  position: absolute;
  top: 50px;
  left: -100px;
}

.tracking-shape-2 img {
  width: auto;
}

.tracking-shape-3 {
  position: absolute;
  top: -15px;
  right: -192px;
  z-index: 2;
}

.tracking-shape-3 img {
  width: auto;
}

.tracking-shape-4 {
  position: absolute;
  top: 50px;
  right: -55px;
}

.tracking-shape-4 img {
  width: auto;
}

.tracking__left {
  position: relative;
  display: flex;
}

.tracking__icon {
  position: relative;
  display: flex;
}

.tracking__icon span {
  font-size: 65px;
  color: var(--theme-white);
  position: relative;
  display: inline-block;
}

.tracking__content {
  position: relative;
  margin-left: 30px;
  top: -7px;
}

.tracking__sub-title {
  font-size: 14px;
  color: #c2dfff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 24px;
  font-weight: 500;
}

.tracking__title {
  font-size: 36px;
  color: var(--theme-white);
  font-weight: 700;
  letter-spacing: var(--theme-letter-spacing);
  line-height: 47px;
}

.tracking__btn-box {
  position: relative;
  display: block;
  z-index: 2;
}

.tracking__btn {
  background-color: var(--theme-white);
  color: var(--theme-black);
}



/*--------------------------------------------------------------
# Site Footer
--------------------------------------------------------------*/
.site-footer {
  position: relative;
  display: block;
  background-color: var(--theme-black);
  z-index: 1;
}

.site-footer-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1709px;
  mix-blend-mode: color-burn;
  opacity: .15;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.site-footer__top {
  position: relative;
  display: block;
  padding: 100px 0 0px;
}

.footer-widget__logo {
  position: relative;
  display: inline-block;
  margin-bottom: 33px;
  margin-top: -8px;
}

.footer-widget__about {
  position: relative;
  display: block;
}

.footer-widget__about-text-box {
  position: relative;
  display: block;
}

.footer-widget__about-text {
  color: #97a2b7;
  line-height: 26px;
  font-size: 15px;
  letter-spacing: var(--theme-letter-spacing);
}

.site-footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 32px;
}

.site-footer__social a {
  position: relative;
  height: 43px;
  width: 43px;
  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(--theme-white);
  font-size: 15px;
  border-radius: 17px;
  border: 2px solid var(--theme-base);
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.site-footer__social a:hover {
  color: var(--theme-base);
  background-color: var(--theme-white);
  border: 2px solid var(--theme-white);
}

.site-footer__social a:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: var(--theme-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__title {
  font-size: 20px;
  color: var(--theme-white);
  font-weight: 700;
  letter-spacing: var(--theme-letter-spacing);
  line-height: 20px;
  margin-bottom: 40px;
}

.footer-widget__contact {
  position: relative;
  display: block;
}

.footer-widget__contact-list {
  position: relative;
  display: block;
}

.footer-widget__contact-list li {
  position: relative;
  display: flex;
}

.footer-widget__contact-list li+li {
  margin-top: 20px;
}

.footer-widget__contact-list li .icon {
  position: relative;
  display: block;
}

.footer-widget__contact-list li .icon span {
  font-size: 14px;
  color: var(--theme-base);
}

.footer-widget__contact-list li .text {
  margin-left: 14px;
}

.footer-widget__contact-list li .text p {
  font-size: 15px;
  color: #97a2b7;
  line-height: 25px;
  letter-spacing: var(--theme-letter-spacing);
}

.footer-widget__contact-list li .text p a {
  color: #97a2b7;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget__contact-list li .text p a:hover {
  color: var(--theme-primary);
}

.footer-widget__open-hour {
  position: relative;
  display: block;
  margin-top: 26px;
}

.footer-widget__open-hour-title {
  font-size: 15px;
  color: var(--theme-white);
  font-weight: 700;
  letter-spacing: var(--theme-letter-spacing);
  line-height: 25px;
  margin-bottom: 10px;
}

.footer-widget__open-hour-text {
  font-size: 15px;
  color: #97a2b7;
  line-height: 26px;
  letter-spacing: var(--theme-letter-spacing);
}

.footer-widget__gallery {
  position: relative;
  display: block;
}

.footer-widget__gallery-list {
  position: relative;
  display: block;
  margin-right: -5px;
  margin-left: -5px;
  padding-top: 7px;
}

.footer-widget__gallery-list li {
  position: relative;
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
  margin-bottom: 15px;
}

.footer-widget__gallery-img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 5px;
  z-index: 1;
}

.footer-widget__gallery-img:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: rgba(var(--theme-base-rgb), .90);
  transition: all 700ms ease;
  transform: translateY(-100%);
  border-radius: 5px;
  z-index: 1;
}

.footer-widget__gallery-list li:hover .footer-widget__gallery-img:before {
  transform: translateY(0%);
}

.footer-widget__gallery-img img {
  width: 100%;
  border-radius: 5px;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
  transform: scale(1);
}

.footer-widget__gallery-list li:hover .footer-widget__gallery-img img {
  transform: scale(1.05);
}

.footer-widget__gallery-img a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--theme-white);
  transform: translateY(100px);
  opacity: 0;
  transition: all 700ms ease;
  z-index: 2;
}

.footer-widget__gallery-list li:hover .footer-widget__gallery-img a {
  transform: translateY(0px);
  opacity: 1;
  transition-delay: 0.3s;
}

.footer-widget__newsletter {
  position: relative;
  display: block;
}

.footer-widget__newsletter-text {
  color: #97a2b7;
  line-height: 26px;
  font-size: 15px;
  letter-spacing: var(--theme-letter-spacing);
}

.footer-widget__newsletter-form {
  position: relative;
  display: block;
  margin-top: 27px;
  margin-bottom: 27px;
}

.footer-widget__newsletter-input-box {
  position: relative;
  display: block;
}

.footer-widget__newsletter-input-box input[type="email"] {
  height: 60px;
  width: 100%;
  border: none;
  outline: none;
  padding-left: 20px;
  padding-right: 60px;
  background-color: #111d32;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 400;
  color: #97a2b7;
  letter-spacing: var(--theme-letter-spacing);
}

.footer-widget__newsletter-btn {
  position: absolute;
  top: 50%;
  right: 10px;
  height: 35px;
  width: 35px;
  border: none;
  font-size: 15px;
  background-color: transparent;
  color: var(--theme-white);
  transform: translateY(-50%);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget__newsletter-btn:hover {
  color: var(--theme-base);
}

.footer-widget__phone {
  position: relative;
  display: flex;
  align-items: center;
}

.footer-widget__phone-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.footer-widget__phone-icon span {
  font-size: 37px;
  color: var(--theme-primary);
  position: relative;
  display: inline-block;
}

.footer-widget__phone-text {
  position: relative;
  margin-left: 15px;
}

.footer-widget__phone-text a {
  font-size: 18px;
  color: var(--theme-white);
  font-weight: 700;
  letter-spacing: var(--theme-letter-spacing);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget__phone-text a:hover {
  color: var(--theme-primary);
}

.footer-widget__phone-text p {
  font-size: 14px;
  color: #97a2b7;
  line-height: 26px;
  letter-spacing: var(--theme-letter-spacing);
}

.site-footer__bottom {
  position: relative;
  display: block;
}

.site-footer__bottom-inner {
  position: relative;
  display: block;
  text-align: center;
  border-top: 1px solid rgba(var(--theme-white-rgb), .10);
  padding: 34px 0;
}

.site-footer__bottom-text {
  color: #97a2b7;
  letter-spacing: var(--theme-letter-spacing);
}

.site-footer__bottom-text a {
  color: #97a2b7;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.site-footer__bottom-text a:hover {
  color: var(--theme-white);
}

/*--------------------------------------------------------------
# Feature Two
--------------------------------------------------------------*/
.feature-two {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}

.feature-two__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.feature-two__single:hover {
  transform: translateY(-10px);
}

.feature-two__img {
  position: relative;
  display: block;
  border-radius: var(--theme--bdr-radius);
  overflow: hidden;
}

.feature-two__img:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  border-radius: var(--theme--bdr-radius);
  background-color: rgba(var(--theme-base-rgb), .30);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  opacity: 1;
  -webkit-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  z-index: 1;
}

.feature-two__single:hover .feature-two__img:before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.feature-two__img img {
  width: 100%;
  border-radius: var(--theme--bdr-radius);
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.feature-two__single:hover .feature-two__img img {
  transform: scale(1.05);
}

.feature-two__content {
  position: relative;
  display: block;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
  margin-right: 70px;
  margin-top: -55px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  z-index: 1;
}

.feature-two__content-inner {
  position: relative;
  display: flex;
  align-items: center;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  overflow: hidden;
  z-index: 1;
}

.feature-two__content-inner:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: var(--theme-base);
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  transform: translateX(-100%);
  transition: all 700ms ease;
  z-index: -1;
}

.feature-two__single:hover .feature-two__content-inner:before {
  transform: translateX(0);
}

.feature-two__icon {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 84px;
  width: 100%;
  min-height: 100px;
  justify-content: center;
  background-color: var(--theme-base);
  border-bottom-left-radius: 10px;
}

.feature-two__icon span {
  font-size: 40px;
  color: var(--theme-white);
  position: relative;
  display: inline-block;
}

.feature-two__text-box {
  position: relative;
  display: block;
  padding-left: 20px;
}

.feature-two__text-box:before {
  position: absolute;
  content: "";
  top: 1px;
  bottom: -2px;
  left: 0;
  width: 2px;
  background-color: rgba(var(--theme-white-rgb), .10);
  transform: scaleY(0);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.feature-two__single:hover .feature-two__text-box:before {
  transform: scaleY(1);
  transition-delay: 700ms;
}

.feature-two__text {
  font-size: 20px;
  font-weight: 700;
  color: var(--theme-black);
  letter-spacing: var(--theme-letter-spacing);
  line-height: 25px;
  transition: all 700ms ease;
}

.feature-two__text a {
  color: var(--theme-black);
  transition: all 700ms ease;
}

.feature-two__single:hover .feature-two__text a {
  color: var(--theme-white);
}

/*--------------------------------------------------------------
# About Two
--------------------------------------------------------------*/
.about-two {
  position: relative;
  display: block;
  padding: 0 0 120px;
}

.about-two__left {
  position: relative;
  display: block;
  margin-right: 42px;
}

.about-two__left .section-title {
  margin-bottom: 39px;
}

.about-two__text {
  font-size: 18px;
  line-height: 30px;
  letter-spacing: var(--theme-letter-spacing);
}

.about-two__points {
  position: relative;
  display: block;
  margin-top: 36px;
  margin-bottom: 42px;
}

.about-two__points li {
  position: relative;
  display: flex;
  align-items: center;
}

.about-two__points li+li {
  margin-top: 8px;
}

.about-two__points li .icon {
  height: 16px;
  width: 16px;
  background-color: var(--theme-primary);
  font-size: 10px;
  color: var(--theme-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-two__points li .text {
  margin-left: 20px;
}

.about-two__points li .text p {
  font-size: 18px;
  color: var(--theme-black);
  font-weight: 700;
  letter-spacing: var(--theme-letter-spacing);
}

.about-two__middle {
  position: relative;
  display: block;
  margin-right: 40px;
}

.about-two__img-box {
  position: relative;
  display: block;
}

.about-two__img {
  position: relative;
  display: block;
}

.about-two__img img {
  width: 100%;
  border-radius: 20px;
}

.about-two__awards-box {
  position: absolute;
  bottom: 45px;
  left: -150px;
  background-color: rgb(255, 255, 255);
  box-shadow: inset 0px 0px 18px 0px rgba(0, 0, 0, 0.2);
  border-radius: 25px;
  padding: 15px;
  z-index: 1;
}

.about-two__awards-box:before {
  position: absolute;
  bottom: -46px;
  left: 70px;
  content: "";
  background-image: url(../images/shapes/about-two-awards-shape-1.png);
  background-repeat: no-repeat;
  width: 73px;
  height: 46px;
  z-index: -1;
}

.about-two__awards-inner {
  position: relative;
  display: block;
  background-color: var(--theme-black);
  border: 4px solid var(--theme-primary);
  border-radius: 20px;
  padding-top: 17px;
  padding-bottom: 20px;
  padding-left: 25px;
  padding-right: 40px;
  overflow: hidden;
}

.about-two__awards-shape-2 {
  position: absolute;
  top: -36px;
  right: -38px;
}

.about-two__awards-shape-2 img {
  width: auto;
}

.about-two__awards-year {
  font-size: 72px;
  color: var(--theme-white);
  font-weight: 700;
  line-height: 72px;
  letter-spacing: var(--theme-letter-spacing);
}

.about-two__awards-content {
  font-size: 20px;
  color: var(--theme-white);
  font-weight: 700;
  line-height: 23px;
  letter-spacing: var(--theme-letter-spacing);
}

.about-two__dots {
  position: absolute;
  bottom: 225px;
  left: -80px;
  z-index: -1;
}

.about-two__dots img {
  width: auto;
  opacity: .20;
}

.about-two__counter {
  position: relative;
  display: block;
  text-align: right;
  margin-left: -20px;
  margin-top: -8px;
}

.about-two__counter-list {
  position: relative;
  display: block;
}

.about-two__counter-list li {
  position: relative;
  display: block;
  padding-bottom: 33px;
  margin-bottom: 32px;
}

.about-two__counter-list li:before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 14px;
  right: 0;
  background-color: var(--theme--bdr-color);
  height: 2px;
}

.about-two__counter-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

.about-two__counter-list li:last-child:before {
  display: none;
}

.about-two__counter-single {
  position: relative;
  display: block;
}

.about-two__counter-count {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.about-two__counter-count h3 {
  font-size: 48px;
  font-weight: 700;
  line-height: 48px !important;
  color: var(--theme-base);
  font-family: var(--theme-font) !important;
  letter-spacing: var(--theme-letter-spacing);
}

.about-two__counter-percent {
  font-size: 48px;
  font-weight: 700;
  line-height: 48px !important;
  color: var(--theme-base);
  font-family: var(--theme-font) !important;
  letter-spacing: var(--theme-letter-spacing);
}

.about-two__counter-text-1 {
  font-size: 20px;
  color: var(--theme-black);
  font-weight: 700;
  line-height: 24px;
  letter-spacing: var(--theme-letter-spacing);
  margin-top: 15px;
  margin-bottom: 4px;
}

.about-two__counter-text-2 {
  font-size: 15px;
  line-height: 28px;
  letter-spacing: var(--theme-letter-spacing);
}

.about-two__counter .odometer-formatting-mark {
  display: none;
}

/*--------------------------------------------------------------
# Services Two
--------------------------------------------------------------*/
.services-two {
  position: relative;
  display: block;
  background-color: var(--theme-black);
  padding: 120px 0 90px;
  z-index: 1;
}

.services-two-shape-1 {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-position: center;
  opacity: 0.02;
  z-index: -1;
}

.services-two__top {
  position: relative;
  display: block;
}

.services-two__top-left {
  position: relative;
  display: block;
}

.services-two__top-left .section-sub-title {
  color: #97a2b7;
}

.services-two__top-left .section-title__title {
  color: var(--theme-white);
}

.services-two__top-right {
  position: relative;
  display: block;
  margin-left: 70px;
  margin-top: 14px;
}

.services-two__top-text {
  font-size: 18px;
  color: #97a2b7;
  line-height: 30px;
  letter-spacing: var(--theme-letter-spacing);
}

.services-two__bottom {
  position: relative;
  display: block;
}

.services-two__single {
  position: relative;
  display: block;
  background-color: #1c2a44;
  border-radius: var(--theme--bdr-radius);
  text-align: center;
  padding: 40px 35px 33px;
  border-bottom: 3px solid transparent;
  margin-bottom: 30px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-two__single:hover {
  border-bottom: 3px solid var(--theme-primary);
  transform: translateY(-10px);
  background-color: #111d32;
}

.services-two__icon-box {
  position: relative;
  display: block;
}

.services-two__icon-box:before {
  position: absolute;
  content: "";
  bottom: -9px;
  left: 50%;
  height: 4px;
  width: 40px;
  background-color: #111d32;
  transform: translateX(-50%);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-two__single:hover .services-two__icon-box:before {
  background-color: #070e1b;
}

.services-two__icon {
  position: relative;
  height: 85px;
  width: 85px;
  background-color: #111d32;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto;
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.services-two__icon:after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  content: "";
  background-image: -moz-linear-gradient(0deg, rgb(1, 95, 201) 0%, rgb(12, 224, 255) 100%);
  background-image: -webkit-linear-gradient(0deg, rgb(1, 95, 201) 0%, rgb(12, 224, 255) 100%);
  background-image: -ms-linear-gradient(0deg, rgb(1, 95, 201) 0%, rgb(12, 224, 255) 100%);
  border-radius: 50%;
  background-color: var(--theme-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;
}

.services-two__single:hover .services-two__icon:after {
  opacity: 1;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.services-two__icon span {
  position: relative;
  display: inline-block;
  font-size: 36px;
  background: rgb(1, 97, 202);
  background: linear-gradient(90deg, rgba(1, 97, 202, 1) 41%, rgba(12, 222, 254, 1) 67%);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-two__single:hover .services-two__icon span {
  -webkit-text-fill-color: var(--theme-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-two__title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: var(--theme-letter-spacing);
  line-height: 30px;
  margin-top: 26px;
  margin-bottom: 5px;
}

.services-two__title a {
  color: var(--theme-white);
}

.services-two__text {
  font-size: 14px;
  color: #97a2b7;
  line-height: 24px;
  letter-spacing: var(--theme-letter-spacing);
}

/*--------------------------------------------------------------
# Work Together
--------------------------------------------------------------*/
.work-together {
  position: relative;
  display: block;
  padding: 120px 0 120px;
}

.work-together__left {
  position: relative;
  display: block;
}

.work-together__left .section-title {
  margin-bottom: 38px;
}

.work-together__content-box {
  position: relative;
  display: flex;
  align-items: center;
}

.work-together__img {
  position: relative;
  display: block;
}

.work-together__img img {
  width: auto;
  border-radius: 7px;
}

.work-together__text-box {
  margin-left: 30px;
}

.work-together__text {
  font-weight: 500;
  line-height: 30px;
  letter-spacing: var(--theme-letter-spacing);
}

.work-together__progress {
  position: relative;
  display: block;
  width: 100%;
  margin-top: 24px;
}

.work-together__progress-single {
  position: relative;
  display: block;
}

.work-together__progress-title {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 7px;
  font-weight: 700;
  letter-spacing: var(--theme-letter-spacing);
}

.work-together__progress .bar {
  position: relative;
  width: 100%;
  height: 13px;
  background-color: var(--theme-extra);
  border-radius: 6px;
}

.work-together__progress .bar-inner {
  position: relative;
  display: block;
  width: 0px;
  height: 13px;
  border-radius: 6px;
  background-color: var(--theme-primary);
  -webkit-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.work-together__progress .count-text {
  position: absolute;
  right: -13px;
  bottom: 20px;
  opacity: 0;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  transition: all 500ms ease;
  font-size: 14px;
  font-weight: 500;
  color: var(--theme-gray);
  letter-spacing: var(--theme-letter-spacing);
}

.work-together__progress .bar-inner.counted .count-text {
  opacity: 1;
}

.work-together__right {
  position: relative;
  display: block;
}

.faq-one-accrodion .accrodion {
  position: relative;
  display: block;
  border: 1px solid var(--theme--bdr-color);
  border-radius: 20px;
  background-color: var(--theme-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.faq-one-accrodion .accrodion.active {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
}

.faq-one-accrodion .accrodion-title {
  position: relative;
  display: block;
  cursor: pointer;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  border-radius: 20px;
  padding-top: 14px;
  padding-bottom: 14px;
  padding-left: 15px;
  padding-right: 40px;
  border-bottom: 1px solid transparent;
}

.faq-one-accrodion .accrodion-title h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  color: var(--theme-black);
  letter-spacing: var(--theme-letter-spacing);
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.faq-one-accrodion .accrodion-title h4 span {
  position: relative;
  height: 37px;
  width: 37px;
  background-color: var(--theme-base);
  display: inline-block;
  border-radius: 50%;
  text-align: center;
  line-height: 37px;
  color: var(--theme-white);
  margin-right: 10px;
}

.faq-one-accrodion .accrodion+.accrodion {
  margin-top: 20px;
}

.faq-one-accrodion .accrodion.active .accrodion-title {
  color: var(--theme-base);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: 1px solid var(--theme--bdr-color);
}

.faq-one-accrodion .accrodion.active .accrodion-title h4 {
  color: var(--theme-base);
}

.faq-one-accrodion .accrodion-title h4::before {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 18px;
  color: var(--theme-black);
  position: absolute;
  top: 51%;
  right: -15px;
  height: 20px;
  width: 20px;
  line-height: 20px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  text-align: center;
}

.faq-one-accrodion .accrodion.active .accrodion-title h4::before {
  content: "\f107";
  color: var(--theme-primary);
  height: 20px;
  width: 20px;
  border-radius: 50%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq-one-accrodion .accrodion-content {
  position: relative;
  padding: 12px 30px 20px;
}

.faq-one-accrodion .accrodion-content p {
  margin: 0;
  line-height: 30px;
  letter-spacing: var(--theme-letter-spacing);
}

/*--------------------------------------------------------------
# Site Footer
--------------------------------------------------------------*/
.cta-one {
  position: relative;
  display: block;
  padding: 0 0 80px;
  z-index: 1;
}

.cta-one__content {
  position: relative;
  display: block;
  border-radius: 30px;
  background-color: rgb(255, 255, 255);
  box-shadow: inset 0px 0px 18px 0px rgba(0, 0, 0, 0.2);
  padding: 15px;
  z-index: 1;
}

.cta-one__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--theme-black);
  border-radius: 20px;
  border: 4px solid var(--theme-primary);
  padding: 51px 55px 51px;
  overflow: hidden;
  z-index: 1;
}

.cta-one__left {
  position: relative;
  display: block;
}

.cta-one__title {
  font-size: 36px;
  font-weight: 700;
  color: var(--theme-white);
  line-height: 36px;
  letter-spacing: var(--theme-letter-spacing);
}

.cta-one__right {
  position: relative;
  display: flex;
  align-items: center;
}

.cta-one__call {
  position: relative;
  display: flex;
  align-items: center;
}

.cta-one__call-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  border: 2px solid var(--theme-primary);
  border-radius: 50%;
  color: var(--theme-primary);
  font-size: 20px;
}

.cta-one__call-number {
  position: relative;
  top: -1px;
  margin-left: 10px;
}

.cta-one__call-number a {
  font-size: 16px;
  color: var(--theme-white);
  font-weight: 700;
  letter-spacing: var(--theme-letter-spacing);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.cta-one__call-number a:hover {
  color: var(--theme-primary);
}

.cta-one__call-number p {
  font-size: 14px;
  color: #97a2b7;
  line-height: 18px;
  letter-spacing: var(--theme-letter-spacing);
}

.cta-one__btn-box {
  margin-left: 40px;
}

.cta-one__btn:hover {
  color: var(--theme-black);
}

.cta-one__btn:before {
  background-color: var(--theme-white);
}

.cta-one__btn:after {
  background-color: var(--theme-white);
}

.cta-one__img {
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: luminosity;
  opacity: .10;
  z-index: -1;
}

.cta-one__img img {
  width: auto;
}

.cta-two {
  padding: 120px 0 120px;
}

/*--------------------------------------------------------------
# Brand One
--------------------------------------------------------------*/
.brand-one {
  position: relative;
  display: block;
  border-top: 1px solid var(--theme--bdr-color);
  padding: 59px 0 60px;
  z-index: 1;
}

.brand-one__title {
  position: relative;
  display: block;
  margin-right: 60px;
  margin-top: 9px;
}

.brand-one__title h2 {
  font-size: 16px;
  color: var(--theme-black);
  font-weight: 700;
  line-height: 28px;
  letter-spacing: var(--theme-letter-spacing);
}

.brand-one__main-content {
  position: relative;
  display: block;
}

.brand-one__main-content .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__main-content .swiper-slide img {
  -webkit-transition: 500ms;
  transition: 500ms;
  opacity: .30;
}

.brand-one__main-content .swiper-slide img:hover {
  opacity: 1;
}

/*--------------------------------------------------------------
# Get Insuracne Two
--------------------------------------------------------------*/
.get-insuracne-two {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  background-color: var(--theme-white);
  z-index: 1;
}

.get-insuracne-two:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 208px;
  right: 0;
  border-style: solid;
  border-width: 1px;
  border-color: rgb(223, 227, 231);
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.07);
  content: "";
  border-top-left-radius: 377.5px;
  border-bottom-left-radius: 377.5px;
  z-index: -1;
}

.get-insuracne-two-shape-3 {
  position: absolute;
  top: 0;
  right: -18px;
  mix-blend-mode: luminosity;
  opacity: 0.03;
  z-index: -1;
}

.get-insuracne-two-shape-3 img {
  width: auto;
}

.get-insuracne-two__left {
  position: relative;
  display: block;
}

.get-insuracne-two__shape-box {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}

.get-insuracne-two-shape-1 {
  position: absolute;
  top: -44px;
  bottom: -42px;
  left: -375px;
  width: 814px;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: cover;
}

.get-insuracne-two-shape-2 {
  position: absolute;
  top: -34px;
  bottom: 0;
  left: -375px;
  mix-blend-mode: luminosity;
  opacity: .15;
}

.get-insuracne-two-shape-2 img {
  width: auto;
}

.get-insuracne-two__img {
  position: relative;
  display: block;
  border-radius: 50%;
  margin-left: -139px;
  margin-right: 102px;
}

.get-insuracne-two__img img {
  width: 100%;
  border-radius: 50%;
}

.get-insuracne-two__right {
  position: relative;
  display: block;
}

.get-insuracne-two__right .section-title {
  margin-bottom: 38px;
}

.get-insuracne-two__tab {
  position: relative;
  display: block;
}

.get-insuracne-two__tab-box {
  position: relative;
  display: block;
  z-index: 2;
}

.get-insuracne-two__inner {
  position: relative;
  display: block;
}

.get-insuracne-two__tab-left {
  position: relative;
  display: block;
  max-width: 160px;
  width: 100%;
  float: left;
}

.get-insuracne-two__tab-box .tab-buttons {
  position: relative;
  display: block;
}

.get-insuracne-two__tab-box .tab-buttons .tab-btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: block;
}

.get-insuracne-two__tab-box .tab-buttons .tab-btn+.tab-btn {
  margin-top: 10px;
}

.get-insuracne-two__tab-btn-content {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid #dfe3e7;
  border-radius: var(--theme--bdr-radius);
  padding-top: 17px;
  padding-bottom: 17px;
  padding-left: 20px;
  padding-right: 30px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.get-insuracne-two__tab-box .tab-buttons .tab-btn.active-btn .get-insuracne-two__tab-btn-content {
  border: 1px solid var(--theme-base);
}

.get-insuracne-two__tab-btn-content:before {
  position: absolute;
  top: 50%;
  right: -6px;
  content: "";
  border-top: 8px solid transparent;
  border-left: 6px solid var(--theme-base);
  border-bottom: 8px solid transparent;
  transform: translateY(-50%) scale(0);
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.get-insuracne-two__tab-box .tab-buttons .tab-btn.active-btn .get-insuracne-two__tab-btn-content:before {
  transform: translateY(-50%) scale(1);
}

.get-insuracne-two__tab-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.get-insuracne-two__tab-icon img {
  width: auto;
}

.get-insuracne-two__tab-text-box {
  margin-left: 14px;
}

.get-insuracne-two__tab-text {
  font-size: 14px;
  color: var(--theme-black);
  font-weight: 700;
  line-height: 17px;
  letter-spacing: var(--theme-letter-spacing);
}

.get-insuracne-two__tab-box .tabs-content {
  position: relative;
  display: block;
}

.get-insuracne-two__tab-box .tabs-content .tab {
  position: relative;
  display: none;
  -webkit-transform: translateY(35px);
  transform: translateY(35px);
  -webkit-transition: all 600ms ease;
  transition: all 600ms ease;
  z-index: 10;
}

.get-insuracne-two__tab-box .tabs-content .tab.active-tab {
  display: block;
  margin-top: 0px;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

.get-insuracne-two__tab-right {
  position: relative;
  display: block;
  max-width: 510px;
  width: 100%;
  padding-left: 40px;
  float: right;
}

.get-insuracne-two__content {
  position: relative;
  display: block;
}

.get-insuracne-two__form {
  position: relative;
  display: block;
}

.get-insuracne-two__content-box {
  position: relative;
  display: block;
}

.get-insuracne-two__input-box {
  position: relative;
  display: block;
  margin-bottom: 10px;
}

.get-insuracne-two__input-box input[type="text"],
.get-insuracne-two__input-box input[type="email"] {
  height: 60px;
  width: 100%;
  border: 0;
  background-color: var(--theme-extra);
  outline: none;
  font-size: 16px;
  color: var(--theme-gray);
  font-weight: 400;
  padding: 0 30px 0;
  border-radius: var(--theme--bdr-radius);
}

.get-insuracne-two__input-box .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
  position: relative;
  display: block;
  width: 100% !important;

}

.get-insuracne-two__input-box .bootstrap-select>.dropdown-toggle::after {
  display: none;
}

.get-insuracne-two__input-box .bootstrap-select>.dropdown-toggle {
  position: relative;
  height: 60px;
  outline: none !important;
  border-radius: var(--theme--bdr-radius);
  border: 0;
  background-color: var(--theme-extra) !important;
  margin: 0;
  padding: 0;
  padding-left: 30px;
  padding-right: 30px;
  color: var(--theme-gray) !important;
  font-size: 16px;
  line-height: 60px;
  font-weight: 400;
  box-shadow: none !important;
  background-repeat: no-repeat;
  background-size: 14px 12px;
  background-position: right 25.75px center;
}

.get-insuracne-two__input-box .bootstrap-select>.dropdown-toggle:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
  font-family: "Font Awesome 5 Free";
  content: "\f107";
  font-weight: 900;
  font-size: 14px;
  color: var(--theme-gray);
}

.get-insuracne-two__progress {
  position: relative;
  display: block;
  width: 100%;
  margin-top: 13px;
  margin-bottom: 20px;
}

.get-insuracne-two__progress-single {
  position: relative;
  display: block;
}

.get-insuracne-two__progress-title {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 14px;
  font-weight: 700;
  letter-spacing: var(--theme-letter-spacing);
}

.get-insuracne-two__progress .bar {
  position: relative;
  width: 100%;
  height: 13px;
  background-color: var(--theme-extra);
  border-radius: 6px;
  border: 0
}

.get-insuracne-two__progress .bar-inner {
  position: relative;
  display: block;
  width: 0px;
  height: 13px;
  border-radius: 6px;
  background-image: -moz-linear-gradient(0deg, rgb(1, 95, 201) 0%, rgb(12, 224, 255) 100%);
  background-image: -webkit-linear-gradient(0deg, rgb(1, 95, 201) 0%, rgb(12, 224, 255) 100%);
  background-image: -ms-linear-gradient(0deg, rgb(1, 95, 201) 0%, rgb(12, 224, 255) 100%);
  -webkit-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.get-insuracne-two__progress .count-text {
  position: absolute;
  right: -30px;
  bottom: -8px;
  opacity: 0;
  border-style: solid;
  border-width: 2px;
  border-color: rgb(255, 255, 255);
  border-radius: 50%;
  background-color: rgb(22, 36, 61);
  width: 30px;
  height: 30px;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  transition: all 500ms ease;
}

.get-insuracne-two__progress .bar-inner.counted .count-text {
  opacity: 1;
}

.get-insuracne-two__balance-box {
  position: absolute;
  top: 0;
  right: 0;
}

.get-insuracne-two__balance {
  font-size: 16px;
  color: var(--theme-black);
  font-weight: 700;
  letter-spacing: var(--theme-letter-spacing);
}

.get-insuracne-two__content-bottom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.get-insuracne-two__btn {
  border: none;
}

.get-insuracne-two__content-bottom-text-box p {
  line-height: 24px;
  letter-spacing: var(--theme-letter-spacing);
}

.get-insuracne-two__content-bottom-text-box h5 {
  font-size: 16px;
  color: var(--theme-black);
  line-height: 24px;
  letter-spacing: var(--theme-letter-spacing);
}

/*--------------------------------------------------------------
# Process
--------------------------------------------------------------*/
.process {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}

.process .section-title {
  margin-bottom: 18px;
}

.process .section-sub-title-box {
  margin-left: 0;
}

.process__inner {
  position: relative;
  display: block;
  counter-reset: count;
}

.process-shape-1 {
  position: absolute;
  top: 0;
  left: 135px;
}

.process-shape-1 img {
  width: auto;
}

.process__single {
  position: relative;
  display: block;
  text-align: center;
  padding: 0 40px 0;
  margin-bottom: 22px;
}

.process__icon-box {
  position: relative;
  display: block;
  height: 150px;
  width: 150px;
  margin: 0 auto;
}

.process__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-style: solid;
  border-width: 1px;
  border-color: rgb(223, 227, 231);
  border-radius: 50%;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 57px 0px rgba(0, 0, 0, 0.1);
  height: 148px;
  width: 148px;
  margin: 0 auto;
  z-index: 1;
}

.process__icon:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  border-radius: 50%;
  background-color: var(--theme-base);
  transform: scale(0);
  transform-origin: center;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
  z-index: -1;
}

.process__single:hover .process__icon:before {
  transform: scaleX(1);
}

.process__icon span {
  position: relative;
  display: inline-block;
  font-size: 60px;
  color: var(--theme-base);
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.process__single:hover .process__icon span {
  transform: scale(0.9);
  color: var(--theme-white);
}

.process__count {
  position: absolute;
  top: 0;
  left: 0;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background-color: var(--theme-primary);
  z-index: 2;
}

.process__count:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  color: var(--theme-white);
  font-size: 14px;
  line-height: 40px;
  font-weight: 700;
  border-radius: 50%;
  counter-increment: count;
  content: counters(count, ".", decimal-leading-zero);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.process__single:hover .process__count:before {
  background-color: var(--theme-black);
}

.process__content {
  position: relative;
  display: block;
  margin-top: 21px;
}

.process__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: var(--theme-letter-spacing);
  margin-bottom: 7px; color: #fff;
}

.process__text {
  font-size: 16px;
  letter-spacing: var(--theme-letter-spacing);
  color: #c2dfff;
}

.process__bottom {
  position: relative;
  display: block;
  margin-top: 35px;
}

.process__contact {
  position: relative;
  display: block;
}

.process__input-box {
  position: relative;
  display: block;
  max-width: 580px;
  width: 100%;
  margin: 0 auto;
}

.process__input-box input[type="text"] {
  height: 50px;
  width: 100%;
  border: 0;
  background-color: var(--theme-extra);
  border-radius: var(--theme--bdr-radius);
  font-size: 16px;
  font-weight: 500;
  color: var(--theme-gray);
  letter-spacing: var(--theme-letter-spacing);
  padding-left: 50px;
  padding-right: 195px;
  outline: none;
}

.process__btn {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  border: 0;
  width: 158px;
  background-color: var(--theme-base);
  font-size: 14px;
  color: var(--theme-white);
  font-weight: 700;
  letter-spacing: var(--theme-letter-spacing);
  border-top-right-radius: var(--theme--bdr-radius);
  border-bottom-right-radius: var(--theme--bdr-radius);
  text-align: center;
  transition: all 500ms ease;
}

.process__btn:hover {
  background-color: var(--theme-primary);
  color: var(--theme-black);
}

.process__single-2 {
  margin-top: 100px;
}

.process__single-2 .process__count {
  bottom: 0;
  right: 0;
  top: inherit;
  left: inherit;
}

.process__single-3 {
  margin-top: 50px;
}

.process__single-4 .process__count {
  bottom: 0;
  right: 0;
  top: inherit;
  left: inherit;
}

/*--------------------------------------------------------------
# Testimonial Two
--------------------------------------------------------------*/
.testimonial-two {
  position: relative;
  display: block;
  background-color: var(--theme-extra);
  padding: 120px 0 90px;
  z-index: 1;
}

.testimonial-two-shape-1 {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1432px;
  mix-blend-mode: luminosity;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: cover;
  opacity: .30;
  z-index: -1;
}

.testimonial-two__left {
  position: relative;
  display: block;
  margin-right: 50px;
  z-index: 5;
}

.testimonial-two__left .section-title {
  margin-bottom: 28px;
}

.testimonial-two__text {
  font-size: 18px;
  line-height: 30px;
  letter-spacing: var(--theme-letter-spacing);
}

.testimonial-two__point-box {
  position: relative;
  display: block;
  overflow: hidden;
  margin-top: 37px;
}

.testimonial-two__point {
  position: relative;
  display: block;
  float: left;
}

.testimonial-two__point li {
  position: relative;
  display: flex;
  align-items: center;
}

.testimonial-two__point li+li {
  margin-top: 31px;
}

.testimonial-two__point li .icon {
  position: relative;
  height: 43px;
  width: 43px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--theme-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.testimonial-two__point li:hover .icon {
  background-color: var(--theme-base);
  color: var(--theme-white);
}

.testimonial-two__point li .text {
  margin-left: 14px;
}

.testimonial-two__point li .text p {
  font-size: 16px;
  color: var(--theme-black);
  font-weight: 700;
  line-height: 26px;
}

.testimonial-two__point-two {
  margin-left: 33px;
}

.testimonial-two__right {
  position: relative;
  display: block;
  margin-left: 20px;
}

.testimonial-two__carousel {
  position: relative;
  display: block;
}

.testimonial-two__wrap {
  position: relative;
  display: block;
}

.testimonial-two__single {
  position: relative;
  display: block;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  margin-bottom: 30px;
}

.testimonial-two__single:before {
  position: absolute;
  top: 0;
  left: -39px;
  content: "";
  border-top: 0px solid transparent;
  border-right: 40px solid #fff;
  border-bottom: 40px solid transparent;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

.testimonial-two__single-inner {
  position: relative;
  display: block;
  overflow: hidden;
  padding-top: 42px;
  padding-bottom: 26px;
  background-color: var(--theme-white);
  border-top-right-radius: 20px;
  z-index: 1;
}

.testimonial-two-shape-2 {
  position: absolute;
  top: -20px;
  right: 0;
  mix-blend-mode: luminosity;
  opacity: .10;
  z-index: -1;
}

.testimonial-two-shape-2>img {
  width: auto;
}

.testimonial-two__content-box {
  position: relative;
  display: block;
  max-width: 296px;
  width: 100%;
  margin-left: 50px;
}

.testimonial-two__client-name {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  letter-spacing: var(--theme-letter-spacing);
  margin-bottom: 2px;
}

.testimonial-two__text-2 {
  font-size: 18px;
  line-height: 30px;
  letter-spacing: var(--theme-letter-spacing);
}

.testimonial-two__client-review {
  position: absolute;
  display: flex;
  align-items: center;
  top: 50px;
  right: 55px;
}

.testimonial-two__client-review i {
  font-size: 15px;
  color: #fab600;
}

.testimonial-two__client-review i+i {
  margin-left: 2px;
}

.testimonial-two__founder-box {
  position: relative;
  display: block;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  background-color: var(--theme-base);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.testimonial-two__founder {
  position: relative;
  display: block;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  padding-left: 50px;
  padding-top: 23px;
  padding-bottom: 23px;
  overflow: hidden;
  z-index: 1;
}

.testimonial-two__founder-text {
  font-size: 14px;
  color: var(--theme-white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 14px;
}

.testimonial-two__client-img-box {
  position: absolute;
  bottom: 20px;
  right: 30px;
  height: 150px;
  width: 150px;
  border-radius: 50%;
  background-color: var(--theme-white);
  padding: 10px;
  z-index: 1;
}

.testimonial-two__client-img {
  position: relative;
  display: block;
  width: 131px;
  height: 131px;
  padding: 6px;
  border-radius: 50%;
  background-image: -moz-linear-gradient(-29deg, rgb(1, 95, 201) 0%, rgb(12, 224, 255) 100%);
  background-image: -webkit-linear-gradient(-29deg, rgb(1, 95, 201) 0%, rgb(12, 224, 255) 100%);
  background-image: -ms-linear-gradient(-29deg, rgb(1, 95, 201) 0%, rgb(12, 224, 255) 100%);
}

.testimonial-two__client-img>img {
  width: 100% !important;
  border-radius: 50%;
  border: 6px solid var(--theme-white);
}

.testimonial-two__quote {
  position: absolute;
  top: 50%;
  left: -28px;
  transform: translateY(-50%);
  border-radius: 50%;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.07);
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-two__quote>img {
  width: auto !important;
}

.testimonial-two__founder-shape {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.testimonial-two__founder-shape>img {
  width: auto;
}

.testimonial-two__carousel.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.testimonial-two__carousel.owl-carousel .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.testimonial-two__carousel.owl-carousel .owl-item.active {
  opacity: 1;
  visibility: visible;
}


.testimonial-two__carousel.owl-carousel .owl-dots {
  position: absolute;
  right: -185px;
  top: 265px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  height: 10px;
  max-width: 300px;
  width: 100%;
  border-radius: 5px;
  background-color: var(--theme-white);
  margin-top: 0px !important;
  transform: rotate(-90deg);
}

.testimonial-two__carousel.owl-carousel .owl-dots .owl-dot {
  position: relative;
  display: inline-block;
  height: 10px;
  width: 100px;
  border-radius: 5px;
  background-color: transparent;
  margin: 0;
  padding: 0 !important;
  -webkit-transition: all 100ms linear;
  transition: all 100ms linear;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.testimonial-two__carousel.owl-carousel .owl-dot.active {
  background-color: var(--theme-primary);
  opacity: 1;
}

.testimonial-two__carousel.owl-carousel .owl-dot:focus {
  outline: none;
}

.testimonial-two__carousel.owl-carousel .owl-dots .owl-dot span {
  display: none;
}

/*--------------------------------------------------------------
# News Two
--------------------------------------------------------------*/
.news-two {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}

.news-two .section-sub-title-box {
  margin-left: 0;
}

.news-two__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.news-two__img {
  position: relative;
  display: block;
  border-top-left-radius: var(--theme--bdr-radius);
  border-top-right-radius: var(--theme--bdr-radius);
  overflow: hidden;
  z-index: 1;
}

.news-two__img:before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-top-left-radius: var(--theme--bdr-radius);
  border-top-right-radius: var(--theme--bdr-radius);
  background-color: rgba(var(--theme-black-rgb), .50);
  -webkit-transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease, -webkit-transform 500ms ease;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateY(-70%);
  transform: translateY(-70%);
  z-index: 1;
}

.news-two__single:hover .news-two__img:before {
  visibility: visible;
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
  opacity: 1;
}

.news-two__img img {
  width: 100%;
  border-top-left-radius: var(--theme--bdr-radius);
  border-top-right-radius: var(--theme--bdr-radius);
  transition: all 500ms ease;
}

.news-two__single:hover .news-two__img img {
  transform: scale(1.05);
}

.news-two__arrow-box {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.news-two__arrow {
  height: 50px;
  width: 50px;
  border: 2px solid var(--theme-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-white);
  font-size: 15px;
  opacity: 0;
  transform: translateY(70px);
  transition: all 500ms ease;
}

.news-two__single:hover .news-two__arrow {
  opacity: 1;
  transform: translateY(0%);
  transition-delay: 500ms;
}

.news-two__arrow:hover {
  border: 2px solid var(--theme-primary);
  color: var(--theme-primary);
}

.news-two__content {
  position: relative;
  display: block;
  border-bottom-left-radius: var(--theme--bdr-radius);
  border-bottom-right-radius: var(--theme--bdr-radius);
  border: 1px solid var(--theme--bdr-color);
  background-color: var(--theme-white);
  border-top: 0;
  padding: 33px 40px 40px;
  transition: all 500ms ease;
}

.news-two__single:hover .news-two__content {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
}

.news-two__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: var(--theme-letter-spacing);
  margin-bottom: 23px;
}

.news-two__title a {
  color: var(--theme-black);
  transition: all 500ms ease;
}

.news-two__single:hover .news-two__title a {
  color: var(--theme-base);
}

.news-two__client {
  position: relative;
  display: flex;
  align-items: center;
}

.news-two__client-img {
  position: relative;
  display: inline-block;
}

.news-two__client-img img {
  border: 2px solid var(--theme-primary);
  border-radius: 50%;
}

.news-two__client-content {
  margin-left: 15px;
}

.news-two__client-content p {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: var(--theme-letter-spacing);
  line-height: 24px;
}

.news-two__client-content h5 {
  font-size: 14px;
  color: var(--theme-base);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 24px;
}

.news-two__tag {
  position: absolute;
  top: -20px;
  right: 20px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.1);
  padding: 14px 20px;
  border-radius: var(--theme--bdr-radius);
  z-index: 2;
}

.news-two__tag p {
  font-size: 12px;
  color: var(--theme-black);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 12px;
}

.news-two__tag p i {
  font-size: 12px;
  padding-right: 3px;
}

/*--------------------------------------------------------------
# Google Map
--------------------------------------------------------------*/
.google-map {
  position: relative;
  display: block;
  background-color: var(--theme-extra);
}

.google-map__one {
  position: relative;
  display: block;
  border: none;
  height: 420px;
  width: 100%;
  mix-blend-mode: luminosity;
}


/*--------------------------------------------------------------
# Feature Three
--------------------------------------------------------------*/
.feature-three {
  position: relative;
  display: block;
  padding: 0 0 90px;
  margin-top: -30px;
  z-index: 2;
}

.feature-three-shape {
  position: absolute;
  top: 30px;
  right: -30px;
  z-index: -1;
}

.feature-three-shape img {
  width: auto;
}

.feature-three__single {
  position: relative;
  display: flex;
  align-items: center;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.07);
  border-radius: var(--theme--bdr-radius);
  padding: 30px 40px 30px;
  margin-bottom: 30px;
  z-index: 1;
}

.feature-three__single:after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  content: "";
  border-radius: var(--theme--bdr-radius);
  background-color: var(--theme-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  opacity: 1;
  -webkit-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  z-index: -1;
}

.feature-three__single:hover:after {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.feature-three__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 85px;
  width: 85px;
  background-color: var(--theme-extra);
  border-radius: 50%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.feature-three__single:hover .feature-three__icon {
  background-color: var(--theme-primary);
}

.feature-three__icon span {
  position: relative;
  display: inline-block;
  font-size: 36px;
  color: var(--theme-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.feature-three__single:hover .feature-three__icon span {
  color: var(--theme-white);
}

.feature-three__content {
  position: relative;
  margin-left: 20px;
}

.feature-three__sub-title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.feature-three__single:hover .feature-three__sub-title {
  color: var(--theme-white);
}

.feature-three__title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: var(--theme-letter-spacing);
  line-height: 26px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.feature-three__single:hover .feature-three__title {
  color: var(--theme-white);
}

/*--------------------------------------------------------------
# Site Footer
--------------------------------------------------------------*/
.about-three {
  position: relative;
  display: block;
  padding: 0 0 120px;
}

.about-three__left {
  position: relative;
  display: block;
  margin-right: 70px;
}

.about-three__img-box {
  position: relative;
  display: block;
}

.about-three__img {
  position: relative;
  display: block;
  z-index: 1;
}

.about-three__img>img {
  width: 100%;
  border-radius: var(--theme--bdr-radius);
}

.about-three__shape-1 {
  position: absolute;
  top: 42px;
  left: 0;
  right: 0;
}

.about-three__shape-1>img {
  width: 100%;
  border-radius: var(--theme--bdr-radius);
}

.about-three__location {
  position: absolute;
  bottom: 135px;
  left: -68px;
  height: 150px;
  width: 190px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.about-three__location-text {
  font-size: 20px;
  color: var(--theme-white);
  font-weight: 700;
  letter-spacing: var(--theme-letter-spacing);
  line-height: 24px;
}

.about-three__location-bg {
  position: absolute;
  top: 0;
  left: 8px;
  right: -8px;
  bottom: 0;
  z-index: -1;
}

.about-three__right {
  position: relative;
  display: block;
}

.about-three__right .section-title {
  margin-bottom: 34px;
}

.about-three__business-start {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.about-three__business-start-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.about-three__business-start-icon span {
  font-size: 60px;
  color: var(--theme-base);
  position: relative;
  display: inline-block;
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.about-three__business-start:hover .about-three__business-start-icon span {
  transform: scale(.9);
}

.about-three__business-start-text-box {
  position: relative;
  margin-left: 30px;
}

.about-three__business-start-text {
  font-size: 24px;
  color: var(--theme-black);
  font-weight: 700;
  line-height: 36px;
  letter-spacing: var(--theme-letter-spacing);
}

.about-three__business-start-text span {
  color: var(--theme-primary);
  position: relative;
  display: inline-block;
}

.about-three__business-start-text span:before {
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 1px;
  content: "";
  background-color: var(--theme-primary);
}

.about-three__text {
  font-size: 18px;
  line-height: 34px;
  letter-spacing: var(--theme-letter-spacing);
}

.about-three__bottom {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 41px;
}

.about-three__founder {
  position: relative;
  display: flex;
  align-items: center;
}

.about-three__founder-img {
  position: relative;
  display: flex;
  align-items: center;
}

.about-three__founder-img img {
  border-radius: 50%;
  border: 2px solid var(--theme-primary);
  width: auto;
}

.about-three__founder-content {
  position: relative;
  margin-left: 30px;
  top: 10px;
}

.about-three__founder-name {
  font-size: 20px;
  letter-spacing: var(--theme-letter-spacing);
  font-family: var(--theme-reey-font);
  line-height: 22px;
}

.about-three__founder-sub-title {
  font-size: 14px;
  letter-spacing: var(--theme-letter-spacing);
  line-height: 26px;
  margin-left: -16px;
}

.about-three__btn-box {
  margin-left: 20px;
}

/*--------------------------------------------------------------
# Services Three
--------------------------------------------------------------*/
.services-three {
  position: relative;
  display: block;
  padding: 0 0 90px;
  z-index: 1;
}

.services-three__inner {
  position: relative;
  display: block;
  z-index: 1;
}

.services-three-shape-1 {
  position: absolute;
  bottom: -126px;
  right: -160px;
  opacity: 0.05;
  -webkit-animation-name: shapeMover-2;
  animation-name: shapeMover-2;
  -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;
  z-index: 1;
}

.services-three-shape-1 img {
  width: auto;
}

.services-three__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.services-three .section-title {
  margin-bottom: 0;
}

.services-three__img {
  position: relative;
  display: block;
  border-radius: var(--theme--bdr-radius);
  overflow: hidden;
  z-index: 1;
}

.services-three__img::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background: rgb(22, 36, 61);
  background: linear-gradient(0deg, rgba(22, 36, 61, 0.9164040616246498) 14%, rgba(22, 36, 61, 0.036852240896358524) 58%);
  z-index: 1;
}

.services-three__img:after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: rgba(var(--theme-black-rgb), .30);
  transition: all 500ms ease;
  transform: translate3d(0px, -100%, 0px);
}

.services-three__single:hover .services-three__img:after {
  transform: translate3d(0px, 0, 0px);
}

.services-three__img img {
  width: 100%;
  border-radius: var(--theme--bdr-radius);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-three__single:hover .services-three__img img {
  transform: scale(1.05);
}

.services-three__content {
  position: absolute;
  bottom: 25px;
  left: 30px;
  z-index: 2;
}

.services-three__title {
  font-size: 20px;
  line-height: 24px;
  letter-spacing: var(--theme-letter-spacing);
}

.services-three__title a {
  color: var(--theme-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-three__single:hover .services-three__title a {
  color: var(--theme-primary);
}

.services-three__get-quote {
  position: relative;
  display: block;
  background-color: var(--theme-extra);
  border-radius: var(--theme--bdr-radius);
  padding: 39px 60px 50px;
}

.services-three__get-quote-sub-title {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 33px;
}

.services-three__get-quote-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: var(--theme-letter-spacing);
  margin-bottom: 26px;
}

.services-three__get-quote-btn {
  padding: 12px 30px 12px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Benefits
--------------------------------------------------------------*/
.benefits {
  position: relative;
  display: block;
  background-color: var(--theme-extra);
  padding: 120px 0 110px;
  z-index: 1;
}

.benefits-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 886px;
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: cover;
  z-index: 1;
}

.benefits-bg-2 {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1424px;
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: cover;
  opacity: .30;
  z-index: -1;
}

.benefits__left {
  position: relative;
  display: block;
  margin-right: 20px;
}

.benefits__left .section-title {
  margin-bottom: 30px;
}

.benefits__text {
  font-size: 18px;
  line-height: 30px;
  letter-spacing: var(--theme-letter-spacing);
}

.benefits__point-box {
  position: relative;
  display: block;
  overflow: hidden;
  margin-top: 41px;
}

.benefits__point {
  position: relative;
  display: block;
  float: left;
}

.benefits__point li {
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--theme-white);
  border-radius: var(--theme--bdr-radius);
  padding-top: 22px;
  padding-bottom: 22px;
  padding-left: 30px;
  padding-right: 35px;
  margin-bottom: 10px;
  transition: all 500ms ease;
}

.benefits__point li:hover {
  background-color: var(--theme-base);
}

.benefits__point li .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 16px;
  width: 16px;
  background-color: var(--theme-base);
  border-radius: 50%;
  color: var(--theme-white);
  font-size: 8px;
  transition: all 500ms ease;
}

.benefits__point li:hover .icon {
  background-color: var(--theme-primary);
  color: var(--theme-base);
}

.benefits__point li .text {
  margin-left: 10px;
}

.benefits__point li .text p {
  font-size: 18px;
  color: var(--theme-black);
  font-weight: 500;
  letter-spacing: var(--theme-letter-spacing);
  transition: all 500ms ease;
}

.benefits__point li:hover .text p {
  color: var(--theme-white);
}

.benefits__point-two {
  margin-left: 10px;
}

/*--------------------------------------------------------------
# Testimonial Three
--------------------------------------------------------------*/
.testimonial-three {
  position: relative;
  display: block;
  padding: 120px 0 170px;
}

.testimonial-three__top {
  position: relative;
  display: block;
  margin-bottom: 108px;
}

.testimonial-three__left {
  position: relative;
  display: block;
}

.testimonial-three__left .section-title {
  margin-bottom: 0px;
}

.testimonial-three__right {
  position: relative;
  display: block;
  margin-left: 100px;
  margin-top: 16px;
}

.testimonial-three__right-text {
  font-size: 18px;
  line-height: 30px;
  letter-spacing: var(--theme-letter-spacing);
}

.testimonial-three__bottom {
  position: relative;
  display: block;
}

.testimonial-three__carousel {
  position: relative;
  display: block;
}

.testimonial-three__single {
  position: relative;
  display: block;
  text-align: center;
  border: 1px solid var(--theme--bdr-color);
  border-radius: 20px;
  padding: 108px 48px 51px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.testimonial-three__single:hover {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  transform: translateY(-10px);
}

.testimonial-three__client-img-box {
  position: absolute;
  top: -73px;
  left: 50%;
  transform: translateX(-50%);
  height: 150px;
  width: 150px;
  border-radius: 50%;
  background-color: var(--theme-white);
  padding: 10px;
  z-index: 1;
}

.testimonial-three__client-img {
  position: relative;
  display: block;
  width: 131px;
  height: 131px;
  padding: 6px;
  border-radius: 50%;
  background-image: -moz-linear-gradient(-29deg, rgb(1, 95, 201) 0%, rgb(12, 224, 255) 100%);
  background-image: -webkit-linear-gradient(-29deg, rgb(1, 95, 201) 0%, rgb(12, 224, 255) 100%);
  background-image: -ms-linear-gradient(-29deg, rgb(1, 95, 201) 0%, rgb(12, 224, 255) 100%);
}

.testimonial-three__client-img>img {
  width: 100% !important;
  border-radius: 50%;
  border: 6px solid var(--theme-white);
}

.testimonial-three__quote {
  position: absolute;
  bottom: -17px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.07);
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-three__quote>img {
  width: auto !important;
}

.testimonial-three__star {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-three__star i {
  font-size: 15px;
  color: #fab600;
}

.testimonial-three__text {
  font-size: 18px;
  line-height: 30px;
  letter-spacing: var(--theme-letter-spacing);
  padding-top: 23px;
  padding-bottom: 23px;
}

.testimonial-three__client {
  position: relative;
  display: block;
}

.testimonial-three__client-name {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  letter-spacing: var(--theme-letter-spacing);
}

.testimonial-three__client-sub-title {
  font-size: 14px;
  color: var(--theme-base);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.testimonial-three__carousel.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.testimonial-three__carousel.owl-carousel .owl-stage-outer {
  overflow: visible;

}

.testimonial-three__carousel.owl-carousel .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.testimonial-three__carousel.owl-carousel .owl-item.active {
  opacity: 1;
  visibility: visible;
}

.testimonial-three__carousel.owl-carousel .owl-dots {
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  max-width: 300px;
  width: 100%;
  margin: 0 auto !important;
  border-radius: 5px;
  height: 10px;
  background-color: var(--theme-extra);
}

.testimonial-three__carousel.owl-carousel .owl-dots .owl-dot {
  position: relative;
  display: inline-block;
  width: 100px;
  height: 10px;
  border-radius: 5px;
  background-color: transparent;
  margin: 0;
  padding: 0 !important;
  -webkit-transition: all 100ms linear;
  transition: all 100ms linear;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.testimonial-three__carousel.owl-carousel .owl-dot.active {
  background-color: var(--theme-primary);
  opacity: 1;
}

.testimonial-three__carousel.owl-carousel .owl-dot:focus {
  outline: none;
}

.testimonial-three__carousel.owl-carousel .owl-dots .owl-dot span {
  display: none;
}

/*--------------------------------------------------------------
# Download
--------------------------------------------------------------*/
.download {
  position: relative;
  display: block;
  background-color: var(--theme-base);
  padding: 120px 0 0;
  overflow: hidden;
  z-index: 1;
}

.download-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  right: -1px;
  width: 828px;
  mix-blend-mode: luminosity;
  background-repeat: no-repeat;
  background-position: top center;
  opacity: 0.08;
  z-index: -1;
}

.download-shape-1 {
  position: absolute;
  top: -240px;
  left: 0;
}

.download-shape-1 img {
  width: auto;
}

.download-shape-2 {
  position: absolute;
  bottom: 87px;
  left: 0;
}

.download-shape-2 img {
  width: auto;
}

.download__left {
  position: relative;
  display: block;
  margin-top: 9px;
}

.download__sub-title {
  font-size: 18px;
  color: var(--theme-white);
  letter-spacing: var(--theme-letter-spacing);
}

.download__title {
  font-size: 50px;
  color: var(--theme-white);
  font-weight: 700;
  line-height: 60px;
  letter-spacing: var(--theme-letter-spacing);
  margin-top: 7px;
  margin-bottom: 47px;
}

.download__apps {
  position: relative;
  display: flex;
  align-items: center;
}

.download__app-one {
  position: relative;
  display: block;
  max-width: 215px;
  width: 100%;
}

.download__app-one>a {
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--theme-white);
  border-radius: var(--theme--bdr-radius);
  padding: 9px 40px 18px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.download__app-one:hover>a {
  background-color: var(--theme-primary);
}

.download__app-one>a>i {
  font-size: 20px;
  color: var(--theme-black);
  position: relative;
  top: 6px;
}

.download__app-one>a>p {
  font-size: 18px;
  color: var(--theme-black);
  font-weight: 700;
  margin-left: 15px;
  line-height: 20px;
}

.download__app-one>a>p>span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.download__app-one--two {
  margin-left: 10px;
}

.download__app-one--two>a {
  background-color: var(--theme-black);
}

.download__app-one--two>a>i {
  color: var(--theme-white);
}

.download__app-one--two>a>p {
  color: var(--theme-white);
}

.download__right {
  position: relative;
  display: block;
  margin-left: 58px;
}

.download__img {
  position: relative;
  display: block;
  top: 1px;
}

.download__img>img {
  width: 100%;
}

.download__badge {
  position: absolute;
  top: 10px;
  left: -98px;
}

.download__badge>img {
  width: auto;
}

/*--------------------------------------------------------------
# We Provide
--------------------------------------------------------------*/
.we-provide {
  position: relative;
  display: block;
  background-color: var(--theme-extra);
  padding: 120px 0 120px;
  z-index: 1;
}

.we-provide-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  mix-blend-mode: luminosity;
  opacity: .20;
  z-index: -1;
}

.we-provide .section-sub-title-box {
  margin-left: 0;
}

.we-provide__tab {
  position: relative;
  display: block;
}

.we-provide__tab-box {
  position: relative;
  display: block;
  z-index: 2;
}

.we-provide__tab-btn-box {
  position: relative;
  display: block;
  margin-right: -30px;
}

.we-provide__tab-box .tab-buttons {
  position: relative;
  display: block;
  background-color: var(--theme-white);
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  padding-right: 18px;
  z-index: 1;
}

.we-provide__tab-box .tab-buttons:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  content: "";
  width: 6px;
  background-color: var(--theme--bdr-color);
  z-index: -1;
}

.we-provide__tab-box .tab-buttons .tab-btn {
  position: relative;
  display: block;
  border-bottom: 2px solid var(--theme--bdr-color);
}

.we-provide__tab-box .tab-buttons .tab-btn.active-btn {
  border-bottom: 2px solid transparent;
}

.we-provide__tab-box .tab-buttons .tab-btn:last-child {
  border-bottom: 0;
}

.we-provide__tab-box .tab-buttons .tab-btn+.tab-btn {
  margin-left: 0px;
}

.we-provide__tab-box .tab-buttons .tab-btn span {
  position: relative;
  display: block;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
  font-size: 18px;
  color: var(--theme-black);
  font-weight: 700;
  letter-spacing: var(--theme-letter-spacing);
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 1;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  padding-left: 47px;
  max-width: 282px;
  width: 100%;
  padding-top: 26px;
  padding-bottom: 26px;
  z-index: 1;
}

.we-provide__tab-box .tab-buttons .tab-btn.active-btn span {
  color: var(--theme-white);
}

.we-provide__tab-box .tab-buttons .tab-btn span:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  content: "";
  background-color: var(--theme-black);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: -1;
}

.we-provide__tab-box .tab-buttons .tab-btn.active-btn span:before {
  height: 100%;
}

.we-provide__tab-box .tab-buttons .tab-btn span:after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 6px;
  content: "";
  background-color: var(--theme-primary);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  transform: scaleY(0);
  z-index: -1;
}

.we-provide__tab-box .tab-buttons .tab-btn.active-btn span:after {
  transform: scaleY(1);
}

.we-provide__tab-main-content {
  position: relative;
  display: block;
  margin-left: 30px;
}

.we-provide__tab-box .tabs-content {
  position: relative;
  display: block;
}

.we-provide__tab-box .tabs-content .tab {
  position: relative;
  display: none;
  -webkit-transform: translateY(35px);
  transform: translateY(35px);
  -webkit-transition: all 600ms ease;
  transition: all 600ms ease;
  z-index: 10;
}

.we-provide__tab-box .tabs-content .tab.active-tab {
  display: block;
  margin-top: 0px;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

.we-provide__tab-main-content-inner {
  position: relative;
  display: flex;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  border-radius: var(--theme--bdr-radius);
  padding-left: 60px;
  padding-right: 50px;
  padding-top: 49px;
  padding-bottom: 49px;
  z-index: 1;
}

.we-provide-shape-1 {
  position: absolute;
  top: 0;
  right: 0;
  opacity: .10;
  z-index: -1;
}

.we-provide-shape-1 img {
  width: auto;
}

.we-provide__tab-main-content-left {
  position: relative;
  display: block;
  max-width: 396px;
  width: 100%;
}

.we-provide__tab-main-content-icon {
  position: relative;
  display: block;
}

.we-provide__tab-main-content-icon span {
  position: relative;
  display: inline-block;
  font-size: 64px;
  color: var(--theme-base);
}

.we-provide__tab-main-content-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  letter-spacing: var(--theme-letter-spacing);
  margin-top: 15px;
  margin-bottom: 13px;
}

.we-provide__tab-main-content-text {
  line-height: 28px;
  letter-spacing: var(--theme-letter-spacing);
}

.we-provide__tab-main-content-points {
  position: relative;
  display: block;
  margin-top: 16px;
}

.we-provide__tab-main-content-points li {
  position: relative;
  display: flex;
  align-items: center;
}

.we-provide__tab-main-content-points li+li {
  margin-top: 8px;
}

.we-provide__tab-main-content-points li .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 16px;
  width: 16px;
  background-color: var(--theme-primary);
  font-size: 9px;
  color: var(--theme-white);
  border-radius: 50%;
}

.we-provide__tab-main-content-points li .text {
  margin-left: 10px;
}

.we-provide__tab-main-content-points li .text p {
  font-size: 18px;
  color: var(--theme-black);
  font-weight: 700;
}

.we-provide__tab-main-content-right {
  position: relative;
  display: block;
  margin-left: 64px;
}

.we-provide__tab-main-content-right-img {
  position: relative;
  display: block;
}

.we-provide__tab-main-content-right-img img {
  width: auto;
  border-radius: var(--theme--bdr-radius);
}

/*--------------------------------------------------------------
# News Three
--------------------------------------------------------------*/
.news-three {
  position: relative;
  display: block;
  padding: 0 0 90px;
}

.news-three .section-sub-title-box {
  margin-left: 0;
}

.news-three__single {
  position: relative;
  display: block;
  border: 1px solid var(--theme--bdr-color);
  border-radius: var(--theme--bdr-radius);
  padding: 59px 59px 55px;
  overflow: hidden;
  transition: all 500ms ease;
  margin-bottom: 30px;
  z-index: 1;
}

.news-three__single:hover {
  border: 1px solid transparent;
}

.news-three-bg {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: var(--theme--bdr-radius);
  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;
}

.news-three-bg:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  border-radius: var(--theme--bdr-radius);
  background-color: rgba(var(--theme-black-rgb), .70);
}

.news-three__single:hover .news-three-bg {
  transform: scaleY(1.0);
}

.news-three__client-info {
  position: relative;
  display: flex;
  align-items: center;
}

.news-three__client-img {
  position: relative;
  display: inline-block;
}

.news-three__client-img img {
  border: 2px solid var(--theme-primary);
  border-radius: 50%;
}

.news-three__client-content {
  position: relative;
  display: block;
  margin-left: 15px;
}

.news-three__client-content p {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: var(--theme-letter-spacing);
  line-height: 24px;
  transition: all 500ms ease;
}

.news-three__single:hover .news-three__client-content p {
  color: var(--theme-white);
}

.news-three__client-content p i {
  color: var(--theme-primary);
  padding-right: 5px;
  transition: all 500ms ease;
}

.news-three__single:hover .news-three__client-content p i {
  color: var(--theme-white);
}

.news-three__client-content h5 {
  font-size: 14px;
  color: var(--theme-base);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 24px;
  transition: all 500ms ease;
}

.news-three__single:hover .news-three__client-content h5 {
  color: var(--theme-white);
}

.news-three__content {
  position: relative;
  display: block;
  margin-top: 22px;
}

.news-three__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  letter-spacing: var(--theme-letter-spacing);
}

.news-three__title a {
  color: var(--theme-black);
  transition: all 500ms ease;
}

.news-three__single:hover .news-three__title a {
  color: var(--theme-white);
}

.news-three__arrow {
  position: relative;
  display: block;
  margin-top: 27px;
}

.news-three__arrow a {
  font-size: 16px;
  color: var(--theme-black);
  display: flex;
  align-items: center;
  transition: all 500ms ease;
}

.news-three__single:hover .news-three__arrow a {
  color: var(--theme-white);
}

/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
  position: relative;
  display: block;
  padding: 60px 0 60px;
  background-color: var(--theme-extra);
  z-index: 1;
}

.page-header-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.page-header-bg:before {
  position: absolute;
  top: 0;
  left: -1px;
  bottom: 0;
  width: 550px;
  content: "";
  background-image: -moz-linear-gradient(0deg, rgb(243, 246, 248) 0%, rgba(243, 246, 248, 0) 100%);
  background-image: -webkit-linear-gradient(0deg, rgb(243, 246, 248) 0%, rgba(243, 246, 248, 0) 100%);
  background-image: -ms-linear-gradient(0deg, rgb(243, 246, 248) 0%, rgba(243, 246, 248, 0) 100%);
}

.page-header-shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  mix-blend-mode: luminosity;
  opacity: .20;
}

.page-header-shape-1 img {
  width: auto;
}

.page-header__inner {
  position: relative;
  display: block;
  z-index: 15;
}

.page-header__inner h2 {
  font-size: 40px;
  color: var(--theme-black);
  font-weight: 700;
  line-height: 52px;
  letter-spacing: -0.04em;
}

.thm-breadcrumb {
  position: relative;
  display: block;
}

.thm-breadcrumb li {
  position: relative;
  display: inline-block;
  color: var(--theme-base);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.thm-breadcrumb li+li {
  margin-left: 5px;
}

.thm-breadcrumb li a {
  position: relative;
  display: inline-block;
  color: var(--theme-gray);
  font-size: 14px;
  font-weight: 400;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.thm-breadcrumb li:hover a {
  color: var(--theme-base);
}

/*--------------------------------------------------------------
# News Carousel Page
--------------------------------------------------------------*/
.news-carousel-page {
  position: relative;
  display: block;
  padding: 120px 0 133px;
}

.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: -13px;
  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: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: rgba(var(--theme-base-rgb), 0.3);
  margin: 0px 5px;
  padding: 0px;
  transition: all 100ms linear;
  transition-delay: 0.1s;
}

.carousel-dot-style.owl-carousel .owl-dot.active {
  background-color: rgba(var(--theme-primary-rgb), 1);
}

.carousel-dot-style.owl-carousel .owl-dot:focus {
  outline: none;
}

.carousel-dot-style.owl-carousel .owl-dots .owl-dot span {
  display: none;
}

/*--------------------------------------------------------------
# News Sidebar
--------------------------------------------------------------*/
.news-sidebar {
  position: relative;
  display: block;
  padding: 120px 0 120px;
}

.news-sideabr__left {
  position: relative;
  display: block;
}

.news-sideabr__content {
  position: relative;
  display: block;
}

.news-sideabr__single {
  position: relative;
  display: block;
}

.news-sideabr__single+.news-sideabr__single {
  margin-top: 30px;
}

.news-sideabr__img {
  position: relative;
  display: block;
  border-radius: var(--theme--bdr-radius);
}

.news-sideabr__img img {
  width: 100%;
  border-radius: var(--theme--bdr-radius);
}

.news-sideabr__content-box {
  position: relative;
  display: block;
  margin-top: 24px;
}

.news-sideabr__meta {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.news-sideabr__meta li+li {
  margin-left: 15px;
}

.news-sideabr__meta li a {
  font-size: 14px;
  color: var(--theme-gray);
  font-weight: 500;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-sideabr__meta li a:hover {
  color: var(--theme-base);
}

.news-sideabr__meta li a i {
  color: var(--theme-base);
}

.news-sideabr__title {
  font-size: 34px;
  font-weight: 700;
  line-height: 44px;
  margin-top: 4px;
  margin-bottom: 12px;
  letter-spacing: var(--theme-letter-spacing);
}

.news-sideabr__title a {
  color: var(--theme-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-sideabr__title a:hover {
  color: var(--theme-base);
}

.news-sideabr__text {
  padding-bottom: 25px;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: var(--theme-letter-spacing);
}

.news-sideabr__btn {
  font-size: 12px;
  font-weight: 500;
  color: var(--theme-gray);
  letter-spacing: var(--theme-letter-spacing);
  padding: 7px 30px 7px;
  background-color: var(--theme-extra);
  border-radius: var(--theme--bdr-radius);
}

.news-sideabr__bottom-box {
  position: relative;
  display: block;
  background-color: var(--theme-extra);
  padding: 50px 60px 45px;
  margin-top: 30px;
  border-radius: var(--theme--bdr-radius);
}

.news-sideabr__bottom-box-icon {
  margin-bottom: 21px;
}

.news-sideabr__bottom-box-text {
  margin: 0;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: var(--theme-letter-spacing);
}

.news-sideabr__delivering-services {
  position: relative;
  display: block;
  background-color: var(--theme-extra);
  padding: 50px 60px 47px;
  margin-top: 30px;
  margin-bottom: 30px;
  border-radius: var(--theme--bdr-radius);
}

.news-sideabr__delivering-services-icon {
  margin-bottom: 21px;
}

.news-sideabr__delivering-services-title {
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
}

.news-sideabr__delivering-services-title a {
  color: var(--theme-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-sideabr__delivering-services-title a:hover {
  color: var(--theme-base);
}

.news-sideabr__video-link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  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;
}

.news-sideabr__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: 97px;
  height: 97px;
  line-height: 97px;
  text-align: center;
  font-size: 23px;
  color: var(--theme-white);
  background-color: var(--theme-primary);
  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;
}

.news-sideabr__video-icon:hover {
  background-color: var(--theme-white);
  color: var(--theme-base);
}

.news-sideabr__video-icon:before {
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  content: "";
  border-radius: 50%;
  border: 1px solid var(--theme-white);
  opacity: 0.1;
  z-index: 1;
}

.news-sideabr__video-link .ripple,
.news-sideabr__video-icon .ripple:before,
.news-sideabr__video-icon .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 125px;
  height: 125px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(var(--theme-primary-rgb), 0.6);
  -o-box-shadow: 0 0 0 0 rgba(var(--theme-primary-rgb), 0.6);
  -webkit-box-shadow: 0 0 0 0 rgba(var(--theme-primary-rgb), 0.6);
  box-shadow: 0 0 0 0 rgba(var(--theme-primary-rgb), 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
  border-radius: 50%;
}

.news-sideabr__video-icon .ripple:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.news-sideabr__video-icon .ripple:after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

/*--------------------------------------------------------------
# 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: 700;
  letter-spacing: var(--theme-letter-spacing);
}

.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(--theme-base);
  color: var(--theme-white);
  font-size: 18px;
  font-weight: 400;
  padding-left: 50px;
  height: 80px;
  width: 100%;
  padding-right: 80px;
  border-radius: 10px;
}

.sidebar__search-form ::-webkit-input-placeholder {
  color: var(--theme-white);
  opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
  color: var(--theme-white);
  opacity: 1;
}

.sidebar__search-form ::-ms-input-placeholder {
  color: var(--theme-white);
  opacity: 1;
}

.sidebar__search-form ::placeholder {
  color: var(--theme-white);
  opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
  color: var(--theme-white);
}

.sidebar__search-form ::-ms-input-placeholder {
  color: var(--theme-white);
}

.sidebar__search-form button[type="submit"] {
  background-color: transparent;
  color: var(--theme-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: 45px 30px 30px;
  background-color: var(--theme-extra);
  border-radius: var(--theme--bdr-radius);
}

.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: 15px 20px 16px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  border-radius: var(--theme--bdr-radius);
}

.sidebar__post-list li:hover {
  background-color: var(--theme-white);
}

.sidebar__post-list li+li {
  margin-top: 10px;
}

.sidebar__post-image {
  margin-right: 20px;
}

.sidebar__post-image>img {
  width: 70px;
  border-radius: var(--theme--bdr-radius);
}

.sidebar__post-content {
  position: relative;
}

.sidebar__post-content h3 {
  font-size: 16px;
  margin: 0;
  line-height: 26px;
}

.sidebar__post-content-meta {
  font-size: 14px;
  font-weight: 500;
  color: var(--theme-gray) !important;
  letter-spacing: var(--theme-letter-spacing);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.sidebar__post-content-meta i {
  color: var(--theme-base);
  font-size: 14px;
  padding-right: 1px;
}

.sidebar__post-content h3 a {
  color: var(--theme-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  margin-top: 1px;
  display: block;
  font-size: 16px;
  font-weight: 700;
}

.sidebar__category {
  position: relative;
  display: block;
  background-color: var(--theme-extra);
  padding: 45px 30px 35px;
  border-radius: var(--theme--bdr-radius);
}

.sidebar__category .sidebar__title {
  padding-left: 20px;
  margin-bottom: 11px;
}

.sidebar__category-list {
  margin: 0;
}

.sidebar__category-list li+li {
  margin-top: 8px;
}

.sidebar__category-list li a {
  color: var(--theme-gray);
  font-size: 16px;
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  display: block;
  background: none;
  padding: 7px 20px 7px;
  border-radius: var(--theme--bdr-radius);
  font-weight: 500;
}

.sidebar__category-list li a:hover {
  background-color: white;
  -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);
  color: var(--theme-base);
}

.sidebar__category-list li.active a {
  background-color: white;
  -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);
  color: var(--theme-base);
}

.sidebar__category-list li a span {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%) scale(0);
  transform: translateY(-50%) scale(0);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  color: var(--theme-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(--theme-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(--theme-base);
}

.sidebar__tags {
  position: relative;
  display: block;
  background: var(--theme-extra);
  padding: 45px 45px 50px;
  border-radius: var(--theme--bdr-radius);
}

.sidebar__tags .sidebar__title {
  margin-left: 5px;
  margin-bottom: 25px;
}

.sidebar__tags-list {
  margin-top: -10px;
}

.sidebar__tags-list a {
  font-size: 14px;
  color: var(--theme-gray);
  letter-spacing: var(--theme-letter-spacing);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background: var(--theme-white);
  display: inline-block;
  padding: 7px 20px 7px;
  margin-left: 5px;
  font-weight: 500;
  border-radius: var(--theme--bdr-radius);
}

.sidebar__tags-list a+a {
  margin-left: 5px;
  margin-top: 10px;
}

.sidebar__tags-list a:hover {
  color: var(--theme-white);
  background: var(--theme-base);
}

.sidebar__comments {
  position: relative;
  display: block;
  background: var(--theme-extra);
  padding: 45px 50px 43px;
  border-radius: var(--theme--bdr-radius);
}

.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(--theme-white);
  border-radius: 50%;
  font-size: 15px;
  color: var(--theme-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(--theme-primary);
  color: var(--theme-white);
}

.sidebar__comments-text-box p {
  font-size: 15px;
  margin: 0;
  line-height: 26px;
  font-weight: 500;
  letter-spacing: var(--theme-letter-spacing);
}

.sidebar__comments-text-box p span {
  color: var(--theme-base);
}

.sidebar__comments-text-box h5 {
  font-size: 15px;
  margin: 0;
  line-height: 26px;
  color: var(--theme-gray);
  font-weight: 500;
  letter-spacing: var(--theme-letter-spacing);
}

/*--------------------------------------------------------------
# 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;
  border-radius: var(--theme--bdr-radius);
}

.news-details__img img {
  width: 100%;
  border-radius: var(--theme--bdr-radius);
}

.news-details__content {
  position: relative;
  display: block;
  margin-top: 24px;
}

.news-details__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.news-details__meta li+li {
  margin-left: 15px;
}

.news-details__meta li a {
  font-size: 14px;
  color: var(--theme-gray);
  font-weight: 500;
  letter-spacing: var(--theme-letter-spacing);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-details__meta li a:hover {
  color: var(--theme-base);
}

.news-details__meta li a i {
  color: var(--theme-base);
}

.news-details__title {
  font-size: 34px;
  line-height: 44px;
  margin-bottom: 12px;
  margin-top: 4px;
  font-weight: 700;
  letter-spacing: var(--theme-letter-spacing);
}

.news-details__text-1 {
  font-size: 18px;
  line-height: 30px;
  letter-spacing: var(--theme-letter-spacing);
}

.news-details__text-2 {
  font-size: 18px;
  line-height: 30px;
  letter-spacing: var(--theme-letter-spacing);
  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: 56px;
  border-top: 1px solid var(--theme--bdr-color);
}

.news-details__bottom p {
  margin: 0;
}

.news-details__tags span {
  color: var(--theme-black);
  font-size: 20px;
  margin-right: 15px;
  font-weight: 700;
  letter-spacing: var(--theme-letter-spacing);
}

.news-details__tags a {
  position: relative;
  color: var(--theme-gray);
  font-size: 14px;
  background-color: var(--theme-extra);
  display: inline-block;
  padding: 7px 20px 7px;
  font-weight: 500;
  letter-spacing: var(--theme-letter-spacing);
  border-radius: var(--theme--bdr-radius);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-details__tags a:hover {
  background-color: var(--theme-base);
  color: var(--theme-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: 43px;
  width: 43px;
  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(--theme-base);
  font-size: 15px;
  border-radius: 17px;
  border: 2px solid var(--theme-base);
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.news-details__social-list a:hover {
  color: var(--theme-white);
}

.news-details__social-list a:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: var(--theme-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;
}

.blgo-details__pagenation-box {
  position: relative;
  display: block;
  overflow: hidden;
  margin-bottom: 53px;
}

.news-details__pagenation {
  position: relative;
  display: block;
}

.news-details__pagenation li {
  position: relative;
  float: left;
  font-size: 20px;
  color: var(--theme-black);
  font-weight: 700;
  background-color: var(--theme-extra);
  line-height: 34px;
  -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;
  border-radius: var(--theme--bdr-radius);
}

.news-details__pagenation li+li {
  margin-left: 30px;
}

.news-details__pagenation li:hover {
  background-color: var(--theme-base);
  color: var(--theme-white);
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-one__title,
.comment-form__title {
  margin: 0;
  color: var(--theme-black);
  font-size: 30px;
  margin-bottom: 52px;
  font-weight: 700;
  letter-spacing: var(--theme-letter-spacing);
}

.comment-one__single {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid var(--theme--bdr-color);
  padding-bottom: 60px;
  margin-bottom: 60px;
}

.comment-one__content {
  position: relative;
  margin-left: 45px;
}

.comment-one__content h3 {
  margin: 0;
  font-size: 20px;
  color: var(--theme-black);
  margin-bottom: 26px;
  font-weight: 700;
  letter-spacing: var(--theme-letter-spacing);
}

.comment-one__content p {
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
  letter-spacing: var(--theme-letter-spacing);
}

.comment-one__btn {
  padding: 7px 30px;
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--theme-extra);
  font-size: 14px;
  font-weight: 500;
  color: var(--theme-gray);
}

.comment-one__image {
  position: relative;
  display: block;
  border-radius: 50%;
}

.comment-one__image img {
  border-radius: 50%;
}

.comment-form .comment-form__title {
  margin-top: -7px;
}

.comment-one__form .row {
  --bs-gutter-x: 20px;
}

.comment-form__input-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.comment-form__input-box input[type="text"],
.comment-form__input-box input[type="email"] {
  height: 60px;
  width: 100%;
  border: none;
  background-color: var(--theme-extra);
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-size: 14px;
  color: var(--theme-gray);
  display: block;
  border-radius: var(--theme--bdr-radius);
  font-weight: 500;
  letter-spacing: var(--theme-letter-spacing);
}

.comment-form__input-box textarea {
  font-size: 14px;
  color: var(--theme-gray);
  height: 180px;
  width: 100%;
  background-color: var(--theme-extra);
  padding: 15px 30px 30px;
  border: none;
  border-radius: var(--theme--bdr-radius);
  outline: none;
  margin-bottom: 0px;
  font-weight: 500;
}

.comment-form__btn {
  border: none;
}

.comment-form__input-box.text-message-box {
  height: 180px;
}

/*--------------------------------------------------------------
# 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: 43px;
}

.contact-page__call-email {
  position: relative;
  display: block;
  padding-left: 70px;
}

.contact-page__call-icon {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  border: 2px solid var(--theme--bdr-color);
  border-radius: 50%;
  color: var(--theme-primary);
  font-size: 19px;
  top: 5px;
  left: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.contact-page__call-icon:hover {
  background-color: var(--theme-base);
  border: 2px solid var(--theme-base);
  color: var(--theme-white);
}

.contact-page__call-email-content {
  position: relative;
  display: block;
}

.contact-page__call-email-content h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: var(--theme-letter-spacing);
}

.contact-page__call-number {
  position: relative;
  display: block;
  color: var(--theme-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.contact-page__call-number:hover {
  color: var(--theme-primary);
}

.contact-page__email {
  position: relative;
  display: block;
  color: var(--theme-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.contact-page__email:hover {
  color: var(--theme-primary);
}

.contact-page__location-text {
  font-size: 18px;
  line-height: 30px;
  letter-spacing: var(--theme-letter-spacing);
  font-weight: 500;
  padding-top: 36px;
}

.contact-page__right {
  position: relative;
  display: block;
}

.contact-page__form {
  position: relative;
  display: block;
}


/*--------------------------------------------------------------
# CTA Three
--------------------------------------------------------------*/
.cta-three {
  padding: 0 0 0;
}

/*--------------------------------------------------------------
# Google Map
--------------------------------------------------------------*/
.google-map-two {
  position: relative;
  display: block;
  background-color: var(--theme-extra);
  margin-top: -60px;
}

.google-map__two {
  position: relative;
  display: block;
  border: none;
  height: 420px;
  width: 100%;
  mix-blend-mode: luminosity;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio {
  position: relative;
  display: block;
  padding: 114px 0 90px;
}

.portfolio-filter {
  position: relative;
  display: block;
  text-align: center;
  margin-bottom: 26px;
}

.portfolio-filter.style1 li {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.portfolio-filter.style1 li .filter-text {
  position: relative;
  display: inline-block;
  color: var(--theme-gray);
  font-size: 18px;
  font-weight: 500;
  display: block;
  cursor: pointer;
  transition: all 0.4s ease;
}

.portfolio-filter.style1 li .filter-text:before {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  content: "";
  background: var(--theme-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  border-radius: 0;
  transform: scale(0);
}

.portfolio-filter.style1 li .filter-text:hover:before,
.portfolio-filter.style1 li.active .filter-text:before {
  transform: scale(1.0);
}

.portfolio-filter.style1 li:hover .filter-text,
.portfolio-filter.style1 li.active .filter-text {
  color: var(--theme-black);
}

.portfolio-filter.style1 li .count {
  color: var(--theme-black);
  font-size: 12px;
  line-height: 26px;
  font-weight: 500;
  display: inline-block;
  padding: 0 0;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: relative;
  top: -4px;
}

.portfolio-filter.style1 li:hover .count,
.portfolio-filter.style1 li.active .count {
  color: var(--theme-black);
  opacity: 1;
}

.portfolio-filter.style1 li+li {
  margin-left: 30px;
}

.portfolio__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.portfolio__img {
  position: relative;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  z-index: 1;
}

.portfolio__img:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  border-radius: 20px;
  background-image: -moz-linear-gradient(90deg, rgb(17, 29, 50) 0%, rgba(17, 29, 50, 0) 100%);
  background-image: -webkit-linear-gradient(90deg, rgb(17, 29, 50) 0%, rgba(17, 29, 50, 0) 100%);
  background-image: -ms-linear-gradient(90deg, rgb(17, 29, 50) 0%, rgba(17, 29, 50, 0) 100%);
  transform: scale(1, 0);
  transition: transform 500ms ease;
  transform-origin: top center;
  z-index: 1;
}

.portfolio__single:hover .portfolio__img:before {
  transform: scale(1, 1);
  transform-origin: bottom center;
}

.portfolio__img img {
  width: 100%;
  border-radius: 20px;
}

.portfolio__plus {
  position: absolute;
  top: 30px;
  right: 30px;
  height: 50px;
  width: 50px;
  background-color: var(--theme-primary);
  border-radius: var(--theme--bdr-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 2;
}

.portfolio__single:hover .portfolio__plus {
  transform: scale(1);
  transition-delay: 500ms;
}

.portfolio__plus a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--theme-white);
}

.portfolio__content {
  position: absolute;
  bottom: 38px;
  left: 40px;
  -webkit-transform: translateY(-100px);
  transform: translateY(-100px);
  opacity: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 2;
}

.portfolio__single:hover .portfolio__content {
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
}

.portfolio__sub-title {
  font-size: 14px;
  color: var(--theme-white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 24px;
  opacity: .6;
}

.portfolio__title {
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
  letter-spacing: var(--theme-letter-spacing);
}

.portfolio__title a {
  color: var(--theme-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.portfolio__title a:hover {
  color: var(--theme-primary);
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  position: relative;
  display: block;
  padding: 120px 0 120px;
}

.portfolio-details__img {
  position: relative;
  display: block;
  border-radius: 20px;
}

.portfolio-details__img img {
  width: 100%;
  border-radius: 20px;
}

.portfolio-details__content {
  position: relative;
  display: block;
  padding-top: 50px;
}

.portfolio-details__content-left {
  position: relative;
  display: block;
  margin-top: -4px;
}

.portfolio-details__title {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: var(--theme-letter-spacing);
  line-height: 34px;
  margin-bottom: 24px;
}

.portfolio-details__text-1 {
  font-size: 18px;
  line-height: 34px;
  letter-spacing: var(--theme-letter-spacing);
  padding-bottom: 34px;
}

.portfolio-details__text-2 {
  font-size: 18px;
  line-height: 34px;
  letter-spacing: var(--theme-letter-spacing);
}

.portfolio-details__content-right {
  position: relative;
  display: block;
}

.portfolio-details__details-box {
  position: relative;
  border-radius: var(--theme--bdr-radius);
  background-color: var(--theme-extra);
  padding: 42px 50px 50px;
}

.portfolio-details__details-list {
  position: relative;
  display: block;
}

.portfolio-details__details-list li {
  position: relative;
  display: block;
}

.portfolio-details__details-list li+li {
  margin-top: 32px;
}

.portfolio-details__client {
  font-size: 18px;
  color: var(--theme-black);
  font-weight: 700;
  line-height: 30px;
  letter-spacing: var(--theme-letter-spacing);
}

.portfolio-details__name {
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: var(--theme-letter-spacing);
}

.portfolio-details__social {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 9px;
}

.portfolio-details__social a {
  position: relative;
  height: 43px;
  width: 43px;
  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(--theme-base);
  font-size: 15px;
  border-radius: 17px;
  border: 2px solid var(--theme-base);
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.portfolio-details__social a:hover {
  background-color: var(--theme-base);
  color: var(--theme-white);
}

.portfolio-details__social a+a {
  margin-left: 10px;
}

.projectc-details__pagination-box {
  position: relative;
  display: block;
  text-align: center;
  border-top: 1px solid var(--theme--bdr-color);
  border-bottom: 1px solid var(--theme--bdr-color);
  padding: 30px 0;
  margin-top: 109px;
}

.projectc-details__pagination {
  position: relative;
  display: block;
}

.projectc-details__pagination li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.projectc-details__pagination li.next {
  float: left;
  position: relative;
}

.projectc-details__pagination li a {
  font-size: 14px;
  color: var(--theme-gray);
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.projectc-details__pagination li a:hover {
  color: var(--theme-base);
}

.projectc-details__pagination li p {
  color: var(--theme-black);
  font-weight: 700;
  line-height: 18px;
  letter-spacing: var(--theme-letter-spacing);
  margin-top: 3px;
}

.projectc-details__pagination li span {
  font-size: 14px;
  line-height: 14px;
  letter-spacing: var(--theme-letter-spacing);
}

.projectc-details__pagination li.next i {
  position: relative;
  height: 50px;
  width: 50px;
  border: 2px solid rgba(var(--theme-black-rgb), .20);
  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%;
  color: rgba(var(--theme-black-rgb), .20);
  font-size: 17px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  margin-right: 20px;
  z-index: 1;
}

.projectc-details__pagination li.previous {
  position: relative;
  float: right;
}

.projectc-details__pagination li.previous i {
  position: relative;
  height: 50px;
  width: 50px;
  border: 2px solid rgba(var(--theme-black-rgb), .20);
  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%;
  color: rgba(var(--theme-black-rgb), .20);
  font-size: 17px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  margin-left: 20px;
  z-index: 1;
}

.projectc-details__pagination li a:hover i {
  color: rgba(var(--theme-black-rgb), 1);
  border: 2px solid rgba(var(--theme-black-rgb), 1);
}

.projectc-details__pagination li .content {
  position: relative;
  display: block;
  top: -3px;
}

.projectc-details__pagination li.next .content {
  text-align: left;
}

.projectc-details__pagination li.previous .content {
  text-align: right;
}

/*--------------------------------------------------------------
# Similar Portfolio
--------------------------------------------------------------*/
.similar-portfolio {
  position: relative;
  display: block;
  padding: 0 0 90px;
}

.similar-portfolio .section-sub-title-box {
  margin-left: 0;
}

/*--------------------------------------------------------------
# Portfolio Carousel
--------------------------------------------------------------*/
.portfolio-carousel-page {
  position: relative;
  display: block;
  padding: 120px 0 133px;
}

/*--------------------------------------------------------------
# Insurance Page One
--------------------------------------------------------------*/
.insurance-page-one {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}

/*--------------------------------------------------------------
# Insurance Page Two
--------------------------------------------------------------*/
.insurance-page-two {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}

.insurance-page-two .services-two__single {
  background-color: transparent;
  border-radius: var(--theme--bdr-radius);
  border: 1px solid var(--theme--bdr-color);
}

.insurance-page-two .services-two__single:hover {
  border: 1px solid transparent;
  border-bottom: 3px solid var(--theme-primary);
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.07), inset 0px -3px 0px 0px rgba(12, 224, 255, 0.004);
}

.insurance-page-two .services-two__icon {
  background-color: var(--theme-extra);
}

.insurance-page-two .services-two__icon-box:before {
  background-color: var(--theme-extra);
}

.insurance-page-two .services-two__single:hover .services-two__icon-box:before {
  background-color: var(--theme-extra);
}

.insurance-page-two .services-two__title a {
  color: var(--theme-black);
}

/*--------------------------------------------------------------
# Why Choose Two
--------------------------------------------------------------*/
.why-choose-two {
  position: relative;
  display: block;
  padding: 50px 0 50px;
}

.why-choose-two__left {
  position: relative;
  display: block;
  margin-right: -23px;
}

.why-choose-two__left .section-title {
  margin-bottom: 27px;
}

.why-choose-two__text {
  font-size: 16px;
  line-height: 24px; padding-bottom: 15px;
  letter-spacing: var(--theme-letter-spacing);
}

.why-choose-two__right {
  position: relative;
  display: block;
  margin-left: 60px;
}

.why-choose-two__list-box {
  position: relative;
  display: block;
  max-width: 510px;
  width: 100%;
}

.why-choose-two__list {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}

.why-choose-two__list li {
  position: relative;
  flex: 0 0 50%;
  max-width: 50%;
  width: 100%;
  text-align: center;
  margin-bottom: 10px;
  padding-left: 5px;
  padding-right: 5px;
}

.why-choose-two__single {
  position: relative;
  display: block;
  padding: 35px 20px 27px;
  border: 2px solid var(--theme--bdr-color);
  overflow: hidden;
}

.why-choose-two__list-icon {
  position: relative;
  display: block;
  margin-bottom: 9px;
}

.why-choose-two__list-icon span {
  font-size: 45px;
  color: var(--theme-base);
  position: relative;
  display: inline-block;
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.why-choose-two__single:hover .why-choose-two__list-icon span {
  transform: scale(.9);
}

.why-choose-two__list-title-box {
  position: relative;
  display: block;
}

.why-choose-two__list-title-inner {
  position: relative;
  display: block;
  transform: translateY(0%);
  transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease;
  visibility: visible;
  opacity: 1;
}



.why-choose-two__list-title {
  font-size: 18px;
  color: var(--theme-black);
  line-height: 28px;
  letter-spacing: var(--theme-letter-spacing);
}

.why-choose-two__list-text-box {
  position: absolute;
  top: -6px;
  left: 0;
  right: 0;
  transform: translateY(-100px);
  transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease;
  visibility: hidden;
  opacity: 0;
}


.why-choose-two__list-text {
  font-size: 14px;
  color: var(--theme-gray);
  line-height: 24px;
  letter-spacing: var(--theme-letter-spacing);
}

/*--------------------------------------------------------------
# Site Footer
--------------------------------------------------------------*/
.benefits-two {
  position: relative;
  display: block;
  padding: 0 0 120px;
}

.benefits-two__left {
  position: relative;
  display: block;
  margin-right: 30px;
}

.benefits-two__img {
  position: relative;
  display: block;
}

.benefits-two__img img {
  width: 100%;
  border-radius: 20px;
}

.benefits-two__right {
  position: relative;
  display: block;
  margin-left: 70px;
}

.benefits-two__right .section-title {
  margin-bottom: 33px;
}

.benefits-two__points {
  position: relative;
  display: block;
}

.benefits-two__points li {
  position: relative;
  display: flex;
  align-items: center;
}

.benefits-two__points li+li {
  margin-top: 14px;
}

.benefits-two__points li .icon {
  position: relative;
  font-size: 16px;
  color: var(--theme-base);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
  -webkit-transform: scale(1) rotateY(0deg);
  transform: scale(1) rotateY(0deg);
}

.benefits-two__points li:hover .icon {
  -webkit-transform: scale(0.9) rotateY(360deg);
  transform: scale(0.9) rotateY(360deg);
  background-color: var(--theme-base);
}

.benefits-two__points li .text {
  margin-left: 15px;
}

.benefits-two__points li .text p {
  font-size: 18px;
  color: var(--theme-black);
  font-weight: 500;
  letter-spacing: var(--theme-letter-spacing);
}

/*--------------------------------------------------------------
# Feature Four
--------------------------------------------------------------*/
.feature-four {
  position: relative;
  display: block;
  background-color: var(--theme-extra);
}

.feature-four__top {
  position: relative;
  display: block;
  padding: 0px 0 50px;
}

.feature-four__top-inner {
  position: relative;
  display: block;
  margin-left: 0px;
}

.feature-four__top-call {
  position: absolute;
  top: 0;
  left: 0;
}

.feature-four__top-call-box {
  position: relative;
  border: 1px solid var(--theme--bdr-color);
  border-radius: 50%;
  height: 245px;
  width: 245px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-four__top-call-box-two {
  position: relative;
  border: 1px solid var(--theme--bdr-color);
  border-radius: 50%;
  height: 175px;
  width: 175px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-four__top-call-box-three {
  position: relative;
  border: 1px solid var(--theme--bdr-color);
  border-radius: 50%;
  height: 107px;
  width: 107px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-four__top-call-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  border: 2px solid var(--theme-primary);
  border-radius: 50%;
  color: var(--theme-primary);
  font-size: 20px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.feature-four__top-call-icon:hover {
  border: 2px solid var(--theme-base);
  color: var(--theme-base);
}

.feature-four__top-call-number-box {
  position: absolute;
  top: 65px;
  left: calc(50% - 91px);
  max-width: 182px;
  width: 100%;
  background-color: var(--theme-base);
  text-align: center;
  border-radius: var(--theme--bdr-radius);
  padding: 4px 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 2;
}

.feature-four__top-call-number-box:hover {
  background-color: var(--theme-primary);
}

.feature-four__top-call-number-box:before {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 6px solid var(--theme-base);
  transform: translateX(-50%);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.feature-four__top-call-number-box:hover:before {
  border-top: 6px solid var(--theme-primary);
}

.feature-four__top-call-number-box a {
  font-size: 14px;
  color: var(--theme-white);
  letter-spacing: var(--theme-letter-spacing);
}

.feature-four__top-content {
  position: relative;
  display: block;
  top: 11px;
}

.feature-four__top-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 40px; padding-bottom: 20px;
  letter-spacing: var(--theme-letter-spacing);
}

.feature-four__top-text {
  font-size: 18px;
  line-height: 34px;
  letter-spacing: var(--theme-letter-spacing);
  padding-bottom: 5px;
  padding-top: 0px; text-align: center;
}

.feature-four__bottom {
  position: relative;
  display: block;
  padding: 50px 0 0px;
}

.feature-four__single {
  position: relative;
  display: block;
  background-color: var(--theme-white);
  border-radius: var(--theme--bdr-radius);
  padding: 50px 50px 45px;
  margin-bottom: 30px;
}

.feature-four__single-top {
  position: relative;
  display: flex;
  align-items: center;
}

.feature-four__icon {
  font-size: 40px;
  color: var(--theme-base);
  display: flex;
  align-items: center;
}

.feature-four__icon span {
  position: relative;
  display: inline-block;
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.feature-four__single:hover .feature-four__icon span {
  transform: scale(0.9);
  color: var(--theme-primary);
}

.feature-four__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 34px;
  letter-spacing: var(--theme-letter-spacing);
  margin-left: 20px;
}

.feature-four__text {
  line-height: 30px;
  letter-spacing: var(--theme-letter-spacing);
  padding-top: 19px;
  padding-bottom: 34px;
}

.feature-four__points {
  position: relative;
  display: block;
}

.feature-four__points li {
  position: relative;
  display: flex;
  align-items: center;
}

.feature-four__points li+li {
  margin-top: 5px;
}

.feature-four__points li .icon {
  border-radius: 50%;
  display: flex;
  font-size: 16px;
  align-items: center;
  justify-content: center;
  color: var(--theme-base);
}

.feature-four__points li .text {
  margin-left: 10px;
}

.feature-four__points li .text p {
  color: var(--theme-black);
  font-weight: 500;
  letter-spacing: var(--theme-letter-spacing);
}

.feature-four__points-two {
  position: relative;
  display: block;
}

.feature-four__points-two li {
  position: relative;
  display: block;
}

.feature-four__points-two li+li {
  margin-top: 6px;
}

.feature-four__points-two li a {
  font-size: 16px;
  color: var(--theme-base);
  font-weight: 500;
  letter-spacing: var(--theme-letter-spacing);
  transition: all 500ms;
  -webkit-transition: all 500ms;
}

.feature-four__points-two li a:hover {
  color: var(--theme-primary);
}

/*--------------------------------------------------------------
# FaQ One
--------------------------------------------------------------*/
.faq-one {
  position: relative;
  display: block;
  padding: 120px 0 100px;
}

.faq-one .section-sub-title-box {
  margin-left: 0px;
}

.faq-one__single {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

/*--------------------------------------------------------------
# About Four
--------------------------------------------------------------*/
.about-four {
  position: relative;
  display: block;
  padding: 120px 0 120px;
}

.about-four__left {
  position: relative;
  display: block;
  margin-right: 100px;
}

.about-four__img-box {
  position: relative;
  display: block;
}

.about-four__img {
  position: relative;
  display: block;
  border-radius: var(--theme--bdr-radius);
}

.about-four__img>img {
  width: 100%;
  border-radius: var(--theme--bdr-radius);
}

.about-four__img-two {
  position: absolute;
  right: -130px;
  bottom: -145px;
  border-radius: var(--theme--bdr-radius);
}

.about-four__img-two>img {
  width: auto;
  border-radius: var(--theme--bdr-radius);
}

.about-four__right {
  position: relative;
  display: block;
  margin-left: 70px;
}

.about-four__right .section-title {
  margin-bottom: 33px;
}

.about-four__text-1 {
  font-size: 22px;
  color: var(--theme-base);
  font-weight: 500;
  line-height: 34px;
  letter-spacing: var(--theme-letter-spacing);
  padding-bottom: 9px;
}

.about-four__text-2 {
  font-size: 18px;
  line-height: 34px;
  letter-spacing: var(--theme-letter-spacing);
}

.about-four__founder {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 51px;
}

.about-four__founder-img {
  position: relative;
  display: flex;
  align-items: center;
}

.about-four__founder-img img {
  border-radius: 50%;
  border: 2px solid var(--theme-primary);
  width: auto;
}

.about-four__founder-content {
  position: relative;
  margin-left: 20px;
  top: 3px;
}

.about-four__founder-name {
  font-size: 24px;
  letter-spacing: var(--theme-letter-spacing);
  font-family: var(--theme-reey-font);
  line-height: 36px;
  margin-left: 20px;
}

.about-four__founder-sub-title {
  font-size: 16px;
  letter-spacing: var(--theme-letter-spacing);
  line-height: 26px;
  color: var(--theme-base);
}

/*--------------------------------------------------------------
# CTA Four
--------------------------------------------------------------*/
.cta-four {
  padding: 120px 0 120px;
  background-color: var(--theme-white);
  overflow: hidden;
}

.cta-four-shape-1 {
  position: absolute;
  top: -90px;
  right: -29px;
  mix-blend-mode: luminosity;
}

.cta-four-shape-1 img {
  width: auto;
  mix-blend-mode: luminosity;
  opacity: .15;
  ;
}

/*--------------------------------------------------------------
# Team Two
--------------------------------------------------------------*/
.team-two {
  padding: 0 0 90px;
}

/*--------------------------------------------------------------
# Team Page
--------------------------------------------------------------*/
.team-page {
  padding: 135px 0 70px;
}

.team-page .container {
  max-width: 1070px;
}

.team-page .row {
  --bs-gutter-x: 108px;
}

.team-page .team-one__single {
  margin-bottom: 43px;
}

/*--------------------------------------------------------------
# Team Page Carousel
--------------------------------------------------------------*/
.team-page-carousel {
  padding: 135px 0 133px;
}

/*--------------------------------------------------------------
# Team Details
--------------------------------------------------------------*/
.team-details {
  position: relative;
  display: block;
}

.team-details__top {
  position: relative;
  display: block;
  padding: 120px 0 120px;
}

.team-details__top-left {
  position: relative;
  display: block;
}

.team-details__top-img {
  position: relative;
  display: block;
  border-radius: var(--theme--bdr-radius);
}

.team-details__top-img img {
  width: 100%;
  border-radius: var(--theme--bdr-radius);
}

.team-details__big-text {
  font-size: 80px;
  line-height: 80px;
  text-transform: uppercase;
  color: var(--theme-extra);
  letter-spacing: 0.35em;
  position: absolute;
  transform: rotate(-90deg);
  top: 209px;
  left: -319px;
}

.team-details__top-right {
  position: relative;
  display: block;
  margin-left: 70px;
}

.team-details__top-content {
  position: relative;
  display: block;
  margin-top: -7px;
}

.team-details__top-name {
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
  letter-spacing: var(--theme-letter-spacing);
  margin-top: 2px;
}

.team-details__top-title {
  font-size: 14px;
  color: var(--theme-gray);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 24px;
}

.team-details__social {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 19px;
  margin-bottom: 38px;
}

.team-details__social a {
  position: relative;
  height: 43px;
  width: 43px;
  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(--theme-base);
  font-size: 15px;
  border-radius: 17px;
  border: 2px solid var(--theme-base);
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.team-details__social a:hover {
  background-color: var(--theme-base);
  color: var(--theme-white);
}

.team-details__social a+a {
  margin-left: 10px;
}

.team-details__top-text-1 {
  font-size: 30px;
  color: var(--theme-base);
  line-height: 46px;
  letter-spacing: var(--theme-letter-spacing);
}

.team-details__top-text-2 {
  font-size: 18px;
  line-height: 34px;
  padding-top: 33px;
  padding-bottom: 35px;
  letter-spacing: var(--theme-letter-spacing);
}

.team-details__top-text-3 {
  font-size: 18px;
  line-height: 34px;
  letter-spacing: var(--theme-letter-spacing);
}

.team-details__bottom {
  position: relative;
  display: block;
  border-top: 1px solid var(--theme--bdr-color);
  padding-top: 112px;
  padding-bottom: 120px;
}

.team-details__bottom-left {
  position: relative;
  display: block;
  margin-right: 70px;
  margin-top: -2px;
}

.team-details__bottom-left-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 46px;
  letter-spacing: var(--theme-letter-spacing);
}

.team-details__bottom-left-text {
  font-size: 18px;
  line-height: 34px;
  padding-top: 30px;
  letter-spacing: var(--theme-letter-spacing);
}


.team-details__bottom-right {
  position: relative;
  display: block;
  margin-left: 70px;
}

.team-details__progress {
  position: relative;
  display: block;
  width: 100%;
}

.team-details__progress-single {
  position: relative;
  display: block;
}

.team-details__progress-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 28px;
  color: var(--theme-black);
  margin-bottom: 6px;
  letter-spacing: var(--theme-letter-spacing);
}

.team-details__progress .bar {
  position: relative;
  width: 100%;
  height: 13px;
  background-color: var(--theme-extra);
  border-radius: 7px;
  margin-bottom: 12px;
}

.team-details__progress .bar-inner {
  position: relative;
  display: block;
  width: 0px;
  height: 13px;
  border-radius: 7px;
  background-color: var(--theme-primary);
  -webkit-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.team-details__progress .count-text {
  position: absolute;
  right: 0px;
  bottom: 21px;
  color: var(--theme-gray);
  line-height: 24px;
  font-size: 14px;
  text-align: center;
  font-weight: 500;
  opacity: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.team-details__progress .bar-inner.counted .count-text {
  opacity: 1;
}

.team-details__progress .bar.marb-0 {
  margin-bottom: 0;
}


/*--------------------------------------------------------------
# Message One
--------------------------------------------------------------*/
.message-one {
  position: relative;
  display: block;
  background-color: var(--theme-extra);
  padding: 120px 0 120px;
  overflow: hidden;
  z-index: 1;
}

.message-one-shape-1 {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.02;
  z-index: -1;
}

.message-one-shape-2 {
  position: absolute;
  top: -110px;
  left: 0;
  right: 0;
  height: 414px;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  mix-blend-mode: luminosity;
  opacity: .15;
  z-index: -1;
}

.message-one .section-sub-title-box {
  margin-left: 0px;
}

.message-one .container {
  max-width: 770px;
  width: 100%;
}

.message-one .comment-form__btn {
  margin: 20px auto 0;
  display: block;
}

.message-one .comment-form__input-box input[type="text"],
.message-one .comment-form__input-box input[type="email"] {
  background-color: var(--theme-white);
}

.message-one .comment-form__input-box.text-message-box {
  height: 180px;
}

.message-one .comment-form__input-box textarea {
  background-color: var(--theme-white);
  height: 180px;
}

/*--------------------------------------------------------------
# Testimonial Page
--------------------------------------------------------------*/
.testimonial-page {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}

.testimonial-page .container {
  max-width: 1160px;
}

.testimonial-page .testimonial-one__single {
  margin-bottom: 30px;
}

/*--------------------------------------------------------------
# Testimonial Carousel Page
--------------------------------------------------------------*/
.testimonial-carousel-page {
  position: relative;
  display: block;
  padding: 120px 0 133px;
}

.testimonial-carousel-page .testimonial-one__single {
  margin-bottom: 30px;
}

/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/
.contact-page--two {
  background-color: var(--theme-extra);
  overflow: hidden;
  z-index: 1;
}

.contact-page-two-shape-1 {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.02;
  z-index: -1;
}

.contact-page-two-shape-2 {
  position: absolute;
  top: -165px;
  left: 0;
  right: 0;
  height: 414px;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  mix-blend-mode: luminosity;
  opacity: .15;
  z-index: -1;
}

.contact-page--two .contact-page__call-icon {
  background-color: var(--theme-white);
}

.contact-page--two .contact-page__call-icon:hover {
  background-color: var(--theme-base);
  border: 2px solid var(--theme-base);
  color: var(--theme-white);
}

.contact-page--two .comment-form__input-box input[type="text"],
.contact-page--two .comment-form__input-box input[type="email"] {
  background-color: var(--theme-white);
}

.contact-page--two .comment-form__input-box textarea {
  background-color: var(--theme-white);
}

/*--------------------------------------------------------------
## Error Page
--------------------------------------------------------------*/
.error-page {
  position: relative;
  display: block;
  padding: 81px 0 120px;
}

.error-page-shape-1 {
  position: absolute;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center 53%;
  background-size: 100%;
}

@media (max-width: 991px) {
  .error-page-shape-1 {
    background-position: center 55%;

  }
}

@media (max-width: 767px) {
  .error-page-shape-1 {
    display: none;
  }
}

.error-page__inner {
  position: relative;
  display: block;
  text-align: center;
}

.error-page__title-box {
  position: relative;
  display: block;
  margin-bottom: 192px;
}

@media (max-width: 991px) {
  .error-page__title-box {
    margin-bottom: 100px;
  }
}


@media (max-width: 767px) {
  .error-page__title-box {
    margin-bottom: 30px;
  }
}

.error-page__title {
  position: relative;
  display: inline-block;
  font-size: 280px;
  line-height: 280px;
  font-weight: 400;
  margin-bottom: 0;
  color: var(--theme-black);
}

.error-page__sub-title {
  font-size: 40px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 50px;
  margin-top: -16px;
}

.error-page__text {
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: var(--theme-letter-spacing);
  text-align: center;
}

.error-page__form {
  position: relative;
  display: block;
  margin: 42px auto 20px;
}

.error-page__form-input {
  position: relative;
  display: block;
  max-width: 570px;
  width: 100%;
  margin: 0 auto;
}

.error-page__form input[type="search"] {
  height: 60px;
  width: 100%;
  border: none;
  outline: none;
  background-color: var(--theme-extra);
  font-size: 18px;
  color: var(--theme-gray);
  font-weight: 400;
  letter-spacing: var(--theme-letter-spacing);
  padding-left: 50px;
  padding-right: 75px;
  border-radius: var(--theme--bdr-radius);
}

.error-page__form button[type="submit"] {
  background-color: transparent;
  color: var(--theme-black);
  font-size: 22px;
  position: absolute;
  top: 0;
  right: 0px;
  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;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}

.pricing .section-title {
  margin-bottom: 38px;
}

.pricing .section-sub-title-box {
  margin-left: 0px;
}

.pricing__tab {
  position: relative;
  display: block;
}

.pricing__tab-box {
  position: relative;
  display: block;
  z-index: 2;
}

.pricing__tab-box .tab-buttons {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}

.pricing__tab-box .tab-buttons .tab-btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.pricing__tab-box .tab-buttons .tab-btn:first-child span {
  border-top-left-radius: var(--theme--bdr-radius);
  border-bottom-left-radius: var(--theme--bdr-radius);
}

.pricing__tab-box .tab-buttons .tab-btn:last-child span {
  border-top-right-radius: var(--theme--bdr-radius);
  border-bottom-right-radius: var(--theme--bdr-radius);
}

.pricing__tab-box .tab-buttons .tab-btn span {
  position: relative;
  display: inline-block;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
  font-size: 14px;
  color: var(--theme-black);
  background-color: var(--theme-extra);
  padding: 12px 30px 12px;
  font-weight: 700;
  letter-spacing: var(--theme-letter-spacing);
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: center;
  z-index: 1;
}

.pricing__tab-box .tab-buttons .tab-btn.active-btn span {
  color: var(--theme-white);
  background-color: var(--theme-base);
}

.pricing__tab-box .tab-buttons .tab-btn span:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0;
  border-radius: 5px;
  content: "";
  background-color: var(--theme-base);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: -1;
}

.pricing__tab-box .tab-buttons .tab-btn:first-child span:before {
  border-top-left-radius: var(--theme--bdr-radius);
  border-bottom-left-radius: var(--theme--bdr-radius);
}

.pricing__tab-box .tab-buttons .tab-btn:last-child span:before {
  border-top-right-radius: var(--theme--bdr-radius);
  border-bottom-right-radius: var(--theme--bdr-radius);
}

.pricing__tab-box .tab-buttons .tab-btn.active-btn span:before {
  height: 100%;
}

.pricing__tab-box .tabs-content {
  position: relative;
  display: block;
}

.pricing__tab-box .tabs-content .tab {
  position: relative;
  display: none;
  -webkit-transform: translateY(35px);
  transform: translateY(35px);
  -webkit-transition: all 600ms ease;
  transition: all 600ms ease;
  z-index: 10;
}

.pricing__tab-box .tabs-content .tab.active-tab {
  display: block;
  margin-top: 0px;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

.pricing__main-content-box {
  position: relative;
  display: block;
}

.pricing__single {
  position: relative;
  display: block;
  border: 1px solid #dfe3e7;
  border-radius: var(--theme--bdr-radius);
  padding: 40px 40px 40px;
  background-color: rgb(255, 255, 255);
  margin-bottom: 30px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.pricing__single:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  border: 2px solid transparent;
  border-radius: var(--theme--bdr-radius);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.pricing__single:hover:before {
  border: 2px solid var(--theme-base);
}

.pricing__single:hover {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
  border: 1px solid transparent;
}

.pricing-shape-1 {
  position: absolute;
  bottom: 30px;
  right: 0;
  z-index: -1;
}

.pricing-shape-1 img {
  width: auto;
}

.pricing__single-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pricing__img img {
  width: auto;
}

.pricing__content {
  position: relative;
  display: block;
  text-align: right;
}

.pricing__content h3 {
  font-size: 60px;
  color: var(--theme-base);
  font-weight: 700;
  line-height: 60px;
  letter-spacing: var(--theme-letter-spacing);
}

.pricing__content p {
  color: var(--theme-primary);
  font-weight: 500;
  letter-spacing: var(--theme-letter-spacing);
}

.pricing__single-bottom {
  position: relative;
  display: block;
  margin-top: 34px;
}

.pricing__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: var(--theme-letter-spacing);
  margin-bottom: 26px;
}

.pricing__points {
  position: relative;
  display: block;
}

.pricing__points li {
  position: relative;
  display: flex;
  align-items: center;
}

.pricing__points li+li {
  margin-top: 10px;
}

.pricing__points li .icon i {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 15px;
  color: var(--theme-primary);
}

.pricing__points li .text {
  margin-left: 20px;
}

.pricing__points li .text p {
  letter-spacing: var(--theme-letter-spacing);
}

.pricing__btn-box {
  position: relative;
  display: block;
  margin-top: 32px;
}

.pricing__btn {
  background-color: var(--theme-black);
}

.pricing__btn:before {
  background-color: var(--theme-base);
}


.pricing__btn:after {
  background-color: var(--theme-base);
}

.pricing__single:hover .pricing__btn:before {
  transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
  transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}

.pricing__single:hover .pricing__btn:after {
  transform: translate3d(0, 0, 0);
  transition-duration: 0.05s;
  transition-delay: 0.4s;
  transition-timing-function: linear;
}

/*--------------------------------------------------------------
# Boxed Version
--------------------------------------------------------------*/

body.boxed-wrapper {
  background-color: var(--ambed-extra, #f2f5f9);
}

.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 (min-width: 1531px) {
  body.boxed-wrapper .get-insurance__left {
    left: 120px;
  }
}


/* insur get balance updated css */

.get-insurance__progress-range .irs-single,
.get-insurance__progress-range .irs-from,
.get-insurance__progress-range .irs-to {
  display: none;
}

.get-insurance__progress-range .irs--flat {
  height: 29px;
}

.get-insurance__progress-range .irs--flat .irs-handle,
.get-insurance__progress-range .irs--flat .irs-line,
.get-insurance__progress-range .irs--flat .irs-bar {
  top: 0;
}

.get-insurance__progress-range .irs--flat .irs-line {
  height: 12px;
  border-radius: 6px;
  border-style: solid;
  border-width: 1px;
  border-color: #dfe3e7;
  background-color: #ffffff;
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.05);
}

.get-insurance__progress-range .irs--flat .irs-bar {
  height: 12px;
  border-radius: 6px;
  background-image: linear-gradient(90deg, var(--theme-base) 0%, var(--theme-primary) 100%);

}

.get-insurance__progress-range .irs--flat .irs-handle {
  height: 29px;
  width: 29px;
  background-color: var(--theme-black);
  border: 2px solid #ffffff;
  border-radius: 50%;
  top: -9px;
}

.get-insurance__progress-range .irs--flat .irs-handle i {
  display: none;
}

.get-insurance__progress {
  margin-bottom: 33px;
}


/* ============================================================== 
    # Feature
=================================================================== */

.feature-style-five-area {
	background-repeat: no-repeat;
	background-position: right top;
	background-size: contain;
}

.feature-style-five {
	display: flex;
	padding: 0 20px;
}

.feature-style-five-items .item {
	border-right: 1px solid #dddd;
}

.feature-style-five-items .item:last-child {
	border: none;
}

.feature-style-five .icon {
	display: flex;
	height: 90px;
	width: 90px;
	min-width: 90px;
	background: var(--bg-gradient);
	border-radius: 50%;
	text-align: center;
	margin-right: 30px;
}

.feature-style-five img {
	margin: auto;
	height: 50px;
}

.feature-style-five h4 {
	font-weight: 800;
}

.feature-style-five p {
	margin: 0;
}

.feature-style-five-items h2 {
	margin: 0;
}

.progress-card {
	text-align: center;
	background: var(--white);
	padding: 50px 40px;
	box-shadow: 0 5px 30px 0 rgba(214, 215, 216, 0.57);
	border-radius: 30px;
}

.progress-card .circle {
	position: relative;
	margin-bottom: 15px;
}

.progress-card .circle strong {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	font-weight: 900;
	font-size: 20px;
	margin-left: 3px;
	color: var(--color-heading);
}

.progress-card h4 {
	font-weight: 700;
	margin-bottom: 5px;
}

.progress-card p {
	margin: 0;
}

.default-padding,
.default-padding-top,
.default-padding-bottom,
.default-padding-mx {
	position: relative;
}

.default-padding {
	padding-top: 120px;
	padding-bottom: 120px;
}

@media only screen and (max-width: 767px) {
	.default-padding {
		padding-top: 60px;
		padding-bottom: 60px;
	}
}

.default-padding-big {
	padding: 250px 0;
}

@media only screen and (max-width: 767px) {
	.default-padding-big {
		padding: 60px 0;
	}
}

.default-padding-top {
	padding-top: 120px;
}

@media only screen and (max-width: 767px) {
	.default-padding-top {
		padding-top: 50px;
	}
}

.default-padding-bottom {
	padding-bottom: 120px;
}

@media only screen and (max-width: 767px) {
	.default-padding-bottom {
		padding-bottom: 50px;
	}
}

.default-padding.bottom-less {
	padding-top: 120px;
	padding-bottom: 90px;
}

@media only screen and (max-width: 767px) {
	.default-padding.bottom-less {
		padding-top: 50px;
		padding-bottom: 20px;
	}
}

.default-padding-bottom.bottom-less {
	margin-bottom: -30px;
}

@media only screen and (max-width: 767px) {
	.default-padding-bottom.bottom-less {
		margin-bottom: 0;
		padding-bottom: 20px;
	}
}

.default-padding-top.bottom-less {
	margin-bottom: -30px;
}

@media only screen and (max-width: 767px) {
	.default-padding-top.bottom-less {
		margin-bottom: -20px;
	}
}


/* Feature */
.feature-style-one-item i {
	display: inline-block;
	height: 70px;
	width: 70px;
	line-height: 70px;
	text-align: center;
	background: var(--bg-gradient);
	border-radius: 50%;
	color: var(--white);
	font-size: 27px;
	font-weight: 100;
	margin-bottom: 30px;
}

.feature-style-one-item h4 {
	font-weight: 700;
}

.feature-style-one-item p {
	margin-bottom: 10px;
}

.feature-alert {
	background: #eff0ff;
	padding: 50px;
	border-radius: 30px;
	border: 2px solid;
}

.feature-alert p {
	margin-bottom: 10px;
}

.feature-alert .fun-fact {
	margin-bottom: 20px;
}

.feature-alert .fun-fact .counter {
	margin-top: 0px;
	background: linear-gradient(90deg, #5be2c8 0%,#011fc8 45.714285714285715%,#43BADF 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.feature-alert .fun-fact span.medium {
	font-weight: 700;
	color: var(--color-heading);
}

.feature-style-one-area {
	position: relative;
	z-index: 1;
	background-size: 12%;
	background-repeat: no-repeat;
	background-position: right top;
}

.feature-style-one-area .shape {
	position: absolute;
	left: 0;
	bottom: 50px;
	z-index: -1;
	width: 25%;
}

/* ============================================================== 
     # Fun Fact
=================================================================== */

.fun-facts-area .shape {
	position: absolute;
	right: 0;
	top: -25px;
	height: 73%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top right;
	opacity: 0.4;
}

.fun-facts-area {
	position: relative;
	z-index: 1;
	overflow: hidden;
}

@media (min-width: 1024px) {
	.fun-facts-area {
		width: 90%;
		margin: auto;
		border-radius: 30px;
		max-width: 1500px;
	}
}

.fun-facts-area .fun-fact {
	text-align: center;
	position: relative;
	z-index: 1;
}

.fun-facts-area .fun-fact .counter {
	position: relative;
}

.fun-facts-area .fun-fact .counter {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	color: var(--white);
	line-height: 1;
	margin-bottom: 5px;
}

.fun-facts-area .fun-fact .medium {
	font-weight: 700;
}
/* ============================================================== 
    # Feature
=================================================================== */
.feature-four-items {
	padding: 80px 60px;
	border-radius: 30px;
	position: relative;
}

.feature-style-four img {
	height: 100px;
	margin-bottom: 35px;
}

.feature-style-four a {
	display: inline-block;
	text-transform: uppercase;
	font-weight: 500;
	margin-top: 30px;
	position: relative;
}

.feature-style-four a i {
	position: relative;
	z-index: 1;
	font-weight: 4;
	margin-left: 5px;
}

.feature-style-four h3 {
	font-weight: 600;
	margin: 0;
	font-size: 22px;
}

.feature-style-four {
	padding: 0 20px;
}

.feature-four-items .sahpe {
	position: absolute;
	right: -50px;
	bottom: -50px;
}

/* ============================================================== 
    # Feature
=================================================================== */
ul.feature-fun-fact li {
	margin-top: 50px;
}

ul.feature-fun-fact li:first-child {
	margin-top: 0;
}

.feature-fun-fact .fun-fact .counter {
	font-weight: 700;
	font-size: 90px;
	color: transparent;
	-webkit-text-stroke: 1px #797474;
}

.feature-style-three {
	padding: 40px 25px;
	background:#fff;
	border-radius: 10px;
	border: 2px solid #e9e9e9;
}

.feature-style-three img {
	height: 150px;
	margin-top: 50px;
}

.feature-style-three .icon {
	text-align: right;
}

.feature-style-three h4 {
	font-size: 17px;
    font-weight: 600;
    line-height: 28px;
}

.feature-style-three p {
	margin: 0;
	font-size: 18px;
}

@media (max-width: 767px) {
	/* Banner */

	.banner-software h2 {
		font-size: 36px;
	}

	.banner-software p {
		padding: 0;
	}

	.banner-software .content-box {
		padding-top: 60px;
	}

	.banner-software .content-box .thumb-inner {
		padding: 0;
	}

	.banner-software .content-box .thumb-inner img:nth-child(2), 
	.banner-software .content-box .thumb-inner img:nth-child(3) {
		display: none;
	}

	.banner-seo .content-box h2 {
		font-size: 36px;
		line-height: 1.2;
	}

	.banner-seo .content-box {
		padding-top: 60px;
	}

	.seo-thumb img:nth-child(2) {
		display: none;
	}

	.seo-thumb {
		padding: 0;
	}

	.seo-thumb img:nth-child(3) {
		display: none;
	}

	.banner-seo .content-box p {
		padding: 0;
	}

	.banner-digital-agency h2 {
		font-size: 36px;
	}

	.banner-digital-agency, .banner-digital-agency div {
		height: auto;
	}

	.banner-digital-agency .content {
		padding-top: 60px;
		padding-bottom: 60px;
	}

	.right-angle-thumb {
		display: none;
	}

	.banner-digital-agency p {
		padding: 0;
	}

	.business-banner h2 {
		font-size: 36px;
	}

	.business-banner {
		padding-top: 70px;
		text-align: center;
	}

	.business-banner .business-banner-thumb img:nth-child(2) {
		display: none;
	}

	.revenew {
		display: none;
	}

	.business-banner .business-banner-thumb {
		margin-top: 30px;
	}

	.business-banner .info {
		margin-top: 0;
	}

	/* About */
	.about-style-three-thumb i {
		left: 0;
		bottom: 0;
	}

	.about-style-three-thumb {
		margin-bottom: 50px;
	}

	.about-style-one-thumb {
		padding: 0;
		margin-bottom: 40px;
		text-align: center;
	}

	.about-style-one-thumb .experience {
		display: none;
	}

	.about-style-one-thumb img {
		width: 100%;
		border-radius: 10px;
	}

	.about-style-two-thumb::after {
		display: none;
	}

	.about-style-two-thumb {
		position: relative;
		height: 350px;
		width: 100%;
	}

	.about-two-item {
		padding: 50px 30px;
	}

	.author-info {
		display: block;
	}

	.author-info .info {
		border: none;
		padding: 0;
	}

	.author-info > img {
		display: none;
		margin: 0;
	}

	.author-info .thumb img {
		margin-bottom: 20px;
		display: none;
	}


	/* Feature */
	.feature-style-one-area {
		text-align: center;
		padding-bottom: 10px;
	}

	.feature-alert .fun-fact .counter {
		justify-content: center;
		margin-bottom: 10px;
	}

	.feature-alert {
		margin-bottom: 30px;
	}

	.feature-style-one-area .shape {
		display: none;
	}

	/* Feature Two */
	.feature-two-box .col-lg-4::after {
		display: none;
	}

	.feature-style-two .icon::after {
		display: none;
	}

	.feature-style-two {
		padding: 50px;
		border: 1px solid #e7e7e7;
		border-radius: 10px;
	}

	.feature-two-box .col-lg-4:nth-child(3) {
		margin: 0;
	}

	.feature-two-box .col-lg-4:nth-child(2) {
		margin: 0;
	}

	.feature-two-box .col-lg-4 {
		padding: 0 15px;
	}

	.feature-two-box .col-lg-4 .feature-style-two {
		margin-top: 30px;
	}

	.feature-two-box .col-lg-4:first-child .feature-style-two {
		margin-top: 0;
	}

	.feature-style-two span {
		left: auto;
		right: 30px;
		display: none;
	}

	/* Feature */
	ul.feature-fun-fact {
		text-align: center;
	}

	.feature-fun-fact .fun-fact .counter {
		justify-content: center;
		font-size: 60px;
	}

	ul.feature-fun-fact li {
		margin-top: 30px;
	}

	.feature-style-three {
		text-align: center;
	}

	.feature-style-three .icon {
		text-align: center;
	}

	.feature-style-four {
		text-align: center;
		margin-bottom: 50px;
	}

	.feature-four-items {
		padding-bottom: 30px;
	}

	.feature-style-four img {
		margin-bottom: 30px;
	}

	.feature-style-five-area {
		background-image: none !important;
	}

	.feature-style-five-items .item {
		border: none;
		margin-bottom: 40px;
	}

	.feature-style-five {
		text-align: center;
		display: block;
	}

	.feature-style-five .icon {
		justify-content: center;
		align-items: center;
		margin: auto auto 30px;
	}

	


	/* Fun Fact */

	.fun-facts-area .shape {
		top: 50%;
		transform: translateY(-50%);
	}

	.fun-facts-area .item {
		margin-top: 36px;
	}

	.fun-facts-area .item:first-child {
		margin-top: 0;
	}

	.fun-facts-area .fun-fact {
		text-align: center;
		position: relative;
		z-index: 1;
		border: 1px solid rgba(255, 255, 255, 0.5);
		border-radius: 10px;
		padding: 30px;
	}

}

/* ============================================================== 
    # Service
=================================================================== */

.services-style-one-area {
	border-radius: 0px;
}

.tab-content.service-one-items {
	padding: 20px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.1);
	border: 0px;
}

.service-tags ul {
	margin: 0;
	padding: 0;
	list-style: none;
	max-width: 80%;
	float: right;
}

.service-tags ul li {
	display: inline-block;
	padding: 10px 25px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 5px;
	margin-left: 10px;
	margin-bottom: 15px;
}

.service-tags {
	float: right;
	text-align: right;
}

.nav-tabs.service-one-nav {
	margin: 0;
	border: none;
	display: block;
	border: 1px solid rgba(255, 255, 255, 0.2);
	overflow: hidden;
	border-radius: 30px;
}

.nav-tabs.service-one-nav .nav-link::after {
	display: none;
}

.nav-tabs.service-one-nav .nav-link {
	display: block;
	width: 100%;
	text-align: left;
	padding: 25px 50px;
	border: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: inherit;
	color: #fff;
	display: flex;
	align-items: center;
	border-radius: 0;
	font-size: 20px;
	font-weight: 700;
	text-transform: none;
}

.nav-tabs.service-one-nav .nav-link i {
	display: inline-block;
	font-weight: 700;
	font-size: 40px;
	width: 70px; padding-right: 20px;
}

.nav-tabs.service-one-nav .nav-link.active {
	background: linear-gradient(90deg, #eb2188 20%,#080a52 100%);
}

.nav-tabs.service-one-nav .nav-link:last-child {
	border: none;
}

.nav-tabs.service-one-nav .nav-link b {
	display: block;
	font-size: 16px;
	font-weight: 500;
	opacity: 0.90; color: #fff;
}

.tab-content.service-one-items h6 {
	font-size: 18px;
}

.tab-content.service-one-items h5 {
	font-size: 20px;
	line-height: 1.6;
	font-weight: 700;
}

.tab-content.service-one-items ul {
	margin: 0;
	padding: 0;
	list-style: none;
	margin-top: 0px;
}

.tab-content.service-one-items ul li {
	display: block;
	margin-top: 10px;
	position: relative;
	padding-left: 25px;
}

.tab-content.service-one-items ul li::after {
	position: absolute;
	left: 0;
	top: 10px;
	content: "";
	height: 10px;
	width: 10px;
	background: linear-gradient(90deg, #080a52 20%,#080a52 100%);
	border-radius: 3px;
}

.tab-content.service-one-items .progress-box {
	margin-top: 30px;
}

.tab-content.service-one-items .progress-box h5 {
	font-weight: 800;
}

.tab-content.service-one-items .progress-box .progress {
	width: 100%;
	height: 4px;
	overflow: inherit;
}

.tab-content.service-one-items .progress-box .progress span {
	position: absolute;
	right: 0;
	top: -50px;
	background: #fff;
	color: #04000b;
	font-weight: 800;
	padding: 5px;
	border-radius: 5px;
}

.tab-content.service-one-items .progress-box .progress .progress-bar {
	position: relative;
	overflow: inherit;
	width: 90%;
}

.tab-content.service-one-items .progress-box .progress span::after {
	position: absolute;
	bottom: -8px;
	content: "";
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 10px solid var(--white);
	left: 50%;
	transform: translateX(-50%);
}

.achivement-counter li i.fas {
	font-size: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}
.bg-dark{
  background-color: #1d1d1d;
}
.bg-dark, .bg-dark-secondary, .bg-dark p, .bg-dark-secondary p {
  color: #cccccc;
}



/*==============================================
	1. Font Weight
================================================*/
.fw-100 {
	font-weight: 100;
}

.fw-200 {
	font-weight: 200;
}

.fw-300 {
	font-weight: 300;
}

.fw-400 {
	font-weight: 400;
}

.fw-500 {
	font-weight: 500;
}

.fw-600 {
	font-weight: 600;
}

.fw-700 {
	font-weight: 700;
}

.fw-800 {
	font-weight: 800;
}

.fw-900 {
	font-weight: 900;
}

/*==============================================
	2. Position
================================================*/
.pos-relative {
	position: relative;
}

.pos-absolute {
	position: absolute;
}

.pos-initial {
	position: initial;
}

.pos-inherit {
	position: inherit;
}

/*==============================================
1. Margin:
   mt = margin-top
   mb = margin-bottom
   ml = margin-left
   mr = margin-right

2. Padding:
   pt = padding-top
   pb = padding-bottom
   pl = padding-left
   pr = padding-right
================================================*/


/* Margin Top */
.mt-5 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-35 {
  margin-top: 35px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-45 {
  margin-top: 45px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-55 {
  margin-top: 55px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-65 {
  margin-top: 65px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-75 {
  margin-top: 75px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-85 {
  margin-top: 85px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-95 {
  margin-top: 95px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-105 {
  margin-top: 105px;
}

.mt-110 {
  margin-top: 110px;
}

.mt-115 {
  margin-top: 115px;
}

.mt-120 {
  margin-top: 120px;
}

.mt-125 {
  margin-top: 125px;
}

.mt-130 {
  margin-top: 130px;
}

.mt-135 {
  margin-top: 135px;
}

.mt-140 {
  margin-top: 140px;
}

.mt-145 {
  margin-top: 145px;
}

.mt-150 {
  margin-top: 150px;
}

.mt-155 {
  margin-top: 155px;
}

.mt-160 {
  margin-top: 160px;
}

.mt-165 {
  margin-top: 165px;
}

.mt-170 {
  margin-top: 170px;
}

.mt-175 {
  margin-top: 175px;
}

.mt-180 {
  margin-top: 180px;
}

.mt-185 {
  margin-top: 185px;
}

.mt-190 {
  margin-top: 190px;
}

.mt-195 {
  margin-top: 195px;
}

.mt-200 {
  margin-top: 200px;
}

.mt-205 {
  margin-top: 205px;
}

.mt-210 {
  margin-top: 210px;
}

.mt-215 {
  margin-top: 215px;
}

.mt-220 {
  margin-top: 220px;
}

.mt-225 {
  margin-top: 225px;
}

.mt-230 {
  margin-top: 230px;
}

.mt-235 {
  margin-top: 235px;
}

.mt-240 {
  margin-top: 240px;
}

.mt-245 {
  margin-top: 245px;
}

.mt-250 {
  margin-top: 250px;
}

.mt-255 {
  margin-top: 255px;
}

.mt-260 {
  margin-top: 260px;
}

.mt-265 {
  margin-top: 265px;
}

.mt-270 {
  margin-top: 270px;
}

.mt-275 {
  margin-top: 275px;
}

.mt-280 {
  margin-top: 280px;
}

.mt-285 {
  margin-top: 285px;
}

.mt-290 {
  margin-top: 290px;
}

.mt-295 {
  margin-top: 295px;
}

.mt-300 {
  margin-top: 300px;
}

.mt-305 {
  margin-top: 305px;
}

.mt-310 {
  margin-top: 310px;
}

.mt-315 {
  margin-top: 315px;
}

.mt-320 {
  margin-top: 320px;
}

.mt-325 {
  margin-top: 325px;
}

.mt--5 {
  margin-top: -5px;
}

.mt--10 {
  margin-top: -10px;
}

.mt--15 {
  margin-top: -15px;
}

.mt--20 {
  margin-top: -20px;
}

.mt--25 {
  margin-top: -25px;
}

.mt--30 {
  margin-top: -30px;
}

.mt--35 {
  margin-top: -35px;
}

.mt--40 {
  margin-top: -40px;
}

.mt--45 {
  margin-top: -45px;
}

.mt--50 {
  margin-top: -50px;
}

.mt--55 {
  margin-top: -55px;
}

.mt--60 {
  margin-top: -60px;
}

.mt--65 {
  margin-top: -65px;
}

.mt--70 {
  margin-top: -70px;
}

.mt--75 {
  margin-top: -75px;
}

.mt--80 {
  margin-top: -80px;
}

.mt--85 {
  margin-top: -85px;
}

.mt--90 {
  margin-top: -90px;
}

.mt--95 {
  margin-top: -95px;
}

.mt--100 {
  margin-top: -100px;
}

.mt--105 {
  margin-top: -105px;
}

.mt--110 {
  margin-top: -110px;
}

.mt--115 {
  margin-top: -115px;
}

.mt--120 {
  margin-top: -120px;
}

.mt--125 {
  margin-top: -125px;
}

.mt--130 {
  margin-top: -130px;
}

.mt--135 {
  margin-top: -135px;
}

.mt--140 {
  margin-top: -140px;
}

.mt--145 {
  margin-top: -145px;
}

.mt--150 {
  margin-top: -150px;
}

.mt--155 {
  margin-top: -155px;
}

.mt--160 {
  margin-top: -160px;
}

.mt--165 {
  margin-top: -165px;
}

.mt--170 {
  margin-top: -170px;
}

.mt--175 {
  margin-top: -175px;
}

.mt--180 {
  margin-top: -180px;
}

.mt--185 {
  margin-top: -185px;
}

.mt--190 {
  margin-top: -190px;
}

.mt--195 {
  margin-top: -195px;
}

.mt--200 {
  margin-top: -200px;
}

.mt--205 {
  margin-top: -205px;
}

.mt--210 {
  margin-top: -210px;
}

.mt--215 {
  margin-top: -215px;
}

.mt--220 {
  margin-top: -220px;
}

.mt--225 {
  margin-top: -225px;
}

.mt--230 {
  margin-top: -230px;
}

.mt--235 {
  margin-top: -235px;
}

.mt--240 {
  margin-top: -240px;
}

.mt--245 {
  margin-top: -245px;
}

.mt--250 {
  margin-top: -250px;
}

.mt--255 {
  margin-top: -255px;
}

.mt--260 {
  margin-top: -260px;
}

.mt--265 {
  margin-top: -265px;
}

.mt--270 {
  margin-top: -270px;
}

.mt--275 {
  margin-top: -275px;
}

.mt--280 {
  margin-top: -280px;
}

.mt--285 {
  margin-top: -285px;
}

.mt--290 {
  margin-top: -290px;
}

.mt--295 {
  margin-top: -295px;
}

.mt--300 {
  margin-top: -300px;
}

.mt--305 {
  margin-top: -305px;
}

.mt--310 {
  margin-top: -310px;
}

.mt--315 {
  margin-top: -315px;
}

.mt--320 {
  margin-top: -320px;
}

.mt--325 {
  margin-top: -325px;
}

/* Margin Bottom */
.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-55 {
  margin-bottom: 55px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-65 {
  margin-bottom: 65px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-75 {
  margin-bottom: 75px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-85 {
  margin-bottom: 85px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-95 {
  margin-bottom: 95px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb-105 {
  margin-bottom: 105px;
}

.mb-110 {
  margin-bottom: 110px;
}

.mb-115 {
  margin-bottom: 115px;
}

.mb-120 {
  margin-bottom: 120px;
}

.mb-125 {
  margin-bottom: 125px;
}

.mb-130 {
  margin-bottom: 130px;
}

.mb-135 {
  margin-bottom: 135px;
}

.mb-140 {
  margin-bottom: 140px;
}

.mb-145 {
  margin-bottom: 145px;
}

.mb-150 {
  margin-bottom: 150px;
}

.mb-155 {
  margin-bottom: 155px;
}

.mb-160 {
  margin-bottom: 160px;
}

.mb-165 {
  margin-bottom: 165px;
}

.mb-170 {
  margin-bottom: 170px;
}

.mb-175 {
  margin-bottom: 175px;
}

.mb-180 {
  margin-bottom: 180px;
}

.mb-185 {
  margin-bottom: 185px;
}

.mb-190 {
  margin-bottom: 190px;
}

.mb-195 {
  margin-bottom: 195px;
}

.mb-200 {
  margin-bottom: 200px;
}

.mb-205 {
  margin-bottom: 205px;
}

.mb-210 {
  margin-bottom: 210px;
}

.mb-215 {
  margin-bottom: 215px;
}

.mb-220 {
  margin-bottom: 220px;
}

.mb-225 {
  margin-bottom: 225px;
}

.mb-230 {
  margin-bottom: 230px;
}

.mb-235 {
  margin-bottom: 235px;
}

.mb-240 {
  margin-bottom: 240px;
}

.mb-245 {
  margin-bottom: 245px;
}

.mb-250 {
  margin-bottom: 250px;
}

.mb-255 {
  margin-bottom: 255px;
}

.mb-260 {
  margin-bottom: 260px;
}

.mb-265 {
  margin-bottom: 265px;
}

.mb-270 {
  margin-bottom: 270px;
}

.mb-275 {
  margin-bottom: 275px;
}

.mb-280 {
  margin-bottom: 280px;
}

.mb-285 {
  margin-bottom: 285px;
}

.mb-290 {
  margin-bottom: 290px;
}

.mb-295 {
  margin-bottom: 295px;
}

.mb-300 {
  margin-bottom: 300px;
}

.mb-305 {
  margin-bottom: 305px;
}

.mb-310 {
  margin-bottom: 310px;
}

.mb-315 {
  margin-bottom: 315px;
}

.mb-320 {
  margin-bottom: 320px;
}

.mb-325 {
  margin-bottom: 325px;
}

.mb--5 {
  margin-bottom: -5px;
}

.mb--10 {
  margin-bottom: -10px;
}

.mb--15 {
  margin-bottom: -15px;
}

.mb--20 {
  margin-bottom: -20px;
}

.mb--25 {
  margin-bottom: -25px;
}

.mb--30 {
  margin-bottom: -30px;
}

.mb--35 {
  margin-bottom: -35px;
}

.mb--40 {
  margin-bottom: -40px;
}

.mb--45 {
  margin-bottom: -45px;
}

.mb--50 {
  margin-bottom: -50px;
}

.mb--55 {
  margin-bottom: -55px;
}

.mb--60 {
  margin-bottom: -60px;
}

.mb--65 {
  margin-bottom: -65px;
}

.mb--70 {
  margin-bottom: -70px;
}

.mb--75 {
  margin-bottom: -75px;
}

.mb--80 {
  margin-bottom: -80px;
}

.mb--85 {
  margin-bottom: -85px;
}

.mb--90 {
  margin-bottom: -90px;
}

.mb--95 {
  margin-bottom: -95px;
}

.mb--100 {
  margin-bottom: -100px;
}

.mb--105 {
  margin-bottom: -105px;
}

.mb--110 {
  margin-bottom: -110px;
}

.mb--115 {
  margin-bottom: -115px;
}

.mb--120 {
  margin-bottom: -120px;
}

.mb--125 {
  margin-bottom: -125px;
}

.mb--130 {
  margin-bottom: -130px;
}

.mb--135 {
  margin-bottom: -135px;
}

.mb--140 {
  margin-bottom: -140px;
}

.mb--145 {
  margin-bottom: -145px;
}

.mb--150 {
  margin-bottom: -150px;
}

.mb--155 {
  margin-bottom: -155px;
}

.mb--160 {
  margin-bottom: -160px;
}

.mb--165 {
  margin-bottom: -165px;
}

.mb--170 {
  margin-bottom: -170px;
}

.mb--175 {
  margin-bottom: -175px;
}

.mb--180 {
  margin-bottom: -180px;
}

.mb--185 {
  margin-bottom: -185px;
}

.mb--190 {
  margin-bottom: -190px;
}

.mb--195 {
  margin-bottom: -195px;
}

.mb--200 {
  margin-bottom: -200px;
}

.mb--205 {
  margin-bottom: -205px;
}

.mb--210 {
  margin-bottom: -210px;
}

.mb--215 {
  margin-bottom: -215px;
}

.mb--220 {
  margin-bottom: -220px;
}

.mb--225 {
  margin-bottom: -225px;
}

.mb--230 {
  margin-bottom: -230px;
}

.mb--235 {
  margin-bottom: -235px;
}

.mb--240 {
  margin-bottom: -240px;
}

.mb--245 {
  margin-bottom: -245px;
}

.mb--250 {
  margin-bottom: -250px;
}

.mb--255 {
  margin-bottom: -255px;
}

.mb--260 {
  margin-bottom: -260px;
}

.mb--265 {
  margin-bottom: -265px;
}

.mb--270 {
  margin-bottom: -270px;
}

.mb--275 {
  margin-bottom: -275px;
}

.mb--280 {
  margin-bottom: -280px;
}

.mb--285 {
  margin-bottom: -285px;
}

.mb--290 {
  margin-bottom: -290px;
}

.mb--295 {
  margin-bottom: -295px;
}

.mb--300 {
  margin-bottom: -300px;
}

.mb--305 {
  margin-bottom: -305px;
}

.mb--310 {
  margin-bottom: -310px;
}

.mb--315 {
  margin-bottom: -315px;
}

.mb--320 {
  margin-bottom: -320px;
}

.mb--325 {
  margin-bottom: -325px;
}

/* Margin Left */
.ml-5 {
  margin-left: 5px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-15 {
  margin-left: 15px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-25 {
  margin-left: 25px;
}

.ml-30 {
  margin-left: 30px;
}

.ml-35 {
  margin-left: 35px;
}

.ml-40 {
  margin-left: 40px;
}

.ml-45 {
  margin-left: 45px;
}

.ml-50 {
  margin-left: 50px;
}

.ml-55 {
  margin-left: 55px;
}

.ml-60 {
  margin-left: 60px;
}

.ml-65 {
  margin-left: 65px;
}

.ml-70 {
  margin-left: 70px;
}

.ml-75 {
  margin-left: 75px;
}

.ml-80 {
  margin-left: 80px;
}

.ml-85 {
  margin-left: 85px;
}

.ml-90 {
  margin-left: 90px;
}

.ml-95 {
  margin-left: 95px;
}

.ml-100 {
  margin-left: 100px;
}

.ml-105 {
  margin-left: 105px;
}

.ml-110 {
  margin-left: 110px;
}

.ml-115 {
  margin-left: 115px;
}

.ml-120 {
  margin-left: 120px;
}

.ml-125 {
  margin-left: 125px;
}

.ml-130 {
  margin-left: 130px;
}

.ml-135 {
  margin-left: 135px;
}

.ml-140 {
  margin-left: 140px;
}

.ml-145 {
  margin-left: 145px;
}

.ml-150 {
  margin-left: 150px;
}

.ml-155 {
  margin-left: 155px;
}

.ml-160 {
  margin-left: 160px;
}

.ml-165 {
  margin-left: 165px;
}

.ml-170 {
  margin-left: 170px;
}

.ml-175 {
  margin-left: 175px;
}

.ml-180 {
  margin-left: 180px;
}

.ml-185 {
  margin-left: 185px;
}

.ml-190 {
  margin-left: 190px;
}

.ml-195 {
  margin-left: 195px;
}

.ml-200 {
  margin-left: 200px;
}

.ml-205 {
  margin-left: 205px;
}

.ml-210 {
  margin-left: 210px;
}

.ml-215 {
  margin-left: 215px;
}

.ml-220 {
  margin-left: 220px;
}

.ml-225 {
  margin-left: 225px;
}

.ml-230 {
  margin-left: 230px;
}

.ml-235 {
  margin-left: 235px;
}

.ml-240 {
  margin-left: 240px;
}

.ml-245 {
  margin-left: 245px;
}

.ml-250 {
  margin-left: 250px;
}

.ml-255 {
  margin-left: 255px;
}

.ml-260 {
  margin-left: 260px;
}

.ml-265 {
  margin-left: 265px;
}

.ml-270 {
  margin-left: 270px;
}

.ml-275 {
  margin-left: 275px;
}

.ml-280 {
  margin-left: 280px;
}

.ml-285 {
  margin-left: 285px;
}

.ml-290 {
  margin-left: 290px;
}

.ml-295 {
  margin-left: 295px;
}

.ml-300 {
  margin-left: 300px;
}

.ml-305 {
  margin-left: 305px;
}

.ml-310 {
  margin-left: 310px;
}

.ml-315 {
  margin-left: 315px;
}

.ml-320 {
  margin-left: 320px;
}

.ml-325 {
  margin-left: 325px;
}

/* Margin Right */
.mr-5 {
  margin-right: 5px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-15 {
  margin-right: 15px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-25 {
  margin-right: 25px;
}

.mr-30 {
  margin-right: 30px;
}

.mr-35 {
  margin-right: 35px;
}

.mr-40 {
  margin-right: 40px;
}

.mr-45 {
  margin-right: 45px;
}

.mr-50 {
  margin-right: 50px;
}

.mr-55 {
  margin-right: 55px;
}

.mr-60 {
  margin-right: 60px;
}

.mr-65 {
  margin-right: 65px;
}

.mr-70 {
  margin-right: 70px;
}

.mr-75 {
  margin-right: 75px;
}

.mr-80 {
  margin-right: 80px;
}

.mr-85 {
  margin-right: 85px;
}

.mr-90 {
  margin-right: 90px;
}

.mr-95 {
  margin-right: 95px;
}

.mr-100 {
  margin-right: 100px;
}

.mr-105 {
  margin-right: 105px;
}

.mr-110 {
  margin-right: 110px;
}

.mr-115 {
  margin-right: 115px;
}

.mr-120 {
  margin-right: 120px;
}

.mr-125 {
  margin-right: 125px;
}

.mr-130 {
  margin-right: 130px;
}

.mr-135 {
  margin-right: 135px;
}

.mr-140 {
  margin-right: 140px;
}

.mr-145 {
  margin-right: 145px;
}

.mr-150 {
  margin-right: 150px;
}

.mr-155 {
  margin-right: 155px;
}

.mr-160 {
  margin-right: 160px;
}

.mr-165 {
  margin-right: 165px;
}

.mr-170 {
  margin-right: 170px;
}

.mr-175 {
  margin-right: 175px;
}

.mr-180 {
  margin-right: 180px;
}

.mr-185 {
  margin-right: 185px;
}

.mr-190 {
  margin-right: 190px;
}

.mr-195 {
  margin-right: 195px;
}

.mr-200 {
  margin-right: 200px;
}

.mr-205 {
  margin-right: 205px;
}

.mr-210 {
  margin-right: 210px;
}

.mr-215 {
  margin-right: 215px;
}

.mr-220 {
  margin-right: 220px;
}

.mr-225 {
  margin-right: 225px;
}

.mr-230 {
  margin-right: 230px;
}

.mr-235 {
  margin-right: 235px;
}

.mr-240 {
  margin-right: 240px;
}

.mr-245 {
  margin-right: 245px;
}

.mr-250 {
  margin-right: 250px;
}

.mr-255 {
  margin-right: 255px;
}

.mr-260 {
  margin-right: 260px;
}

.mr-265 {
  margin-right: 265px;
}

.mr-270 {
  margin-right: 270px;
}

.mr-275 {
  margin-right: 275px;
}

.mr-280 {
  margin-right: 280px;
}

.mr-285 {
  margin-right: 285px;
}

.mr-290 {
  margin-right: 290px;
}

.mr-295 {
  margin-right: 295px;
}

.mr-300 {
  margin-right: 300px;
}

.mr-305 {
  margin-right: 305px;
}

.mr-310 {
  margin-right: 310px;
}

.mr-315 {
  margin-right: 315px;
}

.mr-320 {
  margin-right: 320px;
}

.mr-325 {
  margin-right: 325px;
}

/* Margin LG */
@media (min-width: 992px) and (max-width: 1200px) {
  .mt-lg-5 {
    margin-top: 5px;
  }

  .mt-lg-10 {
    margin-top: 10px;
  }

  .mt-lg-15 {
    margin-top: 15px;
  }

  .mt-lg-20 {
    margin-top: 20px;
  }

  .mt-lg-25 {
    margin-top: 25px;
  }

  .mt-lg-30 {
    margin-top: 30px;
  }

  .mt-lg-35 {
    margin-top: 35px;
  }

  .mt-lg-40 {
    margin-top: 40px;
  }

  .mt-lg-45 {
    margin-top: 45px;
  }

  .mt-lg-50 {
    margin-top: 50px;
  }

  .mt-lg-55 {
    margin-top: 55px;
  }

  .mt-lg-60 {
    margin-top: 60px;
  }

  .mt-lg-65 {
    margin-top: 65px;
  }

  .mt-lg-70 {
    margin-top: 70px;
  }

  .mt-lg-75 {
    margin-top: 75px;
  }

  .mt-lg-80 {
    margin-top: 80px;
  }

  .mt-lg-85 {
    margin-top: 85px;
  }

  .mt-lg-90 {
    margin-top: 90px;
  }

  .mt-lg-95 {
    margin-top: 95px;
  }

  .mt-lg-100 {
    margin-top: 100px;
  }

  .mt-lg-105 {
    margin-top: 105px;
  }

  .mt-lg-110 {
    margin-top: 110px;
  }

  .mt-lg-115 {
    margin-top: 115px;
  }

  .mt-lg-120 {
    margin-top: 120px;
  }

  .mt-lg-125 {
    margin-top: 125px;
  }

  .mt-lg-130 {
    margin-top: 130px;
  }

  .mt-lg-135 {
    margin-top: 135px;
  }

  .mt-lg-140 {
    margin-top: 140px;
  }

  .mt-lg-145 {
    margin-top: 145px;
  }

  .mt-lg-150 {
    margin-top: 150px;
  }

  .mt-lg-155 {
    margin-top: 155px;
  }

  .mt-lg-160 {
    margin-top: 160px;
  }

  .mt-lg-165 {
    margin-top: 165px;
  }

  .mt-lg-170 {
    margin-top: 170px;
  }

  .mt-lg-175 {
    margin-top: 175px;
  }

  .mt-lg-180 {
    margin-top: 180px;
  }

  .mt-lg-185 {
    margin-top: 185px;
  }

  .mt-lg-190 {
    margin-top: 190px;
  }

  .mt-lg-195 {
    margin-top: 195px;
  }

  .mt-lg-200 {
    margin-top: 200px;
  }

  .mt-lg-205 {
    margin-top: 205px;
  }

  .mt-lg-210 {
    margin-top: 210px;
  }

  .mt-lg-215 {
    margin-top: 215px;
  }

  .mt-lg-220 {
    margin-top: 220px;
  }

  .mt-lg-225 {
    margin-top: 225px;
  }

  .mt-lg-230 {
    margin-top: 230px;
  }

  .mt-lg-235 {
    margin-top: 235px;
  }

  .mt-lg-240 {
    margin-top: 240px;
  }

  .mt-lg-245 {
    margin-top: 245px;
  }

  .mt-lg-250 {
    margin-top: 250px;
  }

  .mt-lg-255 {
    margin-top: 255px;
  }

  .mt-lg-260 {
    margin-top: 260px;
  }

  .mt-lg-265 {
    margin-top: 265px;
  }

  .mt-lg-270 {
    margin-top: 270px;
  }

  .mt-lg-275 {
    margin-top: 275px;
  }

  .mt-lg-280 {
    margin-top: 280px;
  }

  .mt-lg-285 {
    margin-top: 285px;
  }

  .mt-lg-290 {
    margin-top: 290px;
  }

  .mt-lg-295 {
    margin-top: 295px;
  }

  .mt-lg-300 {
    margin-top: 300px;
  }

  .mt-lg-305 {
    margin-top: 305px;
  }

  .mt-lg-310 {
    margin-top: 310px;
  }

  .mt-lg-315 {
    margin-top: 315px;
  }

  .mt-lg-320 {
    margin-top: 320px;
  }

  .mt-lg-325 {
    margin-top: 325px;
  }

  .mb-lg-5 {
    margin-bottom: 5px;
  }

  .mb-lg-10 {
    margin-bottom: 10px;
  }

  .mb-lg-15 {
    margin-bottom: 15px;
  }

  .mb-lg-20 {
    margin-bottom: 20px;
  }

  .mb-lg-25 {
    margin-bottom: 25px;
  }

  .mb-lg-30 {
    margin-bottom: 30px;
  }

  .mb-lg-35 {
    margin-bottom: 35px;
  }

  .mb-lg-40 {
    margin-bottom: 40px;
  }

  .mb-lg-45 {
    margin-bottom: 45px;
  }

  .mb-lg-50 {
    margin-bottom: 50px;
  }

  .mb-lg-55 {
    margin-bottom: 55px;
  }

  .mb-lg-60 {
    margin-bottom: 60px;
  }

  .mb-lg-65 {
    margin-bottom: 65px;
  }

  .mb-lg-70 {
    margin-bottom: 70px;
  }

  .mb-lg-75 {
    margin-bottom: 75px;
  }

  .mb-lg-80 {
    margin-bottom: 80px;
  }

  .mb-lg-85 {
    margin-bottom: 85px;
  }

  .mb-lg-90 {
    margin-bottom: 90px;
  }

  .mb-lg-95 {
    margin-bottom: 95px;
  }

  .mb-lg-100 {
    margin-bottom: 100px;
  }

  .mb-lg-105 {
    margin-bottom: 105px;
  }

  .mb-lg-110 {
    margin-bottom: 110px;
  }

  .mb-lg-115 {
    margin-bottom: 115px;
  }

  .mb-lg-120 {
    margin-bottom: 120px;
  }

  .mb-lg-125 {
    margin-bottom: 125px;
  }

  .mb-lg-130 {
    margin-bottom: 130px;
  }

  .mb-lg-135 {
    margin-bottom: 135px;
  }

  .mb-lg-140 {
    margin-bottom: 140px;
  }

  .mb-lg-145 {
    margin-bottom: 145px;
  }

  .mb-lg-150 {
    margin-bottom: 150px;
  }

  .mb-lg-155 {
    margin-bottom: 155px;
  }

  .mb-lg-160 {
    margin-bottom: 160px;
  }

  .mb-lg-165 {
    margin-bottom: 165px;
  }

  .mb-lg-170 {
    margin-bottom: 170px;
  }

  .mb-lg-175 {
    margin-bottom: 175px;
  }

  .mb-lg-180 {
    margin-bottom: 180px;
  }

  .mb-lg-185 {
    margin-bottom: 185px;
  }

  .mb-lg-190 {
    margin-bottom: 190px;
  }

  .mb-lg-195 {
    margin-bottom: 195px;
  }

  .mb-lg-200 {
    margin-bottom: 200px;
  }

  .mb-lg-205 {
    margin-bottom: 205px;
  }

  .mb-lg-210 {
    margin-bottom: 210px;
  }

  .mb-lg-215 {
    margin-bottom: 215px;
  }

  .mb-lg-220 {
    margin-bottom: 220px;
  }

  .mb-lg-225 {
    margin-bottom: 225px;
  }

  .mb-lg-230 {
    margin-bottom: 230px;
  }

  .mb-lg-235 {
    margin-bottom: 235px;
  }

  .mb-lg-240 {
    margin-bottom: 240px;
  }

  .mb-lg-245 {
    margin-bottom: 245px;
  }

  .mb-lg-250 {
    margin-bottom: 250px;
  }

  .mb-lg-255 {
    margin-bottom: 255px;
  }

  .mb-lg-260 {
    margin-bottom: 260px;
  }

  .mb-lg-265 {
    margin-bottom: 265px;
  }

  .mb-lg-270 {
    margin-bottom: 270px;
  }

  .mb-lg-275 {
    margin-bottom: 275px;
  }

  .mb-lg-280 {
    margin-bottom: 280px;
  }

  .mb-lg-285 {
    margin-bottom: 285px;
  }

  .mb-lg-290 {
    margin-bottom: 290px;
  }

  .mb-lg-295 {
    margin-bottom: 295px;
  }

  .mb-lg-300 {
    margin-bottom: 300px;
  }

  .mb-lg-305 {
    margin-bottom: 305px;
  }

  .mb-lg-310 {
    margin-bottom: 310px;
  }

  .mb-lg-315 {
    margin-bottom: 315px;
  }

  .mb-lg-320 {
    margin-bottom: 320px;
  }

  .mb-lg-325 {
    margin-bottom: 325px;
  }

  .ml-lg-5 {
    margin-left: 5px;
  }

  .ml-lg-10 {
    margin-left: 10px;
  }

  .ml-lg-15 {
    margin-left: 15px;
  }

  .ml-lg-20 {
    margin-left: 20px;
  }

  .ml-lg-25 {
    margin-left: 25px;
  }

  .ml-lg-30 {
    margin-left: 30px;
  }

  .ml-lg-35 {
    margin-left: 35px;
  }

  .ml-lg-40 {
    margin-left: 40px;
  }

  .ml-lg-45 {
    margin-left: 45px;
  }

  .ml-lg-50 {
    margin-left: 50px;
  }

  .ml-lg-55 {
    margin-left: 55px;
  }

  .ml-lg-60 {
    margin-left: 60px;
  }

  .ml-lg-65 {
    margin-left: 65px;
  }

  .ml-lg-70 {
    margin-left: 70px;
  }

  .ml-lg-75 {
    margin-left: 75px;
  }

  .ml-lg-80 {
    margin-left: 80px;
  }

  .ml-lg-85 {
    margin-left: 85px;
  }

  .ml-lg-90 {
    margin-left: 90px;
  }

  .ml-lg-95 {
    margin-left: 95px;
  }

  .ml-lg-100 {
    margin-left: 100px;
  }

  .ml-lg-105 {
    margin-left: 105px;
  }

  .ml-lg-110 {
    margin-left: 110px;
  }

  .ml-lg-115 {
    margin-left: 115px;
  }

  .ml-lg-120 {
    margin-left: 120px;
  }

  .ml-lg-125 {
    margin-left: 125px;
  }

  .ml-lg-130 {
    margin-left: 130px;
  }

  .ml-lg-135 {
    margin-left: 135px;
  }

  .ml-lg-140 {
    margin-left: 140px;
  }

  .ml-lg-145 {
    margin-left: 145px;
  }

  .ml-lg-150 {
    margin-left: 150px;
  }

  .ml-lg-155 {
    margin-left: 155px;
  }

  .ml-lg-160 {
    margin-left: 160px;
  }

  .ml-lg-165 {
    margin-left: 165px;
  }

  .ml-lg-170 {
    margin-left: 170px;
  }

  .ml-lg-175 {
    margin-left: 175px;
  }

  .ml-lg-180 {
    margin-left: 180px;
  }

  .ml-lg-185 {
    margin-left: 185px;
  }

  .ml-lg-190 {
    margin-left: 190px;
  }

  .ml-lg-195 {
    margin-left: 195px;
  }

  .ml-lg-200 {
    margin-left: 200px;
  }

  .ml-lg-205 {
    margin-left: 205px;
  }

  .ml-lg-210 {
    margin-left: 210px;
  }

  .ml-lg-215 {
    margin-left: 215px;
  }

  .ml-lg-220 {
    margin-left: 220px;
  }

  .ml-lg-225 {
    margin-left: 225px;
  }

  .ml-lg-230 {
    margin-left: 230px;
  }

  .ml-lg-235 {
    margin-left: 235px;
  }

  .ml-lg-240 {
    margin-left: 240px;
  }

  .ml-lg-245 {
    margin-left: 245px;
  }

  .ml-lg-250 {
    margin-left: 250px;
  }

  .ml-lg-255 {
    margin-left: 255px;
  }

  .ml-lg-260 {
    margin-left: 260px;
  }

  .ml-lg-265 {
    margin-left: 265px;
  }

  .ml-lg-270 {
    margin-left: 270px;
  }

  .ml-lg-275 {
    margin-left: 275px;
  }

  .ml-lg-280 {
    margin-left: 280px;
  }

  .ml-lg-285 {
    margin-left: 285px;
  }

  .ml-lg-290 {
    margin-left: 290px;
  }

  .ml-lg-295 {
    margin-left: 295px;
  }

  .ml-lg-300 {
    margin-left: 300px;
  }

  .ml-lg-305 {
    margin-left: 305px;
  }

  .ml-lg-310 {
    margin-left: 310px;
  }

  .ml-lg-315 {
    margin-left: 315px;
  }

  .ml-lg-320 {
    margin-left: 320px;
  }

  .ml-lg-325 {
    margin-left: 325px;
  }

  .mr-lg-5 {
    margin-right: 5px;
  }

  .mr-lg-10 {
    margin-right: 10px;
  }

  .mr-lg-15 {
    margin-right: 15px;
  }

  .mr-lg-20 {
    margin-right: 20px;
  }

  .mr-lg-25 {
    margin-right: 25px;
  }

  .mr-lg-30 {
    margin-right: 30px;
  }

  .mr-lg-35 {
    margin-right: 35px;
  }

  .mr-lg-40 {
    margin-right: 40px;
  }

  .mr-lg-45 {
    margin-right: 45px;
  }

  .mr-lg-50 {
    margin-right: 50px;
  }

  .mr-lg-55 {
    margin-right: 55px;
  }

  .mr-lg-60 {
    margin-right: 60px;
  }

  .mr-lg-65 {
    margin-right: 65px;
  }

  .mr-lg-70 {
    margin-right: 70px;
  }

  .mr-lg-75 {
    margin-right: 75px;
  }

  .mr-lg-80 {
    margin-right: 80px;
  }

  .mr-lg-85 {
    margin-right: 85px;
  }

  .mr-lg-90 {
    margin-right: 90px;
  }

  .mr-lg-95 {
    margin-right: 95px;
  }

  .mr-lg-100 {
    margin-right: 100px;
  }

  .mr-lg-105 {
    margin-right: 105px;
  }

  .mr-lg-110 {
    margin-right: 110px;
  }

  .mr-lg-115 {
    margin-right: 115px;
  }

  .mr-lg-120 {
    margin-right: 120px;
  }

  .mr-lg-125 {
    margin-right: 125px;
  }

  .mr-lg-130 {
    margin-right: 130px;
  }

  .mr-lg-135 {
    margin-right: 135px;
  }

  .mr-lg-140 {
    margin-right: 140px;
  }

  .mr-lg-145 {
    margin-right: 145px;
  }

  .mr-lg-150 {
    margin-right: 150px;
  }

  .mr-lg-155 {
    margin-right: 155px;
  }

  .mr-lg-160 {
    margin-right: 160px;
  }

  .mr-lg-165 {
    margin-right: 165px;
  }

  .mr-lg-170 {
    margin-right: 170px;
  }

  .mr-lg-175 {
    margin-right: 175px;
  }

  .mr-lg-180 {
    margin-right: 180px;
  }

  .mr-lg-185 {
    margin-right: 185px;
  }

  .mr-lg-190 {
    margin-right: 190px;
  }

  .mr-lg-195 {
    margin-right: 195px;
  }

  .mr-lg-200 {
    margin-right: 200px;
  }

  .mr-lg-205 {
    margin-right: 205px;
  }

  .mr-lg-210 {
    margin-right: 210px;
  }

  .mr-lg-215 {
    margin-right: 215px;
  }

  .mr-lg-220 {
    margin-right: 220px;
  }

  .mr-lg-225 {
    margin-right: 225px;
  }

  .mr-lg-230 {
    margin-right: 230px;
  }

  .mr-lg-235 {
    margin-right: 235px;
  }

  .mr-lg-240 {
    margin-right: 240px;
  }

  .mr-lg-245 {
    margin-right: 245px;
  }

  .mr-lg-250 {
    margin-right: 250px;
  }

  .mr-lg-255 {
    margin-right: 255px;
  }

  .mr-lg-260 {
    margin-right: 260px;
  }

  .mr-lg-265 {
    margin-right: 265px;
  }

  .mr-lg-270 {
    margin-right: 270px;
  }

  .mr-lg-275 {
    margin-right: 275px;
  }

  .mr-lg-280 {
    margin-right: 280px;
  }

  .mr-lg-285 {
    margin-right: 285px;
  }

  .mr-lg-290 {
    margin-right: 290px;
  }

  .mr-lg-295 {
    margin-right: 295px;
  }

  .mr-lg-300 {
    margin-right: 300px;
  }

  .mr-lg-305 {
    margin-right: 305px;
  }

  .mr-lg-310 {
    margin-right: 310px;
  }

  .mr-lg-315 {
    margin-right: 315px;
  }

  .mr-lg-320 {
    margin-right: 320px;
  }

  .mr-lg-325 {
    margin-right: 325px;
  }

  .mt-lg--5 {
    margin-top: -5px;
  }

  .mt-lg--10 {
    margin-top: -10px;
  }

  .mt-lg--15 {
    margin-top: -15px;
  }

  .mt-lg--20 {
    margin-top: -20px;
  }

  .mt-lg--25 {
    margin-top: -25px;
  }

  .mt-lg--30 {
    margin-top: -30px;
  }

  .mt-lg--35 {
    margin-top: -35px;
  }

  .mt-lg--40 {
    margin-top: -40px;
  }

  .mt-lg--45 {
    margin-top: -45px;
  }

  .mt-lg--50 {
    margin-top: -50px;
  }

  .mt-lg--55 {
    margin-top: -55px;
  }

  .mt-lg--60 {
    margin-top: -60px;
  }

  .mt-lg--65 {
    margin-top: -65px;
  }

  .mt-lg--70 {
    margin-top: -70px;
  }

  .mt-lg--75 {
    margin-top: -75px;
  }

  .mt-lg--80 {
    margin-top: -80px;
  }

  .mt-lg--85 {
    margin-top: -85px;
  }

  .mt-lg--90 {
    margin-top: -90px;
  }

  .mt-lg--95 {
    margin-top: -95px;
  }

  .mt-lg--100 {
    margin-top: -100px;
  }

  .mt-lg--105 {
    margin-top: -105px;
  }

  .mt-lg--110 {
    margin-top: -110px;
  }

  .mt-lg--115 {
    margin-top: -115px;
  }

  .mt-lg--120 {
    margin-top: -120px;
  }

  .mt-lg--125 {
    margin-top: -125px;
  }

  .mt-lg--130 {
    margin-top: -130px;
  }

  .mt-lg--135 {
    margin-top: -135px;
  }

  .mt-lg--140 {
    margin-top: -140px;
  }

  .mt-lg--145 {
    margin-top: -145px;
  }

  .mt-lg--150 {
    margin-top: -150px;
  }

  .mt-lg--155 {
    margin-top: -155px;
  }

  .mt-lg--160 {
    margin-top: -160px;
  }

  .mt-lg--165 {
    margin-top: -165px;
  }

  .mt-lg--170 {
    margin-top: -170px;
  }

  .mt-lg--175 {
    margin-top: -175px;
  }

  .mt-lg--180 {
    margin-top: -180px;
  }

  .mt-lg--185 {
    margin-top: -185px;
  }

  .mt-lg--190 {
    margin-top: -190px;
  }

  .mt-lg--195 {
    margin-top: -195px;
  }

  .mt-lg--200 {
    margin-top: -200px;
  }

  .mt-lg--205 {
    margin-top: -205px;
  }

  .mt-lg--210 {
    margin-top: -210px;
  }

  .mt-lg--215 {
    margin-top: -215px;
  }

  .mt-lg--220 {
    margin-top: -220px;
  }

  .mt-lg--225 {
    margin-top: -225px;
  }

  .mt-lg--230 {
    margin-top: -230px;
  }

  .mt-lg--235 {
    margin-top: -235px;
  }

  .mt-lg--240 {
    margin-top: -240px;
  }

  .mt-lg--245 {
    margin-top: -245px;
  }

  .mt-lg--250 {
    margin-top: -250px;
  }

  .mt-lg--255 {
    margin-top: -255px;
  }

  .mt-lg--260 {
    margin-top: -260px;
  }

  .mt-lg--265 {
    margin-top: -265px;
  }

  .mt-lg--270 {
    margin-top: -270px;
  }

  .mt-lg--275 {
    margin-top: -275px;
  }

  .mt-lg--280 {
    margin-top: -280px;
  }

  .mt-lg--285 {
    margin-top: -285px;
  }

  .mt-lg--290 {
    margin-top: -290px;
  }

  .mt-lg--295 {
    margin-top: -295px;
  }

  .mt-lg--300 {
    margin-top: -300px;
  }

  .mt-lg--305 {
    margin-top: -305px;
  }

  .mt-lg--310 {
    margin-top: -310px;
  }

  .mt-lg--315 {
    margin-top: -315px;
  }

  .mt-lg--320 {
    margin-top: -320px;
  }

  .mt-lg--325 {
    margin-top: -325px;
  }

  .mb-lg--5 {
    margin-bottom: -5px;
  }

  .mb-lg--10 {
    margin-bottom: -10px;
  }

  .mb-lg--15 {
    margin-bottom: -15px;
  }

  .mb-lg--20 {
    margin-bottom: -20px;
  }

  .mb-lg--25 {
    margin-bottom: -25px;
  }

  .mb-lg--30 {
    margin-bottom: -30px;
  }

  .mb-lg--35 {
    margin-bottom: -35px;
  }

  .mb-lg--40 {
    margin-bottom: -40px;
  }

  .mb-lg--45 {
    margin-bottom: -45px;
  }

  .mb-lg--50 {
    margin-bottom: -50px;
  }

  .mb-lg--55 {
    margin-bottom: -55px;
  }

  .mb-lg--60 {
    margin-bottom: -60px;
  }

  .mb-lg--65 {
    margin-bottom: -65px;
  }

  .mb-lg--70 {
    margin-bottom: -70px;
  }

  .mb-lg--75 {
    margin-bottom: -75px;
  }

  .mb-lg--80 {
    margin-bottom: -80px;
  }

  .mb-lg--85 {
    margin-bottom: -85px;
  }

  .mb-lg--90 {
    margin-bottom: -90px;
  }

  .mb-lg--95 {
    margin-bottom: -95px;
  }

  .mb-lg--100 {
    margin-bottom: -100px;
  }

  .mb-lg--105 {
    margin-bottom: -105px;
  }

  .mb-lg--110 {
    margin-bottom: -110px;
  }

  .mb-lg--115 {
    margin-bottom: -115px;
  }

  .mb-lg--120 {
    margin-bottom: -120px;
  }

  .mb-lg--125 {
    margin-bottom: -125px;
  }

  .mb-lg--130 {
    margin-bottom: -130px;
  }

  .mb-lg--135 {
    margin-bottom: -135px;
  }

  .mb-lg--140 {
    margin-bottom: -140px;
  }

  .mb-lg--145 {
    margin-bottom: -145px;
  }

  .mb-lg--150 {
    margin-bottom: -150px;
  }

  .mb-lg--155 {
    margin-bottom: -155px;
  }

  .mb-lg--160 {
    margin-bottom: -160px;
  }

  .mb-lg--165 {
    margin-bottom: -165px;
  }

  .mb-lg--170 {
    margin-bottom: -170px;
  }

  .mb-lg--175 {
    margin-bottom: -175px;
  }

  .mb-lg--180 {
    margin-bottom: -180px;
  }

  .mb-lg--185 {
    margin-bottom: -185px;
  }

  .mb-lg--190 {
    margin-bottom: -190px;
  }

  .mb-lg--195 {
    margin-bottom: -195px;
  }

  .mb-lg--200 {
    margin-bottom: -200px;
  }

  .mb-lg--205 {
    margin-bottom: -205px;
  }

  .mb-lg--210 {
    margin-bottom: -210px;
  }

  .mb-lg--215 {
    margin-bottom: -215px;
  }

  .mb-lg--220 {
    margin-bottom: -220px;
  }

  .mb-lg--225 {
    margin-bottom: -225px;
  }

  .mb-lg--230 {
    margin-bottom: -230px;
  }

  .mb-lg--235 {
    margin-bottom: -235px;
  }

  .mb-lg--240 {
    margin-bottom: -240px;
  }

  .mb-lg--245 {
    margin-bottom: -245px;
  }

  .mb-lg--250 {
    margin-bottom: -250px;
  }

  .mb-lg--255 {
    margin-bottom: -255px;
  }

  .mb-lg--260 {
    margin-bottom: -260px;
  }

  .mb-lg--265 {
    margin-bottom: -265px;
  }

  .mb-lg--270 {
    margin-bottom: -270px;
  }

  .mb-lg--275 {
    margin-bottom: -275px;
  }

  .mb-lg--280 {
    margin-bottom: -280px;
  }

  .mb-lg--285 {
    margin-bottom: -285px;
  }

  .mb-lg--290 {
    margin-bottom: -290px;
  }

  .mb-lg--295 {
    margin-bottom: -295px;
  }

  .mb-lg--300 {
    margin-bottom: -300px;
  }

  .mb-lg--305 {
    margin-bottom: -305px;
  }

  .mb-lg--310 {
    margin-bottom: -310px;
  }

  .mb-lg--315 {
    margin-bottom: -315px;
  }

  .mb-lg--320 {
    margin-bottom: -320px;
  }

  .mb-lg--325 {
    margin-bottom: -325px;
  }

  .mt-lg-0 {
    margin-top: 0;
  }

  .mb-lg-0 {
    margin-bottom: 0;
  }

  .ml-lg-0 {
    margin-left: 0;
  }

  .mr-lg-0 {
    margin-right: 0;
  }
}
/* Margin MD */
@media (min-width: 768px) and (max-width: 991px) {
  .mt-md-5 {
    margin-top: 5px;
  }

  .mt-md-10 {
    margin-top: 10px;
  }

  .mt-md-15 {
    margin-top: 15px;
  }

  .mt-md-20 {
    margin-top: 20px;
  }

  .mt-md-25 {
    margin-top: 25px;
  }

  .mt-md-30 {
    margin-top: 30px;
  }

  .mt-md-35 {
    margin-top: 35px;
  }

  .mt-md-40 {
    margin-top: 40px;
  }

  .mt-md-45 {
    margin-top: 45px;
  }

  .mt-md-50 {
    margin-top: 50px;
  }

  .mt-md-55 {
    margin-top: 55px;
  }

  .mt-md-60 {
    margin-top: 60px;
  }

  .mt-md-65 {
    margin-top: 65px;
  }

  .mt-md-70 {
    margin-top: 70px;
  }

  .mt-md-75 {
    margin-top: 75px;
  }

  .mt-md-80 {
    margin-top: 80px;
  }

  .mt-md-85 {
    margin-top: 85px;
  }

  .mt-md-90 {
    margin-top: 90px;
  }

  .mt-md-95 {
    margin-top: 95px;
  }

  .mt-md-100 {
    margin-top: 100px;
  }

  .mt-md-105 {
    margin-top: 105px;
  }

  .mt-md-110 {
    margin-top: 110px;
  }

  .mt-md-115 {
    margin-top: 115px;
  }

  .mt-md-120 {
    margin-top: 120px;
  }

  .mt-md-125 {
    margin-top: 125px;
  }

  .mt-md-130 {
    margin-top: 130px;
  }

  .mt-md-135 {
    margin-top: 135px;
  }

  .mt-md-140 {
    margin-top: 140px;
  }

  .mt-md-145 {
    margin-top: 145px;
  }

  .mt-md-150 {
    margin-top: 150px;
  }

  .mt-md-155 {
    margin-top: 155px;
  }

  .mt-md-160 {
    margin-top: 160px;
  }

  .mt-md-165 {
    margin-top: 165px;
  }

  .mt-md-170 {
    margin-top: 170px;
  }

  .mt-md-175 {
    margin-top: 175px;
  }

  .mt-md-180 {
    margin-top: 180px;
  }

  .mt-md-185 {
    margin-top: 185px;
  }

  .mt-md-190 {
    margin-top: 190px;
  }

  .mt-md-195 {
    margin-top: 195px;
  }

  .mt-md-200 {
    margin-top: 200px;
  }

  .mt-md-205 {
    margin-top: 205px;
  }

  .mt-md-210 {
    margin-top: 210px;
  }

  .mt-md-215 {
    margin-top: 215px;
  }

  .mt-md-220 {
    margin-top: 220px;
  }

  .mt-md-225 {
    margin-top: 225px;
  }

  .mt-md-230 {
    margin-top: 230px;
  }

  .mt-md-235 {
    margin-top: 235px;
  }

  .mt-md-240 {
    margin-top: 240px;
  }

  .mt-md-245 {
    margin-top: 245px;
  }

  .mt-md-250 {
    margin-top: 250px;
  }

  .mt-md-255 {
    margin-top: 255px;
  }

  .mt-md-260 {
    margin-top: 260px;
  }

  .mt-md-265 {
    margin-top: 265px;
  }

  .mt-md-270 {
    margin-top: 270px;
  }

  .mt-md-275 {
    margin-top: 275px;
  }

  .mt-md-280 {
    margin-top: 280px;
  }

  .mt-md-285 {
    margin-top: 285px;
  }

  .mt-md-290 {
    margin-top: 290px;
  }

  .mt-md-295 {
    margin-top: 295px;
  }

  .mt-md-300 {
    margin-top: 300px;
  }

  .mt-md-305 {
    margin-top: 305px;
  }

  .mt-md-310 {
    margin-top: 310px;
  }

  .mt-md-315 {
    margin-top: 315px;
  }

  .mt-md-320 {
    margin-top: 320px;
  }

  .mt-md-325 {
    margin-top: 325px;
  }

  .mb-md-5 {
    margin-bottom: 5px;
  }

  .mb-md-10 {
    margin-bottom: 10px;
  }

  .mb-md-15 {
    margin-bottom: 15px;
  }

  .mb-md-20 {
    margin-bottom: 20px;
  }

  .mb-md-25 {
    margin-bottom: 25px;
  }

  .mb-md-30 {
    margin-bottom: 30px;
  }

  .mb-md-35 {
    margin-bottom: 35px;
  }

  .mb-md-40 {
    margin-bottom: 40px;
  }

  .mb-md-45 {
    margin-bottom: 45px;
  }

  .mb-md-50 {
    margin-bottom: 50px;
  }

  .mb-md-55 {
    margin-bottom: 55px;
  }

  .mb-md-60 {
    margin-bottom: 60px;
  }

  .mb-md-65 {
    margin-bottom: 65px;
  }

  .mb-md-70 {
    margin-bottom: 70px;
  }

  .mb-md-75 {
    margin-bottom: 75px;
  }

  .mb-md-80 {
    margin-bottom: 80px;
  }

  .mb-md-85 {
    margin-bottom: 85px;
  }

  .mb-md-90 {
    margin-bottom: 90px;
  }

  .mb-md-95 {
    margin-bottom: 95px;
  }

  .mb-md-100 {
    margin-bottom: 100px;
  }

  .mb-md-105 {
    margin-bottom: 105px;
  }

  .mb-md-110 {
    margin-bottom: 110px;
  }

  .mb-md-115 {
    margin-bottom: 115px;
  }

  .mb-md-120 {
    margin-bottom: 120px;
  }

  .mb-md-125 {
    margin-bottom: 125px;
  }

  .mb-md-130 {
    margin-bottom: 130px;
  }

  .mb-md-135 {
    margin-bottom: 135px;
  }

  .mb-md-140 {
    margin-bottom: 140px;
  }

  .mb-md-145 {
    margin-bottom: 145px;
  }

  .mb-md-150 {
    margin-bottom: 150px;
  }

  .mb-md-155 {
    margin-bottom: 155px;
  }

  .mb-md-160 {
    margin-bottom: 160px;
  }

  .mb-md-165 {
    margin-bottom: 165px;
  }

  .mb-md-170 {
    margin-bottom: 170px;
  }

  .mb-md-175 {
    margin-bottom: 175px;
  }

  .mb-md-180 {
    margin-bottom: 180px;
  }

  .mb-md-185 {
    margin-bottom: 185px;
  }

  .mb-md-190 {
    margin-bottom: 190px;
  }

  .mb-md-195 {
    margin-bottom: 195px;
  }

  .mb-md-200 {
    margin-bottom: 200px;
  }

  .mb-md-205 {
    margin-bottom: 205px;
  }

  .mb-md-210 {
    margin-bottom: 210px;
  }

  .mb-md-215 {
    margin-bottom: 215px;
  }

  .mb-md-220 {
    margin-bottom: 220px;
  }

  .mb-md-225 {
    margin-bottom: 225px;
  }

  .mb-md-230 {
    margin-bottom: 230px;
  }

  .mb-md-235 {
    margin-bottom: 235px;
  }

  .mb-md-240 {
    margin-bottom: 240px;
  }

  .mb-md-245 {
    margin-bottom: 245px;
  }

  .mb-md-250 {
    margin-bottom: 250px;
  }

  .mb-md-255 {
    margin-bottom: 255px;
  }

  .mb-md-260 {
    margin-bottom: 260px;
  }

  .mb-md-265 {
    margin-bottom: 265px;
  }

  .mb-md-270 {
    margin-bottom: 270px;
  }

  .mb-md-275 {
    margin-bottom: 275px;
  }

  .mb-md-280 {
    margin-bottom: 280px;
  }

  .mb-md-285 {
    margin-bottom: 285px;
  }

  .mb-md-290 {
    margin-bottom: 290px;
  }

  .mb-md-295 {
    margin-bottom: 295px;
  }

  .mb-md-300 {
    margin-bottom: 300px;
  }

  .mb-md-305 {
    margin-bottom: 305px;
  }

  .mb-md-310 {
    margin-bottom: 310px;
  }

  .mb-md-315 {
    margin-bottom: 315px;
  }

  .mb-md-320 {
    margin-bottom: 320px;
  }

  .mb-md-325 {
    margin-bottom: 325px;
  }

  .ml-md-5 {
    margin-left: 5px;
  }

  .ml-md-10 {
    margin-left: 10px;
  }

  .ml-md-15 {
    margin-left: 15px;
  }

  .ml-md-20 {
    margin-left: 20px;
  }

  .ml-md-25 {
    margin-left: 25px;
  }

  .ml-md-30 {
    margin-left: 30px;
  }

  .ml-md-35 {
    margin-left: 35px;
  }

  .ml-md-40 {
    margin-left: 40px;
  }

  .ml-md-45 {
    margin-left: 45px;
  }

  .ml-md-50 {
    margin-left: 50px;
  }

  .ml-md-55 {
    margin-left: 55px;
  }

  .ml-md-60 {
    margin-left: 60px;
  }

  .ml-md-65 {
    margin-left: 65px;
  }

  .ml-md-70 {
    margin-left: 70px;
  }

  .ml-md-75 {
    margin-left: 75px;
  }

  .ml-md-80 {
    margin-left: 80px;
  }

  .ml-md-85 {
    margin-left: 85px;
  }

  .ml-md-90 {
    margin-left: 90px;
  }

  .ml-md-95 {
    margin-left: 95px;
  }

  .ml-md-100 {
    margin-left: 100px;
  }

  .ml-md-105 {
    margin-left: 105px;
  }

  .ml-md-110 {
    margin-left: 110px;
  }

  .ml-md-115 {
    margin-left: 115px;
  }

  .ml-md-120 {
    margin-left: 120px;
  }

  .ml-md-125 {
    margin-left: 125px;
  }

  .ml-md-130 {
    margin-left: 130px;
  }

  .ml-md-135 {
    margin-left: 135px;
  }

  .ml-md-140 {
    margin-left: 140px;
  }

  .ml-md-145 {
    margin-left: 145px;
  }

  .ml-md-150 {
    margin-left: 150px;
  }

  .ml-md-155 {
    margin-left: 155px;
  }

  .ml-md-160 {
    margin-left: 160px;
  }

  .ml-md-165 {
    margin-left: 165px;
  }

  .ml-md-170 {
    margin-left: 170px;
  }

  .ml-md-175 {
    margin-left: 175px;
  }

  .ml-md-180 {
    margin-left: 180px;
  }

  .ml-md-185 {
    margin-left: 185px;
  }

  .ml-md-190 {
    margin-left: 190px;
  }

  .ml-md-195 {
    margin-left: 195px;
  }

  .ml-md-200 {
    margin-left: 200px;
  }

  .ml-md-205 {
    margin-left: 205px;
  }

  .ml-md-210 {
    margin-left: 210px;
  }

  .ml-md-215 {
    margin-left: 215px;
  }

  .ml-md-220 {
    margin-left: 220px;
  }

  .ml-md-225 {
    margin-left: 225px;
  }

  .ml-md-230 {
    margin-left: 230px;
  }

  .ml-md-235 {
    margin-left: 235px;
  }

  .ml-md-240 {
    margin-left: 240px;
  }

  .ml-md-245 {
    margin-left: 245px;
  }

  .ml-md-250 {
    margin-left: 250px;
  }

  .ml-md-255 {
    margin-left: 255px;
  }

  .ml-md-260 {
    margin-left: 260px;
  }

  .ml-md-265 {
    margin-left: 265px;
  }

  .ml-md-270 {
    margin-left: 270px;
  }

  .ml-md-275 {
    margin-left: 275px;
  }

  .ml-md-280 {
    margin-left: 280px;
  }

  .ml-md-285 {
    margin-left: 285px;
  }

  .ml-md-290 {
    margin-left: 290px;
  }

  .ml-md-295 {
    margin-left: 295px;
  }

  .ml-md-300 {
    margin-left: 300px;
  }

  .ml-md-305 {
    margin-left: 305px;
  }

  .ml-md-310 {
    margin-left: 310px;
  }

  .ml-md-315 {
    margin-left: 315px;
  }

  .ml-md-320 {
    margin-left: 320px;
  }

  .ml-md-325 {
    margin-left: 325px;
  }

  .mr-md-5 {
    margin-right: 5px;
  }

  .mr-md-10 {
    margin-right: 10px;
  }

  .mr-md-15 {
    margin-right: 15px;
  }

  .mr-md-20 {
    margin-right: 20px;
  }

  .mr-md-25 {
    margin-right: 25px;
  }

  .mr-md-30 {
    margin-right: 30px;
  }

  .mr-md-35 {
    margin-right: 35px;
  }

  .mr-md-40 {
    margin-right: 40px;
  }

  .mr-md-45 {
    margin-right: 45px;
  }

  .mr-md-50 {
    margin-right: 50px;
  }

  .mr-md-55 {
    margin-right: 55px;
  }

  .mr-md-60 {
    margin-right: 60px;
  }

  .mr-md-65 {
    margin-right: 65px;
  }

  .mr-md-70 {
    margin-right: 70px;
  }

  .mr-md-75 {
    margin-right: 75px;
  }

  .mr-md-80 {
    margin-right: 80px;
  }

  .mr-md-85 {
    margin-right: 85px;
  }

  .mr-md-90 {
    margin-right: 90px;
  }

  .mr-md-95 {
    margin-right: 95px;
  }

  .mr-md-100 {
    margin-right: 100px;
  }

  .mr-md-105 {
    margin-right: 105px;
  }

  .mr-md-110 {
    margin-right: 110px;
  }

  .mr-md-115 {
    margin-right: 115px;
  }

  .mr-md-120 {
    margin-right: 120px;
  }

  .mr-md-125 {
    margin-right: 125px;
  }

  .mr-md-130 {
    margin-right: 130px;
  }

  .mr-md-135 {
    margin-right: 135px;
  }

  .mr-md-140 {
    margin-right: 140px;
  }

  .mr-md-145 {
    margin-right: 145px;
  }

  .mr-md-150 {
    margin-right: 150px;
  }

  .mr-md-155 {
    margin-right: 155px;
  }

  .mr-md-160 {
    margin-right: 160px;
  }

  .mr-md-165 {
    margin-right: 165px;
  }

  .mr-md-170 {
    margin-right: 170px;
  }

  .mr-md-175 {
    margin-right: 175px;
  }

  .mr-md-180 {
    margin-right: 180px;
  }

  .mr-md-185 {
    margin-right: 185px;
  }

  .mr-md-190 {
    margin-right: 190px;
  }

  .mr-md-195 {
    margin-right: 195px;
  }

  .mr-md-200 {
    margin-right: 200px;
  }

  .mr-md-205 {
    margin-right: 205px;
  }

  .mr-md-210 {
    margin-right: 210px;
  }

  .mr-md-215 {
    margin-right: 215px;
  }

  .mr-md-220 {
    margin-right: 220px;
  }

  .mr-md-225 {
    margin-right: 225px;
  }

  .mr-md-230 {
    margin-right: 230px;
  }

  .mr-md-235 {
    margin-right: 235px;
  }

  .mr-md-240 {
    margin-right: 240px;
  }

  .mr-md-245 {
    margin-right: 245px;
  }

  .mr-md-250 {
    margin-right: 250px;
  }

  .mr-md-255 {
    margin-right: 255px;
  }

  .mr-md-260 {
    margin-right: 260px;
  }

  .mr-md-265 {
    margin-right: 265px;
  }

  .mr-md-270 {
    margin-right: 270px;
  }

  .mr-md-275 {
    margin-right: 275px;
  }

  .mr-md-280 {
    margin-right: 280px;
  }

  .mr-md-285 {
    margin-right: 285px;
  }

  .mr-md-290 {
    margin-right: 290px;
  }

  .mr-md-295 {
    margin-right: 295px;
  }

  .mr-md-300 {
    margin-right: 300px;
  }

  .mr-md-305 {
    margin-right: 305px;
  }

  .mr-md-310 {
    margin-right: 310px;
  }

  .mr-md-315 {
    margin-right: 315px;
  }

  .mr-md-320 {
    margin-right: 320px;
  }

  .mr-md-325 {
    margin-right: 325px;
  }

  .mt-md--5 {
    margin-top: -5px;
  }

  .mt-md--10 {
    margin-top: -10px;
  }

  .mt-md--15 {
    margin-top: -15px;
  }

  .mt-md--20 {
    margin-top: -20px;
  }

  .mt-md--25 {
    margin-top: -25px;
  }

  .mt-md--30 {
    margin-top: -30px;
  }

  .mt-md--35 {
    margin-top: -35px;
  }

  .mt-md--40 {
    margin-top: -40px;
  }

  .mt-md--45 {
    margin-top: -45px;
  }

  .mt-md--50 {
    margin-top: -50px;
  }

  .mt-md--55 {
    margin-top: -55px;
  }

  .mt-md--60 {
    margin-top: -60px;
  }

  .mt-md--65 {
    margin-top: -65px;
  }

  .mt-md--70 {
    margin-top: -70px;
  }

  .mt-md--75 {
    margin-top: -75px;
  }

  .mt-md--80 {
    margin-top: -80px;
  }

  .mt-md--85 {
    margin-top: -85px;
  }

  .mt-md--90 {
    margin-top: -90px;
  }

  .mt-md--95 {
    margin-top: -95px;
  }

  .mt-md--100 {
    margin-top: -100px;
  }

  .mt-md--105 {
    margin-top: -105px;
  }

  .mt-md--110 {
    margin-top: -110px;
  }

  .mt-md--115 {
    margin-top: -115px;
  }

  .mt-md--120 {
    margin-top: -120px;
  }

  .mt-md--125 {
    margin-top: -125px;
  }

  .mt-md--130 {
    margin-top: -130px;
  }

  .mt-md--135 {
    margin-top: -135px;
  }

  .mt-md--140 {
    margin-top: -140px;
  }

  .mt-md--145 {
    margin-top: -145px;
  }

  .mt-md--150 {
    margin-top: -150px;
  }

  .mt-md--155 {
    margin-top: -155px;
  }

  .mt-md--160 {
    margin-top: -160px;
  }

  .mt-md--165 {
    margin-top: -165px;
  }

  .mt-md--170 {
    margin-top: -170px;
  }

  .mt-md--175 {
    margin-top: -175px;
  }

  .mt-md--180 {
    margin-top: -180px;
  }

  .mt-md--185 {
    margin-top: -185px;
  }

  .mt-md--190 {
    margin-top: -190px;
  }

  .mt-md--195 {
    margin-top: -195px;
  }

  .mt-md--200 {
    margin-top: -200px;
  }

  .mt-md--205 {
    margin-top: -205px;
  }

  .mt-md--210 {
    margin-top: -210px;
  }

  .mt-md--215 {
    margin-top: -215px;
  }

  .mt-md--220 {
    margin-top: -220px;
  }

  .mt-md--225 {
    margin-top: -225px;
  }

  .mt-md--230 {
    margin-top: -230px;
  }

  .mt-md--235 {
    margin-top: -235px;
  }

  .mt-md--240 {
    margin-top: -240px;
  }

  .mt-md--245 {
    margin-top: -245px;
  }

  .mt-md--250 {
    margin-top: -250px;
  }

  .mt-md--255 {
    margin-top: -255px;
  }

  .mt-md--260 {
    margin-top: -260px;
  }

  .mt-md--265 {
    margin-top: -265px;
  }

  .mt-md--270 {
    margin-top: -270px;
  }

  .mt-md--275 {
    margin-top: -275px;
  }

  .mt-md--280 {
    margin-top: -280px;
  }

  .mt-md--285 {
    margin-top: -285px;
  }

  .mt-md--290 {
    margin-top: -290px;
  }

  .mt-md--295 {
    margin-top: -295px;
  }

  .mt-md--300 {
    margin-top: -300px;
  }

  .mt-md--305 {
    margin-top: -305px;
  }

  .mt-md--310 {
    margin-top: -310px;
  }

  .mt-md--315 {
    margin-top: -315px;
  }

  .mt-md--320 {
    margin-top: -320px;
  }

  .mt-md--325 {
    margin-top: -325px;
  }

  .mb-md--5 {
    margin-bottom: -5px;
  }

  .mb-md--10 {
    margin-bottom: -10px;
  }

  .mb-md--15 {
    margin-bottom: -15px;
  }

  .mb-md--20 {
    margin-bottom: -20px;
  }

  .mb-md--25 {
    margin-bottom: -25px;
  }

  .mb-md--30 {
    margin-bottom: -30px;
  }

  .mb-md--35 {
    margin-bottom: -35px;
  }

  .mb-md--40 {
    margin-bottom: -40px;
  }

  .mb-md--45 {
    margin-bottom: -45px;
  }

  .mb-md--50 {
    margin-bottom: -50px;
  }

  .mb-md--55 {
    margin-bottom: -55px;
  }

  .mb-md--60 {
    margin-bottom: -60px;
  }

  .mb-md--65 {
    margin-bottom: -65px;
  }

  .mb-md--70 {
    margin-bottom: -70px;
  }

  .mb-md--75 {
    margin-bottom: -75px;
  }

  .mb-md--80 {
    margin-bottom: -80px;
  }

  .mb-md--85 {
    margin-bottom: -85px;
  }

  .mb-md--90 {
    margin-bottom: -90px;
  }

  .mb-md--95 {
    margin-bottom: -95px;
  }

  .mb-md--100 {
    margin-bottom: -100px;
  }

  .mb-md--105 {
    margin-bottom: -105px;
  }

  .mb-md--110 {
    margin-bottom: -110px;
  }

  .mb-md--115 {
    margin-bottom: -115px;
  }

  .mb-md--120 {
    margin-bottom: -120px;
  }

  .mb-md--125 {
    margin-bottom: -125px;
  }

  .mb-md--130 {
    margin-bottom: -130px;
  }

  .mb-md--135 {
    margin-bottom: -135px;
  }

  .mb-md--140 {
    margin-bottom: -140px;
  }

  .mb-md--145 {
    margin-bottom: -145px;
  }

  .mb-md--150 {
    margin-bottom: -150px;
  }

  .mb-md--155 {
    margin-bottom: -155px;
  }

  .mb-md--160 {
    margin-bottom: -160px;
  }

  .mb-md--165 {
    margin-bottom: -165px;
  }

  .mb-md--170 {
    margin-bottom: -170px;
  }

  .mb-md--175 {
    margin-bottom: -175px;
  }

  .mb-md--180 {
    margin-bottom: -180px;
  }

  .mb-md--185 {
    margin-bottom: -185px;
  }

  .mb-md--190 {
    margin-bottom: -190px;
  }

  .mb-md--195 {
    margin-bottom: -195px;
  }

  .mb-md--200 {
    margin-bottom: -200px;
  }

  .mb-md--205 {
    margin-bottom: -205px;
  }

  .mb-md--210 {
    margin-bottom: -210px;
  }

  .mb-md--215 {
    margin-bottom: -215px;
  }

  .mb-md--220 {
    margin-bottom: -220px;
  }

  .mb-md--225 {
    margin-bottom: -225px;
  }

  .mb-md--230 {
    margin-bottom: -230px;
  }

  .mb-md--235 {
    margin-bottom: -235px;
  }

  .mb-md--240 {
    margin-bottom: -240px;
  }

  .mb-md--245 {
    margin-bottom: -245px;
  }

  .mb-md--250 {
    margin-bottom: -250px;
  }

  .mb-md--255 {
    margin-bottom: -255px;
  }

  .mb-md--260 {
    margin-bottom: -260px;
  }

  .mb-md--265 {
    margin-bottom: -265px;
  }

  .mb-md--270 {
    margin-bottom: -270px;
  }

  .mb-md--275 {
    margin-bottom: -275px;
  }

  .mb-md--280 {
    margin-bottom: -280px;
  }

  .mb-md--285 {
    margin-bottom: -285px;
  }

  .mb-md--290 {
    margin-bottom: -290px;
  }

  .mb-md--295 {
    margin-bottom: -295px;
  }

  .mb-md--300 {
    margin-bottom: -300px;
  }

  .mb-md--305 {
    margin-bottom: -305px;
  }

  .mb-md--310 {
    margin-bottom: -310px;
  }

  .mb-md--315 {
    margin-bottom: -315px;
  }

  .mb-md--320 {
    margin-bottom: -320px;
  }

  .mb-md--325 {
    margin-bottom: -325px;
  }

  .mt-md-0 {
    margin-top: 0;
  }

  .mb-md-0 {
    margin-bottom: 0;
  }

  .ml-md-0 {
    margin-left: 0;
  }

  .mr-md-0 {
    margin-right: 0;
  }
}
/* Margin XS */
@media (max-width: 767px) {
  .mt-xs-5 {
    margin-top: 5px;
  }

  .mt-xs-10 {
    margin-top: 10px;
  }

  .mt-xs-15 {
    margin-top: 15px;
  }

  .mt-xs-20 {
    margin-top: 20px;
  }

  .mt-xs-25 {
    margin-top: 25px;
  }

  .mt-xs-30 {
    margin-top: 30px;
  }

  .mt-xs-35 {
    margin-top: 35px;
  }

  .mt-xs-40 {
    margin-top: 40px;
  }

  .mt-xs-45 {
    margin-top: 45px;
  }

  .mt-xs-50 {
    margin-top: 50px;
  }

  .mt-xs-55 {
    margin-top: 55px;
  }

  .mt-xs-60 {
    margin-top: 60px;
  }

  .mt-xs-65 {
    margin-top: 65px;
  }

  .mt-xs-70 {
    margin-top: 70px;
  }

  .mt-xs-75 {
    margin-top: 75px;
  }

  .mt-xs-80 {
    margin-top: 80px;
  }

  .mt-xs-85 {
    margin-top: 85px;
  }

  .mt-xs-90 {
    margin-top: 90px;
  }

  .mt-xs-95 {
    margin-top: 95px;
  }

  .mt-xs-100 {
    margin-top: 100px;
  }

  .mt-xs-105 {
    margin-top: 105px;
  }

  .mt-xs-110 {
    margin-top: 110px;
  }

  .mt-xs-115 {
    margin-top: 115px;
  }

  .mt-xs-120 {
    margin-top: 120px;
  }

  .mt-xs-125 {
    margin-top: 125px;
  }

  .mt-xs-130 {
    margin-top: 130px;
  }

  .mt-xs-135 {
    margin-top: 135px;
  }

  .mt-xs-140 {
    margin-top: 140px;
  }

  .mt-xs-145 {
    margin-top: 145px;
  }

  .mt-xs-150 {
    margin-top: 150px;
  }

  .mt-xs-155 {
    margin-top: 155px;
  }

  .mt-xs-160 {
    margin-top: 160px;
  }

  .mt-xs-165 {
    margin-top: 165px;
  }

  .mt-xs-170 {
    margin-top: 170px;
  }

  .mt-xs-175 {
    margin-top: 175px;
  }

  .mt-xs-180 {
    margin-top: 180px;
  }

  .mt-xs-185 {
    margin-top: 185px;
  }

  .mt-xs-190 {
    margin-top: 190px;
  }

  .mt-xs-195 {
    margin-top: 195px;
  }

  .mt-xs-200 {
    margin-top: 200px;
  }

  .mt-xs-205 {
    margin-top: 205px;
  }

  .mt-xs-210 {
    margin-top: 210px;
  }

  .mt-xs-215 {
    margin-top: 215px;
  }

  .mt-xs-220 {
    margin-top: 220px;
  }

  .mt-xs-225 {
    margin-top: 225px;
  }

  .mt-xs-230 {
    margin-top: 230px;
  }

  .mt-xs-235 {
    margin-top: 235px;
  }

  .mt-xs-240 {
    margin-top: 240px;
  }

  .mt-xs-245 {
    margin-top: 245px;
  }

  .mt-xs-250 {
    margin-top: 250px;
  }

  .mt-xs-255 {
    margin-top: 255px;
  }

  .mt-xs-260 {
    margin-top: 260px;
  }

  .mt-xs-265 {
    margin-top: 265px;
  }

  .mt-xs-270 {
    margin-top: 270px;
  }

  .mt-xs-275 {
    margin-top: 275px;
  }

  .mt-xs-280 {
    margin-top: 280px;
  }

  .mt-xs-285 {
    margin-top: 285px;
  }

  .mt-xs-290 {
    margin-top: 290px;
  }

  .mt-xs-295 {
    margin-top: 295px;
  }

  .mt-xs-300 {
    margin-top: 300px;
  }

  .mt-xs-305 {
    margin-top: 305px;
  }

  .mt-xs-310 {
    margin-top: 310px;
  }

  .mt-xs-315 {
    margin-top: 315px;
  }

  .mt-xs-320 {
    margin-top: 320px;
  }

  .mt-xs-325 {
    margin-top: 325px;
  }

  .mb-xs-5 {
    margin-bottom: 5px;
  }

  .mb-xs-10 {
    margin-bottom: 10px;
  }

  .mb-xs-15 {
    margin-bottom: 15px;
  }

  .mb-xs-20 {
    margin-bottom: 20px;
  }

  .mb-xs-25 {
    margin-bottom: 25px;
  }

  .mb-xs-30 {
    margin-bottom: 30px;
  }

  .mb-xs-35 {
    margin-bottom: 35px;
  }

  .mb-xs-40 {
    margin-bottom: 40px;
  }

  .mb-xs-45 {
    margin-bottom: 45px;
  }

  .mb-xs-50 {
    margin-bottom: 50px;
  }

  .mb-xs-55 {
    margin-bottom: 55px;
  }

  .mb-xs-60 {
    margin-bottom: 60px;
  }

  .mb-xs-65 {
    margin-bottom: 65px;
  }

  .mb-xs-70 {
    margin-bottom: 70px;
  }

  .mb-xs-75 {
    margin-bottom: 75px;
  }

  .mb-xs-80 {
    margin-bottom: 80px;
  }

  .mb-xs-85 {
    margin-bottom: 85px;
  }

  .mb-xs-90 {
    margin-bottom: 90px;
  }

  .mb-xs-95 {
    margin-bottom: 95px;
  }

  .mb-xs-100 {
    margin-bottom: 100px;
  }

  .mb-xs-105 {
    margin-bottom: 105px;
  }

  .mb-xs-110 {
    margin-bottom: 110px;
  }

  .mb-xs-115 {
    margin-bottom: 115px;
  }

  .mb-xs-120 {
    margin-bottom: 120px;
  }

  .mb-xs-125 {
    margin-bottom: 125px;
  }

  .mb-xs-130 {
    margin-bottom: 130px;
  }

  .mb-xs-135 {
    margin-bottom: 135px;
  }

  .mb-xs-140 {
    margin-bottom: 140px;
  }

  .mb-xs-145 {
    margin-bottom: 145px;
  }

  .mb-xs-150 {
    margin-bottom: 150px;
  }

  .mb-xs-155 {
    margin-bottom: 155px;
  }

  .mb-xs-160 {
    margin-bottom: 160px;
  }

  .mb-xs-165 {
    margin-bottom: 165px;
  }

  .mb-xs-170 {
    margin-bottom: 170px;
  }

  .mb-xs-175 {
    margin-bottom: 175px;
  }

  .mb-xs-180 {
    margin-bottom: 180px;
  }

  .mb-xs-185 {
    margin-bottom: 185px;
  }

  .mb-xs-190 {
    margin-bottom: 190px;
  }

  .mb-xs-195 {
    margin-bottom: 195px;
  }

  .mb-xs-200 {
    margin-bottom: 200px;
  }

  .mb-xs-205 {
    margin-bottom: 205px;
  }

  .mb-xs-210 {
    margin-bottom: 210px;
  }

  .mb-xs-215 {
    margin-bottom: 215px;
  }

  .mb-xs-220 {
    margin-bottom: 220px;
  }

  .mb-xs-225 {
    margin-bottom: 225px;
  }

  .mb-xs-230 {
    margin-bottom: 230px;
  }

  .mb-xs-235 {
    margin-bottom: 235px;
  }

  .mb-xs-240 {
    margin-bottom: 240px;
  }

  .mb-xs-245 {
    margin-bottom: 245px;
  }

  .mb-xs-250 {
    margin-bottom: 250px;
  }

  .mb-xs-255 {
    margin-bottom: 255px;
  }

  .mb-xs-260 {
    margin-bottom: 260px;
  }

  .mb-xs-265 {
    margin-bottom: 265px;
  }

  .mb-xs-270 {
    margin-bottom: 270px;
  }

  .mb-xs-275 {
    margin-bottom: 275px;
  }

  .mb-xs-280 {
    margin-bottom: 280px;
  }

  .mb-xs-285 {
    margin-bottom: 285px;
  }

  .mb-xs-290 {
    margin-bottom: 290px;
  }

  .mb-xs-295 {
    margin-bottom: 295px;
  }

  .mb-xs-300 {
    margin-bottom: 300px;
  }

  .mb-xs-305 {
    margin-bottom: 305px;
  }

  .mb-xs-310 {
    margin-bottom: 310px;
  }

  .mb-xs-315 {
    margin-bottom: 315px;
  }

  .mb-xs-320 {
    margin-bottom: 320px;
  }

  .mb-xs-325 {
    margin-bottom: 325px;
  }

  .ml-xs-5 {
    margin-left: 5px;
  }

  .ml-xs-10 {
    margin-left: 10px;
  }

  .ml-xs-15 {
    margin-left: 15px;
  }

  .ml-xs-20 {
    margin-left: 20px;
  }

  .ml-xs-25 {
    margin-left: 25px;
  }

  .ml-xs-30 {
    margin-left: 30px;
  }

  .ml-xs-35 {
    margin-left: 35px;
  }

  .ml-xs-40 {
    margin-left: 40px;
  }

  .ml-xs-45 {
    margin-left: 45px;
  }

  .ml-xs-50 {
    margin-left: 50px;
  }

  .ml-xs-55 {
    margin-left: 55px;
  }

  .ml-xs-60 {
    margin-left: 60px;
  }

  .ml-xs-65 {
    margin-left: 65px;
  }

  .ml-xs-70 {
    margin-left: 70px;
  }

  .ml-xs-75 {
    margin-left: 75px;
  }

  .ml-xs-80 {
    margin-left: 80px;
  }

  .ml-xs-85 {
    margin-left: 85px;
  }

  .ml-xs-90 {
    margin-left: 90px;
  }

  .ml-xs-95 {
    margin-left: 95px;
  }

  .ml-xs-100 {
    margin-left: 100px;
  }

  .ml-xs-105 {
    margin-left: 105px;
  }

  .ml-xs-110 {
    margin-left: 110px;
  }

  .ml-xs-115 {
    margin-left: 115px;
  }

  .ml-xs-120 {
    margin-left: 120px;
  }

  .ml-xs-125 {
    margin-left: 125px;
  }

  .ml-xs-130 {
    margin-left: 130px;
  }

  .ml-xs-135 {
    margin-left: 135px;
  }

  .ml-xs-140 {
    margin-left: 140px;
  }

  .ml-xs-145 {
    margin-left: 145px;
  }

  .ml-xs-150 {
    margin-left: 150px;
  }

  .ml-xs-155 {
    margin-left: 155px;
  }

  .ml-xs-160 {
    margin-left: 160px;
  }

  .ml-xs-165 {
    margin-left: 165px;
  }

  .ml-xs-170 {
    margin-left: 170px;
  }

  .ml-xs-175 {
    margin-left: 175px;
  }

  .ml-xs-180 {
    margin-left: 180px;
  }

  .ml-xs-185 {
    margin-left: 185px;
  }

  .ml-xs-190 {
    margin-left: 190px;
  }

  .ml-xs-195 {
    margin-left: 195px;
  }

  .ml-xs-200 {
    margin-left: 200px;
  }

  .ml-xs-205 {
    margin-left: 205px;
  }

  .ml-xs-210 {
    margin-left: 210px;
  }

  .ml-xs-215 {
    margin-left: 215px;
  }

  .ml-xs-220 {
    margin-left: 220px;
  }

  .ml-xs-225 {
    margin-left: 225px;
  }

  .ml-xs-230 {
    margin-left: 230px;
  }

  .ml-xs-235 {
    margin-left: 235px;
  }

  .ml-xs-240 {
    margin-left: 240px;
  }

  .ml-xs-245 {
    margin-left: 245px;
  }

  .ml-xs-250 {
    margin-left: 250px;
  }

  .ml-xs-255 {
    margin-left: 255px;
  }

  .ml-xs-260 {
    margin-left: 260px;
  }

  .ml-xs-265 {
    margin-left: 265px;
  }

  .ml-xs-270 {
    margin-left: 270px;
  }

  .ml-xs-275 {
    margin-left: 275px;
  }

  .ml-xs-280 {
    margin-left: 280px;
  }

  .ml-xs-285 {
    margin-left: 285px;
  }

  .ml-xs-290 {
    margin-left: 290px;
  }

  .ml-xs-295 {
    margin-left: 295px;
  }

  .ml-xs-300 {
    margin-left: 300px;
  }

  .ml-xs-305 {
    margin-left: 305px;
  }

  .ml-xs-310 {
    margin-left: 310px;
  }

  .ml-xs-315 {
    margin-left: 315px;
  }

  .ml-xs-320 {
    margin-left: 320px;
  }

  .ml-xs-325 {
    margin-left: 325px;
  }

  .mr-xs-5 {
    margin-right: 5px;
  }

  .mr-xs-10 {
    margin-right: 10px;
  }

  .mr-xs-15 {
    margin-right: 15px;
  }

  .mr-xs-20 {
    margin-right: 20px;
  }

  .mr-xs-25 {
    margin-right: 25px;
  }

  .mr-xs-30 {
    margin-right: 30px;
  }

  .mr-xs-35 {
    margin-right: 35px;
  }

  .mr-xs-40 {
    margin-right: 40px;
  }

  .mr-xs-45 {
    margin-right: 45px;
  }

  .mr-xs-50 {
    margin-right: 50px;
  }

  .mr-xs-55 {
    margin-right: 55px;
  }

  .mr-xs-60 {
    margin-right: 60px;
  }

  .mr-xs-65 {
    margin-right: 65px;
  }

  .mr-xs-70 {
    margin-right: 70px;
  }

  .mr-xs-75 {
    margin-right: 75px;
  }

  .mr-xs-80 {
    margin-right: 80px;
  }

  .mr-xs-85 {
    margin-right: 85px;
  }

  .mr-xs-90 {
    margin-right: 90px;
  }

  .mr-xs-95 {
    margin-right: 95px;
  }

  .mr-xs-100 {
    margin-right: 100px;
  }

  .mr-xs-105 {
    margin-right: 105px;
  }

  .mr-xs-110 {
    margin-right: 110px;
  }

  .mr-xs-115 {
    margin-right: 115px;
  }

  .mr-xs-120 {
    margin-right: 120px;
  }

  .mr-xs-125 {
    margin-right: 125px;
  }

  .mr-xs-130 {
    margin-right: 130px;
  }

  .mr-xs-135 {
    margin-right: 135px;
  }

  .mr-xs-140 {
    margin-right: 140px;
  }

  .mr-xs-145 {
    margin-right: 145px;
  }

  .mr-xs-150 {
    margin-right: 150px;
  }

  .mr-xs-155 {
    margin-right: 155px;
  }

  .mr-xs-160 {
    margin-right: 160px;
  }

  .mr-xs-165 {
    margin-right: 165px;
  }

  .mr-xs-170 {
    margin-right: 170px;
  }

  .mr-xs-175 {
    margin-right: 175px;
  }

  .mr-xs-180 {
    margin-right: 180px;
  }

  .mr-xs-185 {
    margin-right: 185px;
  }

  .mr-xs-190 {
    margin-right: 190px;
  }

  .mr-xs-195 {
    margin-right: 195px;
  }

  .mr-xs-200 {
    margin-right: 200px;
  }

  .mr-xs-205 {
    margin-right: 205px;
  }

  .mr-xs-210 {
    margin-right: 210px;
  }

  .mr-xs-215 {
    margin-right: 215px;
  }

  .mr-xs-220 {
    margin-right: 220px;
  }

  .mr-xs-225 {
    margin-right: 225px;
  }

  .mr-xs-230 {
    margin-right: 230px;
  }

  .mr-xs-235 {
    margin-right: 235px;
  }

  .mr-xs-240 {
    margin-right: 240px;
  }

  .mr-xs-245 {
    margin-right: 245px;
  }

  .mr-xs-250 {
    margin-right: 250px;
  }

  .mr-xs-255 {
    margin-right: 255px;
  }

  .mr-xs-260 {
    margin-right: 260px;
  }

  .mr-xs-265 {
    margin-right: 265px;
  }

  .mr-xs-270 {
    margin-right: 270px;
  }

  .mr-xs-275 {
    margin-right: 275px;
  }

  .mr-xs-280 {
    margin-right: 280px;
  }

  .mr-xs-285 {
    margin-right: 285px;
  }

  .mr-xs-290 {
    margin-right: 290px;
  }

  .mr-xs-295 {
    margin-right: 295px;
  }

  .mr-xs-300 {
    margin-right: 300px;
  }

  .mr-xs-305 {
    margin-right: 305px;
  }

  .mr-xs-310 {
    margin-right: 310px;
  }

  .mr-xs-315 {
    margin-right: 315px;
  }

  .mr-xs-320 {
    margin-right: 320px;
  }

  .mr-xs-325 {
    margin-right: 325px;
  }

  .mt-xs--5 {
    margin-top: -5px;
  }

  .mt-xs--10 {
    margin-top: -10px;
  }

  .mt-xs--15 {
    margin-top: -15px;
  }

  .mt-xs--20 {
    margin-top: -20px;
  }

  .mt-xs--25 {
    margin-top: -25px;
  }

  .mt-xs--30 {
    margin-top: -30px;
  }

  .mt-xs--35 {
    margin-top: -35px;
  }

  .mt-xs--40 {
    margin-top: -40px;
  }

  .mt-xs--45 {
    margin-top: -45px;
  }

  .mt-xs--50 {
    margin-top: -50px;
  }

  .mt-xs--55 {
    margin-top: -55px;
  }

  .mt-xs--60 {
    margin-top: -60px;
  }

  .mt-xs--65 {
    margin-top: -65px;
  }

  .mt-xs--70 {
    margin-top: -70px;
  }

  .mt-xs--75 {
    margin-top: -75px;
  }

  .mt-xs--80 {
    margin-top: -80px;
  }

  .mt-xs--85 {
    margin-top: -85px;
  }

  .mt-xs--90 {
    margin-top: -90px;
  }

  .mt-xs--95 {
    margin-top: -95px;
  }

  .mt-xs--100 {
    margin-top: -100px;
  }

  .mt-xs--105 {
    margin-top: -105px;
  }

  .mt-xs--110 {
    margin-top: -110px;
  }

  .mt-xs--115 {
    margin-top: -115px;
  }

  .mt-xs--120 {
    margin-top: -120px;
  }

  .mt-xs--125 {
    margin-top: -125px;
  }

  .mt-xs--130 {
    margin-top: -130px;
  }

  .mt-xs--135 {
    margin-top: -135px;
  }

  .mt-xs--140 {
    margin-top: -140px;
  }

  .mt-xs--145 {
    margin-top: -145px;
  }

  .mt-xs--150 {
    margin-top: -150px;
  }

  .mt-xs--155 {
    margin-top: -155px;
  }

  .mt-xs--160 {
    margin-top: -160px;
  }

  .mt-xs--165 {
    margin-top: -165px;
  }

  .mt-xs--170 {
    margin-top: -170px;
  }

  .mt-xs--175 {
    margin-top: -175px;
  }

  .mt-xs--180 {
    margin-top: -180px;
  }

  .mt-xs--185 {
    margin-top: -185px;
  }

  .mt-xs--190 {
    margin-top: -190px;
  }

  .mt-xs--195 {
    margin-top: -195px;
  }

  .mt-xs--200 {
    margin-top: -200px;
  }

  .mt-xs--205 {
    margin-top: -205px;
  }

  .mt-xs--210 {
    margin-top: -210px;
  }

  .mt-xs--215 {
    margin-top: -215px;
  }

  .mt-xs--220 {
    margin-top: -220px;
  }

  .mt-xs--225 {
    margin-top: -225px;
  }

  .mt-xs--230 {
    margin-top: -230px;
  }

  .mt-xs--235 {
    margin-top: -235px;
  }

  .mt-xs--240 {
    margin-top: -240px;
  }

  .mt-xs--245 {
    margin-top: -245px;
  }

  .mt-xs--250 {
    margin-top: -250px;
  }

  .mt-xs--255 {
    margin-top: -255px;
  }

  .mt-xs--260 {
    margin-top: -260px;
  }

  .mt-xs--265 {
    margin-top: -265px;
  }

  .mt-xs--270 {
    margin-top: -270px;
  }

  .mt-xs--275 {
    margin-top: -275px;
  }

  .mt-xs--280 {
    margin-top: -280px;
  }

  .mt-xs--285 {
    margin-top: -285px;
  }

  .mt-xs--290 {
    margin-top: -290px;
  }

  .mt-xs--295 {
    margin-top: -295px;
  }

  .mt-xs--300 {
    margin-top: -300px;
  }

  .mt-xs--305 {
    margin-top: -305px;
  }

  .mt-xs--310 {
    margin-top: -310px;
  }

  .mt-xs--315 {
    margin-top: -315px;
  }

  .mt-xs--320 {
    margin-top: -320px;
  }

  .mt-xs--325 {
    margin-top: -325px;
  }

  .mb-xs--5 {
    margin-bottom: -5px;
  }

  .mb-xs--10 {
    margin-bottom: -10px;
  }

  .mb-xs--15 {
    margin-bottom: -15px;
  }

  .mb-xs--20 {
    margin-bottom: -20px;
  }

  .mb-xs--25 {
    margin-bottom: -25px;
  }

  .mb-xs--30 {
    margin-bottom: -30px;
  }

  .mb-xs--35 {
    margin-bottom: -35px;
  }

  .mb-xs--40 {
    margin-bottom: -40px;
  }

  .mb-xs--45 {
    margin-bottom: -45px;
  }

  .mb-xs--50 {
    margin-bottom: -50px;
  }

  .mb-xs--55 {
    margin-bottom: -55px;
  }

  .mb-xs--60 {
    margin-bottom: -60px;
  }

  .mb-xs--65 {
    margin-bottom: -65px;
  }

  .mb-xs--70 {
    margin-bottom: -70px;
  }

  .mb-xs--75 {
    margin-bottom: -75px;
  }

  .mb-xs--80 {
    margin-bottom: -80px;
  }

  .mb-xs--85 {
    margin-bottom: -85px;
  }

  .mb-xs--90 {
    margin-bottom: -90px;
  }

  .mb-xs--95 {
    margin-bottom: -95px;
  }

  .mb-xs--100 {
    margin-bottom: -100px;
  }

  .mb-xs--105 {
    margin-bottom: -105px;
  }

  .mb-xs--110 {
    margin-bottom: -110px;
  }

  .mb-xs--115 {
    margin-bottom: -115px;
  }

  .mb-xs--120 {
    margin-bottom: -120px;
  }

  .mb-xs--125 {
    margin-bottom: -125px;
  }

  .mb-xs--130 {
    margin-bottom: -130px;
  }

  .mb-xs--135 {
    margin-bottom: -135px;
  }

  .mb-xs--140 {
    margin-bottom: -140px;
  }

  .mb-xs--145 {
    margin-bottom: -145px;
  }

  .mb-xs--150 {
    margin-bottom: -150px;
  }

  .mb-xs--155 {
    margin-bottom: -155px;
  }

  .mb-xs--160 {
    margin-bottom: -160px;
  }

  .mb-xs--165 {
    margin-bottom: -165px;
  }

  .mb-xs--170 {
    margin-bottom: -170px;
  }

  .mb-xs--175 {
    margin-bottom: -175px;
  }

  .mb-xs--180 {
    margin-bottom: -180px;
  }

  .mb-xs--185 {
    margin-bottom: -185px;
  }

  .mb-xs--190 {
    margin-bottom: -190px;
  }

  .mb-xs--195 {
    margin-bottom: -195px;
  }

  .mb-xs--200 {
    margin-bottom: -200px;
  }

  .mb-xs--205 {
    margin-bottom: -205px;
  }

  .mb-xs--210 {
    margin-bottom: -210px;
  }

  .mb-xs--215 {
    margin-bottom: -215px;
  }

  .mb-xs--220 {
    margin-bottom: -220px;
  }

  .mb-xs--225 {
    margin-bottom: -225px;
  }

  .mb-xs--230 {
    margin-bottom: -230px;
  }

  .mb-xs--235 {
    margin-bottom: -235px;
  }

  .mb-xs--240 {
    margin-bottom: -240px;
  }

  .mb-xs--245 {
    margin-bottom: -245px;
  }

  .mb-xs--250 {
    margin-bottom: -250px;
  }

  .mb-xs--255 {
    margin-bottom: -255px;
  }

  .mb-xs--260 {
    margin-bottom: -260px;
  }

  .mb-xs--265 {
    margin-bottom: -265px;
  }

  .mb-xs--270 {
    margin-bottom: -270px;
  }

  .mb-xs--275 {
    margin-bottom: -275px;
  }

  .mb-xs--280 {
    margin-bottom: -280px;
  }

  .mb-xs--285 {
    margin-bottom: -285px;
  }

  .mb-xs--290 {
    margin-bottom: -290px;
  }

  .mb-xs--295 {
    margin-bottom: -295px;
  }

  .mb-xs--300 {
    margin-bottom: -300px;
  }

  .mb-xs--305 {
    margin-bottom: -305px;
  }

  .mb-xs--310 {
    margin-bottom: -310px;
  }

  .mb-xs--315 {
    margin-bottom: -315px;
  }

  .mb-xs--320 {
    margin-bottom: -320px;
  }

  .mb-xs--325 {
    margin-bottom: -325px;
  }

  .mt-xs-0 {
    margin-top: 0;
  }

  .mb-xs-0 {
    margin-bottom: 0;
  }

  .ml-xs-0 {
    margin-left: 0;
  }

  .mr-xs-0 {
    margin-right: 0;
  }
}
/* Padding Top */
.pt-5 {
  padding-top: 5px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-35 {
  padding-top: 35px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-45 {
  padding-top: 45px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-55 {
  padding-top: 55px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-65 {
  padding-top: 65px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-75 {
  padding-top: 75px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-85 {
  padding-top: 85px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-95 {
  padding-top: 95px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-105 {
  padding-top: 105px;
}

.pt-110 {
  padding-top: 110px;
}

.pt-115 {
  padding-top: 115px;
}

.pt-120 {
  padding-top: 120px;
}

.pt-125 {
  padding-top: 125px;
}

.pt-130 {
  padding-top: 130px;
}

.pt-135 {
  padding-top: 135px;
}

.pt-140 {
  padding-top: 140px;
}

.pt-145 {
  padding-top: 145px;
}

.pt-150 {
  padding-top: 150px;
}

.pt-155 {
  padding-top: 155px;
}

.pt-160 {
  padding-top: 160px;
}

.pt-165 {
  padding-top: 165px;
}

.pt-170 {
  padding-top: 170px;
}

.pt-175 {
  padding-top: 175px;
}

.pt-180 {
  padding-top: 180px;
}

.pt-185 {
  padding-top: 185px;
}

.pt-190 {
  padding-top: 190px;
}

.pt-195 {
  padding-top: 195px;
}

.pt-200 {
  padding-top: 200px;
}

.pt-205 {
  padding-top: 205px;
}

.pt-210 {
  padding-top: 210px;
}

.pt-215 {
  padding-top: 215px;
}

.pt-220 {
  padding-top: 220px;
}

.pt-225 {
  padding-top: 225px;
}

.pt-230 {
  padding-top: 230px;
}

.pt-235 {
  padding-top: 235px;
}

.pt-240 {
  padding-top: 240px;
}

.pt-245 {
  padding-top: 245px;
}

.pt-250 {
  padding-top: 250px;
}

.pt-255 {
  padding-top: 255px;
}

.pt-260 {
  padding-top: 260px;
}

.pt-265 {
  padding-top: 265px;
}

.pt-270 {
  padding-top: 270px;
}

.pt-275 {
  padding-top: 275px;
}

.pt-280 {
  padding-top: 280px;
}

.pt-285 {
  padding-top: 285px;
}

.pt-290 {
  padding-top: 290px;
}

.pt-295 {
  padding-top: 295px;
}

.pt-300 {
  padding-top: 300px;
}

.pt-305 {
  padding-top: 305px;
}

.pt-310 {
  padding-top: 310px;
}

.pt-315 {
  padding-top: 315px;
}

.pt-320 {
  padding-top: 320px;
}

.pt-325 {
  padding-top: 325px;
}

.pt--5 {
  padding-top: -5px;
}

.pt--10 {
  padding-top: -10px;
}

.pt--15 {
  padding-top: -15px;
}

.pt--20 {
  padding-top: -20px;
}

.pt--25 {
  padding-top: -25px;
}

.pt--30 {
  padding-top: -30px;
}

.pt--35 {
  padding-top: -35px;
}

.pt--40 {
  padding-top: -40px;
}

.pt--45 {
  padding-top: -45px;
}

.pt--50 {
  padding-top: -50px;
}

.pt--55 {
  padding-top: -55px;
}

.pt--60 {
  padding-top: -60px;
}

.pt--65 {
  padding-top: -65px;
}

.pt--70 {
  padding-top: -70px;
}

.pt--75 {
  padding-top: -75px;
}

.pt--80 {
  padding-top: -80px;
}

.pt--85 {
  padding-top: -85px;
}

.pt--90 {
  padding-top: -90px;
}

.pt--95 {
  padding-top: -95px;
}

.pt--100 {
  padding-top: -100px;
}

.pt--105 {
  padding-top: -105px;
}

.pt--110 {
  padding-top: -110px;
}

.pt--115 {
  padding-top: -115px;
}

.pt--120 {
  padding-top: -120px;
}

.pt--125 {
  padding-top: -125px;
}

.pt--130 {
  padding-top: -130px;
}

.pt--135 {
  padding-top: -135px;
}

.pt--140 {
  padding-top: -140px;
}

.pt--145 {
  padding-top: -145px;
}

.pt--150 {
  padding-top: -150px;
}

.pt--155 {
  padding-top: -155px;
}

.pt--160 {
  padding-top: -160px;
}

.pt--165 {
  padding-top: -165px;
}

.pt--170 {
  padding-top: -170px;
}

.pt--175 {
  padding-top: -175px;
}

.pt--180 {
  padding-top: -180px;
}

.pt--185 {
  padding-top: -185px;
}

.pt--190 {
  padding-top: -190px;
}

.pt--195 {
  padding-top: -195px;
}

.pt--200 {
  padding-top: -200px;
}

.pt--205 {
  padding-top: -205px;
}

.pt--210 {
  padding-top: -210px;
}

.pt--215 {
  padding-top: -215px;
}

.pt--220 {
  padding-top: -220px;
}

.pt--225 {
  padding-top: -225px;
}

.pt--230 {
  padding-top: -230px;
}

.pt--235 {
  padding-top: -235px;
}

.pt--240 {
  padding-top: -240px;
}

.pt--245 {
  padding-top: -245px;
}

.pt--250 {
  padding-top: -250px;
}

.pt--255 {
  padding-top: -255px;
}

.pt--260 {
  padding-top: -260px;
}

.pt--265 {
  padding-top: -265px;
}

.pt--270 {
  padding-top: -270px;
}

.pt--275 {
  padding-top: -275px;
}

.pt--280 {
  padding-top: -280px;
}

.pt--285 {
  padding-top: -285px;
}

.pt--290 {
  padding-top: -290px;
}

.pt--295 {
  padding-top: -295px;
}

.pt--300 {
  padding-top: -300px;
}

.pt--305 {
  padding-top: -305px;
}

.pt--310 {
  padding-top: -310px;
}

.pt--315 {
  padding-top: -315px;
}

.pt--320 {
  padding-top: -320px;
}

.pt--325 {
  padding-top: -325px;
}

/* Padding Bottom */
.pb-5 {
  padding-bottom: 5px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-45 {
  padding-bottom: 45px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-55 {
  padding-bottom: 55px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-65 {
  padding-bottom: 65px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-85 {
  padding-bottom: 85px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-95 {
  padding-bottom: 95px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-105 {
  padding-bottom: 105px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pb-115 {
  padding-bottom: 115px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pb-125 {
  padding-bottom: 125px;
}

.pb-130 {
  padding-bottom: 130px;
}

.pb-135 {
  padding-bottom: 135px;
}

.pb-140 {
  padding-bottom: 140px;
}

.pb-145 {
  padding-bottom: 145px;
}

.pb-150 {
  padding-bottom: 150px;
}

.pb-155 {
  padding-bottom: 155px;
}

.pb-160 {
  padding-bottom: 160px;
}

.pb-165 {
  padding-bottom: 165px;
}

.pb-170 {
  padding-bottom: 170px;
}

.pb-175 {
  padding-bottom: 175px;
}

.pb-180 {
  padding-bottom: 180px;
}

.pb-185 {
  padding-bottom: 185px;
}

.pb-190 {
  padding-bottom: 190px;
}

.pb-195 {
  padding-bottom: 195px;
}

.pb-200 {
  padding-bottom: 200px;
}

.pb-205 {
  padding-bottom: 205px;
}

.pb-210 {
  padding-bottom: 210px;
}

.pb-215 {
  padding-bottom: 215px;
}

.pb-220 {
  padding-bottom: 220px;
}

.pb-225 {
  padding-bottom: 225px;
}

.pb-230 {
  padding-bottom: 230px;
}

.pb-235 {
  padding-bottom: 235px;
}

.pb-240 {
  padding-bottom: 240px;
}

.pb-245 {
  padding-bottom: 245px;
}

.pb-250 {
  padding-bottom: 250px;
}

.pb-255 {
  padding-bottom: 255px;
}

.pb-260 {
  padding-bottom: 260px;
}

.pb-265 {
  padding-bottom: 265px;
}

.pb-270 {
  padding-bottom: 270px;
}

.pb-275 {
  padding-bottom: 275px;
}

.pb-280 {
  padding-bottom: 280px;
}

.pb-285 {
  padding-bottom: 285px;
}

.pb-290 {
  padding-bottom: 290px;
}

.pb-295 {
  padding-bottom: 295px;
}

.pb-300 {
  padding-bottom: 300px;
}

.pb-305 {
  padding-bottom: 305px;
}

.pb-310 {
  padding-bottom: 310px;
}

.pb-315 {
  padding-bottom: 315px;
}

.pb-320 {
  padding-bottom: 320px;
}

.pb-325 {
  padding-bottom: 325px;
}

.pb--5 {
  padding-bottom: -5px;
}

.pb--10 {
  padding-bottom: -10px;
}

.pb--15 {
  padding-bottom: -15px;
}

.pb--20 {
  padding-bottom: -20px;
}

.pb--25 {
  padding-bottom: -25px;
}

.pb--30 {
  padding-bottom: -30px;
}

.pb--35 {
  padding-bottom: -35px;
}

.pb--40 {
  padding-bottom: -40px;
}

.pb--45 {
  padding-bottom: -45px;
}

.pb--50 {
  padding-bottom: -50px;
}

.pb--55 {
  padding-bottom: -55px;
}

.pb--60 {
  padding-bottom: -60px;
}

.pb--65 {
  padding-bottom: -65px;
}

.pb--70 {
  padding-bottom: -70px;
}

.pb--75 {
  padding-bottom: -75px;
}

.pb--80 {
  padding-bottom: -80px;
}

.pb--85 {
  padding-bottom: -85px;
}

.pb--90 {
  padding-bottom: -90px;
}

.pb--95 {
  padding-bottom: -95px;
}

.pb--100 {
  padding-bottom: -100px;
}

.pb--105 {
  padding-bottom: -105px;
}

.pb--110 {
  padding-bottom: -110px;
}

.pb--115 {
  padding-bottom: -115px;
}

.pb--120 {
  padding-bottom: -120px;
}

.pb--125 {
  padding-bottom: -125px;
}

.pb--130 {
  padding-bottom: -130px;
}

.pb--135 {
  padding-bottom: -135px;
}

.pb--140 {
  padding-bottom: -140px;
}

.pb--145 {
  padding-bottom: -145px;
}

.pb--150 {
  padding-bottom: -150px;
}

.pb--155 {
  padding-bottom: -155px;
}

.pb--160 {
  padding-bottom: -160px;
}

.pb--165 {
  padding-bottom: -165px;
}

.pb--170 {
  padding-bottom: -170px;
}

.pb--175 {
  padding-bottom: -175px;
}

.pb--180 {
  padding-bottom: -180px;
}

.pb--185 {
  padding-bottom: -185px;
}

.pb--190 {
  padding-bottom: -190px;
}

.pb--195 {
  padding-bottom: -195px;
}

.pb--200 {
  padding-bottom: -200px;
}

.pb--205 {
  padding-bottom: -205px;
}

.pb--210 {
  padding-bottom: -210px;
}

.pb--215 {
  padding-bottom: -215px;
}

.pb--220 {
  padding-bottom: -220px;
}

.pb--225 {
  padding-bottom: -225px;
}

.pb--230 {
  padding-bottom: -230px;
}

.pb--235 {
  padding-bottom: -235px;
}

.pb--240 {
  padding-bottom: -240px;
}

.pb--245 {
  padding-bottom: -245px;
}

.pb--250 {
  padding-bottom: -250px;
}

.pb--255 {
  padding-bottom: -255px;
}

.pb--260 {
  padding-bottom: -260px;
}

.pb--265 {
  padding-bottom: -265px;
}

.pb--270 {
  padding-bottom: -270px;
}

.pb--275 {
  padding-bottom: -275px;
}

.pb--280 {
  padding-bottom: -280px;
}

.pb--285 {
  padding-bottom: -285px;
}

.pb--290 {
  padding-bottom: -290px;
}

.pb--295 {
  padding-bottom: -295px;
}

.pb--300 {
  padding-bottom: -300px;
}

.pb--305 {
  padding-bottom: -305px;
}

.pb--310 {
  padding-bottom: -310px;
}

.pb--315 {
  padding-bottom: -315px;
}

.pb--320 {
  padding-bottom: -320px;
}

.pb--325 {
  padding-bottom: -325px;
}

/* Padding Left */
.pl-5 {
  padding-left: 5px;
}

.pl-5 {
  padding-left: 5px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-25 {
  padding-left: 25px;
}

.pl-25 {
  padding-left: 25px;
}

.pl-30 {
  padding-left: 30px;
}

.pl-30 {
  padding-left: 30px;
}

.pl-35 {
  padding-left: 35px;
}

.pl-35 {
  padding-left: 35px;
}

.pl-40 {
  padding-left: 40px;
}

.pl-40 {
  padding-left: 40px;
}

.pl-45 {
  padding-left: 45px;
}

.pl-45 {
  padding-left: 45px;
}

.pl-50 {
  padding-left: 50px;
}

.pl-50 {
  padding-left: 50px;
}

.pl-55 {
  padding-left: 55px;
}

.pl-55 {
  padding-left: 55px;
}

.pl-60 {
  padding-left: 60px;
}

.pl-60 {
  padding-left: 60px;
}

.pl-65 {
  padding-left: 65px;
}

.pl-65 {
  padding-left: 65px;
}

.pl-70 {
  padding-left: 70px;
}

.pl-70 {
  padding-left: 70px;
}

.pl-75 {
  padding-left: 75px;
}

.pl-75 {
  padding-left: 75px;
}

.pl-80 {
  padding-left: 80px;
}

.pl-80 {
  padding-left: 80px;
}

.pl-85 {
  padding-left: 85px;
}

.pl-85 {
  padding-left: 85px;
}

.pl-90 {
  padding-left: 90px;
}

.pl-90 {
  padding-left: 90px;
}

.pl-95 {
  padding-left: 95px;
}

.pl-95 {
  padding-left: 95px;
}

.pl-100 {
  padding-left: 100px;
}

.pl-100 {
  padding-left: 100px;
}

.pl-105 {
  padding-left: 105px;
}

.pl-105 {
  padding-left: 105px;
}

.pl-110 {
  padding-left: 110px;
}

.pl-110 {
  padding-left: 110px;
}

.pl-115 {
  padding-left: 115px;
}

.pl-115 {
  padding-left: 115px;
}

.pl-120 {
  padding-left: 120px;
}

.pl-120 {
  padding-left: 120px;
}

.pl-125 {
  padding-left: 125px;
}

.pl-125 {
  padding-left: 125px;
}

.pl-130 {
  padding-left: 130px;
}

.pl-130 {
  padding-left: 130px;
}

.pl-135 {
  padding-left: 135px;
}

.pl-135 {
  padding-left: 135px;
}

.pl-140 {
  padding-left: 140px;
}

.pl-140 {
  padding-left: 140px;
}

.pl-145 {
  padding-left: 145px;
}

.pl-145 {
  padding-left: 145px;
}

.pl-150 {
  padding-left: 150px;
}

.pl-150 {
  padding-left: 150px;
}

.pl-155 {
  padding-left: 155px;
}

.pl-155 {
  padding-left: 155px;
}

.pl-160 {
  padding-left: 160px;
}

.pl-160 {
  padding-left: 160px;
}

.pl-165 {
  padding-left: 165px;
}

.pl-165 {
  padding-left: 165px;
}

.pl-170 {
  padding-left: 170px;
}

.pl-170 {
  padding-left: 170px;
}

.pl-175 {
  padding-left: 175px;
}

.pl-175 {
  padding-left: 175px;
}

.pl-180 {
  padding-left: 180px;
}

.pl-180 {
  padding-left: 180px;
}

.pl-185 {
  padding-left: 185px;
}

.pl-185 {
  padding-left: 185px;
}

.pl-190 {
  padding-left: 190px;
}

.pl-190 {
  padding-left: 190px;
}

.pl-195 {
  padding-left: 195px;
}

.pl-195 {
  padding-left: 195px;
}

.pl-200 {
  padding-left: 200px;
}

.pl-200 {
  padding-left: 200px;
}

.pl-205 {
  padding-left: 205px;
}

.pl-205 {
  padding-left: 205px;
}

.pl-210 {
  padding-left: 210px;
}

.pl-210 {
  padding-left: 210px;
}

.pl-215 {
  padding-left: 215px;
}

.pl-215 {
  padding-left: 215px;
}

.pl-220 {
  padding-left: 220px;
}

.pl-220 {
  padding-left: 220px;
}

.pl-225 {
  padding-left: 225px;
}

.pl-225 {
  padding-left: 225px;
}

.pl-230 {
  padding-left: 230px;
}

.pl-230 {
  padding-left: 230px;
}

.pl-235 {
  padding-left: 235px;
}

.pl-235 {
  padding-left: 235px;
}

.pl-240 {
  padding-left: 240px;
}

.pl-240 {
  padding-left: 240px;
}

.pl-245 {
  padding-left: 245px;
}

.pl-245 {
  padding-left: 245px;
}

.pl-250 {
  padding-left: 250px;
}

.pl-250 {
  padding-left: 250px;
}

.pl-255 {
  padding-left: 255px;
}

.pl-255 {
  padding-left: 255px;
}

.pl-260 {
  padding-left: 260px;
}

.pl-260 {
  padding-left: 260px;
}

.pl-265 {
  padding-left: 265px;
}

.pl-265 {
  padding-left: 265px;
}

.pl-270 {
  padding-left: 270px;
}

.pl-270 {
  padding-left: 270px;
}

.pl-275 {
  padding-left: 275px;
}

.pl-275 {
  padding-left: 275px;
}

.pl-280 {
  padding-left: 280px;
}

.pl-280 {
  padding-left: 280px;
}

.pl-285 {
  padding-left: 285px;
}

.pl-285 {
  padding-left: 285px;
}

.pl-290 {
  padding-left: 290px;
}

.pl-290 {
  padding-left: 290px;
}

.pl-295 {
  padding-left: 295px;
}

.pl-295 {
  padding-left: 295px;
}

.pl-300 {
  padding-left: 300px;
}

.pl-300 {
  padding-left: 300px;
}

.pl-305 {
  padding-left: 305px;
}

.pl-305 {
  padding-left: 305px;
}

.pl-310 {
  padding-left: 310px;
}

.pl-310 {
  padding-left: 310px;
}

.pl-315 {
  padding-left: 315px;
}

.pl-315 {
  padding-left: 315px;
}

.pl-320 {
  padding-left: 320px;
}

.pl-320 {
  padding-left: 320px;
}

.pl-325 {
  padding-left: 325px;
}

.pl-325 {
  padding-left: 325px;
}

/* Padding Right */
.pr-5 {
  padding-right: 5px;
}

.pr-5 {
  padding-right: 5px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-25 {
  padding-right: 25px;
}

.pr-25 {
  padding-right: 25px;
}

.pr-30 {
  padding-right: 30px;
}

.pr-30 {
  padding-right: 30px;
}

.pr-35 {
  padding-right: 35px;
}

.pr-35 {
  padding-right: 35px;
}

.pr-40 {
  padding-right: 40px;
}

.pr-40 {
  padding-right: 40px;
}

.pr-45 {
  padding-right: 45px;
}

.pr-45 {
  padding-right: 45px;
}

.pr-50 {
  padding-right: 50px;
}

.pr-50 {
  padding-right: 50px;
}

.pr-55 {
  padding-right: 55px;
}

.pr-55 {
  padding-right: 55px;
}

.pr-60 {
  padding-right: 60px;
}

.pr-60 {
  padding-right: 60px;
}

.pr-65 {
  padding-right: 65px;
}

.pr-65 {
  padding-right: 65px;
}

.pr-70 {
  padding-right: 70px;
}

.pr-70 {
  padding-right: 70px;
}

.pr-75 {
  padding-right: 75px;
}

.pr-75 {
  padding-right: 75px;
}

.pr-80 {
  padding-right: 80px;
}

.pr-80 {
  padding-right: 80px;
}

.pr-85 {
  padding-right: 85px;
}

.pr-85 {
  padding-right: 85px;
}

.pr-90 {
  padding-right: 90px;
}

.pr-90 {
  padding-right: 90px;
}

.pr-95 {
  padding-right: 95px;
}

.pr-95 {
  padding-right: 95px;
}

.pr-100 {
  padding-right: 100px;
}

.pr-100 {
  padding-right: 100px;
}

.pr-105 {
  padding-right: 105px;
}

.pr-105 {
  padding-right: 105px;
}

.pr-110 {
  padding-right: 110px;
}

.pr-110 {
  padding-right: 110px;
}

.pr-115 {
  padding-right: 115px;
}

.pr-115 {
  padding-right: 115px;
}

.pr-120 {
  padding-right: 120px;
}

.pr-120 {
  padding-right: 120px;
}

.pr-125 {
  padding-right: 125px;
}

.pr-125 {
  padding-right: 125px;
}

.pr-130 {
  padding-right: 130px;
}

.pr-130 {
  padding-right: 130px;
}

.pr-135 {
  padding-right: 135px;
}

.pr-135 {
  padding-right: 135px;
}

.pr-140 {
  padding-right: 140px;
}

.pr-140 {
  padding-right: 140px;
}

.pr-145 {
  padding-right: 145px;
}

.pr-145 {
  padding-right: 145px;
}

.pr-150 {
  padding-right: 150px;
}

.pr-150 {
  padding-right: 150px;
}

.pr-155 {
  padding-right: 155px;
}

.pr-155 {
  padding-right: 155px;
}

.pr-160 {
  padding-right: 160px;
}

.pr-160 {
  padding-right: 160px;
}

.pr-165 {
  padding-right: 165px;
}

.pr-165 {
  padding-right: 165px;
}

.pr-170 {
  padding-right: 170px;
}

.pr-170 {
  padding-right: 170px;
}

.pr-175 {
  padding-right: 175px;
}

.pr-175 {
  padding-right: 175px;
}

.pr-180 {
  padding-right: 180px;
}

.pr-180 {
  padding-right: 180px;
}

.pr-185 {
  padding-right: 185px;
}

.pr-185 {
  padding-right: 185px;
}

.pr-190 {
  padding-right: 190px;
}

.pr-190 {
  padding-right: 190px;
}

.pr-195 {
  padding-right: 195px;
}

.pr-195 {
  padding-right: 195px;
}

.pr-200 {
  padding-right: 200px;
}

.pr-200 {
  padding-right: 200px;
}

.pr-205 {
  padding-right: 205px;
}

.pr-205 {
  padding-right: 205px;
}

.pr-210 {
  padding-right: 210px;
}

.pr-210 {
  padding-right: 210px;
}

.pr-215 {
  padding-right: 215px;
}

.pr-215 {
  padding-right: 215px;
}

.pr-220 {
  padding-right: 220px;
}

.pr-220 {
  padding-right: 220px;
}

.pr-225 {
  padding-right: 225px;
}

.pr-225 {
  padding-right: 225px;
}

.pr-230 {
  padding-right: 230px;
}

.pr-230 {
  padding-right: 230px;
}

.pr-235 {
  padding-right: 235px;
}

.pr-235 {
  padding-right: 235px;
}

.pr-240 {
  padding-right: 240px;
}

.pr-240 {
  padding-right: 240px;
}

.pr-245 {
  padding-right: 245px;
}

.pr-245 {
  padding-right: 245px;
}

.pr-250 {
  padding-right: 250px;
}

.pr-250 {
  padding-right: 250px;
}

.pr-255 {
  padding-right: 255px;
}

.pr-255 {
  padding-right: 255px;
}

.pr-260 {
  padding-right: 260px;
}

.pr-260 {
  padding-right: 260px;
}

.pr-265 {
  padding-right: 265px;
}

.pr-265 {
  padding-right: 265px;
}

.pr-270 {
  padding-right: 270px;
}

.pr-270 {
  padding-right: 270px;
}

.pr-275 {
  padding-right: 275px;
}

.pr-275 {
  padding-right: 275px;
}

.pr-280 {
  padding-right: 280px;
}

.pr-280 {
  padding-right: 280px;
}

.pr-285 {
  padding-right: 285px;
}

.pr-285 {
  padding-right: 285px;
}

.pr-290 {
  padding-right: 290px;
}

.pr-290 {
  padding-right: 290px;
}

.pr-295 {
  padding-right: 295px;
}

.pr-295 {
  padding-right: 295px;
}

.pr-300 {
  padding-right: 300px;
}

.pr-300 {
  padding-right: 300px;
}

.pr-305 {
  padding-right: 305px;
}

.pr-305 {
  padding-right: 305px;
}

.pr-310 {
  padding-right: 310px;
}

.pr-310 {
  padding-right: 310px;
}

.pr-315 {
  padding-right: 315px;
}

.pr-315 {
  padding-right: 315px;
}

.pr-320 {
  padding-right: 320px;
}

.pr-320 {
  padding-right: 320px;
}

.pr-325 {
  padding-right: 325px;
}

.pr-325 {
  padding-right: 325px;
}

/* Padding LG */
@media (min-width: 992px) and (max-width: 1200px) {
  .pt-lg-5 {
    padding-top: 5px;
  }

  .pt-lg-10 {
    padding-top: 10px;
  }

  .pt-lg-15 {
    padding-top: 15px;
  }

  .pt-lg-20 {
    padding-top: 20px;
  }

  .pt-lg-25 {
    padding-top: 25px;
  }

  .pt-lg-30 {
    padding-top: 30px;
  }

  .pt-lg-35 {
    padding-top: 35px;
  }

  .pt-lg-40 {
    padding-top: 40px;
  }

  .pt-lg-45 {
    padding-top: 45px;
  }

  .pt-lg-50 {
    padding-top: 50px;
  }

  .pt-lg-55 {
    padding-top: 55px;
  }

  .pt-lg-60 {
    padding-top: 60px;
  }

  .pt-lg-65 {
    padding-top: 65px;
  }

  .pt-lg-70 {
    padding-top: 70px;
  }

  .pt-lg-75 {
    padding-top: 75px;
  }

  .pt-lg-80 {
    padding-top: 80px;
  }

  .pt-lg-85 {
    padding-top: 85px;
  }

  .pt-lg-90 {
    padding-top: 90px;
  }

  .pt-lg-95 {
    padding-top: 95px;
  }

  .pt-lg-100 {
    padding-top: 100px;
  }

  .pt-lg-105 {
    padding-top: 105px;
  }

  .pt-lg-110 {
    padding-top: 110px;
  }

  .pt-lg-115 {
    padding-top: 115px;
  }

  .pt-lg-120 {
    padding-top: 120px;
  }

  .pt-lg-125 {
    padding-top: 125px;
  }

  .pt-lg-130 {
    padding-top: 130px;
  }

  .pt-lg-135 {
    padding-top: 135px;
  }

  .pt-lg-140 {
    padding-top: 140px;
  }

  .pt-lg-145 {
    padding-top: 145px;
  }

  .pt-lg-150 {
    padding-top: 150px;
  }

  .pt-lg-155 {
    padding-top: 155px;
  }

  .pt-lg-160 {
    padding-top: 160px;
  }

  .pt-lg-165 {
    padding-top: 165px;
  }

  .pt-lg-170 {
    padding-top: 170px;
  }

  .pt-lg-175 {
    padding-top: 175px;
  }

  .pt-lg-180 {
    padding-top: 180px;
  }

  .pt-lg-185 {
    padding-top: 185px;
  }

  .pt-lg-190 {
    padding-top: 190px;
  }

  .pt-lg-195 {
    padding-top: 195px;
  }

  .pt-lg-200 {
    padding-top: 200px;
  }

  .pt-lg-205 {
    padding-top: 205px;
  }

  .pt-lg-210 {
    padding-top: 210px;
  }

  .pt-lg-215 {
    padding-top: 215px;
  }

  .pt-lg-220 {
    padding-top: 220px;
  }

  .pt-lg-225 {
    padding-top: 225px;
  }

  .pt-lg-230 {
    padding-top: 230px;
  }

  .pt-lg-235 {
    padding-top: 235px;
  }

  .pt-lg-240 {
    padding-top: 240px;
  }

  .pt-lg-245 {
    padding-top: 245px;
  }

  .pt-lg-250 {
    padding-top: 250px;
  }

  .pt-lg-255 {
    padding-top: 255px;
  }

  .pt-lg-260 {
    padding-top: 260px;
  }

  .pt-lg-265 {
    padding-top: 265px;
  }

  .pt-lg-270 {
    padding-top: 270px;
  }

  .pt-lg-275 {
    padding-top: 275px;
  }

  .pt-lg-280 {
    padding-top: 280px;
  }

  .pt-lg-285 {
    padding-top: 285px;
  }

  .pt-lg-290 {
    padding-top: 290px;
  }

  .pt-lg-295 {
    padding-top: 295px;
  }

  .pt-lg-300 {
    padding-top: 300px;
  }

  .pt-lg-305 {
    padding-top: 305px;
  }

  .pt-lg-310 {
    padding-top: 310px;
  }

  .pt-lg-315 {
    padding-top: 315px;
  }

  .pt-lg-320 {
    padding-top: 320px;
  }

  .pt-lg-325 {
    padding-top: 325px;
  }

  .pb-lg-5 {
    padding-bottom: 5px;
  }

  .pb-lg-10 {
    padding-bottom: 10px;
  }

  .pb-lg-15 {
    padding-bottom: 15px;
  }

  .pb-lg-20 {
    padding-bottom: 20px;
  }

  .pb-lg-25 {
    padding-bottom: 25px;
  }

  .pb-lg-30 {
    padding-bottom: 30px;
  }

  .pb-lg-35 {
    padding-bottom: 35px;
  }

  .pb-lg-40 {
    padding-bottom: 40px;
  }

  .pb-lg-45 {
    padding-bottom: 45px;
  }

  .pb-lg-50 {
    padding-bottom: 50px;
  }

  .pb-lg-55 {
    padding-bottom: 55px;
  }

  .pb-lg-60 {
    padding-bottom: 60px;
  }

  .pb-lg-65 {
    padding-bottom: 65px;
  }

  .pb-lg-70 {
    padding-bottom: 70px;
  }

  .pb-lg-75 {
    padding-bottom: 75px;
  }

  .pb-lg-80 {
    padding-bottom: 80px;
  }

  .pb-lg-85 {
    padding-bottom: 85px;
  }

  .pb-lg-90 {
    padding-bottom: 90px;
  }

  .pb-lg-95 {
    padding-bottom: 95px;
  }

  .pb-lg-100 {
    padding-bottom: 100px;
  }

  .pb-lg-105 {
    padding-bottom: 105px;
  }

  .pb-lg-110 {
    padding-bottom: 110px;
  }

  .pb-lg-115 {
    padding-bottom: 115px;
  }

  .pb-lg-120 {
    padding-bottom: 120px;
  }

  .pb-lg-125 {
    padding-bottom: 125px;
  }

  .pb-lg-130 {
    padding-bottom: 130px;
  }

  .pb-lg-135 {
    padding-bottom: 135px;
  }

  .pb-lg-140 {
    padding-bottom: 140px;
  }

  .pb-lg-145 {
    padding-bottom: 145px;
  }

  .pb-lg-150 {
    padding-bottom: 150px;
  }

  .pb-lg-155 {
    padding-bottom: 155px;
  }

  .pb-lg-160 {
    padding-bottom: 160px;
  }

  .pb-lg-165 {
    padding-bottom: 165px;
  }

  .pb-lg-170 {
    padding-bottom: 170px;
  }

  .pb-lg-175 {
    padding-bottom: 175px;
  }

  .pb-lg-180 {
    padding-bottom: 180px;
  }

  .pb-lg-185 {
    padding-bottom: 185px;
  }

  .pb-lg-190 {
    padding-bottom: 190px;
  }

  .pb-lg-195 {
    padding-bottom: 195px;
  }

  .pb-lg-200 {
    padding-bottom: 200px;
  }

  .pb-lg-205 {
    padding-bottom: 205px;
  }

  .pb-lg-210 {
    padding-bottom: 210px;
  }

  .pb-lg-215 {
    padding-bottom: 215px;
  }

  .pb-lg-220 {
    padding-bottom: 220px;
  }

  .pb-lg-225 {
    padding-bottom: 225px;
  }

  .pb-lg-230 {
    padding-bottom: 230px;
  }

  .pb-lg-235 {
    padding-bottom: 235px;
  }

  .pb-lg-240 {
    padding-bottom: 240px;
  }

  .pb-lg-245 {
    padding-bottom: 245px;
  }

  .pb-lg-250 {
    padding-bottom: 250px;
  }

  .pb-lg-255 {
    padding-bottom: 255px;
  }

  .pb-lg-260 {
    padding-bottom: 260px;
  }

  .pb-lg-265 {
    padding-bottom: 265px;
  }

  .pb-lg-270 {
    padding-bottom: 270px;
  }

  .pb-lg-275 {
    padding-bottom: 275px;
  }

  .pb-lg-280 {
    padding-bottom: 280px;
  }

  .pb-lg-285 {
    padding-bottom: 285px;
  }

  .pb-lg-290 {
    padding-bottom: 290px;
  }

  .pb-lg-295 {
    padding-bottom: 295px;
  }

  .pb-lg-300 {
    padding-bottom: 300px;
  }

  .pb-lg-305 {
    padding-bottom: 305px;
  }

  .pb-lg-310 {
    padding-bottom: 310px;
  }

  .pb-lg-315 {
    padding-bottom: 315px;
  }

  .pb-lg-320 {
    padding-bottom: 320px;
  }

  .pb-lg-325 {
    padding-bottom: 325px;
  }

  .pl-lg-5 {
    padding-left: 5px;
  }

  .pl-lg-10 {
    padding-left: 10px;
  }

  .pl-lg-15 {
    padding-left: 15px;
  }

  .pl-lg-20 {
    padding-left: 20px;
  }

  .pl-lg-25 {
    padding-left: 25px;
  }

  .pl-lg-30 {
    padding-left: 30px;
  }

  .pl-lg-35 {
    padding-left: 35px;
  }

  .pl-lg-40 {
    padding-left: 40px;
  }

  .pl-lg-45 {
    padding-left: 45px;
  }

  .pl-lg-50 {
    padding-left: 50px;
  }

  .pl-lg-55 {
    padding-left: 55px;
  }

  .pl-lg-60 {
    padding-left: 60px;
  }

  .pl-lg-65 {
    padding-left: 65px;
  }

  .pl-lg-70 {
    padding-left: 70px;
  }

  .pl-lg-75 {
    padding-left: 75px;
  }

  .pl-lg-80 {
    padding-left: 80px;
  }

  .pl-lg-85 {
    padding-left: 85px;
  }

  .pl-lg-90 {
    padding-left: 90px;
  }

  .pl-lg-95 {
    padding-left: 95px;
  }

  .pl-lg-100 {
    padding-left: 100px;
  }

  .pl-lg-105 {
    padding-left: 105px;
  }

  .pl-lg-110 {
    padding-left: 110px;
  }

  .pl-lg-115 {
    padding-left: 115px;
  }

  .pl-lg-120 {
    padding-left: 120px;
  }

  .pl-lg-125 {
    padding-left: 125px;
  }

  .pl-lg-130 {
    padding-left: 130px;
  }

  .pl-lg-135 {
    padding-left: 135px;
  }

  .pl-lg-140 {
    padding-left: 140px;
  }

  .pl-lg-145 {
    padding-left: 145px;
  }

  .pl-lg-150 {
    padding-left: 150px;
  }

  .pl-lg-155 {
    padding-left: 155px;
  }

  .pl-lg-160 {
    padding-left: 160px;
  }

  .pl-lg-165 {
    padding-left: 165px;
  }

  .pl-lg-170 {
    padding-left: 170px;
  }

  .pl-lg-175 {
    padding-left: 175px;
  }

  .pl-lg-180 {
    padding-left: 180px;
  }

  .pl-lg-185 {
    padding-left: 185px;
  }

  .pl-lg-190 {
    padding-left: 190px;
  }

  .pl-lg-195 {
    padding-left: 195px;
  }

  .pl-lg-200 {
    padding-left: 200px;
  }

  .pl-lg-205 {
    padding-left: 205px;
  }

  .pl-lg-210 {
    padding-left: 210px;
  }

  .pl-lg-215 {
    padding-left: 215px;
  }

  .pl-lg-220 {
    padding-left: 220px;
  }

  .pl-lg-225 {
    padding-left: 225px;
  }

  .pl-lg-230 {
    padding-left: 230px;
  }

  .pl-lg-235 {
    padding-left: 235px;
  }

  .pl-lg-240 {
    padding-left: 240px;
  }

  .pl-lg-245 {
    padding-left: 245px;
  }

  .pl-lg-250 {
    padding-left: 250px;
  }

  .pl-lg-255 {
    padding-left: 255px;
  }

  .pl-lg-260 {
    padding-left: 260px;
  }

  .pl-lg-265 {
    padding-left: 265px;
  }

  .pl-lg-270 {
    padding-left: 270px;
  }

  .pl-lg-275 {
    padding-left: 275px;
  }

  .pl-lg-280 {
    padding-left: 280px;
  }

  .pl-lg-285 {
    padding-left: 285px;
  }

  .pl-lg-290 {
    padding-left: 290px;
  }

  .pl-lg-295 {
    padding-left: 295px;
  }

  .pl-lg-300 {
    padding-left: 300px;
  }

  .pl-lg-305 {
    padding-left: 305px;
  }

  .pl-lg-310 {
    padding-left: 310px;
  }

  .pl-lg-315 {
    padding-left: 315px;
  }

  .pl-lg-320 {
    padding-left: 320px;
  }

  .pl-lg-325 {
    padding-left: 325px;
  }

  .pr-lg-5 {
    padding-right: 5px;
  }

  .pr-lg-10 {
    padding-right: 10px;
  }

  .pr-lg-15 {
    padding-right: 15px;
  }

  .pr-lg-20 {
    padding-right: 20px;
  }

  .pr-lg-25 {
    padding-right: 25px;
  }

  .pr-lg-30 {
    padding-right: 30px;
  }

  .pr-lg-35 {
    padding-right: 35px;
  }

  .pr-lg-40 {
    padding-right: 40px;
  }

  .pr-lg-45 {
    padding-right: 45px;
  }

  .pr-lg-50 {
    padding-right: 50px;
  }

  .pr-lg-55 {
    padding-right: 55px;
  }

  .pr-lg-60 {
    padding-right: 60px;
  }

  .pr-lg-65 {
    padding-right: 65px;
  }

  .pr-lg-70 {
    padding-right: 70px;
  }

  .pr-lg-75 {
    padding-right: 75px;
  }

  .pr-lg-80 {
    padding-right: 80px;
  }

  .pr-lg-85 {
    padding-right: 85px;
  }

  .pr-lg-90 {
    padding-right: 90px;
  }

  .pr-lg-95 {
    padding-right: 95px;
  }

  .pr-lg-100 {
    padding-right: 100px;
  }

  .pr-lg-105 {
    padding-right: 105px;
  }

  .pr-lg-110 {
    padding-right: 110px;
  }

  .pr-lg-115 {
    padding-right: 115px;
  }

  .pr-lg-120 {
    padding-right: 120px;
  }

  .pr-lg-125 {
    padding-right: 125px;
  }

  .pr-lg-130 {
    padding-right: 130px;
  }

  .pr-lg-135 {
    padding-right: 135px;
  }

  .pr-lg-140 {
    padding-right: 140px;
  }

  .pr-lg-145 {
    padding-right: 145px;
  }

  .pr-lg-150 {
    padding-right: 150px;
  }

  .pr-lg-155 {
    padding-right: 155px;
  }

  .pr-lg-160 {
    padding-right: 160px;
  }

  .pr-lg-165 {
    padding-right: 165px;
  }

  .pr-lg-170 {
    padding-right: 170px;
  }

  .pr-lg-175 {
    padding-right: 175px;
  }

  .pr-lg-180 {
    padding-right: 180px;
  }

  .pr-lg-185 {
    padding-right: 185px;
  }

  .pr-lg-190 {
    padding-right: 190px;
  }

  .pr-lg-195 {
    padding-right: 195px;
  }

  .pr-lg-200 {
    padding-right: 200px;
  }

  .pr-lg-205 {
    padding-right: 205px;
  }

  .pr-lg-210 {
    padding-right: 210px;
  }

  .pr-lg-215 {
    padding-right: 215px;
  }

  .pr-lg-220 {
    padding-right: 220px;
  }

  .pr-lg-225 {
    padding-right: 225px;
  }

  .pr-lg-230 {
    padding-right: 230px;
  }

  .pr-lg-235 {
    padding-right: 235px;
  }

  .pr-lg-240 {
    padding-right: 240px;
  }

  .pr-lg-245 {
    padding-right: 245px;
  }

  .pr-lg-250 {
    padding-right: 250px;
  }

  .pr-lg-255 {
    padding-right: 255px;
  }

  .pr-lg-260 {
    padding-right: 260px;
  }

  .pr-lg-265 {
    padding-right: 265px;
  }

  .pr-lg-270 {
    padding-right: 270px;
  }

  .pr-lg-275 {
    padding-right: 275px;
  }

  .pr-lg-280 {
    padding-right: 280px;
  }

  .pr-lg-285 {
    padding-right: 285px;
  }

  .pr-lg-290 {
    padding-right: 290px;
  }

  .pr-lg-295 {
    padding-right: 295px;
  }

  .pr-lg-300 {
    padding-right: 300px;
  }

  .pr-lg-305 {
    padding-right: 305px;
  }

  .pr-lg-310 {
    padding-right: 310px;
  }

  .pr-lg-315 {
    padding-right: 315px;
  }

  .pr-lg-320 {
    padding-right: 320px;
  }

  .pr-lg-325 {
    padding-right: 325px;
  }

  .pt-lg--5 {
    padding-top: -5px;
  }

  .pt-lg--10 {
    padding-top: -10px;
  }

  .pt-lg--15 {
    padding-top: -15px;
  }

  .pt-lg--20 {
    padding-top: -20px;
  }

  .pt-lg--25 {
    padding-top: -25px;
  }

  .pt-lg--30 {
    padding-top: -30px;
  }

  .pt-lg--35 {
    padding-top: -35px;
  }

  .pt-lg--40 {
    padding-top: -40px;
  }

  .pt-lg--45 {
    padding-top: -45px;
  }

  .pt-lg--50 {
    padding-top: -50px;
  }

  .pt-lg--55 {
    padding-top: -55px;
  }

  .pt-lg--60 {
    padding-top: -60px;
  }

  .pt-lg--65 {
    padding-top: -65px;
  }

  .pt-lg--70 {
    padding-top: -70px;
  }

  .pt-lg--75 {
    padding-top: -75px;
  }

  .pt-lg--80 {
    padding-top: -80px;
  }

  .pt-lg--85 {
    padding-top: -85px;
  }

  .pt-lg--90 {
    padding-top: -90px;
  }

  .pt-lg--95 {
    padding-top: -95px;
  }

  .pt-lg--100 {
    padding-top: -100px;
  }

  .pt-lg--105 {
    padding-top: -105px;
  }

  .pt-lg--110 {
    padding-top: -110px;
  }

  .pt-lg--115 {
    padding-top: -115px;
  }

  .pt-lg--120 {
    padding-top: -120px;
  }

  .pt-lg--125 {
    padding-top: -125px;
  }

  .pt-lg--130 {
    padding-top: -130px;
  }

  .pt-lg--135 {
    padding-top: -135px;
  }

  .pt-lg--140 {
    padding-top: -140px;
  }

  .pt-lg--145 {
    padding-top: -145px;
  }

  .pt-lg--150 {
    padding-top: -150px;
  }

  .pt-lg--155 {
    padding-top: -155px;
  }

  .pt-lg--160 {
    padding-top: -160px;
  }

  .pt-lg--165 {
    padding-top: -165px;
  }

  .pt-lg--170 {
    padding-top: -170px;
  }

  .pt-lg--175 {
    padding-top: -175px;
  }

  .pt-lg--180 {
    padding-top: -180px;
  }

  .pt-lg--185 {
    padding-top: -185px;
  }

  .pt-lg--190 {
    padding-top: -190px;
  }

  .pt-lg--195 {
    padding-top: -195px;
  }

  .pt-lg--200 {
    padding-top: -200px;
  }

  .pt-lg--205 {
    padding-top: -205px;
  }

  .pt-lg--210 {
    padding-top: -210px;
  }

  .pt-lg--215 {
    padding-top: -215px;
  }

  .pt-lg--220 {
    padding-top: -220px;
  }

  .pt-lg--225 {
    padding-top: -225px;
  }

  .pt-lg--230 {
    padding-top: -230px;
  }

  .pt-lg--235 {
    padding-top: -235px;
  }

  .pt-lg--240 {
    padding-top: -240px;
  }

  .pt-lg--245 {
    padding-top: -245px;
  }

  .pt-lg--250 {
    padding-top: -250px;
  }

  .pt-lg--255 {
    padding-top: -255px;
  }

  .pt-lg--260 {
    padding-top: -260px;
  }

  .pt-lg--265 {
    padding-top: -265px;
  }

  .pt-lg--270 {
    padding-top: -270px;
  }

  .pt-lg--275 {
    padding-top: -275px;
  }

  .pt-lg--280 {
    padding-top: -280px;
  }

  .pt-lg--285 {
    padding-top: -285px;
  }

  .pt-lg--290 {
    padding-top: -290px;
  }

  .pt-lg--295 {
    padding-top: -295px;
  }

  .pt-lg--300 {
    padding-top: -300px;
  }

  .pt-lg--305 {
    padding-top: -305px;
  }

  .pt-lg--310 {
    padding-top: -310px;
  }

  .pt-lg--315 {
    padding-top: -315px;
  }

  .pt-lg--320 {
    padding-top: -320px;
  }

  .pt-lg--325 {
    padding-top: -325px;
  }

  .pb-lg--5 {
    padding-bottom: -5px;
  }

  .pb-lg--10 {
    padding-bottom: -10px;
  }

  .pb-lg--15 {
    padding-bottom: -15px;
  }

  .pb-lg--20 {
    padding-bottom: -20px;
  }

  .pb-lg--25 {
    padding-bottom: -25px;
  }

  .pb-lg--30 {
    padding-bottom: -30px;
  }

  .pb-lg--35 {
    padding-bottom: -35px;
  }

  .pb-lg--40 {
    padding-bottom: -40px;
  }

  .pb-lg--45 {
    padding-bottom: -45px;
  }

  .pb-lg--50 {
    padding-bottom: -50px;
  }

  .pb-lg--55 {
    padding-bottom: -55px;
  }

  .pb-lg--60 {
    padding-bottom: -60px;
  }

  .pb-lg--65 {
    padding-bottom: -65px;
  }

  .pb-lg--70 {
    padding-bottom: -70px;
  }

  .pb-lg--75 {
    padding-bottom: -75px;
  }

  .pb-lg--80 {
    padding-bottom: -80px;
  }

  .pb-lg--85 {
    padding-bottom: -85px;
  }

  .pb-lg--90 {
    padding-bottom: -90px;
  }

  .pb-lg--95 {
    padding-bottom: -95px;
  }

  .pb-lg--100 {
    padding-bottom: -100px;
  }

  .pb-lg--105 {
    padding-bottom: -105px;
  }

  .pb-lg--110 {
    padding-bottom: -110px;
  }

  .pb-lg--115 {
    padding-bottom: -115px;
  }

  .pb-lg--120 {
    padding-bottom: -120px;
  }

  .pb-lg--125 {
    padding-bottom: -125px;
  }

  .pb-lg--130 {
    padding-bottom: -130px;
  }

  .pb-lg--135 {
    padding-bottom: -135px;
  }

  .pb-lg--140 {
    padding-bottom: -140px;
  }

  .pb-lg--145 {
    padding-bottom: -145px;
  }

  .pb-lg--150 {
    padding-bottom: -150px;
  }

  .pb-lg--155 {
    padding-bottom: -155px;
  }

  .pb-lg--160 {
    padding-bottom: -160px;
  }

  .pb-lg--165 {
    padding-bottom: -165px;
  }

  .pb-lg--170 {
    padding-bottom: -170px;
  }

  .pb-lg--175 {
    padding-bottom: -175px;
  }

  .pb-lg--180 {
    padding-bottom: -180px;
  }

  .pb-lg--185 {
    padding-bottom: -185px;
  }

  .pb-lg--190 {
    padding-bottom: -190px;
  }

  .pb-lg--195 {
    padding-bottom: -195px;
  }

  .pb-lg--200 {
    padding-bottom: -200px;
  }

  .pb-lg--205 {
    padding-bottom: -205px;
  }

  .pb-lg--210 {
    padding-bottom: -210px;
  }

  .pb-lg--215 {
    padding-bottom: -215px;
  }

  .pb-lg--220 {
    padding-bottom: -220px;
  }

  .pb-lg--225 {
    padding-bottom: -225px;
  }

  .pb-lg--230 {
    padding-bottom: -230px;
  }

  .pb-lg--235 {
    padding-bottom: -235px;
  }

  .pb-lg--240 {
    padding-bottom: -240px;
  }

  .pb-lg--245 {
    padding-bottom: -245px;
  }

  .pb-lg--250 {
    padding-bottom: -250px;
  }

  .pb-lg--255 {
    padding-bottom: -255px;
  }

  .pb-lg--260 {
    padding-bottom: -260px;
  }

  .pb-lg--265 {
    padding-bottom: -265px;
  }

  .pb-lg--270 {
    padding-bottom: -270px;
  }

  .pb-lg--275 {
    padding-bottom: -275px;
  }

  .pb-lg--280 {
    padding-bottom: -280px;
  }

  .pb-lg--285 {
    padding-bottom: -285px;
  }

  .pb-lg--290 {
    padding-bottom: -290px;
  }

  .pb-lg--295 {
    padding-bottom: -295px;
  }

  .pb-lg--300 {
    padding-bottom: -300px;
  }

  .pb-lg--305 {
    padding-bottom: -305px;
  }

  .pb-lg--310 {
    padding-bottom: -310px;
  }

  .pb-lg--315 {
    padding-bottom: -315px;
  }

  .pb-lg--320 {
    padding-bottom: -320px;
  }

  .pb-lg--325 {
    padding-bottom: -325px;
  }

  .pt-lg-0 {
    padding-top: 0;
  }

  .pb-lg-0 {
    padding-bottom: 0;
  }

  .pl-lg-0 {
    padding-left: 0;
  }

  .pr-lg-0 {
    padding-right: 0;
  }
}
/* Padding MD */
@media (min-width: 768px) and (max-width: 991px) {
  .pt-md-5 {
    padding-top: 5px;
  }

  .pt-md-10 {
    padding-top: 10px;
  }

  .pt-md-15 {
    padding-top: 15px;
  }

  .pt-md-20 {
    padding-top: 20px;
  }

  .pt-md-25 {
    padding-top: 25px;
  }

  .pt-md-30 {
    padding-top: 30px;
  }

  .pt-md-35 {
    padding-top: 35px;
  }

  .pt-md-40 {
    padding-top: 40px;
  }

  .pt-md-45 {
    padding-top: 45px;
  }

  .pt-md-50 {
    padding-top: 50px;
  }

  .pt-md-55 {
    padding-top: 55px;
  }

  .pt-md-60 {
    padding-top: 60px;
  }

  .pt-md-65 {
    padding-top: 65px;
  }

  .pt-md-70 {
    padding-top: 70px;
  }

  .pt-md-75 {
    padding-top: 75px;
  }

  .pt-md-80 {
    padding-top: 80px;
  }

  .pt-md-85 {
    padding-top: 85px;
  }

  .pt-md-90 {
    padding-top: 90px;
  }

  .pt-md-95 {
    padding-top: 95px;
  }

  .pt-md-100 {
    padding-top: 100px;
  }

  .pt-md-105 {
    padding-top: 105px;
  }

  .pt-md-110 {
    padding-top: 110px;
  }

  .pt-md-115 {
    padding-top: 115px;
  }

  .pt-md-120 {
    padding-top: 120px;
  }

  .pt-md-125 {
    padding-top: 125px;
  }

  .pt-md-130 {
    padding-top: 130px;
  }

  .pt-md-135 {
    padding-top: 135px;
  }

  .pt-md-140 {
    padding-top: 140px;
  }

  .pt-md-145 {
    padding-top: 145px;
  }

  .pt-md-150 {
    padding-top: 150px;
  }

  .pt-md-155 {
    padding-top: 155px;
  }

  .pt-md-160 {
    padding-top: 160px;
  }

  .pt-md-165 {
    padding-top: 165px;
  }

  .pt-md-170 {
    padding-top: 170px;
  }

  .pt-md-175 {
    padding-top: 175px;
  }

  .pt-md-180 {
    padding-top: 180px;
  }

  .pt-md-185 {
    padding-top: 185px;
  }

  .pt-md-190 {
    padding-top: 190px;
  }

  .pt-md-195 {
    padding-top: 195px;
  }

  .pt-md-200 {
    padding-top: 200px;
  }

  .pt-md-205 {
    padding-top: 205px;
  }

  .pt-md-210 {
    padding-top: 210px;
  }

  .pt-md-215 {
    padding-top: 215px;
  }

  .pt-md-220 {
    padding-top: 220px;
  }

  .pt-md-225 {
    padding-top: 225px;
  }

  .pt-md-230 {
    padding-top: 230px;
  }

  .pt-md-235 {
    padding-top: 235px;
  }

  .pt-md-240 {
    padding-top: 240px;
  }

  .pt-md-245 {
    padding-top: 245px;
  }

  .pt-md-250 {
    padding-top: 250px;
  }

  .pt-md-255 {
    padding-top: 255px;
  }

  .pt-md-260 {
    padding-top: 260px;
  }

  .pt-md-265 {
    padding-top: 265px;
  }

  .pt-md-270 {
    padding-top: 270px;
  }

  .pt-md-275 {
    padding-top: 275px;
  }

  .pt-md-280 {
    padding-top: 280px;
  }

  .pt-md-285 {
    padding-top: 285px;
  }

  .pt-md-290 {
    padding-top: 290px;
  }

  .pt-md-295 {
    padding-top: 295px;
  }

  .pt-md-300 {
    padding-top: 300px;
  }

  .pt-md-305 {
    padding-top: 305px;
  }

  .pt-md-310 {
    padding-top: 310px;
  }

  .pt-md-315 {
    padding-top: 315px;
  }

  .pt-md-320 {
    padding-top: 320px;
  }

  .pt-md-325 {
    padding-top: 325px;
  }

  .pb-md-5 {
    padding-bottom: 5px;
  }

  .pb-md-10 {
    padding-bottom: 10px;
  }

  .pb-md-15 {
    padding-bottom: 15px;
  }

  .pb-md-20 {
    padding-bottom: 20px;
  }

  .pb-md-25 {
    padding-bottom: 25px;
  }

  .pb-md-30 {
    padding-bottom: 30px;
  }

  .pb-md-35 {
    padding-bottom: 35px;
  }

  .pb-md-40 {
    padding-bottom: 40px;
  }

  .pb-md-45 {
    padding-bottom: 45px;
  }

  .pb-md-50 {
    padding-bottom: 50px;
  }

  .pb-md-55 {
    padding-bottom: 55px;
  }

  .pb-md-60 {
    padding-bottom: 60px;
  }

  .pb-md-65 {
    padding-bottom: 65px;
  }

  .pb-md-70 {
    padding-bottom: 70px;
  }

  .pb-md-75 {
    padding-bottom: 75px;
  }

  .pb-md-80 {
    padding-bottom: 80px;
  }

  .pb-md-85 {
    padding-bottom: 85px;
  }

  .pb-md-90 {
    padding-bottom: 90px;
  }

  .pb-md-95 {
    padding-bottom: 95px;
  }

  .pb-md-100 {
    padding-bottom: 100px;
  }

  .pb-md-105 {
    padding-bottom: 105px;
  }

  .pb-md-110 {
    padding-bottom: 110px;
  }

  .pb-md-115 {
    padding-bottom: 115px;
  }

  .pb-md-120 {
    padding-bottom: 120px;
  }

  .pb-md-125 {
    padding-bottom: 125px;
  }

  .pb-md-130 {
    padding-bottom: 130px;
  }

  .pb-md-135 {
    padding-bottom: 135px;
  }

  .pb-md-140 {
    padding-bottom: 140px;
  }

  .pb-md-145 {
    padding-bottom: 145px;
  }

  .pb-md-150 {
    padding-bottom: 150px;
  }

  .pb-md-155 {
    padding-bottom: 155px;
  }

  .pb-md-160 {
    padding-bottom: 160px;
  }

  .pb-md-165 {
    padding-bottom: 165px;
  }

  .pb-md-170 {
    padding-bottom: 170px;
  }

  .pb-md-175 {
    padding-bottom: 175px;
  }

  .pb-md-180 {
    padding-bottom: 180px;
  }

  .pb-md-185 {
    padding-bottom: 185px;
  }

  .pb-md-190 {
    padding-bottom: 190px;
  }

  .pb-md-195 {
    padding-bottom: 195px;
  }

  .pb-md-200 {
    padding-bottom: 200px;
  }

  .pb-md-205 {
    padding-bottom: 205px;
  }

  .pb-md-210 {
    padding-bottom: 210px;
  }

  .pb-md-215 {
    padding-bottom: 215px;
  }

  .pb-md-220 {
    padding-bottom: 220px;
  }

  .pb-md-225 {
    padding-bottom: 225px;
  }

  .pb-md-230 {
    padding-bottom: 230px;
  }

  .pb-md-235 {
    padding-bottom: 235px;
  }

  .pb-md-240 {
    padding-bottom: 240px;
  }

  .pb-md-245 {
    padding-bottom: 245px;
  }

  .pb-md-250 {
    padding-bottom: 250px;
  }

  .pb-md-255 {
    padding-bottom: 255px;
  }

  .pb-md-260 {
    padding-bottom: 260px;
  }

  .pb-md-265 {
    padding-bottom: 265px;
  }

  .pb-md-270 {
    padding-bottom: 270px;
  }

  .pb-md-275 {
    padding-bottom: 275px;
  }

  .pb-md-280 {
    padding-bottom: 280px;
  }

  .pb-md-285 {
    padding-bottom: 285px;
  }

  .pb-md-290 {
    padding-bottom: 290px;
  }

  .pb-md-295 {
    padding-bottom: 295px;
  }

  .pb-md-300 {
    padding-bottom: 300px;
  }

  .pb-md-305 {
    padding-bottom: 305px;
  }

  .pb-md-310 {
    padding-bottom: 310px;
  }

  .pb-md-315 {
    padding-bottom: 315px;
  }

  .pb-md-320 {
    padding-bottom: 320px;
  }

  .pb-md-325 {
    padding-bottom: 325px;
  }

  .pl-md-5 {
    padding-left: 5px;
  }

  .pl-md-10 {
    padding-left: 10px;
  }

  .pl-md-15 {
    padding-left: 15px;
  }

  .pl-md-20 {
    padding-left: 20px;
  }

  .pl-md-25 {
    padding-left: 25px;
  }

  .pl-md-30 {
    padding-left: 30px;
  }

  .pl-md-35 {
    padding-left: 35px;
  }

  .pl-md-40 {
    padding-left: 40px;
  }

  .pl-md-45 {
    padding-left: 45px;
  }

  .pl-md-50 {
    padding-left: 50px;
  }

  .pl-md-55 {
    padding-left: 55px;
  }

  .pl-md-60 {
    padding-left: 60px;
  }

  .pl-md-65 {
    padding-left: 65px;
  }

  .pl-md-70 {
    padding-left: 70px;
  }

  .pl-md-75 {
    padding-left: 75px;
  }

  .pl-md-80 {
    padding-left: 80px;
  }

  .pl-md-85 {
    padding-left: 85px;
  }

  .pl-md-90 {
    padding-left: 90px;
  }

  .pl-md-95 {
    padding-left: 95px;
  }

  .pl-md-100 {
    padding-left: 100px;
  }

  .pl-md-105 {
    padding-left: 105px;
  }

  .pl-md-110 {
    padding-left: 110px;
  }

  .pl-md-115 {
    padding-left: 115px;
  }

  .pl-md-120 {
    padding-left: 120px;
  }

  .pl-md-125 {
    padding-left: 125px;
  }

  .pl-md-130 {
    padding-left: 130px;
  }

  .pl-md-135 {
    padding-left: 135px;
  }

  .pl-md-140 {
    padding-left: 140px;
  }

  .pl-md-145 {
    padding-left: 145px;
  }

  .pl-md-150 {
    padding-left: 150px;
  }

  .pl-md-155 {
    padding-left: 155px;
  }

  .pl-md-160 {
    padding-left: 160px;
  }

  .pl-md-165 {
    padding-left: 165px;
  }

  .pl-md-170 {
    padding-left: 170px;
  }

  .pl-md-175 {
    padding-left: 175px;
  }

  .pl-md-180 {
    padding-left: 180px;
  }

  .pl-md-185 {
    padding-left: 185px;
  }

  .pl-md-190 {
    padding-left: 190px;
  }

  .pl-md-195 {
    padding-left: 195px;
  }

  .pl-md-200 {
    padding-left: 200px;
  }

  .pl-md-205 {
    padding-left: 205px;
  }

  .pl-md-210 {
    padding-left: 210px;
  }

  .pl-md-215 {
    padding-left: 215px;
  }

  .pl-md-220 {
    padding-left: 220px;
  }

  .pl-md-225 {
    padding-left: 225px;
  }

  .pl-md-230 {
    padding-left: 230px;
  }

  .pl-md-235 {
    padding-left: 235px;
  }

  .pl-md-240 {
    padding-left: 240px;
  }

  .pl-md-245 {
    padding-left: 245px;
  }

  .pl-md-250 {
    padding-left: 250px;
  }

  .pl-md-255 {
    padding-left: 255px;
  }

  .pl-md-260 {
    padding-left: 260px;
  }

  .pl-md-265 {
    padding-left: 265px;
  }

  .pl-md-270 {
    padding-left: 270px;
  }

  .pl-md-275 {
    padding-left: 275px;
  }

  .pl-md-280 {
    padding-left: 280px;
  }

  .pl-md-285 {
    padding-left: 285px;
  }

  .pl-md-290 {
    padding-left: 290px;
  }

  .pl-md-295 {
    padding-left: 295px;
  }

  .pl-md-300 {
    padding-left: 300px;
  }

  .pl-md-305 {
    padding-left: 305px;
  }

  .pl-md-310 {
    padding-left: 310px;
  }

  .pl-md-315 {
    padding-left: 315px;
  }

  .pl-md-320 {
    padding-left: 320px;
  }

  .pl-md-325 {
    padding-left: 325px;
  }

  .pr-md-5 {
    padding-right: 5px;
  }

  .pr-md-10 {
    padding-right: 10px;
  }

  .pr-md-15 {
    padding-right: 15px;
  }

  .pr-md-20 {
    padding-right: 20px;
  }

  .pr-md-25 {
    padding-right: 25px;
  }

  .pr-md-30 {
    padding-right: 30px;
  }

  .pr-md-35 {
    padding-right: 35px;
  }

  .pr-md-40 {
    padding-right: 40px;
  }

  .pr-md-45 {
    padding-right: 45px;
  }

  .pr-md-50 {
    padding-right: 50px;
  }

  .pr-md-55 {
    padding-right: 55px;
  }

  .pr-md-60 {
    padding-right: 60px;
  }

  .pr-md-65 {
    padding-right: 65px;
  }

  .pr-md-70 {
    padding-right: 70px;
  }

  .pr-md-75 {
    padding-right: 75px;
  }

  .pr-md-80 {
    padding-right: 80px;
  }

  .pr-md-85 {
    padding-right: 85px;
  }

  .pr-md-90 {
    padding-right: 90px;
  }

  .pr-md-95 {
    padding-right: 95px;
  }

  .pr-md-100 {
    padding-right: 100px;
  }

  .pr-md-105 {
    padding-right: 105px;
  }

  .pr-md-110 {
    padding-right: 110px;
  }

  .pr-md-115 {
    padding-right: 115px;
  }

  .pr-md-120 {
    padding-right: 120px;
  }

  .pr-md-125 {
    padding-right: 125px;
  }

  .pr-md-130 {
    padding-right: 130px;
  }

  .pr-md-135 {
    padding-right: 135px;
  }

  .pr-md-140 {
    padding-right: 140px;
  }

  .pr-md-145 {
    padding-right: 145px;
  }

  .pr-md-150 {
    padding-right: 150px;
  }

  .pr-md-155 {
    padding-right: 155px;
  }

  .pr-md-160 {
    padding-right: 160px;
  }

  .pr-md-165 {
    padding-right: 165px;
  }

  .pr-md-170 {
    padding-right: 170px;
  }

  .pr-md-175 {
    padding-right: 175px;
  }

  .pr-md-180 {
    padding-right: 180px;
  }

  .pr-md-185 {
    padding-right: 185px;
  }

  .pr-md-190 {
    padding-right: 190px;
  }

  .pr-md-195 {
    padding-right: 195px;
  }

  .pr-md-200 {
    padding-right: 200px;
  }

  .pr-md-205 {
    padding-right: 205px;
  }

  .pr-md-210 {
    padding-right: 210px;
  }

  .pr-md-215 {
    padding-right: 215px;
  }

  .pr-md-220 {
    padding-right: 220px;
  }

  .pr-md-225 {
    padding-right: 225px;
  }

  .pr-md-230 {
    padding-right: 230px;
  }

  .pr-md-235 {
    padding-right: 235px;
  }

  .pr-md-240 {
    padding-right: 240px;
  }

  .pr-md-245 {
    padding-right: 245px;
  }

  .pr-md-250 {
    padding-right: 250px;
  }

  .pr-md-255 {
    padding-right: 255px;
  }

  .pr-md-260 {
    padding-right: 260px;
  }

  .pr-md-265 {
    padding-right: 265px;
  }

  .pr-md-270 {
    padding-right: 270px;
  }

  .pr-md-275 {
    padding-right: 275px;
  }

  .pr-md-280 {
    padding-right: 280px;
  }

  .pr-md-285 {
    padding-right: 285px;
  }

  .pr-md-290 {
    padding-right: 290px;
  }

  .pr-md-295 {
    padding-right: 295px;
  }

  .pr-md-300 {
    padding-right: 300px;
  }

  .pr-md-305 {
    padding-right: 305px;
  }

  .pr-md-310 {
    padding-right: 310px;
  }

  .pr-md-315 {
    padding-right: 315px;
  }

  .pr-md-320 {
    padding-right: 320px;
  }

  .pr-md-325 {
    padding-right: 325px;
  }

  .pt-md--5 {
    padding-top: -5px;
  }

  .pt-md--10 {
    padding-top: -10px;
  }

  .pt-md--15 {
    padding-top: -15px;
  }

  .pt-md--20 {
    padding-top: -20px;
  }

  .pt-md--25 {
    padding-top: -25px;
  }

  .pt-md--30 {
    padding-top: -30px;
  }

  .pt-md--35 {
    padding-top: -35px;
  }

  .pt-md--40 {
    padding-top: -40px;
  }

  .pt-md--45 {
    padding-top: -45px;
  }

  .pt-md--50 {
    padding-top: -50px;
  }

  .pt-md--55 {
    padding-top: -55px;
  }

  .pt-md--60 {
    padding-top: -60px;
  }

  .pt-md--65 {
    padding-top: -65px;
  }

  .pt-md--70 {
    padding-top: -70px;
  }

  .pt-md--75 {
    padding-top: -75px;
  }

  .pt-md--80 {
    padding-top: -80px;
  }

  .pt-md--85 {
    padding-top: -85px;
  }

  .pt-md--90 {
    padding-top: -90px;
  }

  .pt-md--95 {
    padding-top: -95px;
  }

  .pt-md--100 {
    padding-top: -100px;
  }

  .pt-md--105 {
    padding-top: -105px;
  }

  .pt-md--110 {
    padding-top: -110px;
  }

  .pt-md--115 {
    padding-top: -115px;
  }

  .pt-md--120 {
    padding-top: -120px;
  }

  .pt-md--125 {
    padding-top: -125px;
  }

  .pt-md--130 {
    padding-top: -130px;
  }

  .pt-md--135 {
    padding-top: -135px;
  }

  .pt-md--140 {
    padding-top: -140px;
  }

  .pt-md--145 {
    padding-top: -145px;
  }

  .pt-md--150 {
    padding-top: -150px;
  }

  .pt-md--155 {
    padding-top: -155px;
  }

  .pt-md--160 {
    padding-top: -160px;
  }

  .pt-md--165 {
    padding-top: -165px;
  }

  .pt-md--170 {
    padding-top: -170px;
  }

  .pt-md--175 {
    padding-top: -175px;
  }

  .pt-md--180 {
    padding-top: -180px;
  }

  .pt-md--185 {
    padding-top: -185px;
  }

  .pt-md--190 {
    padding-top: -190px;
  }

  .pt-md--195 {
    padding-top: -195px;
  }

  .pt-md--200 {
    padding-top: -200px;
  }

  .pt-md--205 {
    padding-top: -205px;
  }

  .pt-md--210 {
    padding-top: -210px;
  }

  .pt-md--215 {
    padding-top: -215px;
  }

  .pt-md--220 {
    padding-top: -220px;
  }

  .pt-md--225 {
    padding-top: -225px;
  }

  .pt-md--230 {
    padding-top: -230px;
  }

  .pt-md--235 {
    padding-top: -235px;
  }

  .pt-md--240 {
    padding-top: -240px;
  }

  .pt-md--245 {
    padding-top: -245px;
  }

  .pt-md--250 {
    padding-top: -250px;
  }

  .pt-md--255 {
    padding-top: -255px;
  }

  .pt-md--260 {
    padding-top: -260px;
  }

  .pt-md--265 {
    padding-top: -265px;
  }

  .pt-md--270 {
    padding-top: -270px;
  }

  .pt-md--275 {
    padding-top: -275px;
  }

  .pt-md--280 {
    padding-top: -280px;
  }

  .pt-md--285 {
    padding-top: -285px;
  }

  .pt-md--290 {
    padding-top: -290px;
  }

  .pt-md--295 {
    padding-top: -295px;
  }

  .pt-md--300 {
    padding-top: -300px;
  }

  .pt-md--305 {
    padding-top: -305px;
  }

  .pt-md--310 {
    padding-top: -310px;
  }

  .pt-md--315 {
    padding-top: -315px;
  }

  .pt-md--320 {
    padding-top: -320px;
  }

  .pt-md--325 {
    padding-top: -325px;
  }

  .pb-md--5 {
    padding-bottom: -5px;
  }

  .pb-md--10 {
    padding-bottom: -10px;
  }

  .pb-md--15 {
    padding-bottom: -15px;
  }

  .pb-md--20 {
    padding-bottom: -20px;
  }

  .pb-md--25 {
    padding-bottom: -25px;
  }

  .pb-md--30 {
    padding-bottom: -30px;
  }

  .pb-md--35 {
    padding-bottom: -35px;
  }

  .pb-md--40 {
    padding-bottom: -40px;
  }

  .pb-md--45 {
    padding-bottom: -45px;
  }

  .pb-md--50 {
    padding-bottom: -50px;
  }

  .pb-md--55 {
    padding-bottom: -55px;
  }

  .pb-md--60 {
    padding-bottom: -60px;
  }

  .pb-md--65 {
    padding-bottom: -65px;
  }

  .pb-md--70 {
    padding-bottom: -70px;
  }

  .pb-md--75 {
    padding-bottom: -75px;
  }

  .pb-md--80 {
    padding-bottom: -80px;
  }

  .pb-md--85 {
    padding-bottom: -85px;
  }

  .pb-md--90 {
    padding-bottom: -90px;
  }

  .pb-md--95 {
    padding-bottom: -95px;
  }

  .pb-md--100 {
    padding-bottom: -100px;
  }

  .pb-md--105 {
    padding-bottom: -105px;
  }

  .pb-md--110 {
    padding-bottom: -110px;
  }

  .pb-md--115 {
    padding-bottom: -115px;
  }

  .pb-md--120 {
    padding-bottom: -120px;
  }

  .pb-md--125 {
    padding-bottom: -125px;
  }

  .pb-md--130 {
    padding-bottom: -130px;
  }

  .pb-md--135 {
    padding-bottom: -135px;
  }

  .pb-md--140 {
    padding-bottom: -140px;
  }

  .pb-md--145 {
    padding-bottom: -145px;
  }

  .pb-md--150 {
    padding-bottom: -150px;
  }

  .pb-md--155 {
    padding-bottom: -155px;
  }

  .pb-md--160 {
    padding-bottom: -160px;
  }

  .pb-md--165 {
    padding-bottom: -165px;
  }

  .pb-md--170 {
    padding-bottom: -170px;
  }

  .pb-md--175 {
    padding-bottom: -175px;
  }

  .pb-md--180 {
    padding-bottom: -180px;
  }

  .pb-md--185 {
    padding-bottom: -185px;
  }

  .pb-md--190 {
    padding-bottom: -190px;
  }

  .pb-md--195 {
    padding-bottom: -195px;
  }

  .pb-md--200 {
    padding-bottom: -200px;
  }

  .pb-md--205 {
    padding-bottom: -205px;
  }

  .pb-md--210 {
    padding-bottom: -210px;
  }

  .pb-md--215 {
    padding-bottom: -215px;
  }

  .pb-md--220 {
    padding-bottom: -220px;
  }

  .pb-md--225 {
    padding-bottom: -225px;
  }

  .pb-md--230 {
    padding-bottom: -230px;
  }

  .pb-md--235 {
    padding-bottom: -235px;
  }

  .pb-md--240 {
    padding-bottom: -240px;
  }

  .pb-md--245 {
    padding-bottom: -245px;
  }

  .pb-md--250 {
    padding-bottom: -250px;
  }

  .pb-md--255 {
    padding-bottom: -255px;
  }

  .pb-md--260 {
    padding-bottom: -260px;
  }

  .pb-md--265 {
    padding-bottom: -265px;
  }

  .pb-md--270 {
    padding-bottom: -270px;
  }

  .pb-md--275 {
    padding-bottom: -275px;
  }

  .pb-md--280 {
    padding-bottom: -280px;
  }

  .pb-md--285 {
    padding-bottom: -285px;
  }

  .pb-md--290 {
    padding-bottom: -290px;
  }

  .pb-md--295 {
    padding-bottom: -295px;
  }

  .pb-md--300 {
    padding-bottom: -300px;
  }

  .pb-md--305 {
    padding-bottom: -305px;
  }

  .pb-md--310 {
    padding-bottom: -310px;
  }

  .pb-md--315 {
    padding-bottom: -315px;
  }

  .pb-md--320 {
    padding-bottom: -320px;
  }

  .pb-md--325 {
    padding-bottom: -325px;
  }

  .pt-md-0 {
    padding-top: 0;
  }

  .pb-md-0 {
    padding-bottom: 0;
  }

  .pl-md-0 {
    padding-left: 0;
  }

  .pr-md-0 {
    padding-right: 0;
  }
}
/* Padding XS */
@media (max-width: 767px) {
  .pt-xs-5 {
    padding-top: 5px;
  }

  .pt-xs-10 {
    padding-top: 10px;
  }

  .pt-xs-15 {
    padding-top: 15px;
  }

  .pt-xs-20 {
    padding-top: 20px;
  }

  .pt-xs-25 {
    padding-top: 25px;
  }

  .pt-xs-30 {
    padding-top: 30px;
  }

  .pt-xs-35 {
    padding-top: 35px;
  }

  .pt-xs-40 {
    padding-top: 40px;
  }

  .pt-xs-45 {
    padding-top: 45px;
  }

  .pt-xs-50 {
    padding-top: 50px;
  }

  .pt-xs-55 {
    padding-top: 55px;
  }

  .pt-xs-60 {
    padding-top: 60px;
  }

  .pt-xs-65 {
    padding-top: 65px;
  }

  .pt-xs-70 {
    padding-top: 70px;
  }

  .pt-xs-75 {
    padding-top: 75px;
  }

  .pt-xs-80 {
    padding-top: 80px;
  }

  .pt-xs-85 {
    padding-top: 85px;
  }

  .pt-xs-90 {
    padding-top: 90px;
  }

  .pt-xs-95 {
    padding-top: 95px;
  }

  .pt-xs-100 {
    padding-top: 100px;
  }

  .pt-xs-105 {
    padding-top: 105px;
  }

  .pt-xs-110 {
    padding-top: 110px;
  }

  .pt-xs-115 {
    padding-top: 115px;
  }

  .pt-xs-120 {
    padding-top: 120px;
  }

  .pt-xs-125 {
    padding-top: 125px;
  }

  .pt-xs-130 {
    padding-top: 130px;
  }

  .pt-xs-135 {
    padding-top: 135px;
  }

  .pt-xs-140 {
    padding-top: 140px;
  }

  .pt-xs-145 {
    padding-top: 145px;
  }

  .pt-xs-150 {
    padding-top: 150px;
  }

  .pt-xs-155 {
    padding-top: 155px;
  }

  .pt-xs-160 {
    padding-top: 160px;
  }

  .pt-xs-165 {
    padding-top: 165px;
  }

  .pt-xs-170 {
    padding-top: 170px;
  }

  .pt-xs-175 {
    padding-top: 175px;
  }

  .pt-xs-180 {
    padding-top: 180px;
  }

  .pt-xs-185 {
    padding-top: 185px;
  }

  .pt-xs-190 {
    padding-top: 190px;
  }

  .pt-xs-195 {
    padding-top: 195px;
  }

  .pt-xs-200 {
    padding-top: 200px;
  }

  .pt-xs-205 {
    padding-top: 205px;
  }

  .pt-xs-210 {
    padding-top: 210px;
  }

  .pt-xs-215 {
    padding-top: 215px;
  }

  .pt-xs-220 {
    padding-top: 220px;
  }

  .pt-xs-225 {
    padding-top: 225px;
  }

  .pt-xs-230 {
    padding-top: 230px;
  }

  .pt-xs-235 {
    padding-top: 235px;
  }

  .pt-xs-240 {
    padding-top: 240px;
  }

  .pt-xs-245 {
    padding-top: 245px;
  }

  .pt-xs-250 {
    padding-top: 250px;
  }

  .pt-xs-255 {
    padding-top: 255px;
  }

  .pt-xs-260 {
    padding-top: 260px;
  }

  .pt-xs-265 {
    padding-top: 265px;
  }

  .pt-xs-270 {
    padding-top: 270px;
  }

  .pt-xs-275 {
    padding-top: 275px;
  }

  .pt-xs-280 {
    padding-top: 280px;
  }

  .pt-xs-285 {
    padding-top: 285px;
  }

  .pt-xs-290 {
    padding-top: 290px;
  }

  .pt-xs-295 {
    padding-top: 295px;
  }

  .pt-xs-300 {
    padding-top: 300px;
  }

  .pt-xs-305 {
    padding-top: 305px;
  }

  .pt-xs-310 {
    padding-top: 310px;
  }

  .pt-xs-315 {
    padding-top: 315px;
  }

  .pt-xs-320 {
    padding-top: 320px;
  }

  .pt-xs-325 {
    padding-top: 325px;
  }

  .pb-xs-5 {
    padding-bottom: 5px;
  }

  .pb-xs-10 {
    padding-bottom: 10px;
  }

  .pb-xs-15 {
    padding-bottom: 15px;
  }

  .pb-xs-20 {
    padding-bottom: 20px;
  }

  .pb-xs-25 {
    padding-bottom: 25px;
  }

  .pb-xs-30 {
    padding-bottom: 30px;
  }

  .pb-xs-35 {
    padding-bottom: 35px;
  }

  .pb-xs-40 {
    padding-bottom: 40px;
  }

  .pb-xs-45 {
    padding-bottom: 45px;
  }

  .pb-xs-50 {
    padding-bottom: 50px;
  }

  .pb-xs-55 {
    padding-bottom: 55px;
  }

  .pb-xs-60 {
    padding-bottom: 60px;
  }

  .pb-xs-65 {
    padding-bottom: 65px;
  }

  .pb-xs-70 {
    padding-bottom: 70px;
  }

  .pb-xs-75 {
    padding-bottom: 75px;
  }

  .pb-xs-80 {
    padding-bottom: 80px;
  }

  .pb-xs-85 {
    padding-bottom: 85px;
  }

  .pb-xs-90 {
    padding-bottom: 90px;
  }

  .pb-xs-95 {
    padding-bottom: 95px;
  }

  .pb-xs-100 {
    padding-bottom: 100px;
  }

  .pb-xs-105 {
    padding-bottom: 105px;
  }

  .pb-xs-110 {
    padding-bottom: 110px;
  }

  .pb-xs-115 {
    padding-bottom: 115px;
  }

  .pb-xs-120 {
    padding-bottom: 120px;
  }

  .pb-xs-125 {
    padding-bottom: 125px;
  }

  .pb-xs-130 {
    padding-bottom: 130px;
  }

  .pb-xs-135 {
    padding-bottom: 135px;
  }

  .pb-xs-140 {
    padding-bottom: 140px;
  }

  .pb-xs-145 {
    padding-bottom: 145px;
  }

  .pb-xs-150 {
    padding-bottom: 150px;
  }

  .pb-xs-155 {
    padding-bottom: 155px;
  }

  .pb-xs-160 {
    padding-bottom: 160px;
  }

  .pb-xs-165 {
    padding-bottom: 165px;
  }

  .pb-xs-170 {
    padding-bottom: 170px;
  }

  .pb-xs-175 {
    padding-bottom: 175px;
  }

  .pb-xs-180 {
    padding-bottom: 180px;
  }

  .pb-xs-185 {
    padding-bottom: 185px;
  }

  .pb-xs-190 {
    padding-bottom: 190px;
  }

  .pb-xs-195 {
    padding-bottom: 195px;
  }

  .pb-xs-200 {
    padding-bottom: 200px;
  }

  .pb-xs-205 {
    padding-bottom: 205px;
  }

  .pb-xs-210 {
    padding-bottom: 210px;
  }

  .pb-xs-215 {
    padding-bottom: 215px;
  }

  .pb-xs-220 {
    padding-bottom: 220px;
  }

  .pb-xs-225 {
    padding-bottom: 225px;
  }

  .pb-xs-230 {
    padding-bottom: 230px;
  }

  .pb-xs-235 {
    padding-bottom: 235px;
  }

  .pb-xs-240 {
    padding-bottom: 240px;
  }

  .pb-xs-245 {
    padding-bottom: 245px;
  }

  .pb-xs-250 {
    padding-bottom: 250px;
  }

  .pb-xs-255 {
    padding-bottom: 255px;
  }

  .pb-xs-260 {
    padding-bottom: 260px;
  }

  .pb-xs-265 {
    padding-bottom: 265px;
  }

  .pb-xs-270 {
    padding-bottom: 270px;
  }

  .pb-xs-275 {
    padding-bottom: 275px;
  }

  .pb-xs-280 {
    padding-bottom: 280px;
  }

  .pb-xs-285 {
    padding-bottom: 285px;
  }

  .pb-xs-290 {
    padding-bottom: 290px;
  }

  .pb-xs-295 {
    padding-bottom: 295px;
  }

  .pb-xs-300 {
    padding-bottom: 300px;
  }

  .pb-xs-305 {
    padding-bottom: 305px;
  }

  .pb-xs-310 {
    padding-bottom: 310px;
  }

  .pb-xs-315 {
    padding-bottom: 315px;
  }

  .pb-xs-320 {
    padding-bottom: 320px;
  }

  .pb-xs-325 {
    padding-bottom: 325px;
  }

  .pl-xs-5 {
    padding-left: 5px;
  }

  .pl-xs-10 {
    padding-left: 10px;
  }

  .pl-xs-15 {
    padding-left: 15px;
  }

  .pl-xs-20 {
    padding-left: 20px;
  }

  .pl-xs-25 {
    padding-left: 25px;
  }

  .pl-xs-30 {
    padding-left: 30px;
  }

  .pl-xs-35 {
    padding-left: 35px;
  }

  .pl-xs-40 {
    padding-left: 40px;
  }

  .pl-xs-45 {
    padding-left: 45px;
  }

  .pl-xs-50 {
    padding-left: 50px;
  }

  .pl-xs-55 {
    padding-left: 55px;
  }

  .pl-xs-60 {
    padding-left: 60px;
  }

  .pl-xs-65 {
    padding-left: 65px;
  }

  .pl-xs-70 {
    padding-left: 70px;
  }

  .pl-xs-75 {
    padding-left: 75px;
  }

  .pl-xs-80 {
    padding-left: 80px;
  }

  .pl-xs-85 {
    padding-left: 85px;
  }

  .pl-xs-90 {
    padding-left: 90px;
  }

  .pl-xs-95 {
    padding-left: 95px;
  }

  .pl-xs-100 {
    padding-left: 100px;
  }

  .pl-xs-105 {
    padding-left: 105px;
  }

  .pl-xs-110 {
    padding-left: 110px;
  }

  .pl-xs-115 {
    padding-left: 115px;
  }

  .pl-xs-120 {
    padding-left: 120px;
  }

  .pl-xs-125 {
    padding-left: 125px;
  }

  .pl-xs-130 {
    padding-left: 130px;
  }

  .pl-xs-135 {
    padding-left: 135px;
  }

  .pl-xs-140 {
    padding-left: 140px;
  }

  .pl-xs-145 {
    padding-left: 145px;
  }

  .pl-xs-150 {
    padding-left: 150px;
  }

  .pl-xs-155 {
    padding-left: 155px;
  }

  .pl-xs-160 {
    padding-left: 160px;
  }

  .pl-xs-165 {
    padding-left: 165px;
  }

  .pl-xs-170 {
    padding-left: 170px;
  }

  .pl-xs-175 {
    padding-left: 175px;
  }

  .pl-xs-180 {
    padding-left: 180px;
  }

  .pl-xs-185 {
    padding-left: 185px;
  }

  .pl-xs-190 {
    padding-left: 190px;
  }

  .pl-xs-195 {
    padding-left: 195px;
  }

  .pl-xs-200 {
    padding-left: 200px;
  }

  .pl-xs-205 {
    padding-left: 205px;
  }

  .pl-xs-210 {
    padding-left: 210px;
  }

  .pl-xs-215 {
    padding-left: 215px;
  }

  .pl-xs-220 {
    padding-left: 220px;
  }

  .pl-xs-225 {
    padding-left: 225px;
  }

  .pl-xs-230 {
    padding-left: 230px;
  }

  .pl-xs-235 {
    padding-left: 235px;
  }

  .pl-xs-240 {
    padding-left: 240px;
  }

  .pl-xs-245 {
    padding-left: 245px;
  }

  .pl-xs-250 {
    padding-left: 250px;
  }

  .pl-xs-255 {
    padding-left: 255px;
  }

  .pl-xs-260 {
    padding-left: 260px;
  }

  .pl-xs-265 {
    padding-left: 265px;
  }

  .pl-xs-270 {
    padding-left: 270px;
  }

  .pl-xs-275 {
    padding-left: 275px;
  }

  .pl-xs-280 {
    padding-left: 280px;
  }

  .pl-xs-285 {
    padding-left: 285px;
  }

  .pl-xs-290 {
    padding-left: 290px;
  }

  .pl-xs-295 {
    padding-left: 295px;
  }

  .pl-xs-300 {
    padding-left: 300px;
  }

  .pl-xs-305 {
    padding-left: 305px;
  }

  .pl-xs-310 {
    padding-left: 310px;
  }

  .pl-xs-315 {
    padding-left: 315px;
  }

  .pl-xs-320 {
    padding-left: 320px;
  }

  .pl-xs-325 {
    padding-left: 325px;
  }

  .pr-xs-5 {
    padding-right: 5px;
  }

  .pr-xs-10 {
    padding-right: 10px;
  }

  .pr-xs-15 {
    padding-right: 15px;
  }

  .pr-xs-20 {
    padding-right: 20px;
  }

  .pr-xs-25 {
    padding-right: 25px;
  }

  .pr-xs-30 {
    padding-right: 30px;
  }

  .pr-xs-35 {
    padding-right: 35px;
  }

  .pr-xs-40 {
    padding-right: 40px;
  }

  .pr-xs-45 {
    padding-right: 45px;
  }

  .pr-xs-50 {
    padding-right: 50px;
  }

  .pr-xs-55 {
    padding-right: 55px;
  }

  .pr-xs-60 {
    padding-right: 60px;
  }

  .pr-xs-65 {
    padding-right: 65px;
  }

  .pr-xs-70 {
    padding-right: 70px;
  }

  .pr-xs-75 {
    padding-right: 75px;
  }

  .pr-xs-80 {
    padding-right: 80px;
  }

  .pr-xs-85 {
    padding-right: 85px;
  }

  .pr-xs-90 {
    padding-right: 90px;
  }

  .pr-xs-95 {
    padding-right: 95px;
  }

  .pr-xs-100 {
    padding-right: 100px;
  }

  .pr-xs-105 {
    padding-right: 105px;
  }

  .pr-xs-110 {
    padding-right: 110px;
  }

  .pr-xs-115 {
    padding-right: 115px;
  }

  .pr-xs-120 {
    padding-right: 120px;
  }

  .pr-xs-125 {
    padding-right: 125px;
  }

  .pr-xs-130 {
    padding-right: 130px;
  }

  .pr-xs-135 {
    padding-right: 135px;
  }

  .pr-xs-140 {
    padding-right: 140px;
  }

  .pr-xs-145 {
    padding-right: 145px;
  }

  .pr-xs-150 {
    padding-right: 150px;
  }

  .pr-xs-155 {
    padding-right: 155px;
  }

  .pr-xs-160 {
    padding-right: 160px;
  }

  .pr-xs-165 {
    padding-right: 165px;
  }

  .pr-xs-170 {
    padding-right: 170px;
  }

  .pr-xs-175 {
    padding-right: 175px;
  }

  .pr-xs-180 {
    padding-right: 180px;
  }

  .pr-xs-185 {
    padding-right: 185px;
  }

  .pr-xs-190 {
    padding-right: 190px;
  }

  .pr-xs-195 {
    padding-right: 195px;
  }

  .pr-xs-200 {
    padding-right: 200px;
  }

  .pr-xs-205 {
    padding-right: 205px;
  }

  .pr-xs-210 {
    padding-right: 210px;
  }

  .pr-xs-215 {
    padding-right: 215px;
  }

  .pr-xs-220 {
    padding-right: 220px;
  }

  .pr-xs-225 {
    padding-right: 225px;
  }

  .pr-xs-230 {
    padding-right: 230px;
  }

  .pr-xs-235 {
    padding-right: 235px;
  }

  .pr-xs-240 {
    padding-right: 240px;
  }

  .pr-xs-245 {
    padding-right: 245px;
  }

  .pr-xs-250 {
    padding-right: 250px;
  }

  .pr-xs-255 {
    padding-right: 255px;
  }

  .pr-xs-260 {
    padding-right: 260px;
  }

  .pr-xs-265 {
    padding-right: 265px;
  }

  .pr-xs-270 {
    padding-right: 270px;
  }

  .pr-xs-275 {
    padding-right: 275px;
  }

  .pr-xs-280 {
    padding-right: 280px;
  }

  .pr-xs-285 {
    padding-right: 285px;
  }

  .pr-xs-290 {
    padding-right: 290px;
  }

  .pr-xs-295 {
    padding-right: 295px;
  }

  .pr-xs-300 {
    padding-right: 300px;
  }

  .pr-xs-305 {
    padding-right: 305px;
  }

  .pr-xs-310 {
    padding-right: 310px;
  }

  .pr-xs-315 {
    padding-right: 315px;
  }

  .pr-xs-320 {
    padding-right: 320px;
  }

  .pr-xs-325 {
    padding-right: 325px;
  }

  .pt-xs--5 {
    padding-top: -5px;
  }

  .pt-xs--10 {
    padding-top: -10px;
  }

  .pt-xs--15 {
    padding-top: -15px;
  }

  .pt-xs--20 {
    padding-top: -20px;
  }

  .pt-xs--25 {
    padding-top: -25px;
  }

  .pt-xs--30 {
    padding-top: -30px;
  }

  .pt-xs--35 {
    padding-top: -35px;
  }

  .pt-xs--40 {
    padding-top: -40px;
  }

  .pt-xs--45 {
    padding-top: -45px;
  }

  .pt-xs--50 {
    padding-top: -50px;
  }

  .pt-xs--55 {
    padding-top: -55px;
  }

  .pt-xs--60 {
    padding-top: -60px;
  }

  .pt-xs--65 {
    padding-top: -65px;
  }

  .pt-xs--70 {
    padding-top: -70px;
  }

  .pt-xs--75 {
    padding-top: -75px;
  }

  .pt-xs--80 {
    padding-top: -80px;
  }

  .pt-xs--85 {
    padding-top: -85px;
  }

  .pt-xs--90 {
    padding-top: -90px;
  }

  .pt-xs--95 {
    padding-top: -95px;
  }

  .pt-xs--100 {
    padding-top: -100px;
  }

  .pt-xs--105 {
    padding-top: -105px;
  }

  .pt-xs--110 {
    padding-top: -110px;
  }

  .pt-xs--115 {
    padding-top: -115px;
  }

  .pt-xs--120 {
    padding-top: -120px;
  }

  .pt-xs--125 {
    padding-top: -125px;
  }

  .pt-xs--130 {
    padding-top: -130px;
  }

  .pt-xs--135 {
    padding-top: -135px;
  }

  .pt-xs--140 {
    padding-top: -140px;
  }

  .pt-xs--145 {
    padding-top: -145px;
  }

  .pt-xs--150 {
    padding-top: -150px;
  }

  .pt-xs--155 {
    padding-top: -155px;
  }

  .pt-xs--160 {
    padding-top: -160px;
  }

  .pt-xs--165 {
    padding-top: -165px;
  }

  .pt-xs--170 {
    padding-top: -170px;
  }

  .pt-xs--175 {
    padding-top: -175px;
  }

  .pt-xs--180 {
    padding-top: -180px;
  }

  .pt-xs--185 {
    padding-top: -185px;
  }

  .pt-xs--190 {
    padding-top: -190px;
  }

  .pt-xs--195 {
    padding-top: -195px;
  }

  .pt-xs--200 {
    padding-top: -200px;
  }

  .pt-xs--205 {
    padding-top: -205px;
  }

  .pt-xs--210 {
    padding-top: -210px;
  }

  .pt-xs--215 {
    padding-top: -215px;
  }

  .pt-xs--220 {
    padding-top: -220px;
  }

  .pt-xs--225 {
    padding-top: -225px;
  }

  .pt-xs--230 {
    padding-top: -230px;
  }

  .pt-xs--235 {
    padding-top: -235px;
  }

  .pt-xs--240 {
    padding-top: -240px;
  }

  .pt-xs--245 {
    padding-top: -245px;
  }

  .pt-xs--250 {
    padding-top: -250px;
  }

  .pt-xs--255 {
    padding-top: -255px;
  }

  .pt-xs--260 {
    padding-top: -260px;
  }

  .pt-xs--265 {
    padding-top: -265px;
  }

  .pt-xs--270 {
    padding-top: -270px;
  }

  .pt-xs--275 {
    padding-top: -275px;
  }

  .pt-xs--280 {
    padding-top: -280px;
  }

  .pt-xs--285 {
    padding-top: -285px;
  }

  .pt-xs--290 {
    padding-top: -290px;
  }

  .pt-xs--295 {
    padding-top: -295px;
  }

  .pt-xs--300 {
    padding-top: -300px;
  }

  .pt-xs--305 {
    padding-top: -305px;
  }

  .pt-xs--310 {
    padding-top: -310px;
  }

  .pt-xs--315 {
    padding-top: -315px;
  }

  .pt-xs--320 {
    padding-top: -320px;
  }

  .pt-xs--325 {
    padding-top: -325px;
  }

  .pb-xs--5 {
    padding-bottom: -5px;
  }

  .pb-xs--10 {
    padding-bottom: -10px;
  }

  .pb-xs--15 {
    padding-bottom: -15px;
  }

  .pb-xs--20 {
    padding-bottom: -20px;
  }

  .pb-xs--25 {
    padding-bottom: -25px;
  }

  .pb-xs--30 {
    padding-bottom: -30px;
  }

  .pb-xs--35 {
    padding-bottom: -35px;
  }

  .pb-xs--40 {
    padding-bottom: -40px;
  }

  .pb-xs--45 {
    padding-bottom: -45px;
  }

  .pb-xs--50 {
    padding-bottom: -50px;
  }

  .pb-xs--55 {
    padding-bottom: -55px;
  }

  .pb-xs--60 {
    padding-bottom: -60px;
  }

  .pb-xs--65 {
    padding-bottom: -65px;
  }

  .pb-xs--70 {
    padding-bottom: -70px;
  }

  .pb-xs--75 {
    padding-bottom: -75px;
  }

  .pb-xs--80 {
    padding-bottom: -80px;
  }

  .pb-xs--85 {
    padding-bottom: -85px;
  }

  .pb-xs--90 {
    padding-bottom: -90px;
  }

  .pb-xs--95 {
    padding-bottom: -95px;
  }

  .pb-xs--100 {
    padding-bottom: -100px;
  }

  .pb-xs--105 {
    padding-bottom: -105px;
  }

  .pb-xs--110 {
    padding-bottom: -110px;
  }

  .pb-xs--115 {
    padding-bottom: -115px;
  }

  .pb-xs--120 {
    padding-bottom: -120px;
  }

  .pb-xs--125 {
    padding-bottom: -125px;
  }

  .pb-xs--130 {
    padding-bottom: -130px;
  }

  .pb-xs--135 {
    padding-bottom: -135px;
  }

  .pb-xs--140 {
    padding-bottom: -140px;
  }

  .pb-xs--145 {
    padding-bottom: -145px;
  }

  .pb-xs--150 {
    padding-bottom: -150px;
  }

  .pb-xs--155 {
    padding-bottom: -155px;
  }

  .pb-xs--160 {
    padding-bottom: -160px;
  }

  .pb-xs--165 {
    padding-bottom: -165px;
  }

  .pb-xs--170 {
    padding-bottom: -170px;
  }

  .pb-xs--175 {
    padding-bottom: -175px;
  }

  .pb-xs--180 {
    padding-bottom: -180px;
  }

  .pb-xs--185 {
    padding-bottom: -185px;
  }

  .pb-xs--190 {
    padding-bottom: -190px;
  }

  .pb-xs--195 {
    padding-bottom: -195px;
  }

  .pb-xs--200 {
    padding-bottom: -200px;
  }

  .pb-xs--205 {
    padding-bottom: -205px;
  }

  .pb-xs--210 {
    padding-bottom: -210px;
  }

  .pb-xs--215 {
    padding-bottom: -215px;
  }

  .pb-xs--220 {
    padding-bottom: -220px;
  }

  .pb-xs--225 {
    padding-bottom: -225px;
  }

  .pb-xs--230 {
    padding-bottom: -230px;
  }

  .pb-xs--235 {
    padding-bottom: -235px;
  }

  .pb-xs--240 {
    padding-bottom: -240px;
  }

  .pb-xs--245 {
    padding-bottom: -245px;
  }

  .pb-xs--250 {
    padding-bottom: -250px;
  }

  .pb-xs--255 {
    padding-bottom: -255px;
  }

  .pb-xs--260 {
    padding-bottom: -260px;
  }

  .pb-xs--265 {
    padding-bottom: -265px;
  }

  .pb-xs--270 {
    padding-bottom: -270px;
  }

  .pb-xs--275 {
    padding-bottom: -275px;
  }

  .pb-xs--280 {
    padding-bottom: -280px;
  }

  .pb-xs--285 {
    padding-bottom: -285px;
  }

  .pb-xs--290 {
    padding-bottom: -290px;
  }

  .pb-xs--295 {
    padding-bottom: -295px;
  }

  .pb-xs--300 {
    padding-bottom: -300px;
  }

  .pb-xs--305 {
    padding-bottom: -305px;
  }

  .pb-xs--310 {
    padding-bottom: -310px;
  }

  .pb-xs--315 {
    padding-bottom: -315px;
  }

  .pb-xs--320 {
    padding-bottom: -320px;
  }

  .pb-xs--325 {
    padding-bottom: -325px;
  }

  .pt-xs-0 {
    padding-top: 0;
  }

  .pb-xs-0 {
    padding-bottom: 0;
  }

  .pl-xs-0 {
    padding-left: 0;
  }

  .pr-xs-0 {
    padding-right: 0;
  }
}

.devider {
  display: inline-block;
  width: 50px;
  height: 2px;
  background: #04000b;
  position: relative;
  z-index: 1;
  left: 10px;
}
.devider:after {
  position: absolute;
  left: -15px;
  top: 0;
  content: "";
  height: 2px;
  width: 10px;
  background: #04000b;
}

.devider1 {
  display: inline-block;
  width: 50px;
  height: 2px;
  background: #fff;
  position: relative;
  z-index: 1;
  left: 10px;
}
.devider1:after {
  position: absolute;
  left: -15px;
  top: 0;
  content: "";
  height: 2px;
  width: 10px;
  background: #fff;
}