
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.primaryFont {
  font-family: "DM Sans", sans-serif;
}

.secondaryFont {
  font-family: "Montserrat", sans-serif;
}

body {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #43435C;
  letter-spacing: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  color: #00000F;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 15px;
}

a {
  text-decoration: none;
  display: inline-block;
  transition: all ease 350ms;
  -moz-transition: all ease 350ms;
  -webkit-transition: all ease 350ms;
}

a:hover {
  color: #115da9;
  text-decoration: none;
}

button,
input[type=submit] {
  transition: all ease 350ms;
  -moz-transition: all ease 350ms;
  -webkit-transition: all ease 350ms;
}

a:focus,
button:focus,
input[type=submit]:focus {
  outline: 0;
  text-decoration: none;
}

img {
  max-width: 100%;
  width: auto;
}

@media (min-width: 1345px) {
  .container {
    max-width: 1344px;
  }
}
.list-unstyled {
  padding-left: 0;
  list-style: none;
}

/*-- Tabs --*/
.tabs-box .tabs-content .tab:not(.active-tab) {
  display: none;
}

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

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

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

@keyframes topToBottom {
  0%, 100% {
    transform: translateY(0);
  }
  25%, 75% {
    transform: translateY(8px);
  }
  50% {
    transform: translateY(16px);
  }
}
@keyframes leftToRIght {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(20px);
  }
  100% {
    transform: translateX(0px);
  }
}
@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

/*--------------------------------------------------------------
# Form 01
--------------------------------------------------------------*/
.form-one__group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
  grid-row-gap: 24px;
  margin: 0;
}
@media (max-width: 767px) {
  .form-one__group {
    grid-template-columns: 1fr;
  }
}

.form-one__control {
  border: none;
  width: auto;
  height: auto;
  border-radius: 0;
  padding: 0;
  position: relative;
}

.form-one .bootstrap-select > .dropdown-toggle,
.form-one input[type=text],
.form-one input[type=email],
.form-one textarea {
  display: block;
  width: 100%;
  height: 60px;
  background-color: transparent;
  color: #43435C;
  font-size: 16px;
  font-weight: 400;
  background: #FFFFFF;
  border: none;
  border: unset;
  outline: unset;
  padding: 0 24px;
  border-radius: 0px;
}

.form-one__control--full {
  grid-column-start: 1;
  grid-column-end: -1;
}

.form-one textarea {
  height: 158px;
  padding-top: 17px;
}

.form-one button {
  margin-top: 6px;
}

.contact-agree-checkbox {
  margin: 0;
  padding: 0;
  position: relative;
  top: 1px;
}
.contact-agree-checkbox input[type=checkbox] {
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
  display: none;
  position: relative;
}
.contact-agree-checkbox input[type=checkbox]:checked + span:before {
  content: "\f00c";
  border-color: #115da9;
  color: #115da9;
}
.contact-agree-checkbox span {
  font-weight: 500;
  cursor: pointer;
  position: relative;
  padding: 0 0 0 40px;
  margin: 0;
  color: #115da9;
  font-size: 16px;
  line-height: 26px;
}
.contact-agree-checkbox span a {
  color: #00000F;
  text-decoration: underline;
}
.contact-agree-checkbox span a:hover {
  color: #115da9;
}
.contact-agree-checkbox span::before {
  content: "";
  font-family: "fontawesome";
  position: absolute;
  left: 0;
  top: -2px;
  background-color: transparent;
  border: 2px solid rgba(0, 0, 15, 0.2);
  height: 25px;
  width: 25px;
  line-height: 14px;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  border-radius: 3px;
  padding: 4px 0;
}

.preloader {
  position: fixed;
  z-index: 999999;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #00000F;
}

.spinner-eff {
  width: 76px;
  height: 76px;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  margin: auto;
  z-index: 2;
  border-radius: 50%;
  overflow: hidden;
}

.spinner-eff:before,
.spinner-eff:after {
  content: "";
  display: block;
}

.spinner-eff .spinner-bar:before,
.spinner-eff .spinner-bar:after {
  content: "";
  display: block;
}

/* spinner-1 styles */
@-webkit-keyframes rotation-top {
  0% {
    transform: rotate(0deg);
    opacity: 0.5;
  }
  20% {
    transform: rotate(360deg);
    opacity: 1;
  }
  80% {
    transform: rotate(360deg);
    opacity: 1;
  }
  100% {
    transform: rotate(360deg);
    opacity: 0.5;
  }
}
@keyframes rotation-top {
  0% {
    transform: rotate(0deg);
    opacity: 0.5;
  }
  20% {
    transform: rotate(360deg);
    opacity: 1;
  }
  80% {
    transform: rotate(360deg);
    opacity: 1;
  }
  100% {
    transform: rotate(360deg);
    opacity: 0.5;
  }
}
@-webkit-keyframes rotation-right {
  0% {
    transform: rotate(0deg);
    opacity: 0.5;
  }
  20% {
    transform: rotate(0deg);
    opacity: 0.5;
  }
  40% {
    transform: rotate(360deg);
    opacity: 1;
  }
  80% {
    transform: rotate(360deg);
    opacity: 1;
  }
  100% {
    transform: rotate(360deg);
    opacity: 0.5;
  }
}
@keyframes rotation-right {
  0% {
    transform: rotate(0deg);
    opacity: 0.5;
  }
  20% {
    transform: rotate(0deg);
    opacity: 0.5;
  }
  40% {
    transform: rotate(360deg);
    opacity: 1;
  }
  80% {
    transform: rotate(360deg);
    opacity: 1;
  }
  100% {
    transform: rotate(360deg);
    opacity: 0.5;
  }
}
@-webkit-keyframes rotation-bottom {
  0% {
    transform: rotate(0deg);
    opacity: 0.5;
  }
  40% {
    transform: rotate(0deg);
    opacity: 0.5;
  }
  60% {
    transform: rotate(360deg);
    opacity: 1;
  }
  80% {
    transform: rotate(360deg);
    opacity: 1;
  }
  100% {
    transform: rotate(360deg);
    opacity: 0.5;
  }
}
@keyframes rotation-bottom {
  0% {
    transform: rotate(0deg);
    opacity: 0.5;
  }
  40% {
    transform: rotate(0deg);
    opacity: 0.5;
  }
  60% {
    transform: rotate(360deg);
    opacity: 1;
  }
  80% {
    transform: rotate(360deg);
    opacity: 1;
  }
  100% {
    transform: rotate(360deg);
    opacity: 0.5;
  }
}
@-webkit-keyframes rotation-left {
  0% {
    transform: rotate(0deg);
    opacity: 0.5;
  }
  60% {
    transform: rotate(0deg);
    opacity: 0.5;
  }
  80% {
    transform: rotate(360deg);
    opacity: 1;
  }
  100% {
    transform: rotate(360deg);
    opacity: 0.5;
  }
}
@keyframes rotation-left {
  0% {
    transform: rotate(0deg);
    opacity: 0.5;
  }
  60% {
    transform: rotate(0deg);
    opacity: 0.5;
  }
  80% {
    transform: rotate(360deg);
    opacity: 1;
  }
  100% {
    transform: rotate(360deg);
    opacity: 0.5;
  }
}
.spinner-eff.spinner-eff-1 .bar {
  width: 0;
  height: 0;
  border: 38px solid transparent;
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(0deg);
  opacity: 0.5;
  z-index: -2;
}

.spinner-eff.spinner-eff-1 .bar-top {
  border-top: 38px solid #115da9;
  -webkit-animation: rotation-top 3.6s linear 0s infinite;
  animation: rotation-top 3.6s linear 0s infinite;
}

.spinner-eff.spinner-eff-1 .bar-right {
  border-right: 38px solid #115da9;
  -webkit-animation: rotation-right 3.6s linear 0s infinite;
  animation: rotation-right 3.6s linear 0s infinite;
}

.spinner-eff.spinner-eff-1 .bar-bottom {
  border-bottom: 38px solid #115da9;
  -webkit-animation: rotation-bottom 3.6s linear 0s infinite;
  animation: rotation-bottom 3.6s linear 0s infinite;
}

.spinner-eff.spinner-eff-1 .bar-left {
  border-left: 38px solid #115da9;
  -webkit-animation: rotation-left 3.6s linear 0s infinite;
  animation: rotation-left 3.6s linear 0s infinite;
}

/*--------------------------------------------------------------
# Common 
--------------------------------------------------------------*/
.background-black {
  background-color: #00000F;
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
}

.ripcar-btn {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  column-gap: 16px;
  border: none;
  outline: none !important;
  background-color: #115da9;
  color: #FFFFFF;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
  height: 62px;
  border-radius: 0;
  padding: 0 27px;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  text-transform: capitalize;
  position: relative;
  overflow: hidden;
  text-align: center;
  z-index: 2;
}
.ripcar-btn i {
  font-size: 22px;
  color: inherit;
  position: relative;
}
.ripcar-btn:hover {
  background: #00000F;
  color: #FFFFFF;
}
.ripcar-btn::after {
  content: "";
  background: #00000F;
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  clip-path: circle(0% at 50% 50%);
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 0.8s;
  z-index: -1;
}
.ripcar-btn:hover:after {
  clip-path: circle(100% at 50% 50%);
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 4s;
}

.ripcar_link_btn {
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  color: #FFFFFF;
  font-weight: 700;
  line-height: 26px;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  display: inline-flex;
  justify-content: start;
  align-items: center;
  column-gap: 24px;
}

.scallHover__btn {
  position: relative;
}
.scallHover__btn::after {
  background: #000 none repeat scroll 0 0;
  bottom: 0;
  content: "";
  height: 101%;
  left: 0;
  position: absolute;
  transform: scale(0);
  -moz-transform: scale(0);
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transition: all 0.2s linear 0s;
  -moz-transition: all 0.2s linear 0s;
  -webkit-transition: all 0.2s linear 0s;
  -ms-transition: all 0.2s linear 0s;
  -o-transition: all 0.2s linear 0s;
  width: 100%;
  z-index: -1;
}
.scallHover__btn:hover::after {
  transform: scale(1);
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}

.leftToRight_hover {
  position: relative;
  z-index: 2;
}
.leftToRight_hover::after {
  content: "";
  position: absolute;
  right: 0;
  left: auto;
  width: 0;
  height: 100%;
  background: #115da9;
  transition: 0.35s ease-in-out;
  -webkit-transition: 0.35s ease-in-out;
  -moz-transition: 0.35s ease-in-out;
  z-index: -1;
  border-radius: inherit;
}
.leftToRight_hover:hover::after {
  right: auto;
  left: 0;
  width: 100%;
}

.sec-title {
  position: relative;
}
.sec-title__tagline {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #115da9;
  margin-bottom: 2px;
}
.sec-title__tagline__left {
  position: relative;
  bottom: 4px;
  display: inline-block;
  width: 32px;
  height: 1px;
  background-color: #115da9;
  margin-right: 10px;
}
.sec-title__tagline__right {
  position: relative;
  bottom: 4px;
  display: inline-block;
  width: 32px;
  height: 1px;
  background-color: #115da9;
  margin-left: 10px;
}
.sec-title__title {
  font-size: 32px;
  line-height: 42px;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .sec-title__title {
    font-size: 28px;
    line-height: 38px;
  }
  .sec-title__title br {
    display: none;
  }
}

.preloader {
  position: fixed;
  background-color: #00000F;
  background-position: center center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-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-repeat: no-repeat;
  background-position: center center;
  background-size: 60px auto;
  width: 100%;
  height: 100%;
}

/* scroll to top */
.scroll-to-top {
  display: flex;
  align-items: center;
  width: auto;
  height: 35px;
  background: transparent;
  position: fixed;
  bottom: 60px;
  right: -12px;
  z-index: 99;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  color: #FFFFFF;
  width: 50px;
  height: 50px;
  background-color: rgba(67, 67, 92, 0.4);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  overflow: hidden;
}
.scroll-to-top:hover {
  background: #115da9;
  color: #FFFFFF;
}
.scroll-to-top__text {
  display: none;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  margin-right: 8px;
}
.scroll-to-top i {
  font-size: 20px;
  -moz-animation: btmToTop 4s linear infinite;
  -webkit-animation: btmToTop 4s linear infinite;
  animation: btmToTop 4s linear infinite;
}
.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  bottom: 50px;
  right: 20px;
}

.ripcar-owl__carousel--basic-nav.owl-carousel .owl-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  column-gap: 20px;
  margin-top: 50px;
}
.ripcar-owl__carousel--basic-nav.owl-carousel .owl-nav button {
  border: none;
  outline: none;
  border-radius: 50%;
  margin: 0;
  padding: 0;
}
.ripcar-owl__carousel--basic-nav.owl-carousel .owl-nav button span {
  border: none;
  outline: none;
  width: 50px;
  height: 50px;
  background-color: #43435C;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #00000F;
  border-radius: 50%;
  font-size: 14px;
  transition: all 500ms ease;
}
.ripcar-owl__carousel--basic-nav.owl-carousel .owl-nav button span:hover {
  background-color: #115da9;
  color: #FFFFFF;
}
.ripcar-owl__carousel--basic-nav.owl-carousel .owl-nav.disabled {
  display: none;
}
.ripcar-owl__carousel--basic-nav.owl-carousel .owl-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 10px;
  margin-top: 50px;
}
.ripcar-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot {
  width: 13px;
  height: 13px;
  display: block;
  border-radius: 0;
  background-color: transparent;
  border: 2px solid rgba(0, 0, 15, 0.3);
  margin: 0;
  transition: all 300ms ease;
}
.ripcar-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot span {
  display: none;
}
.ripcar-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot:hover, .ripcar-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot.active {
  background-color: #00000F;
}
@media (max-width: 767px) {
  .ripcar-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot {
    display: none;
  }
}
.ripcar-owl__carousel--basic-nav.owl-carousel .owl-dots.disabled {
  display: none;
}
.ripcar-owl__carousel--basic-nav.owl-carousel .owl-nav.disabled + .owl-dots {
  margin-top: 50px;
}

.ripcar-owl__carousel--custom-nav.owl-carousel .owl-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  column-gap: 12px;
  margin-top: 50px;
}
.ripcar-owl__carousel--custom-nav.owl-carousel .owl-nav button {
  border: none;
  outline: none;
  border-radius: 0;
  margin: 0;
  padding: 0;
}
.ripcar-owl__carousel--custom-nav.owl-carousel .owl-nav button span {
  border: none;
  outline: none;
  width: 46px;
  height: 40px;
  background-color: #F4F4F4;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #00000F;
  font-size: 16px;
  transition: 0.4s ease-in-out;
  -webkit-transition: 0.4s ease-in-out;
  -moz-transition: 0.4s ease-in-out;
  position: relative;
  z-index: 1;
}
.ripcar-owl__carousel--custom-nav.owl-carousel .owl-nav button span:hover {
  color: #FFFFFF;
}
.ripcar-owl__carousel--custom-nav.owl-carousel .owl-nav button span::after {
  content: "";
  position: absolute;
  right: 0;
  left: auto;
  width: 0;
  height: 100%;
  background: #115da9;
  transition: 0.35s ease-in-out;
  -webkit-transition: 0.35s ease-in-out;
  -moz-transition: 0.35s ease-in-out;
  z-index: -1;
  border-radius: inherit;
}
.ripcar-owl__carousel--custom-nav.owl-carousel .owl-nav button span:hover::after {
  right: auto;
  left: 0;
  width: 100%;
}
.ripcar-owl__carousel--custom-nav.owl-carousel .owl-nav.disabled {
  display: none;
}

/* -- Loader Animation--  */
[data-loaderAnim] {
  -webkit-animation: var(--animn, none) var(--animdur, 0s) var(--animtf, linear) var(--animic, infinite) var(--animps, running);
  animation: var(--animn, none) var(--animdur, 0s) var(--animtf, linear) var(--animic, infinite) var(--animps, running);
}

@-webkit-keyframes loaderAnim {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
@keyframes loaderAnim {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
@-webkit-keyframes loaderAnim02 {
  from {
    transform: translateX(0%);
    -webkit-transform: translateX(0);
  }
  to {
    transform: translateX(100%);
    -webkit-transform: translateX(100%);
  }
}
@keyframes loaderAnim02 {
  from {
    transform: translateX(0%);
    -webkit-transform: translateX(0);
  }
  to {
    transform: translateX(100%);
    -webkit-transform: translateX(100%);
  }
}
@keyframes welAnim {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes btmToTop {
  from {
    -moz-transform: translateY(160%);
    -webkit-transform: translateY(160%);
    transform: translateY(160%);
  }
  to {
    -moz-transform: translateY(-180%);
    -webkit-transform: translateY(-180%);
    transform: translateY(-180%);
  }
}
/*--------------------------------------------------------------
# Others
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Header 01 
--------------------------------------------------------------*/
.sticky-header--cloned {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  top: 0;
  background-color: #00000F;
  transform: translateY(-100%);
  box-shadow: 0px 3px 18px rgba(255, 255, 255, 0.07);
  transition: 0.6s cubic-bezier(0.24, 0.74, 0.58, 1);
  visibility: hidden;
  transition: transform 500ms ease, visibility 500ms ease;
}
.sticky-header--cloned.active {
  transform: translateY(0%);
  visibility: visible;
  position: fixed;
}

.main-header {
  position: relative;
  width: 100%;
  z-index: 9999;
  background: #00000F;
  border-bottom: 1px solid rgba(67, 67, 92, 0.3);
}
@media (max-width: 991px) {
  .main-header > .container {
    max-width: 100%;
  }
}
.main-header__inner {
  display: flex;
  align-items: center;
  position: relative;
  padding: 0;
}
.main-header__logo {
  display: flex;
  width: auto;
  align-items: center;
  position: relative;
  z-index: 9;
  padding: 33px 40px 32px 0;
  border-right: 1px solid rgba(67, 67, 92, 0.3);
}
@media (max-width: 767px) {
  .main-header__logo {
    padding: 36px 40px 34px 0;
  }
}
@media (max-width: 575px) {
  .main-header__logo {
    padding: 20px 20px 20px 0;
    max-width: 189px;
  }
}
.main-header .main-menu {
  display: flex;
  width: auto;
  align-items: center;
  position: relative;
  z-index: 9;
}
.main-header .main-header__nav {
  margin-left: 60px;
  margin-right: auto;
}
.main-header__right {
  display: flex;
  justify-content: end;
  align-items: center;
  flex-direction: row;
  padding: 0;
}
.main-header__cart, .main-header__search {
  position: relative;
  padding: 36px 32px 35px;
  border-right: 1px solid rgba(67, 67, 92, 0.3);
}
@media (min-width: 1200px) and (max-width: 1344px) {
  .main-header__cart, .main-header__search {
    padding: 36px 25px 35px;
  }
}
@media (max-width: 991px) {
  .main-header__cart, .main-header__search {
    padding: 36px 25px 35px;
  }
}
@media (max-width: 575px) {
  .main-header__cart, .main-header__search {
    display: none;
  }
}
.main-header__cart a, .main-header__search a {
  font-size: 22px;
  color: #FFFFFF;
  line-height: 22px;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
}
.main-header__cart a:hover, .main-header__search a:hover {
  color: #115da9;
}
.main-header__cart > a {
  position: relative;
  display: inline-block;
}
.main-header__cart > a:hover .main-header__cart__count {
  color: #115da9;
  background-color: #FFFFFF;
}
.main-header__cart__count {
  width: 25px;
  height: 25px;
  background-color: #115da9;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 12px;
  line-height: 16px;
  color: #FFFFFF;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  position: absolute;
  right: -17px;
  top: -12px;
}
.main-header__toggler {
  padding: 36px 32px 35px;
  position: relative;
  border-right: 1px solid rgba(67, 67, 92, 0.3);
}
@media (min-width: 1200px) and (max-width: 1344px) {
  .main-header__toggler {
    padding: 36px 25px 35px;
  }
}
@media (max-width: 991px) {
  .main-header__toggler {
    padding: 41px 25px 40px;
  }
}
@media (max-width: 991px) {
  .main-header__toggler {
    border: unset;
  }
}
@media (max-width: 575px) {
  .main-header__toggler {
    padding: 26px 22px 26px;
  }
}
.main-header__toggler .main-header__toggler__wrapper {
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: column;
  row-gap: 5px;
  cursor: pointer;
}
.main-header__toggler .main-header__toggler__wrapper span {
  width: 19px;
  height: 3px;
  border-radius: 30px;
  background: #FFFFFF;
  display: inline-block;
  position: relative;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
}
.main-header__toggler .main-header__toggler__wrapper span:nth-child(2) {
  left: 5px;
}
.main-header__toggler .main-header__toggler__wrapper:hover span {
  left: 3px;
}
.main-header__toggler .main-header__toggler__wrapper:hover span:nth-child(2) {
  left: -2px;
}

.main-menu {
  position: relative;
}
.main-menu .main-menu__list > li {
  padding: 36px 0;
}
.main-menu .main-menu__list li ul li {
  flex: 1 1 100%;
  width: 100%;
  position: relative;
}
.main-menu .main-menu__list > li + li {
  margin-left: 29px;
}
.main-menu .main-menu__list > li.current > a, .main-menu .main-menu__list > li:hover > a {
  color: #115da9;
  text-shadow: 0 0 0.5px currentColor;
}
.main-menu .main-menu__list,
.main-menu .main-menu__list ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  align-items: center;
  display: none;
}
@media (min-width: 1200px) {
  .main-menu .main-menu__list,
  .main-menu .main-menu__list ul {
    display: flex !important;
  }
}
.main-menu .main-menu__list > li,
.main-menu .main-menu__list ul > li {
  position: relative;
}
.main-menu .main-menu__list > li > a,
.main-menu .main-menu__list ul > li > a {
  font-size: 16px;
  line-height: 24px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  color: #EFEFFB;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  position: relative;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
}
.main-menu .main-menu__list > li.dropdown,
.main-menu .main-menu__list ul > li.dropdown {
  position: relative;
}
.main-menu .main-menu__list > li.dropdown > a::after,
.main-menu .main-menu__list ul > li.dropdown > a::after {
  position: relative;
  right: 0;
  top: 0;
  border-radius: 0;
  font-size: 10px;
  font-weight: 600;
  font-family: Ripcar !important;
  content: "\e92d";
  color: inherit;
  line-height: 10px;
  margin-left: 3px;
}
.main-menu .main-menu__list li ul,
.main-menu .main-menu__list ul li ul {
  position: absolute;
  top: 100%;
  left: -25px;
  min-width: 270px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  transform-origin: top center;
  transform: scaleY(0) translateZ(100px);
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
  z-index: 99;
  background-color: #FFFFFF;
  padding: 15px 20px 11px;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}
.main-menu .main-menu__list li:hover > ul,
.main-menu .main-menu__list ul li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1) translateZ(0px);
}
.main-menu .main-menu__list li ul li a,
.main-menu .main-menu__list ul li ul li a {
  font-size: 14px;
  line-height: 26px;
  color: #00000F;
  font-weight: 500;
  display: flex;
  padding: 8px 20px;
  transition: 400ms;
  margin-bottom: 4px;
}
.main-menu .main-menu__list li ul > li.current > a, .main-menu .main-menu__list li ul li:hover > a,
.main-menu .main-menu__list ul li ul > li.current > a,
.main-menu .main-menu__list ul li ul li:hover > a {
  background-color: rgba(67, 67, 92, 0.1);
  color: #00000F;
}
.main-menu .main-menu__list li ul > li.current > a::after, .main-menu .main-menu__list li ul li:hover > a::after,
.main-menu .main-menu__list ul li ul > li.current > a::after,
.main-menu .main-menu__list ul li ul li:hover > a::after {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}
.main-menu .main-menu__list li ul ul,
.main-menu .main-menu__list ul li ul ul {
  top: 0;
  left: calc(100% + 20px);
  opacity: 0;
  visibility: hidden;
}

.mobile-nav__btn {
  width: 24px;
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  cursor: pointer;
  z-index: 3;
}
@media (min-width: 1200px) {
  .mobile-nav__btn {
    display: none;
  }
}
.mobile-nav__btn span {
  width: 100%;
  height: 2px;
  background-color: #00000F;
}

/*--------------------------------------------------------------
# Header 02
--------------------------------------------------------------*/
.main-header-two.sticky-header--cloned {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  top: 0;
  background-color: #00000F;
  transform: translateY(-100%);
  box-shadow: 0px 3px 18px rgba(255, 255, 255, 0.07);
  transition: 0.6s cubic-bezier(0.24, 0.74, 0.58, 1);
  visibility: hidden;
  transition: transform 500ms ease, visibility 500ms ease;
}
.main-header-two.sticky-header--cloned.active {
  transform: translateY(0%);
  visibility: visible;
  position: fixed;
}
.main-header-two.sticky-header--cloned .topbar-one__inner {
  display: none;
}
.main-header-two.sticky-header--cloned .main-header-two__logo {
  padding: 45px 28px 44px 23px;
}
@media (max-width: 1199px) {
  .main-header-two.sticky-header--cloned .main-header-two__logo {
    padding: 21px 28px 21px 23px;
  }
}
@media (max-width: 767px) {
  .main-header-two.sticky-header--cloned .main-header-two__logo {
    padding: 18px 12px 18px 12px;
    max-width: 170px;
    width: 100%;
  }
}

.main-header-two {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9995;
  background: rgba(0, 0, 15, 0.8);
  backdrop-filter: blur(6px);
}
@media (max-width: 1199px) {
  .main-header-two .container {
    max-width: 100% !important;
  }
}
.main-header-two__inner {
  display: flex;
  align-items: center;
  position: relative;
  padding: 0;
}
.main-header-two__logo {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 9;
  padding: 80px 28px 68px 23px;
  background: #115da9;
  min-width: 224px;
  width: auto;
}
@media (max-width: 1199px) {
  .main-header-two__logo {
    padding: 49px 28px 38px 23px;
  }
}
@media (max-width: 767px) {
  .main-header-two__logo {
    padding: 46px 10px 36px 10px;
    min-width: 150px;
  }
}
.main-header-two__wrapp {
  width: 100%;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  column-gap: 0;
  row-gap: 0;
  flex-wrap: nowrap;
}
.main-header-two .topbar-one__inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  width: 100%;
  padding-left: 61px;
  border-bottom: 1px solid rgba(67, 67, 92, 0.2);
}
@media (max-width: 1399px) {
  .main-header-two .topbar-one__inner {
    padding-left: 20px;
  }
}
@media (max-width: 767px) {
  .main-header-two .topbar-one__inner {
    padding-top: 10px;
    padding-bottom: 8px;
  }
}
.main-header-two .topbar-one__info {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
  margin: 0;
}
.main-header-two .topbar-one__info li {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
  column-gap: 10px;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  padding: 16px 30px;
  border-right: 1px solid rgba(67, 67, 92, 0.2);
}
@media (max-width: 1199px) {
  .main-header-two .topbar-one__info li {
    font-size: 14px;
    line-height: 24px;
    padding: 10px 15px;
  }
}
.main-header-two .topbar-one__info li:first-child {
  padding-left: 0;
}
.main-header-two .topbar-one__info li:last-child {
  border-radius: 0;
}
.main-header-two .topbar-one__info li span {
  display: inline-block;
}
.main-header-two .topbar-one__info li a {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}
.main-header-two .topbar-one__info li a:hover {
  color: #115da9;
}
.main-header-two .topbar-one__info li i {
  color: #115da9;
}
@media (max-width: 991px) {
  .main-header-two .topbar-one__info li:nth-last-of-type(1), .main-header-two .topbar-one__info li:nth-last-of-type(2) {
    display: none;
  }
}
@media (max-width: 767px) {
  .main-header-two .topbar-one__info li {
    display: none;
  }
}
.main-header-two .topbar-one__social {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
  margin: 0;
  column-gap: 30px;
}
@media (max-width: 1199px) {
  .main-header-two .topbar-one__social {
    column-gap: 20px;
  }
}
.main-header-two .topbar-one__social li {
  display: flex;
  justify-content: end;
  align-items: center;
  flex-direction: row;
  font-size: 19px;
  color: rgba(255, 255, 255, 0.4);
}
.main-header-two .topbar-one__social li a {
  color: inherit;
  font-size: inherit;
}
.main-header-two .topbar-one__social li a:hover {
  color: #115da9;
}
.main-header-two__nav_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  width: 100%;
}
@media (max-width: 1199px) {
  .main-header-two__nav_inner {
    padding: 15px 0;
  }
}
@media (max-width: 767px) {
  .main-header-two__nav_inner {
    padding: 10px 0;
  }
}
.main-header-two__nav_inner .mobile-nav__btn__wrap {
  padding: 13px 20px 12px;
}
@media (max-width: 767px) {
  .main-header-two__nav_inner .mobile-nav__btn__wrap {
    padding: 13px 12px 12px;
  }
}
.main-header-two .main-menu-two {
  display: flex;
  width: auto;
  align-items: center;
  position: relative;
  z-index: 9;
}
.main-header-two .main-header-two__nav {
  margin-left: 61px;
  margin-right: auto;
}
@media (max-width: 1399px) {
  .main-header-two .main-header-two__nav {
    margin-left: 20px;
  }
}
.main-header-two__right {
  display: flex;
  justify-content: end;
  align-items: center;
  flex-direction: row;
  padding: 0;
}
.main-header-two__cart, .main-header-two__search {
  position: relative;
  padding: 7px 20px;
  border-right: 1px solid rgba(67, 67, 92, 0.3);
}
.main-header-two__cart a, .main-header-two__search a {
  font-size: 22px;
  color: #FFFFFF;
  line-height: 22px;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
}
.main-header-two__cart a:hover, .main-header-two__search a:hover {
  color: #115da9;
}
.main-header-two__search {
  border: 0;
  padding-right: 41px;
}
@media (max-width: 1199px) {
  .main-header-two__search {
    padding-right: 20px;
  }
}
@media (max-width: 767px) {
  .main-header-two__search {
    padding-right: 12px;
    padding: 7px 12px;
  }
}
.main-header-two__cart > a {
  position: relative;
  display: inline-block;
}
@media (max-width: 767px) {
  .main-header-two__cart {
    padding: 7px 12px;
  }
}
.main-header-two__cart > a:hover .main-header__cart__count {
  color: #115da9;
  background-color: #FFFFFF;
}
.main-header-two__contact {
  padding: 0 29px;
  column-gap: 15px;
}
@media (max-width: 1199px) {
  .main-header-two__contact {
    display: none;
  }
}
.main-header-two__contact::after {
  background: #FFFFFF;
}
.main-header-two__contact:hover {
  color: #00000F;
  background: #FFFFFF;
}
.main-header-two__cart__count {
  width: 25px;
  height: 25px;
  background-color: #115da9;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 12px;
  line-height: 16px;
  color: #FFFFFF;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  position: absolute;
  right: -17px;
  top: -12px;
}
.main-header-two__toggler {
  padding: 36px 32px 35px;
  position: relative;
  border-right: 1px solid rgba(67, 67, 92, 0.3);
}
.main-header-two__toggler .main-header-two__toggler__wrapper {
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: column;
  row-gap: 5px;
  cursor: pointer;
}
.main-header-two__toggler .main-header-two__toggler__wrapper span {
  width: 19px;
  height: 3px;
  border-radius: 30px;
  background: #FFFFFF;
  display: inline-block;
  position: relative;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
}
.main-header-two__toggler .main-header-two__toggler__wrapper span:nth-child(2) {
  left: 5px;
}
.main-header-two__toggler .main-header-two__toggler__wrapper:hover span {
  left: 3px;
}
.main-header-two__toggler .main-header-two__toggler__wrapper:hover span:nth-child(2) {
  left: -2px;
}

.main-menu-two {
  position: relative;
}
.main-menu-two .main-menu-two__list > li {
  padding: 48px 0;
}
.main-menu-two .main-menu-two__list li ul li {
  flex: 1 1 100%;
  width: 100%;
  position: relative;
}
.main-menu-two .main-menu-two__list > li + li {
  margin-left: 29px;
}
.main-menu-two .main-menu-two__list > li.current > a, .main-menu-two .main-menu-two__list > li:hover > a {
  color: #115da9;
  text-shadow: 0 0 0.5px currentColor;
}
.main-menu-two .main-menu-two__list,
.main-menu-two .main-menu-two__list ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  align-items: center;
  display: none;
}
@media (min-width: 1200px) {
  .main-menu-two .main-menu-two__list,
  .main-menu-two .main-menu-two__list ul {
    display: flex !important;
  }
}
.main-menu-two .main-menu-two__list > li,
.main-menu-two .main-menu-two__list ul > li {
  position: relative;
}
.main-menu-two .main-menu-two__list > li > a,
.main-menu-two .main-menu-two__list ul > li > a {
  font-size: 16px;
  line-height: 24px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  color: #EFEFFB;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  position: relative;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
}
.main-menu-two .main-menu-two__list > li.dropdown,
.main-menu-two .main-menu-two__list ul > li.dropdown {
  position: relative;
}
.main-menu-two .main-menu-two__list > li.dropdown > a::after,
.main-menu-two .main-menu-two__list ul > li.dropdown > a::after {
  position: relative;
  right: 0;
  top: 0;
  border-radius: 0;
  font-size: 10px;
  font-weight: 600;
  font-family: Ripcar !important;
  content: "\e92d";
  color: inherit;
  line-height: 10px;
  margin-left: 3px;
}
.main-menu-two .main-menu-two__list li > ul,
.main-menu-two .main-menu-two__list ul li > ul {
  position: absolute;
  top: 100%;
  left: -25px;
  min-width: 270px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  transform-origin: top center;
  transform: scaleY(0) translateZ(100px);
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
  z-index: 99;
  color: #FFFFFF;
  background-color: #00000F;
  box-shadow: 0px 10px 60px 0px RGBA(var(--tolak-white-rgb, 255, 255, 255), 0.07);
  padding: 15px 20px 11px;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}
.main-menu-two .main-menu-two__list li:hover ul,
.main-menu-two .main-menu-two__list ul li:hover ul {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1) translateZ(0px);
}
.main-menu-two .main-menu-two__list li ul li a,
.main-menu-two .main-menu-two__list ul li ul li a {
  font-size: 14px;
  line-height: 26px;
  color: #FFFFFF;
  font-weight: 500;
  display: flex;
  padding: 8px 20px;
  transition: 400ms;
  margin-bottom: 4px;
}
.main-menu-two .main-menu-two__list li ul > li.current > a, .main-menu-two .main-menu-two__list li ul li:hover > a,
.main-menu-two .main-menu-two__list ul li ul > li.current > a,
.main-menu-two .main-menu-two__list ul li ul li:hover > a {
  background-color: rgba(67, 67, 92, 0.3);
  color: #115da9;
}
.main-menu-two .main-menu-two__list li ul > li.current > a::after, .main-menu-two .main-menu-two__list li ul li:hover > a::after,
.main-menu-two .main-menu-two__list ul li ul > li.current > a::after,
.main-menu-two .main-menu-two__list ul li ul li:hover > a::after {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}
.main-menu-two .main-menu-two__list li ul ul,
.main-menu-two .main-menu-two__list ul li ul ul {
  top: 0;
  left: calc(100% + 20px);
  opacity: 0;
  visibility: hidden;
}

/*--------------------------------------------------------------
# Header 03
--------------------------------------------------------------*/
.main-header-three.sticky-header--cloned {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  top: 0;
  background-color: #00000F;
  transform: translateY(-100%);
  box-shadow: 0px 3px 18px rgba(255, 255, 255, 0.07);
  transition: 0.6s cubic-bezier(0.24, 0.74, 0.58, 1);
  visibility: hidden;
  transition: transform 500ms ease, visibility 500ms ease;
}
.main-header-three.sticky-header--cloned.active {
  transform: translateY(0%);
  visibility: visible;
  position: fixed;
}
.main-header-three.sticky-header--cloned .topbar-two__inner {
  display: none;
}
.main-header-three.sticky-header--cloned .main-header-three__logo {
  padding: 25px 28px 24px 23px;
}
.main-header-three.sticky-header--cloned .main-header-three__logo::after {
  height: 100%;
}

.main-header-three {
  position: relative;
  width: 100%;
  z-index: 9999;
  background: transparent;
  backdrop-filter: blur(25px);
}
.main-header-three .mobile-nav__btn__wrap {
  padding: 19px 25px 19px;
}
.main-header-three__inner {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: row;
  position: relative;
  padding: 0;
}
.main-header-three__logo {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 9;
  padding: 73px 50px 32px 0;
  margin-left: -100px;
  margin-right: 123px;
  background: transparent;
  min-width: 224px;
  width: auto;
}
@media (max-width: 1199px) {
  .main-header-three__logo {
    padding: 73px 2px 32px 0;
    margin-left: 0;
    margin-right: 115px;
    min-width: 176px;
  }
}
@media (max-width: 991px) {
  .main-header-three__logo {
    margin-right: 114px;
    min-width: 140px;
    padding: 72px 2px 32px 0;
  }
}
@media (max-width: 767px) {
  .main-header-three__logo {
    margin-right: 52px;
    min-width: 126px;
    padding: 60px 2px 25px 0;
  }
}
.main-header-three__logo::after {
  width: 300%;
  position: absolute;
  content: "";
  right: -103px;
  top: 0;
  height: calc(100% + 42px);
  background: #C2ED08;
  z-index: -1;
  clip-path: polygon(0% 0%, 100% 0, 88.4% 100%, 0 100%);
}
@media (max-width: 767px) {
  .main-header-three__logo::after {
    right: -48px;
    height: calc(100% + 30px);
  }
}
.main-header-three__wrapp {
  width: 100%;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  column-gap: 0;
  row-gap: 0;
  flex-wrap: nowrap;
}
@media (max-width: 767px) {
  .main-header-three__wrapp {
    width: calc(100% - 127px);
  }
}
.main-header-three .topbar-two__inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  width: 100%;
  padding-left: 87px;
  z-index: 2;
  background-color: #FFFFFF;
  z-index: 1;
}
@media (max-width: 1199px) {
  .main-header-three .topbar-two__inner {
    padding: 12px 0;
    padding-left: 40px;
  }
}
.main-header-three .topbar-two__inner::after {
  width: 150%;
  position: absolute;
  content: "";
  left: -40px;
  height: 100%;
  background: #FFFFFF;
  backdrop-filter: blur(25px);
  z-index: -1;
}
.main-header-three .topbar-two__inner::before {
  width: 100%;
  position: absolute;
  content: "";
  left: -100%;
  height: 100%;
  backdrop-filter: blur(25px);
  background: #ABD105;
  backdrop-filter: blur(25px);
  clip-path: polygon(0 0, 98.25% 0, 100% 100%, 0 100%);
}
.main-header-three .topbar-two__info {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
  margin: 0;
}
.main-header-three .topbar-two__info li {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
  column-gap: 10px;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #43435C;
  padding: 15px 30px;
}
.main-header-three .topbar-two__info li:first-child {
  padding-left: 0;
}
.main-header-three .topbar-two__info li:last-child {
  border-radius: 0;
}
.main-header-three .topbar-two__info li span {
  display: inline-block;
}
.main-header-three .topbar-two__info li a {
  color: #00000F;
  font-size: inherit;
  line-height: inherit;
}
.main-header-three .topbar-two__info li a:hover {
  color: #C2ED08;
}
.main-header-three .topbar-two__info li i {
  color: #115da9;
}
@media (max-width: 991px) {
  .main-header-three .topbar-two__info {
    display: none;
  }
}
.main-header-three .topbar-two__social {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
  margin: 0;
  column-gap: 30px;
}
@media (max-width: 991px) {
  .main-header-three .topbar-two__social {
    margin-left: auto;
  }
}
@media (max-width: 767px) {
  .main-header-three .topbar-two__social {
    column-gap: 20px;
  }
}
.main-header-three .topbar-two__social li {
  display: flex;
  justify-content: end;
  align-items: center;
  flex-direction: row;
  font-size: 19px;
  color: rgba(0, 0, 15, 0.4);
}
.main-header-three .topbar-two__social li a {
  color: inherit;
  font-size: inherit;
}
.main-header-three .topbar-two__social li a:hover {
  color: #00000F;
}
.main-header-three__nav_inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  width: 100%;
  background: #00000F;
  backdrop-filter: blur(25px);
  z-index: 1;
}
.main-header-three__nav_inner::after {
  width: 150%;
  position: absolute;
  content: "";
  left: -120px;
  height: 100%;
  background: #00000F;
  backdrop-filter: blur(25px);
  z-index: -1;
}
@media (max-width: 767px) {
  .main-header-three__nav_inner::after {
    width: 250%;
  }
}
@media (max-width: 1199px) {
  .main-header-three__nav_inner {
    padding: 12px 0;
  }
}
@media (max-width: 767px) {
  .main-header-three__nav_inner {
    padding: 3px 0;
  }
}
.main-header-three .main-menu-three {
  display: flex;
  width: auto;
  align-items: center;
  position: relative;
  z-index: 9;
}
.main-header-three .main-header-three__nav {
  margin-left: 87px;
  margin-right: auto;
}
@media (max-width: 767px) {
  .main-header-three .main-header-three__nav {
    display: none;
  }
}
.main-header-three__right {
  display: flex;
  justify-content: end;
  align-items: center;
  flex-direction: row;
  padding: 0;
}
@media (max-width: 767px) {
  .main-header-three__right {
    margin-left: auto;
  }
}
.main-header-three__cart, .main-header-three__search {
  position: relative;
  padding: 7px 20px;
  border-right: 1px solid rgba(67, 67, 92, 0.3);
}
.main-header-three__cart a, .main-header-three__search a {
  font-size: 22px;
  color: #FFFFFF;
  line-height: 22px;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
}
.main-header-three__cart a:hover, .main-header-three__search a:hover {
  color: #C2ED08;
}
.main-header-three__search {
  border: 0;
  padding-right: 48px;
}
@media (max-width: 1199px) {
  .main-header-three__search {
    padding-right: 25px;
  }
}
.main-header-three__cart > a {
  position: relative;
  display: inline-block;
}
.main-header-three__cart > a:hover .main-header__cart__count {
  color: #C2ED08;
  background-color: #FFFFFF;
}
.main-header-three__contact {
  padding: 0 29px;
  column-gap: 15px;
  background: #C2ED08;
  color: #00000F;
  height: 56px;
}
.main-header-three__contact:hover {
  color: #00000F;
  background: #FFFFFF;
}
.main-header-three__contact:hover::after {
  background: #FFFFFF;
}
@media (max-width: 767px) {
  .main-header-three__contact {
    display: none;
  }
}
.main-header-three__cart__count {
  width: 25px;
  height: 25px;
  background-color: #115da9;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 12px;
  line-height: 16px;
  color: #FFFFFF;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  position: absolute;
  right: -17px;
  top: -12px;
}
.main-header-three__toggler {
  padding: 36px 32px 35px;
  position: relative;
  border-right: 1px solid rgba(67, 67, 92, 0.3);
}
.main-header-three__toggler .main-header-three__toggler__wrapper {
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: column;
  row-gap: 5px;
  cursor: pointer;
}
.main-header-three__toggler .main-header-three__toggler__wrapper span {
  width: 19px;
  height: 3px;
  border-radius: 30px;
  background: #FFFFFF;
  display: inline-block;
  position: relative;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
}
.main-header-three__toggler .main-header-three__toggler__wrapper span:nth-child(2) {
  left: 5px;
}
.main-header-three__toggler .main-header-three__toggler__wrapper:hover span {
  left: 3px;
}
.main-header-three__toggler .main-header-three__toggler__wrapper:hover span:nth-child(2) {
  left: -2px;
}

.main-menu-three {
  position: relative;
}
.main-menu-three .main-menu-three__list > li {
  padding: 20px 0;
}
.main-menu-three .main-menu-three__list li ul li {
  flex: 1 1 100%;
  width: 100%;
  position: relative;
}
.main-menu-three .main-menu-three__list > li + li {
  margin-left: 1px;
}
.main-menu-three .main-menu-three__list > li.current > a, .main-menu-three .main-menu-three__list > li:hover > a {
  color: #C2ED08;
  border-color: #C2ED08;
}
.main-menu-three .main-menu-three__list,
.main-menu-three .main-menu-three__list ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  align-items: center;
  display: none;
}
@media (min-width: 1200px) {
  .main-menu-three .main-menu-three__list,
  .main-menu-three .main-menu-three__list ul {
    display: flex !important;
  }
}
.main-menu-three .main-menu-three__list > li,
.main-menu-three .main-menu-three__list ul > li {
  position: relative;
}
.main-menu-three .main-menu-three__list > li > a,
.main-menu-three .main-menu-three__list ul > li > a {
  font-size: 16px;
  line-height: 24px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  color: #EFEFFB;
  font-weight: 700;
  padding: 7px 20px;
  border: 1px solid transparent;
  border-radius: 50px;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  position: relative;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
}
.main-menu-three .main-menu-three__list > li.dropdown,
.main-menu-three .main-menu-three__list ul > li.dropdown {
  position: relative;
}
.main-menu-three .main-menu-three__list > li.dropdown > a::after,
.main-menu-three .main-menu-three__list ul > li.dropdown > a::after {
  position: relative;
  right: 0;
  top: 0;
  border-radius: 0;
  font-size: 10px;
  font-weight: 600;
  font-family: Ripcar !important;
  content: "\e92d";
  color: inherit;
  line-height: 10px;
  margin-left: 3px;
}
.main-menu-three .main-menu-three__list li > ul,
.main-menu-three .main-menu-three__list ul li > ul {
  position: absolute;
  top: 100%;
  left: -25px;
  min-width: 270px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  transform-origin: top center;
  transform: scaleY(0) translateZ(100px);
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
  z-index: 99;
  color: #FFFFFF;
  background-color: #00000F;
  box-shadow: 0px 10px 60px 0px RGBA(var(--tolak-white-rgb, 255, 255, 255), 0.07);
  padding: 15px 20px 11px;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}
.main-menu-three .main-menu-three__list li:hover ul,
.main-menu-three .main-menu-three__list ul li:hover ul {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1) translateZ(0px);
}
.main-menu-three .main-menu-three__list li ul li a,
.main-menu-three .main-menu-three__list ul li ul li a {
  font-size: 14px;
  line-height: 26px;
  color: #FFFFFF;
  font-weight: 500;
  display: flex;
  padding: 8px 20px;
  transition: 400ms;
  margin-bottom: 4px;
}
.main-menu-three .main-menu-three__list li ul > li.current > a, .main-menu-three .main-menu-three__list li ul li:hover > a,
.main-menu-three .main-menu-three__list ul li ul > li.current > a,
.main-menu-three .main-menu-three__list ul li ul li:hover > a {
  color: #C2ED08;
  border-color: #C2ED08;
}
.main-menu-three .main-menu-three__list li ul > li.current > a::after, .main-menu-three .main-menu-three__list li ul li:hover > a::after,
.main-menu-three .main-menu-three__list ul li ul > li.current > a::after,
.main-menu-three .main-menu-three__list ul li ul li:hover > a::after {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}
.main-menu-three .main-menu-three__list li ul ul,
.main-menu-three .main-menu-three__list ul li ul ul {
  top: 0;
  left: calc(100% + 20px);
  opacity: 0;
  visibility: hidden;
}

.mobile-nav__btn {
  width: 22px;
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  cursor: pointer;
  z-index: 3;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
}
@media (max-width: 1199px) {
  .mobile-nav__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    row-gap: 2px;
  }
}
@media (min-width: 1200px) {
  .mobile-nav__btn {
    display: none;
  }
}
.mobile-nav__btn span {
  width: 100%;
  height: 2px;
  background-color: #FFFFFF;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
}
.mobile-nav__btn span:nth-child(2) {
  margin-top: 4px;
  margin-bottom: 4px;
}
.mobile-nav__btn:hover span {
  background-color: #115da9;
}

.mobile-nav__btn__wrap {
  position: relative;
  padding: 41px 32px 41px;
  border-right: 1px solid rgba(67, 67, 92, 0.3);
}
@media (min-width: 1200px) {
  .mobile-nav__btn__wrap {
    display: none;
  }
}
@media (max-width: 991px) {
  .mobile-nav__btn__wrap {
    padding: 41px 25px 41px;
  }
}
@media (max-width: 991px) {
  .mobile-nav__btn__wrap {
    padding: 26px 22px 26px;
  }
}

/*--------------------------------------------------------------
# Header 04
--------------------------------------------------------------*/
.topbar-four {
  position: relative;
  z-index: 2;
  background-color: #00000F;
  padding: 17px 0;
}
@media (max-width: 991px) {
  .topbar-four {
    padding: 10px 0;
  }
}
.topbar-four::after {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 45%;
  content: "";
  background-color: rgba(255, 255, 255, 0.1);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 4% 100%);
  z-index: -1;
}
@media (max-width: 1199px) {
  .topbar-four::after {
    display: none;
  }
}
.topbar-four__wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .topbar-four__wrapper {
    justify-content: center;
  }
}
.topbar-four__text {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}
@media (max-width: 991px) {
  .topbar-four__text {
    display: none;
  }
}
.topbar-four__text a {
  color: rgba(255, 95, 42, 0.7);
}
.topbar-four__text a i {
  font-size: 14px;
  transform: rotate(45deg);
  display: inline-block;
  position: relative;
  top: 2px;
}
.topbar-four__text a:hover {
  color: rgba(255, 255, 255, 0.7);
}
.topbar-four__right {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 29px;
}
@media (max-width: 767px) {
  .topbar-four__right {
    flex-direction: column;
    gap: 8px;
    justify-content: center;
  }
}
.topbar-four__right li {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 14px;
}
.topbar-four__right li i {
  color: rgba(255, 95, 42, 0.7);
  font-size: 18px;
  position: relative;
  top: 1px;
}
.topbar-four__right li a {
  color: inherit;
}
.topbar-four__right li a:hover {
  color: rgba(255, 95, 42, 0.7);
}

.header-middle {
  position: relative;
  background-color: #FFFFFF;
  border-bottom: 1px solid rgba(67, 67, 92, 0.2);
}
.header-middle__wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 0;
}
@media (max-width: 991px) {
  .header-middle__wrapper {
    padding: 15px 0;
  }
}
@media (max-width: 767px) {
  .header-middle__wrapper {
    justify-content: center;
  }
}
.header-middle__logo {
  position: relative;
}
.header-middle__right {
  position: relative;
  display: flex;
  align-items: center;
  gap: 110px;
}
@media (max-width: 991px) {
  .header-middle__right {
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .header-middle__right {
    display: none;
  }
}
.header-middle__info {
  position: relative;
  display: flex;
  align-items: center;
  gap: 25px;
}
.header-middle__info__icon {
  font-size: 40px;
  line-height: 1;
  flex-shrink: 0;
  color: #FF5F2A;
  display: flex;
  transition: all 0.6s ease;
}
.header-middle__info:hover .header-middle__info__icon {
  transform: rotateY(180deg);
}
.header-middle__info__title {
  font-size: 16px;
  margin: 0 0 6px;
}
.header-middle__info__text {
  margin: 0;
}

.main-header-four {
  position: relative;
  z-index: 99;
  background-color: #FFFFFF;
}
.main-header-four__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 1;
}
.main-header-four .main-menu {
  border-right: 1px solid rgba(67, 67, 92, 0.2);
  padding-right: 28px;
}
@media (max-width: 1199px) {
  .main-header-four .main-menu {
    display: none;
  }
}
.main-header-four .main-menu .main-menu__list > li {
  padding: 0;
  margin: 0;
}
.main-header-four .main-menu .main-menu__list > li > a,
.main-header-four .main-menu .main-menu__list > ul > li > a {
  color: #00000F;
  padding: 28px 22px;
  position: relative;
}
@media (min-width: 1200px) and (max-width: 1344px) {
  .main-header-four .main-menu .main-menu__list > li > a,
  .main-header-four .main-menu .main-menu__list > ul > li > a {
    padding: 28px 16px;
  }
}
.main-header-four .main-menu .main-menu__list > li > a::before,
.main-header-four .main-menu .main-menu__list > ul > li > a::before {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  content: "";
  background-color: #FF5F2A;
  transition: 0.4s ease-in-out;
  -webkit-transition: 0.4s ease-in-out;
  -moz-transition: 0.4s ease-in-out;
  z-index: -1;
}
.main-header-four .main-menu .main-menu__list > li.current > a,
.main-header-four .main-menu .main-menu__list > li:hover > a {
  color: #FFFFFF;
  background-color: transparent;
}
.main-header-four .main-menu .main-menu__list > li.current > a::before,
.main-header-four .main-menu .main-menu__list > li:hover > a::before {
  height: 100%;
}
.main-header-four .mobile-nav__btn span {
  background: #00000F;
}
.main-header-four__right {
  display: flex;
  justify-content: end;
  align-items: center;
  flex-direction: row;
  padding: 0;
}
@media (max-width: 1199px) {
  .main-header-four__right {
    width: 100%;
  }
}
.main-header-four .mobile-nav__btn__wrap {
  margin-right: auto;
  padding: 31px 25px 31px 5px;
}
.main-header-four__cart, .main-header-four__search {
  position: relative;
  padding: 28px 32px 27px;
  border-right: 1px solid rgba(67, 67, 92, 0.2);
}
@media (min-width: 1200px) and (max-width: 1344px) {
  .main-header-four__cart, .main-header-four__search {
    padding: 28px 25px 27px;
  }
}
@media (max-width: 991px) {
  .main-header-four__cart, .main-header-four__search {
    padding: 28px 25px 27px;
  }
}
.main-header-four__cart a, .main-header-four__search a {
  font-size: 22px;
  color: #00000F;
  line-height: 22px;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
}
.main-header-four__cart a:hover, .main-header-four__search a:hover {
  color: #FF5F2A;
}
.main-header-four__cart > a {
  position: relative;
  display: inline-block;
}
.main-header-four__cart > a:hover .main-header__cart__count {
  color: #FF5F2A;
  background-color: #FFFFFF;
}
.main-header-four__cart__count {
  width: 25px;
  height: 25px;
  background-color: #FF5F2A;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 12px;
  line-height: 16px;
  color: #FFFFFF;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  position: absolute;
  right: -17px;
  top: -12px;
}
.main-header-four__toggler {
  padding: 28px 25px 27px;
  position: relative;
  border-right: 1px solid rgba(67, 67, 92, 0.2);
}
@media (min-width: 1200px) and (max-width: 1344px) {
  .main-header-four__toggler {
    padding: 28px 25px 27px;
  }
}
@media (max-width: 991px) {
  .main-header-four__toggler {
    padding: 28px 25px 27px;
  }
}
@media (max-width: 991px) {
  .main-header-four__toggler {
    border: unset;
  }
}
@media (max-width: 575px) {
  .main-header-four__toggler {
    padding: 26px 22px 26px;
  }
}
.main-header-four__toggler .main-header-four__toggler__wrapper {
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: column;
  row-gap: 5px;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  cursor: pointer;
}
.main-header-four__toggler .main-header-four__toggler__wrapper span {
  width: 19px;
  height: 3px;
  border-radius: 30px;
  background: #00000F;
  display: inline-block;
  position: relative;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
}
.main-header-four__toggler .main-header-four__toggler__wrapper span:nth-child(2) {
  left: 5px;
}
.main-header-four__toggler .main-header-four__toggler__wrapper:hover span {
  left: 3px;
}
.main-header-four__toggler .main-header-four__toggler__wrapper:hover span:nth-child(2) {
  left: -2px;
}
.main-header-four__toggler .main-header-four__toggler__wrapper:hover span {
  background: #FF5F2A;
}
.main-header-four.sticky-header--cloned {
  box-shadow: 0px 3px 18px rgba(0, 0, 15, 0.07);
}

/*--------------------------------------------------------------
# Hero Slider 01 
--------------------------------------------------------------*/
.main-slider-one {
  position: relative;
  overflow: hidden;
}
.main-slider-one__carousel {
  position: relative;
  width: 100%;
}
.main-slider-one__carousel.owl-carousel .owl-nav {
  left: 118px;
  margin: auto 0;
  position: absolute;
  right: 0;
  text-align: left;
  top: 50%;
  transform: translateY(-50%);
  max-width: 120px;
}
.main-slider-one__carousel.owl-carousel .owl-nav button {
  transition: all 400ms ease;
  width: 52px;
  height: 52px;
  outline: none;
  box-shadow: none;
  border: none;
  background-color: RGBA(255, 255, 255, 0.1);
  border-radius: 50%;
  display: block;
  color: #FFFFFF;
  line-height: 53px;
  font-size: 16px;
  margin: 9px 0;
  text-align: center;
}
.main-slider-one__carousel.owl-carousel .owl-nav button:hover {
  background-color: #115da9;
}
.main-slider-one__carousel .owl-dots {
  right: 60px;
  margin: auto 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 1199px) {
  .main-slider-one__carousel .owl-dots {
    right: 35px;
  }
}
.main-slider-one__carousel .owl-dots .owl-dot {
  display: block;
  margin: 6px 0;
}
.main-slider-one__carousel .owl-dots .owl-dot span {
  width: 13px;
  height: 13px;
  display: block;
  border-radius: 0;
  background-color: transparent;
  border: 3px solid #FFFFFF;
  margin: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.main-slider-one__carousel .owl-dots .owl-dot:hover span,
.main-slider-one__carousel .owl-dots .owl-dot.active span {
  background-color: #FFFFFF;
}
.main-slider-one__item {
  background-color: #FFFFFF;
  position: relative;
  z-index: 3;
  padding-top: 155px;
  padding-bottom: 121px;
}
@media (max-width: 991px) {
  .main-slider-one__item {
    padding-top: 130px;
  }
}
@media (max-width: 767px) {
  .main-slider-one__item {
    padding-top: 120px;
    padding-bottom: 180px;
  }
}
.main-slider-one__shape {
  position: absolute;
  left: 16px;
  top: 0;
  z-index: 1;
  opacity: 0;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transform: scale(0);
}
.main-slider-one__shape img {
  max-width: 100%;
  height: auto;
  animation: zoomBig 6s linear infinite;
}
@keyframes zoomBig {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(0.9, 0.9);
  }
  100% {
    transform: scale(1, 1);
  }
}
.main-slider-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 90.8%, 0 99.8%);
}
@media (max-width: 991px) {
  .main-slider-one__bg {
    clip-path: none;
    background-size: auto;
    background-position: top center;
  }
}
@media (max-width: 767px) {
  .main-slider-one__bg {
    background-position: top left;
  }
}
.main-slider-one__content {
  position: relative;
  z-index: 3;
}
.main-slider-one__sub-title {
  font-size: 24px;
  line-height: 34px;
  font-size: 700;
  color: #FFFFFF;
  margin-bottom: 15px;
  opacity: 0;
  font-family: "DM Sans", sans-serif;
  transition: transform 900ms ease, opacity 900ms ease;
  transform: translateX(160px);
}
@media (max-width: 1199px) {
  .main-slider-one__sub-title {
    font-size: 20px;
    line-height: 30px;
  }
}
@media (max-width: 767px) {
  .main-slider-one__sub-title {
    font-size: 14px;
    line-height: 24px;
    max-width: 260px;
  }
}
.main-slider-one__title {
  color: #FFFFFF;
  font-size: 76px;
  line-height: 86px;
  font-weight: 700;
  display: inline-block;
  overflow: hidden;
  margin: 0 0 34px;
  opacity: 0;
  transition: transform 1200ms ease, opacity 1200ms ease;
  transform: translateX(200px);
}
@media (max-width: 1199px) {
  .main-slider-one__title {
    font-size: 64px;
    line-height: 74px;
  }
}
@media (max-width: 991px) {
  .main-slider-one__title {
    font-size: 60px;
    line-height: 70px;
  }
}
@media (max-width: 767px) {
  .main-slider-one__title {
    font-size: 37px;
    line-height: 47px;
  }
  .main-slider-one__title br {
    display: none;
  }
}
.main-slider-one__title span {
  color: #FFFFFF;
  position: relative;
}
.main-slider-one__title span::after {
  position: absolute;
  right: 0;
  left: -11px;
  margin: auto;
  bottom: 11px;
  width: 109%;
  height: 79%;
  content: "";
  background-color: #115da9;
  animation: shapeMove 3s linear 0s infinite;
  z-index: -1;
  clip-path: polygon(10% 0, 100% 0%, 88% 100%, 0 100%);
}
@media (max-width: 767px) {
  .main-slider-one__title span::after {
    display: none;
  }
}
@media (max-width: 1199px) {
  .main-slider-one__title span::after {
    bottom: 8.5px;
  }
}
@media (max-width: 991px) {
  .main-slider-one__title span::after {
    bottom: 7.5px;
  }
}
.main-slider-one__btn {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
  opacity: 0;
  transform: perspective(400px) rotateY(0deg) translateY(80px);
  transform-origin: bottom;
  transition: all 1500ms ease;
  margin-bottom: 155px;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
  column-gap: 30px;
}
@media (max-width: 575px) {
  .main-slider-one__btn {
    flex-direction: column;
    align-items: start;
    row-gap: 30px;
    margin-bottom: 200px;
  }
}
.main-slider-one__btn a.ripcar-btn {
  padding: 0 29px;
}
.main-slider-one__btn .video-popup {
  font-size: 16px;
  line-height: 26px;
  color: #FFFFFF;
  font-weight: 700;
  display: block;
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
  column-gap: 19px;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
}
.main-slider-one__btn .video-popup i {
  font-size: 16px;
  width: 50px;
  height: 50px;
  border: 1px solid #115da9;
  color: #115da9;
  border-radius: 50%;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
}
.main-slider-one__btn .video-popup:hover i {
  color: #FFFFFF;
  background-color: #115da9;
}
.main-slider-one__btn .video-popup:hover {
  color: #115da9;
}
.main-slider-one__scrollDown {
  font-size: 32px;
  line-height: 42px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
  column-gap: 18px;
  display: inline-flex;
  overflow: hidden;
  opacity: 0;
  transform: perspective(300px) rotateY(0deg) translateY(60px);
  transform-origin: bottom;
  transition: all 1800ms ease;
}
.main-slider-one__scrollDown span {
  display: inline-block;
  position: relative;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
}
@media (max-width: 575px) {
  .main-slider-one__scrollDown {
    font-size: 24px;
    line-height: 34px;
  }
}
.main-slider-one__scrollDown i {
  font-size: 22px;
  color: #FFFFFF;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid #115da9;
  background-color: #115da9;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: 3s ease-in-out;
  -webkit-transition: 3s ease-in-out;
  -moz-transition: 3s ease-in-out;
}
@media (max-width: 575px) {
  .main-slider-one__scrollDown i {
    font-size: 20px;
    width: 50px;
    height: 50px;
  }
}
.main-slider-one__scrollDown:hover i {
  background-color: transparent;
  color: #115da9;
}
.main-slider-one__scrollDown:hover span {
  color: #115da9;
}
.main-slider-one__thumb {
  position: absolute;
  bottom: -33px;
  width: auto;
  height: auto;
  right: -3.2%;
  z-index: -1;
  transition: transform 1000ms ease, opacity 2200ms ease;
  transform: translate(130%, -40%);
}
@media (max-width: 1399px) {
  .main-slider-one__thumb {
    right: -15.2%;
  }
}
@media (max-width: 1199px) {
  .main-slider-one__thumb {
    right: -31.2%;
  }
}
@media (max-width: 991px) {
  .main-slider-one__thumb {
    right: -74.2%;
    bottom: 30px;
  }
}
@media (max-width: 575px) {
  .main-slider-one__thumb {
    right: -100%;
    bottom: 65px;
  }
}
.main-slider-one__thumb img {
  max-width: 100%;
  width: auto;
  height: auto;
}
@media (max-width: 1399px) {
  .main-slider-one__thumb img {
    max-width: 81%;
  }
}
@media (max-width: 1199px) {
  .main-slider-one__thumb img {
    max-width: 70%;
  }
}
@media (max-width: 991px) {
  .main-slider-one__thumb img {
    max-width: 60%;
  }
}
@media (max-width: 991px) {
  .main-slider-one__thumb img {
    max-width: 51%;
  }
}
.main-slider-one .active .steap {
  animation: dash 0.5s linear;
}
@keyframes dash {
  0% {
    stroke-width: 0;
  }
  100% {
    stroke-width: 200px;
  }
}
.main-slider-one .active .main-slider-one__sub-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1000ms;
}
.main-slider-one .active .main-slider-one__shape {
  opacity: 1;
  transform: scale(1);
  transition-delay: 1000ms;
}
.main-slider-one .active .main-slider-one__thumb {
  opacity: 1;
  transform: translateY(0px);
  transition-delay: 1200ms;
}
.main-slider-one .active .main-slider-one__title {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1300ms;
}
.main-slider-one .active .main-slider-one__btn {
  opacity: 1;
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  transition-delay: 1600ms;
}
.main-slider-one .active .main-slider-one__scrollDown {
  opacity: 1;
  transform: perspective(300px) rotateY(0deg) translateY(0px);
  transition-delay: 1800ms;
}

/*--------------------------------------------------------------
# Hero Slider 02 
--------------------------------------------------------------*/
.main-slider-two {
  position: relative;
  background-color: #43435C;
}
.main-slider-two__image {
  position: absolute;
  right: 0;
  top: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  width: 48.3%;
  opacity: 0;
  transition: transform 1000ms ease, opacity 1000ms ease;
  transform: translatex(50%) scalex(2);
  filter: blur(10px);
  overflow: hidden;
}
@media (min-width: 992px) {
  .main-slider-two__image {
    -webkit-mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 929 1018" xmlns="http://www.w3.org/2000/svg"><path d="M257.5 0H929V1018H309.5L0.5 406.691L257.5 0Z"/></svg>');
    mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 929 1018" xmlns="http://www.w3.org/2000/svg"><path d="M257.5 0H929V1018H309.5L0.5 406.691L257.5 0Z"/></svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: left top;
    mask-position: left top;
    -webkit-mask-size: cover;
    mask-size: cover;
  }
}
@media (max-width: 1399px) {
  .main-slider-two__image {
    background-position: 75% 100%;
  }
}
@media (max-width: 991px) {
  .main-slider-two__image {
    display: none;
  }
}
.main-slider-two__image__two {
  position: absolute;
  left: 0;
  top: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: transform 1000ms ease, opacity 1000ms ease;
  transform: translatex(50%) scalex(2);
  filter: blur(10px);
  overflow: hidden;
  z-index: -1;
}
.main-slider-two__content {
  position: relative;
  display: inline-block;
  z-index: 3;
  overflow: hidden;
}
.main-slider-two__text__one {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: capitalize;
  max-width: 576px;
  width: 100%;
  margin-left: 0;
  margin-bottom: 50px;
  opacity: 0;
  transition: transform 1000ms ease, opacity 1000ms ease;
  transform: translateX(-100px);
}
@media (max-width: 991px) {
  .main-slider-two__text__one {
    max-width: 460px;
  }
}
.main-slider-two__sub__title {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #115da9;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  position: relative;
  margin-bottom: 7px;
  padding-left: 67px;
  opacity: 0;
  transition: transform 1000ms ease, opacity 1000ms ease;
  transform: translateY(100px);
}
.main-slider-two__sub__title:before {
  content: "";
  position: absolute;
  width: 47px;
  height: 1px;
  background-color: #115da9;
  top: 12.5px;
  left: 0;
}
.main-slider-two__title {
  font-size: 76px;
  line-height: 86px;
  text-transform: capitalize;
  display: inline-block;
  color: #FFFFFF;
  margin-bottom: 8px;
  position: relative;
  opacity: 0;
  transition: transform 1000ms ease, opacity 1000ms ease;
  transform: translateY(100px);
}
@media (max-width: 1199px) {
  .main-slider-two__title {
    font-size: 58px;
    line-height: 68px;
  }
}
@media (max-width: 991px) {
  .main-slider-two__title {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  .main-slider-two__title {
    font-size: 37px;
    line-height: 47px;
  }
  .main-slider-two__title br {
    display: none;
  }
}
.main-slider-two__btn {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 5;
  overflow: hidden;
  opacity: 0;
  transform: perspective(400px) rotateY(0deg) translateY(80px);
  transform-origin: bottom;
  transition: all 1500ms ease;
}
.main-slider-two__btn a {
  padding: 0 29px;
}
.main-slider-two__btn .trevlo-btn::after {
  background-color: #FFFFFF;
}
.main-slider-two__btn .trevlo-btn:hover {
  color: #00000F;
}
.main-slider-two__shape {
  position: absolute;
  right: 0%;
  bottom: 0%;
  width: 100%;
  height: 100%;
}
@media (max-width: 991px) {
  .main-slider-two__shape {
    display: none;
  }
}
.main-slider-two__shape img {
  max-width: 100%;
  width: auto;
  height: auto;
  position: absolute;
}
.main-slider-two__shape img:nth-of-type(1) {
  bottom: 54px;
  max-width: 144px;
  right: 25.4%;
  transform: perspective(400px) rotateY(0deg) translateY(60px);
  transform-origin: bottom;
  opacity: 0;
  transition: all 1500ms ease;
}
@media (max-width: 1199px) {
  .main-slider-two__shape img:nth-of-type(1) {
    max-width: 120px;
    right: 27.4%;
  }
}
.main-slider-two__shape img:nth-of-type(2) {
  max-width: 272px;
  right: 24.5%;
  bottom: 0;
  transform: perspective(400px) rotateY(0deg) translateY(60px);
  transform-origin: bottom;
  opacity: 0;
  transition: all 1500ms ease;
}
@media (max-width: 1199px) {
  .main-slider-two__shape img:nth-of-type(2) {
    max-width: 183px;
    right: 26%;
  }
}
.main-slider-two__shape img:nth-of-type(3) {
  max-width: 230px;
  right: 28.6%;
  top: 6px;
  transform: perspective(400px) rotateY(0deg) translateY(-60px);
  transform-origin: bottom;
  opacity: 0;
  transition: all 1500ms ease;
}
@media (max-width: 1199px) {
  .main-slider-two__shape img:nth-of-type(3) {
    max-width: 180px;
    right: 30.15%;
  }
}
@media (max-width: 767px) {
  .main-slider-two__shape {
    display: none;
  }
}
.main-slider-two__carousel {
  position: relative;
  z-index: 2;
}
.main-slider-two__carousel .active .main-slider-two__image {
  opacity: 1;
  transform: translatex(0) scalex(1);
  filter: blur(0);
  transition-delay: 1000ms;
}
.main-slider-two__carousel .active .main-slider-two__image__two {
  opacity: 1;
  transform: translatex(0) scalex(1);
  filter: blur(0);
  transition-delay: 1000ms;
}
.main-slider-two__carousel .active .main-slider-two__text__one {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1700ms;
}
.main-slider-two__carousel .active .main-slider-two__sub__title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1300ms;
}
.main-slider-two__carousel .active .main-slider-two__title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1500ms;
}
.main-slider-two__carousel .active .main-slider-two__btn {
  opacity: 1;
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  transition-delay: 1600ms;
}
.main-slider-two__carousel .active .main-slider-two__shape img:nth-of-type(1) {
  opacity: 1;
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  transition-delay: 900ms;
}
.main-slider-two__carousel .active .main-slider-two__shape img:nth-of-type(2) {
  opacity: 1;
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  transition-delay: 800ms;
}
.main-slider-two__carousel .active .main-slider-two__shape img:nth-of-type(3) {
  opacity: 1;
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  transition-delay: 800ms;
}
.main-slider-two__carousel .container {
  padding-top: 343px;
  padding-bottom: 264px;
  position: relative;
}
@media (max-width: 1199px) {
  .main-slider-two__carousel .container {
    max-width: 100% !important;
    padding-top: 225px;
    padding-bottom: 200px;
  }
}
@media (max-width: 991px) {
  .main-slider-two__carousel .container {
    padding-top: 190px;
    padding-bottom: 150px;
  }
}

.main-slider-three {
  position: relative;
  overflow: hidden;
}
.main-slider-three__carousel {
  position: relative;
  width: 100%;
}
.main-slider-three__carousel .owl-dots {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 50px;
  z-index: 2;
  width: 1176px;
}
@media (max-width: 1199px) {
  .main-slider-three__carousel .owl-dots {
    width: 930px;
  }
}
@media (max-width: 991px) {
  .main-slider-three__carousel .owl-dots {
    width: 100%;
    justify-content: center;
    bottom: 30px;
  }
}
.main-slider-three__carousel .owl-dots .owl-dot {
  display: inline-block;
  margin: 0 3px;
}
.main-slider-three__carousel .owl-dots .owl-dot span {
  width: 16px;
  height: 16px;
  display: block;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid #00000F;
  margin: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.main-slider-three__carousel .owl-dots .owl-dot:hover span,
.main-slider-three__carousel .owl-dots .owl-dot.active span {
  background-color: #00000F;
}
.main-slider-three__item {
  position: relative;
  background-color: #04171b;
}
.main-slider-three__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: auto;
  background-repeat: no-repeat;
  background-position: top right;
  overflow: hidden;
  background-color: #04171b;
  opacity: 0.3;
}
.main-slider-three__bg::after {
  width: 100%;
  height: 100%;
  content: "";
  left: 0;
  right: 0;
  position: absolute;
  background: rgb(0, 0, 15);
  background: -moz-linear-gradient(90deg, rgb(0, 0, 15) 0%, rgba(0, 0, 15, 0.02) 65%);
  background: -webkit-linear-gradient(90deg, rgb(0, 0, 15) 0%, rgba(0, 0, 15, 0.02) 65%);
  background: linear-gradient(90deg, rgb(0, 0, 15) 0%, rgba(0, 0, 15, 0.02) 65%);
}
.main-slider-three .container {
  position: relative;
  z-index: 3;
}
.main-slider-three__content {
  position: relative;
  z-index: 3;
  overflow: hidden;
  padding: 287px 0;
}
@media (max-width: 1199px) {
  .main-slider-three__content {
    padding: 260px 0;
  }
}
@media (max-width: 991px) {
  .main-slider-three__content {
    padding: 220px 0;
  }
}
@media (max-width: 767px) {
  .main-slider-three__content {
    padding: 180px 0 220px;
  }
}
.main-slider-three__title {
  font-size: 108px;
  line-height: 106px;
  color: #FFFFFF;
  margin: 0 0 34px;
  opacity: 0;
  transition: transform 1200ms ease, opacity 1200ms ease;
  transform: translateY(-200px);
  text-align: center;
}
@media (max-width: 1199px) {
  .main-slider-three__title {
    font-size: 64px;
    line-height: 74px;
  }
}
@media (max-width: 767px) {
  .main-slider-three__title {
    font-size: 38px;
    line-height: 48px;
  }
}
.main-slider-three__title__anim {
  position: relative;
  display: inline-block;
  overflow: hidden;
  margin-bottom: -16px;
}
.main-slider-three__title__anim:last-child {
  color: #115da9;
}
.main-slider-three__title__anim:last-child::before {
  position: absolute;
  width: 100%;
  height: 3px;
  content: "";
  left: 0;
  bottom: 2px;
  background-color: currentColor;
}
.main-slider-three__title__anim::after {
  content: "";
  width: 101%;
  height: 100%;
  position: absolute;
  top: 9px;
  left: 100%;
  background: currentColor;
  transition: 1s cubic-bezier(0.858, 0.01, 0.068, 0.99);
  transition-delay: 1s;
  z-index: 3;
  transform: translateX(-100%);
  transition-delay: 1s;
}
.main-slider-three__text {
  font-size: 32px;
  line-height: 42px;
  color: #FFFFFF;
  font-weight: 500;
  margin: 0 0 40px;
  text-align: center;
  opacity: 0;
  transition: transform 1200ms ease, opacity 1200ms ease;
  transform: translateY(200px);
}
@media (max-width: 1199px) {
  .main-slider-three__text {
    font-size: 24px;
    line-height: 34px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 767px) {
  .main-slider-three__text {
    font-size: 18px;
    line-height: 28px;
  }
}
.main-slider-three__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  column-gap: 30px;
  opacity: 0;
  transition: transform 1200ms ease, opacity 1200ms ease;
  transform: translateY(280px);
}
@media (max-width: 767px) {
  .main-slider-three__btn {
    column-gap: 15px;
    flex-direction: column;
    row-gap: 20px;
  }
}
.main-slider-three__btn a {
  padding: 0 28px;
  border: 1px solid #C2ED08;
  background: #C2ED08;
  color: #00000F;
}
.main-slider-three__btn a:hover {
  color: #FFFFFF;
  border-color: #FFFFFF;
  background: transparent;
}
.main-slider-three__btn a::after {
  background: #C2ED08;
  opacity: 0;
}
.main-slider-three__btn a.transparent_bg {
  background: transparent;
  border-color: #FFFFFF;
  color: #FFFFFF;
}
.main-slider-three__btn a.transparent_bg:hover {
  background: #C2ED08;
  border-color: #C2ED08;
  color: #00000F;
}
.main-slider-three__btn a.transparent_bg::after {
  background: #C2ED08;
}
.main-slider-three__play {
  width: auto;
  position: absolute;
  bottom: 334px;
  right: 10.834%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;
  z-index: 3;
  opacity: 0;
  transition: transform 1200ms ease, opacity 1200ms ease;
  transform: translateY(190px);
}
@media (max-width: 991px) {
  .main-slider-three__play {
    bottom: 285px;
    right: 7.834%;
  }
}
@media (max-width: 767px) {
  .main-slider-three__play {
    bottom: 120px;
  }
  .main-slider-three__play::after {
    display: none;
  }
}
@media (max-width: 991px) {
  .main-slider-three__play {
    max-width: 100%;
    bottom: 115px;
    right: calc(50% - 40px);
  }
  .main-slider-three__play::after {
    display: none;
  }
}
.main-slider-three__play::after {
  content: "";
  position: absolute;
  right: calc(0% + 42px);
  width: 1px;
  height: 217px;
  background: #C2ED08;
  top: 31px;
  z-index: -1;
}
.main-slider-three__play i {
  font-size: 21px;
  color: #00000F;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  background: #C2ED08;
  display: inline-block;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 1;
  overflow: hidden;
}
.main-slider-three__play i:hover:after {
  background: #FFFFFF;
}
.main-slider-three__shape_1 {
  position: absolute;
  right: 4.167%;
  bottom: 8px;
  opacity: 0;
  z-index: 2;
  transition: transform 1200ms ease, opacity 1200ms ease;
  transform: translateY(180px);
}
.main-slider-three__shape_1 img {
  max-width: 602px;
  height: auto;
}
@media (max-width: 1199px) {
  .main-slider-three__shape_1 img {
    max-width: 442px;
  }
}
@media (max-width: 991px) {
  .main-slider-three__shape_1 img {
    max-width: 342px;
  }
}
@media (max-width: 767px) {
  .main-slider-three__shape_1 img {
    max-width: 282px;
  }
}
.main-slider-three__shape_2 {
  position: relative;
  z-index: 1;
  opacity: 0;
  transition: transform 1200ms ease, opacity 1200ms ease;
  transform: translateY(160px);
}
.main-slider-three__shape_2 img:nth-of-type(1) {
  position: absolute;
  left: 0;
  bottom: -2px;
  max-width: 331px;
}
@media (max-width: 1199px) {
  .main-slider-three__shape_2 img:nth-of-type(1) {
    max-width: 230px;
  }
}
@media (max-width: 991px) {
  .main-slider-three__shape_2 img:nth-of-type(1) {
    max-width: 190px;
  }
}
@media (max-width: 991px) {
  .main-slider-three__shape_2 img:nth-of-type(1) {
    max-width: 160px;
  }
}
.main-slider-three__shape_2 img:nth-of-type(2) {
  position: absolute;
  left: 0;
  bottom: -2px;
  max-width: 245px;
}
@media (max-width: 1199px) {
  .main-slider-three__shape_2 img:nth-of-type(2) {
    max-width: 145px;
  }
}
@media (max-width: 991px) {
  .main-slider-three__shape_2 img:nth-of-type(2) {
    max-width: 115px;
  }
}
@media (max-width: 991px) {
  .main-slider-three__shape_2 img:nth-of-type(2) {
    max-width: 105px;
  }
}
.main-slider-three__shape_3 {
  position: relative;
  left: 0;
  opacity: 0;
  z-index: 1;
  transition: transform 1200ms ease, opacity 1200ms ease;
  transform: translateY(160px);
}
.main-slider-three__shape_3 img:nth-of-type(1) {
  position: absolute;
  right: 0;
  bottom: -2px;
  max-width: 1126px;
}
@media (max-width: 1199px) {
  .main-slider-three__shape_3 img:nth-of-type(1) {
    max-width: 630px;
  }
}
@media (max-width: 991px) {
  .main-slider-three__shape_3 img:nth-of-type(1) {
    max-width: 430px;
  }
}
@media (max-width: 991px) {
  .main-slider-three__shape_3 img:nth-of-type(1) {
    max-width: 320px;
  }
}
.main-slider-three__shape_3 img:nth-of-type(2) {
  position: absolute;
  right: 0;
  bottom: -2px;
  max-width: 892px;
}
@media (max-width: 1199px) {
  .main-slider-three__shape_3 img:nth-of-type(2) {
    max-width: 630px;
  }
}
@media (max-width: 991px) {
  .main-slider-three__shape_3 img:nth-of-type(2) {
    max-width: 420px;
  }
}
@media (max-width: 991px) {
  .main-slider-three__shape_3 img:nth-of-type(2) {
    max-width: 320px;
  }
}

.active .main-slider-three__play {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 2000ms;
}
.active .main-slider-three__shape_1 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1900ms;
}
.active .main-slider-three__shape_2 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1800ms;
}
.active .main-slider-three__shape_3 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1800ms;
}
.active .main-slider-three__thumb {
  opacity: 1;
  transform: translateY(0px);
  transition-delay: 1200ms;
}
.active .main-slider-three__shape-right {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1100ms;
}
.active .main-slider-three__title {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1200ms;
}
.active .main-slider-three__title__anim::after {
  transform: translateX(1%);
  transition-delay: 1400ms;
}
.active .main-slider-three__text {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1500ms;
}
.active .main-slider-three__btn {
  opacity: 1;
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  transition-delay: 1700ms;
}
.active .main-slider-three__btn__video {
  opacity: 1;
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  transition-delay: 1900ms;
}

/*--------------------------------------------------------------
# Hero Slider 01 
--------------------------------------------------------------*/
.main-slider-four {
  position: relative;
  overflow: hidden;
}
.main-slider-four__carousel {
  position: relative;
  width: 100%;
}
.main-slider-four__item {
  position: relative;
  z-index: 3;
  padding-top: 203px;
  padding-bottom: 410px;
}
@media (max-width: 991px) {
  .main-slider-four__item {
    padding-top: 130px;
    padding-bottom: 320px;
  }
}
@media (max-width: 767px) {
  .main-slider-four__item {
    padding-top: 90px;
    padding-bottom: 270px;
  }
}
.main-slider-four__shape {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  opacity: 0;
  transition: transform 1100ms ease, opacity 1100ms ease;
  transform: translateX(200px);
}
@media (max-width: 1199px) {
  .main-slider-four__shape {
    display: none;
  }
}
.main-slider-four__shape img {
  max-width: 100%;
  height: auto;
  animation: leftToRIght 3s linear infinite;
}
.main-slider-four__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1920 978" xmlns="http://www.w3.org/2000/svg"><path d="M0 -432H1920V858H1246L0 978V-432Z"/></svg>');
  mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1920 978" xmlns="http://www.w3.org/2000/svg"><path d="M0 -432H1920V858H1246L0 978V-432Z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center bottom;
  mask-position: center bottom;
  -webkit-mask-size: cover;
  mask-size: cover;
}
.main-slider-four__bg::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-image: linear-gradient(180deg, rgba(0, 0, 15, 0) 25%, rgba(0, 0, 15, 0.7) 49%, rgba(0, 0, 15, 0.7) 100%);
}
.main-slider-four__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
  background-size: cover;
}
.main-slider-four__bg img:nth-child(1) {
  transform: translatex(50%) scalex(2);
  opacity: 0;
  filter: blur(10px);
}
.main-slider-four__bg img:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  object-fit: cover;
}
.main-slider-four__content {
  position: relative;
  z-index: 3;
}
.main-slider-four__title-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}
.main-slider-four__title {
  color: #FFFFFF;
  font-size: 128px;
  line-height: 138px;
  text-transform: uppercase;
  font-weight: 800;
  display: inline-block;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin: 0;
  opacity: 0;
  animation-duration: 1s;
  animation-fill-mode: both;
}
@media (max-width: 991px) {
  .main-slider-four__title {
    font-size: 90px;
    line-height: 120px;
  }
}
@media (max-width: 767px) {
  .main-slider-four__title {
    font-size: 50px;
    line-height: 75px;
  }
}
.main-slider-four__text {
  background-color: rgba(215, 0, 7, 0.4);
  font-size: 24px;
  line-height: 34px;
  color: #FFFFFF;
  margin: 0;
  max-width: 429px;
  position: absolute;
  right: -175px;
  bottom: -30px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 10% 100%);
  padding: 29px 40px 28px 103px;
  mix-blend-mode: multiply;
  opacity: 0;
  animation-duration: 1.1s;
  animation-fill-mode: both;
}
@media (max-width: 991px) {
  .main-slider-four__text {
    font-size: 20px;
    line-height: 30px;
    max-width: 100%;
    position: relative;
    right: 0;
    bottom: 0;
    margin-bottom: 10px;
    clip-path: none;
  }
}
@media (max-width: 767px) {
  .main-slider-four__text {
    padding-left: 65px;
  }
}
.main-slider-four__btn {
  position: relative;
  display: flex;
  justify-content: flex-start;
  gap: 30px;
  align-items: center;
  overflow: hidden;
  opacity: 0;
  animation-duration: 1.2s;
  animation-fill-mode: both;
}
.main-slider-four__btn .ripcar-btn {
  padding: 0 29px;
  background: transparent;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
}
.main-slider-four__btn .ripcar-btn::after {
  background: #FFFFFF;
}
.main-slider-four__btn .ripcar-btn:hover {
  color: #FF5F2A;
  background: #FFFFFF;
}
.main-slider-four__btn .video-popup {
  font-size: 16px;
  line-height: 26px;
  color: #FFFFFF;
  font-weight: 700;
  display: block;
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
  column-gap: 19px;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
}
@media (max-width: 500px) {
  .main-slider-four__btn .video-popup {
    font-size: 0;
  }
}
.main-slider-four__btn .video-popup i {
  font-size: 16px;
  width: 50px;
  height: 50px;
  border: 1px solid #FF5F2A;
  color: #FF5F2A;
  border-radius: 50%;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
}
.main-slider-four__btn .video-popup:hover i {
  color: #FFFFFF;
  background-color: #FF5F2A;
}
.main-slider-four__btn .video-popup:hover {
  color: #FF5F2A;
}
.main-slider-four .active .main-slider-four__bg img:nth-child(1) {
  transform: translatex(0) scalex(1);
  opacity: 1;
  filter: blur(0);
}
.main-slider-four .active .main-slider-four__bg img:nth-child(2) {
  transform: translatex(-50%) scalex(2);
  opacity: 0;
  filter: blur(10px);
}
.main-slider-four .active .main-slider-four__shape {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1500ms;
}
.main-slider-four .active .main-slider-four__title {
  opacity: 1;
  animation-delay: 1.3s;
  animation-name: rotateInUpLeft;
}
.main-slider-four .active .main-slider-four__text {
  opacity: 1;
  animation-delay: 1.4s;
  animation-name: rotateInUpRight;
}
.main-slider-four .active .main-slider-four__btn {
  opacity: 1;
  animation-delay: 1.6s;
  animation-name: rotateInUpLeft;
}

/*--------------------------------------------------------------
# About 01
--------------------------------------------------------------*/
.about-one {
  position: relative;
  padding: 120px 0 205px;
  background: rgba(244, 244, 244, 0.5);
  overflow: hidden;
}
@media (max-width: 991px) {
  .about-one {
    padding: 80px 0;
  }
}
.about-one__shape {
  position: absolute;
  left: -23px;
  top: 168px;
  animation: topToBottom 3s linear 0s infinite;
}
.about-one__shape img {
  max-width: 100%;
  width: 100%;
}
@media (max-width: 1680px) and (min-width: 1440px) {
  .about-one__shape {
    left: -150px;
  }
  .about-one__shape img {
    max-width: 80%;
  }
}
@media (max-width: 1399px) {
  .about-one__shape {
    display: none;
  }
}
.about-one__content {
  position: relative;
}
.about-one__content .sec-title__title {
  margin: 111px 0 14px;
}
@media (max-width: 1199px) {
  .about-one__content .sec-title__title {
    font-size: 27px;
    line-height: 37px;
  }
}
@media (max-width: 991px) {
  .about-one__content .sec-title__title {
    margin-top: 0;
  }
}
.about-one__content .about-one__content__text {
  margin-bottom: 15px;
}
.about-one__content .about-one__content__text2 {
  margin-bottom: 42px;
}
.about-one--pricing {
  position: relative;
  background-color: transparent;
  padding: 195px 0 15px;
}
@media (max-width: 1199px) {
  .about-one--pricing {
    padding-top: 120px;
  }
}
@media (max-width: 767px) {
  .about-one--pricing {
    padding-top: 80px;
  }
}
.about-one--pricing .about-one__shape {
  top: auto;
  bottom: 40px;
}
.about-one--about {
  position: relative;
  background-color: transparent;
  padding: 0 0 120px;
}
@media (max-width: 767px) {
  .about-one--about {
    padding: 0 0 80px;
  }
}
.about-one--about .about-one__shape {
  top: auto;
  bottom: 180px;
}
.about-one--about .funfact-one .funfact-one__item {
  box-shadow: none;
  background: rgba(244, 244, 244, 0.5);
}

/*--------------------------------------------------------------
# About 02 
--------------------------------------------------------------*/
.about-two {
  position: relative;
  z-index: 1;
  padding: 120px 0 150px;
  background-color: #FFFFFF;
}
@media (max-width: 767px) {
  .about-two .sec-title__title {
    font-size: 25px;
    line-height: 35px;
  }
}
@media (max-width: 991px) {
  .about-two {
    padding: 80px 0 90px;
  }
}
@media (max-width: 767px) {
  .about-two {
    padding: 80px 0 30px;
  }
}
.about-two__image {
  position: relative;
  max-width: 570px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .about-two__image {
    max-width: 672px;
  }
}
.about-two__image > img {
  max-width: 100%;
  height: auto;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .about-two__image > img {
    max-width: 70%;
  }
  .about-two__image > img:nth-of-type(1) {
    padding-bottom: 102px;
  }
}
@media (max-width: 767px) {
  .about-two__image > img {
    max-width: 75%;
  }
}
@media (max-width: 575px) {
  .about-two__image > img {
    max-width: 100%;
    width: 100%;
  }
}
.about-two__image img:nth-child(2) {
  display: inherit;
  position: absolute;
  right: 10px;
  bottom: 30px;
}
@media (max-width: 575px) {
  .about-two__image img:nth-child(2) {
    display: none;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .about-two__image img:nth-child(2) {
    max-width: 70%;
    bottom: 10px;
  }
}
.about-two__image img:nth-child(3) {
  display: inherit;
  position: absolute;
  right: -24px;
  top: 0px;
  -webkit-animation: welAnim 14s linear infinite;
  animation: welAnim 14s linear infinite;
}
@media (max-width: 991px) {
  .about-two__image img:nth-child(3) {
    right: 12%;
  }
}
@media (max-width: 767px) {
  .about-two__image img:nth-child(3) {
    display: none;
  }
}
.about-two__image::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 90px;
  width: 24px;
  height: 183px;
  background: #115da9;
}
@media (max-width: 991px) {
  .about-two__image::after {
    height: 140px;
  }
}
.about-two__fact {
  position: absolute;
  left: 0;
  right: auto;
  top: auto;
  bottom: -30px;
  margin: auto;
  width: 366px;
  height: 192px;
  padding: 0 30px 14px;
  background-color: #115da9;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .about-two__fact {
    bottom: -70px;
  }
}
@media (max-width: 991px) {
  .about-two__fact {
    width: 290px;
  }
}
.about-two__fact__icon {
  color: #FFFFFF;
  font-size: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: color;
  width: 60px;
  height: 60px;
  background: #00000F;
  margin-top: -28px;
  margin-bottom: 24px;
}
.about-two__fact__count {
  margin: 0 0 6px;
  color: #FFFFFF;
  font-size: 76px;
  line-height: 86px;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
  margin: 0;
}
@media (max-width: 991px) {
  .about-two__fact__count {
    font-size: 58px;
    line-height: 68px;
  }
}
.about-two__fact__text {
  color: #FFFFFF;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  margin: 0 0 10px;
}
.about-two__content {
  position: relative;
  padding: 114px 0 0;
}
@media (max-width: 991px) {
  .about-two__content {
    padding: 50px 0 0;
  }
}
.about-two__content__item {
  position: relative;
}
@media (max-width: 767px) {
  .about-two__content__item {
    margin-bottom: 50px;
  }
}
.about-two__content__item .about-two__content__item__icon {
  font-size: 82px;
  color: #115da9;
  min-width: 78px;
  min-height: 90px;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  margin-bottom: 2px;
}
.about-two__content__item .about-two__content__item__icon i {
  display: inline-block;
  transform: scale(1);
  transition: all 0.6s ease;
}
.about-two__content__item:hover .about-two__content__item__icon i {
  transform: scale(0.9);
}
.about-two__content__item .about-two__content__item__title {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 6px;
}
.about-two__content__item .about-two__content__item__text {
  font-size: 16px;
  line-height: 26px;
  margin: 0;
}
.about-two__content .sec-title {
  padding-bottom: 13px;
}
.about-two__content__text {
  margin: 0 0 39px;
}
.about-two__content__list {
  margin: 0 -15px 36px 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .about-two__content__list {
    margin-right: -25px;
  }
}
.about-two__content__list li {
  list-style: none;
  position: relative;
  padding-left: 49px;
  font-size: 16px;
  line-height: 28px;
  color: #43435C;
  font-weight: 400;
}
.about-two__content__list li p {
  margin: 0;
  display: inline-block;
  line-height: 1;
}
.about-two__content__list li span {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 29px;
  height: 29px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #00000F;
  color: #00000F;
  transition: all 300ms ease;
}
.about-two__content__list li span::after {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 6px 0 6px 6px;
  transition: all 300ms ease;
  opacity: 0;
  border-color: transparent transparent transparent #115da9;
}
.about-two__content__list li:hover span {
  background-color: #115da9;
  color: #FFFFFF;
}
.about-two__content__list li:hover span::after {
  right: -6px;
  opacity: 1;
}
.about-two__content__image {
  position: relative;
  margin: 6px 0 0;
  max-width: 220px;
}
.about-two__content__image__shape {
  position: absolute;
  left: 18px;
  top: -15px;
}
.about-two__content__image__shape img {
  animation: messageMove 3s linear 0s infinite;
}
.about-two__content__image img {
  position: relative;
}
.about-two__content__image__bg {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 186px;
  height: 171px;
  background-color: #00000F;
  z-index: -1;
  overflow: hidden;
}
.about-two__content__image__bg::after {
  position: absolute;
  right: -55px;
  top: -48px;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #115da9;
  border-radius: 50%;
}
.about-two--about {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .about-two--about {
    padding: 80px 0 30px;
  }
}

.about-three {
  position: relative;
  z-index: 1;
  padding: 120px 0 150px;
  background-color: #FFFFFF;
}
@media (max-width: 767px) {
  .about-three {
    padding: 40px 0 80px;
  }
}
.about-three__image {
  position: relative;
  max-width: 570px;
}
@media (max-width: 991px) {
  .about-three__image {
    max-width: 100%;
  }
}
.about-three__image > img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 1199px) {
  .about-three__image > img {
    max-width: 88%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .about-three__image > img {
    max-width: 70%;
  }
  .about-three__image > img:nth-child(1) {
    padding-bottom: 102px !important;
  }
}
@media (max-width: 767px) {
  .about-three__image > img {
    max-width: 65%;
  }
}
.about-three__image img:nth-child(1) {
  padding: 0;
}
@media (max-width: 767px) {
  .about-three__image img:nth-child(1) {
    padding-bottom: 70px;
    width: 100%;
    max-width: 100%;
  }
}
.about-three__image img:nth-child(2) {
  display: inherit;
  position: absolute;
  right: 10px;
  bottom: 30px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .about-three__image img:nth-child(2) {
    max-width: 70%;
    bottom: 10px;
  }
}
@media (max-width: 767px) {
  .about-three__image img:nth-child(2) {
    display: none;
  }
}
.about-three__image img:nth-child(3) {
  display: inherit;
  position: absolute;
  right: -24px;
  top: 0px;
  -webkit-animation: welAnim 14s linear infinite;
  animation: welAnim 14s linear infinite;
}
@media (max-width: 991px) {
  .about-three__image img:nth-child(3) {
    right: 12%;
  }
}
@media (max-width: 767px) {
  .about-three__image img:nth-child(3) {
    display: none;
  }
}
.about-three__image::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 90px;
  width: 24px;
  height: 183px;
  background: #C2ED08;
}
.about-three__fact {
  position: absolute;
  left: 0;
  right: auto;
  top: auto;
  bottom: -30px;
  margin: auto;
  width: 366px;
  height: 192px;
  padding: 0 30px 14px;
  background: #C2ED08;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .about-three__fact {
    bottom: -70px;
  }
}
@media (max-width: 1199px) {
  .about-three__fact {
    width: 320px;
  }
}
@media (max-width: 767px) {
  .about-three__fact {
    width: 100%;
    max-width: 275px;
  }
}
.about-three__fact__icon {
  color: #FFFFFF;
  font-size: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: color;
  width: 60px;
  height: 60px;
  background: #00000F;
  margin-top: -28px;
  margin-bottom: 24px;
}
.about-three__fact__count {
  margin: 0 0 6px;
  color: #00000F;
  font-size: 76px;
  line-height: 86px;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
  margin: 0;
}
@media (max-width: 767px) {
  .about-three__fact__count {
    font-size: 58px;
    line-height: 68px;
  }
}
.about-three__fact__text {
  color: #43435C;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  margin: 0 0 10px;
}
.about-three__content {
  position: relative;
  padding: 114px 0 0;
}
@media (max-width: 991px) {
  .about-three__content {
    padding: 75px 0 0;
  }
}
.about-three__content__item {
  position: relative;
}
.about-three__content__item .about-three__content__item__icon {
  font-size: 82px;
  color: #00000F;
  min-width: 78px;
  min-height: 90px;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  margin-bottom: 2px;
}
.about-three__content__item .about-three__content__item__icon i {
  display: inline-block;
  transform: scale(1);
  transition: all 0.6s ease;
}
.about-three__content__item:hover .about-three__content__item__icon i {
  transform: scale(1.1);
}
.about-three__content__item .about-three__content__item__title {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 6px;
}
.about-three__content__item .about-three__content__item__text {
  font-size: 16px;
  line-height: 26px;
  margin: 0;
}
.about-three__content .sec-title__tagline {
  color: #43435C;
}
.about-three__content .sec-title {
  padding-bottom: 13px;
}
.about-three__content__text {
  margin: 0 0 39px;
}
.about-three__content__list {
  margin: 0 -15px 36px 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .about-three__content__list {
    margin-right: -25px;
  }
}
.about-three__content__list li {
  list-style: none;
  position: relative;
  padding-left: 49px;
  font-size: 16px;
  line-height: 28px;
  color: #43435C;
  font-weight: 400;
}
.about-three__content__list li p {
  margin: 0;
  display: inline-block;
  line-height: 1;
}
.about-three__content__list li span {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 29px;
  height: 29px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #00000F;
  color: #00000F;
  transition: all 300ms ease;
}
.about-three__content__list li span::after {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 6px 0 6px 6px;
  transition: all 300ms ease;
  opacity: 0;
  border-color: transparent transparent transparent #115da9;
}
.about-three__content__list li:hover span {
  background-color: #115da9;
  color: #FFFFFF;
}
.about-three__content__list li:hover span::after {
  right: -6px;
  opacity: 1;
}
.about-three__content__image {
  position: relative;
  margin: 6px 0 0;
  max-width: 220px;
}
.about-three__content__image__shape {
  position: absolute;
  left: 18px;
  top: -15px;
}
.about-three__content__image__shape img {
  animation: messageMove 3s linear 0s infinite;
}
.about-three__content__image img {
  position: relative;
}
.about-three__content__image__bg {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 186px;
  height: 171px;
  background-color: #00000F;
  z-index: -1;
  overflow: hidden;
}
.about-three__content__image__bg::after {
  position: absolute;
  right: -55px;
  top: -48px;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #115da9;
  border-radius: 50%;
}

.about-four {
  position: relative;
  padding: 120px 0 65px;
}
@media (max-width: 767px) {
  .about-four {
    padding: 80px 0;
  }
}
.about-four .sec-title__tagline {
  color: #FF5F2A;
}
.about-four__fact {
  position: relative;
  width: 244px;
  padding: 0 30px 20px;
  margin: 24px 0 54px;
  background: rgba(244, 244, 244, 0.5);
  transition: 0.4s ease-in-out;
  -webkit-transition: 0.4s ease-in-out;
  -moz-transition: 0.4s ease-in-out;
}
@media (max-width: 767px) {
  .about-four__fact {
    width: 100%;
    text-align: center;
  }
}
@media (min-width: 992px) and (max-width: 1340px) {
  .about-four__fact {
    width: 220px;
  }
}
.about-four__fact__icon {
  position: relative;
  top: -24px;
  color: #FFFFFF;
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  width: 60px;
  height: 60px;
  background: #FF5F2A;
  margin-bottom: -4px;
  transition: 0.4s ease-in-out;
  -webkit-transition: 0.4s ease-in-out;
  -moz-transition: 0.4s ease-in-out;
}
@media (max-width: 767px) {
  .about-four__fact__icon {
    margin-left: auto;
    margin-right: auto;
  }
}
.about-four__fact:hover .about-four__fact__icon {
  background: #00000F;
}
.about-four__fact__count {
  color: #43435C;
  font-size: 52px;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
  margin: 0;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .about-four__fact__count {
    font-size: 45px;
  }
}
@media (max-width: 767px) {
  .about-four__fact__count {
    justify-content: center;
  }
}
.about-four__fact:hover .about-four__fact__count {
  color: #FFFFFF;
}
.about-four__fact__text {
  color: #00000F;
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  margin: 0 0 12px;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
}
.about-four__fact:hover .about-four__fact__text {
  color: #FFFFFF;
}
.about-four__fact:hover {
  background: #FF5F2A;
}
.about-four__content {
  position: relative;
  margin-top: 44px;
}
@media (max-width: 991px) {
  .about-four__content {
    margin-top: 0;
  }
}
@media (min-width: 1345px) {
  .about-four__content {
    padding-right: 65px;
  }
}
.about-four__content__text {
  margin: 13px 0 39px;
}
.about-four__content__number {
  color: #FF5F2A;
  font-size: 24px;
  display: flex;
  align-items: center;
  margin: 0 0 46px;
}
.about-four__content__number a {
  font-size: 16px;
  color: #00000F;
  margin-left: 18px;
}
.about-four__content__number a:hover {
  color: #FF5F2A;
}
.about-four__content .ripcar-btn {
  background-color: #00000F;
}
.about-four__content .ripcar-btn::after {
  background-color: #FF5F2A;
}
.about-four__content .ripcar-btn:hover {
  background-color: #FF5F2A;
}
.about-four__image {
  position: relative;
  text-align: right;
}
@media (max-width: 991px) {
  .about-four__image {
    text-align: left;
  }
}
.about-four__image__shape {
  position: relative;
  text-align: left;
  margin: 0 0 46px -112px;
}
@media (max-width: 991px) {
  .about-four__image__shape {
    margin: 45px 0 25px;
  }
}
.about-four__image img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 991px) {
  .about-four__image img {
    width: 100%;
  }
}

.scroll-section {
  position: relative;
  z-index: 1;
  width: 100%;
  text-align: center;
}
.scroll-section::after {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: rgba(0, 0, 15, 0.15);
  z-index: -1;
}
.scroll-section__btn {
  margin: 0 auto;
  width: 152px;
  height: 152px;
  background-color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 16px;
  color: #00000F;
  font-weight: 400;
  text-transform: capitalize;
  gap: 13px;
  position: relative;
  z-index: 1;
}
.scroll-section__btn i {
  font-size: 22px;
}
.scroll-section__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0;
  background: 0 0;
  border-radius: 50%;
  transition: all 0.4s;
  background-color: #FF5F2A;
  transform: scale(1.2, 1.2);
}
.scroll-section__btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: 50%;
  border: 1px solid #FF5F2A;
  transition: all 0.3s;
}
.scroll-section__btn:hover {
  color: #FFFFFF;
}
.scroll-section__btn:hover i {
  transform: rotate(0);
}
.scroll-section__btn:hover::after {
  opacity: 1;
  transform: scale(1, 1);
}
.scroll-section__btn:hover::before {
  opacity: 0;
  transform: scale(0.5, 0.5);
}

/*--------------------------------------------------------------
# Funfact 01
--------------------------------------------------------------*/
.funfact-one {
  position: relative;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: row;
  column-gap: 49px;
  padding-left: 88px;
}
@media (max-width: 1365px) {
  .funfact-one {
    padding-left: 0;
    column-gap: 40px;
  }
}
@media (max-width: 1199px) {
  .funfact-one {
    column-gap: 30px;
  }
}
@media (max-width: 991px) {
  .funfact-one {
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .funfact-one {
    justify-content: space-between;
    column-gap: 24px;
    margin-top: 30px;
  }
}
@media (max-width: 575px) {
  .funfact-one {
    flex-wrap: wrap;
  }
}
.funfact-one__list {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  flex-wrap: wrap;
  row-gap: 78px;
  padding-top: 28px;
  margin: 0;
}
@media (max-width: 767px) {
  .funfact-one__list {
    flex: 0 100%;
  }
}
@media (max-width: 575px) {
  .funfact-one__list:nth-of-type(1) {
    padding-top: 0;
  }
  .funfact-one__list:nth-last-child(1) {
    padding-top: 78px;
  }
}
.funfact-one__list:nth-child(1) .funfact-one__item:nth-child(1) {
  margin-top: 69px;
}
.funfact-one .funfact-one__item {
  position: relative;
  padding: 0px 30px 14px;
  background: #FFFFFF;
  border-radius: unset;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  min-width: 311px;
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.05);
}
@media (max-width: 1199px) {
  .funfact-one .funfact-one__item {
    min-width: 253px;
  }
}
@media (max-width: 991px) {
  .funfact-one .funfact-one__item {
    min-width: 333px;
  }
}
@media (max-width: 767px) {
  .funfact-one .funfact-one__item {
    min-width: auto;
    width: 100%;
  }
}
@media (max-width: 575px) {
  .funfact-one .funfact-one__item {
    min-width: 320px;
    width: 100%;
    text-align: center;
  }
  .funfact-one .funfact-one__item:nth-child(2) {
    margin-top: 0;
  }
}
.funfact-one .funfact-one__item:hover {
  background: #115da9;
}
.funfact-one .funfact-one__item:hover .funfact-one__text, .funfact-one .funfact-one__item:hover .funfact-one__count {
  color: #FFFFFF;
}
.funfact-one .funfact-one__item:hover .funfact-one__icon i {
  background: #00000F;
}
.funfact-one .funfact-one__icon {
  font-size: 18px;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  margin-top: -28px;
  margin-bottom: 24px;
}
.funfact-one .funfact-one__icon i {
  font-size: 24px;
  width: 60px;
  height: 60px;
  background: #115da9;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
}
@media (max-width: 575px) {
  .funfact-one .funfact-one__icon i {
    margin-left: auto;
    margin-right: auto;
  }
}
.funfact-one .funfact-one__content {
  position: relative;
}
.funfact-one .funfact-one__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 10px;
  transition: 0.3s ease-in-out;
}
.funfact-one .funfact-one__count {
  font-size: 76px;
  line-height: 86px;
  font-weight: 700;
  color: #00000F;
  margin: 0;
  transition: 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .funfact-one .funfact-one__count {
    font-size: 52px;
    line-height: 62px;
  }
}

/*--------------------------------------------------------------
# Funfact 02
--------------------------------------------------------------*/
.funfact-two {
  position: relative;
  padding: 0 0 112px;
}
@media (max-width: 767px) {
  .funfact-two {
    padding: 0 0 80px;
  }
}
.funfact-two__item {
  position: relative;
  width: 100%;
}
.funfact-two__content {
  position: relative;
}
@media (max-width: 575px) {
  .funfact-two__content {
    text-align: center;
  }
}
.funfact-two__count {
  position: relative;
  font-size: 76px;
  line-height: 86px;
  font-weight: 700;
  color: #00000F;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 15, 0.2);
  margin-bottom: 13px;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
}
@media (max-width: 1199px) {
  .funfact-two__count {
    font-size: 56px;
    line-height: 68px;
  }
}
@media (max-width: 1199px) {
  .funfact-two__count {
    font-size: 48px;
    line-height: 58px;
  }
}
@media (max-width: 575px) {
  .funfact-two__count {
    justify-content: center;
  }
}
.funfact-two__count::after {
  content: "";
  position: absolute;
  right: 0;
  left: auto;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: #115da9;
  transition: 0.4s ease-in-out;
  -webkit-transition: 0.4s ease-in-out;
  -moz-transition: 0.4s ease-in-out;
}
.funfact-two__text {
  font-size: 16px;
  line-height: 24px;
  margin: 0;
}
.funfact-two__item:hover .funfact-two__count {
  color: #115da9;
}
.funfact-two__item:hover .funfact-two__count::after {
  width: 100%;
  right: auto;
  left: 0;
}
.funfact-two--home-four {
  position: relative;
}
.funfact-two--home-four .funfact-two__item:hover .funfact-two__count {
  color: #FF5F2A;
}
.funfact-two--home-four .funfact-two__count::after {
  background-color: #FF5F2A;
}

/*--------------------------------------------------------------
# Portfolio 01
--------------------------------------------------------------*/
.portfolio-one {
  position: relative;
  padding: 191px 0 120px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .portfolio-one {
    padding: 80px 0;
  }
}
.portfolio-one .portfolio-one__shape-one {
  position: absolute;
  right: -22px;
  top: 300px;
  animation: topToBottom 2.5s linear 0s infinite;
}
@media (max-width: 1680px) and (min-width: 1440px) {
  .portfolio-one .portfolio-one__shape-one {
    right: -200px;
  }
  .portfolio-one .portfolio-one__shape-one img {
    max-width: 80%;
  }
}
@media (max-width: 1399px) {
  .portfolio-one .portfolio-one__shape-one {
    display: none;
  }
}
.portfolio-one .sec-title__tagline {
  margin: -7px 0 2px;
}
.portfolio-one .sec-title__title {
  margin-bottom: 13px;
}
.portfolio-one .sec-title__sesc {
  margin-bottom: 42px;
}
@media (max-width: 1199px) {
  .portfolio-one .sec-title__sesc br {
    display: none;
  }
}
@media (max-width: 767px) {
  .portfolio-one .sec-title__sesc {
    margin-bottom: 24px;
  }
}
.portfolio-one .sec-title {
  position: relative;
}
@media (max-width: 767px) {
  .portfolio-one .sec-title {
    margin-bottom: 26px;
  }
}
.portfolio-one__item {
  position: relative;
  overflow: hidden;
}
.portfolio-one__item .portfolio-one__item__image {
  max-width: 100%;
  width: 100%;
  height: auto;
}
.portfolio-one__item .portfolio-one__item__image::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background: rgb(0, 3, 30);
  background: -moz-linear-gradient(180deg, rgba(0, 3, 30, 0) 0%, rgb(0, 0, 15) 100%);
  background: -webkit-linear-gradient(180deg, rgba(0, 3, 30, 0) 0%, rgb(0, 0, 15) 100%);
  background: linear-gradient(180deg, rgba(0, 3, 30, 0) 0%, rgb(0, 0, 15) 100%);
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .portfolio-one__item .portfolio-one__item__image a {
    display: block;
    width: 100%;
  }
  .portfolio-one__item .portfolio-one__item__image img {
    width: 100%;
    object-fit: cover;
  }
}
.portfolio-one__item .portfolio-one__item__content {
  position: absolute;
  left: 0;
  bottom: -20px;
  width: 100%;
  padding: 30px 30px 26px;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
}
@media (max-width: 1199px) {
  .portfolio-one__item .portfolio-one__item__content {
    padding: 30px 22px 26px;
  }
}
.portfolio-one__item .portfolio-one__item__meta {
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 0 12px;
  left: -90%;
  top: -40px;
  transition: 0.5s ease-in-out;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  transition-delay: 0.1s;
}
.portfolio-one__item .portfolio-one__item__meta a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0 12px;
  line-height: 29px;
  height: 29px;
  background: #115da9;
  font-size: 16px;
  font-weight: 400;
  color: #FFFFFF;
}
.portfolio-one__item .portfolio-one__item__meta a:hover {
  background: #00000F;
}
.portfolio-one__item .portfolio-one__item__content_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}
.portfolio-one__item .portfolio-one__item__title {
  position: relative;
  font-size: 18px;
  line-height: 28px;
  color: #FFFFFF;
  margin: 0;
  left: -90%;
  top: -30px;
  transition: 0.5s ease-in-out;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  transition-delay: 0.4s;
}
.portfolio-one__item .portfolio-one__item__title a {
  font-size: inherit;
  color: inherit;
  font-weight: inherit;
}
.portfolio-one__item .portfolio-one__item__title a:hover {
  color: #115da9;
}
.portfolio-one__item .portfolio-one__item__content_left {
  position: relative;
  width: calc(100% - 65px);
}
.portfolio-one__item .portfolio-one__item__icon {
  width: 50px;
  height: 40px;
  color: #FFFFFF;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: #115da9;
  position: relative;
  z-index: 1;
  opacity: 0;
  bottom: -60px;
  transition: 0.5s ease-in-out;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  transition-delay: 0.6s;
}
.portfolio-one__item .portfolio-one__item__icon i {
  position: relative;
}
.portfolio-one__item .portfolio-one__item__icon:hover::after {
  background: #00000F;
}
.portfolio-one__item:hover .portfolio-one__item__content {
  visibility: visible;
  opacity: 1;
  z-index: 2;
  bottom: 0px;
}
.portfolio-one__item:hover .portfolio-one__item__image::after {
  height: 181px;
}
.portfolio-one__item:hover .portfolio-one__item__meta {
  left: 0;
  top: 0;
}
.portfolio-one__item:hover .portfolio-one__item__title {
  left: 0;
  top: 0;
}
.portfolio-one__item:hover .portfolio-one__item__icon {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# Portfolio 02
--------------------------------------------------------------*/
.portfolio-two {
  position: relative;
}
.portfolio-two__secHeading {
  position: relative;
  padding: 108px 0 44px;
}
@media (max-width: 767px) {
  .portfolio-two__secHeading {
    padding-top: 80px;
  }
}
.portfolio-two__secHeading .portfolio-two__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.portfolio-two__secHeading .portfolio-two__bg::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000F;
  z-index: 0;
  opacity: 0.8;
}
@media (max-width: 767px) {
  .portfolio-two .text-start {
    text-align: left !important;
  }
}
.portfolio-two .sec-title {
  position: relative;
}
.portfolio-two .sec-title__title {
  font-size: 76px;
  line-height: 86px;
  font-weight: 700;
  font-style: italic;
  color: #FFFFFF;
}
@media (max-width: 1199px) {
  .portfolio-two .sec-title__title {
    font-size: 56px;
    line-height: 66px;
  }
}
@media (max-width: 991px) {
  .portfolio-two .sec-title__title {
    font-size: 38px;
    line-height: 48px;
  }
}
@media (max-width: 767px) {
  .portfolio-two .sec-title__title {
    font-size: 34px;
    line-height: 44px;
    margin-bottom: 40px;
  }
}
.portfolio-two__item {
  position: relative;
}
.portfolio-two__item__image {
  max-width: 100%;
  width: auot;
  height: auto;
}
.portfolio-two__item__meta {
  position: absolute;
  left: 0;
  top: 29px;
  transform: rotateZ(-90deg) translate(-36px, -36px);
  width: auto;
  height: auto;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
}
@media (max-width: 1199px) {
  .portfolio-two__item__meta {
    transform: rotateZ(-90deg) translate(-12px, -26px);
  }
}
.portfolio-two__item__meta a {
  padding: 12px 30px 12px;
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  color: #FFFFFF;
  background: #115da9;
  text-transform: uppercase;
}
@media (max-width: 1199px) {
  .portfolio-two__item__meta a {
    padding: 4px 12px 4px;
  }
}
.portfolio-two__item__meta a:hover {
  background: #FFFFFF;
  color: #115da9;
}
.portfolio-two__item__content {
  position: absolute;
  left: 0;
  bottom: -25px;
  padding: 24px;
  width: 100%;
  height: auto;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease-in-out;
  -webkit-transition: 0.4s ease-in-out;
  -moz-transition: 0.4s ease-in-out;
  background: rgb(0, 3, 30);
  background: -moz-linear-gradient(0deg, rgb(0, 3, 30) 0%, rgba(0, 0, 15, 0) 100%);
  background: -webkit-linear-gradient(0deg, rgb(0, 3, 30) 0%, rgba(0, 0, 15, 0) 100%);
  background: linear-gradient(0deg, rgb(0, 3, 30) 0%, rgba(0, 0, 15, 0) 100%);
}
.portfolio-two__item__title {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  color: #FFFFFF;
  display: flex;
  justify-content: space-between;
  align-items: start;
  flex-direction: row;
  column-gap: 15px;
}
.portfolio-two__item__title a {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}
.portfolio-two__item__title a:hover {
  color: #115da9;
}
.portfolio-two__item__icon {
  color: #FFFFFF;
  transform: rotate(-45deg);
}
.portfolio-two__item__icon > i {
  font-size: 14px;
}
.portfolio-two__item:hover .portfolio-two__item__content {
  opacity: 1;
  visibility: visible;
  bottom: 0;
}
.portfolio-two__item:hover .portfolio-two__item__meta {
  opacity: 1;
  visibility: visible;
}

/*--------------------------------------------------------------
# Portfolio 03
--------------------------------------------------------------*/
.portfolio-three {
  position: relative;
  overflow: hidden;
}
.portfolio-three .slick-track {
  display: flex;
  align-items: center;
}
.portfolio-three__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 12px;
}
.portfolio-three__item img {
  width: 100%;
  height: auto;
}
.portfolio-three__item__content {
  position: absolute;
  left: 30px;
  bottom: 30px;
  width: 100%;
  max-width: 382px;
  z-index: 2;
}
@media (max-width: 1199px) {
  .portfolio-three__item__content {
    max-width: 350px;
  }
}
@media (max-width: 500px) {
  .portfolio-three__item__content {
    max-width: calc(100% - 60px);
  }
}
.portfolio-three__item__meta {
  position: relative;
  margin: 0 0 2px;
  visibility: hidden;
  opacity: 0;
  animation-duration: 0.4s;
  animation-fill-mode: both;
}
.portfolio-three__item__meta a {
  padding: 7px 25px;
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  color: #00000F;
  background: #FFFFFF;
  text-transform: uppercase;
}
@media (max-width: 500px) {
  .portfolio-three__item__meta a {
    padding: 5px 20px;
    font-size: 15px;
  }
}
.portfolio-three__item__meta a:hover {
  background: #FF5F2A;
  color: #FFFFFF;
}
.portfolio-three__item:hover .portfolio-three__item__meta {
  visibility: visible;
  opacity: 1;
  animation-delay: 0.1s;
  animation-name: fadeInUp;
}
.portfolio-three__item__title {
  width: 100%;
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  padding: 28px 24px;
  margin: 0;
  background: #FF5F2A;
  color: #FFFFFF;
  column-gap: 15px;
  visibility: hidden;
  opacity: 0;
  animation-duration: 0.6s;
  animation-fill-mode: both;
}
@media (max-width: 500px) {
  .portfolio-three__item__title {
    padding: 18px 20px;
    font-size: 18px;
    line-height: 27px;
  }
}
.portfolio-three__item__title a {
  color: inherit;
  width: 100%;
  transition: 0.4s ease-in-out;
  -webkit-transition: 0.4s ease-in-out;
  -moz-transition: 0.4s ease-in-out;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}
.portfolio-three__item__title a:hover {
  color: #00000F;
}
.portfolio-three__item__title a i {
  transform: rotate(-45deg);
  font-size: 16px;
}
.portfolio-three__item:hover .portfolio-three__item__title {
  visibility: visible;
  opacity: 1;
  animation-delay: 0.3s;
  animation-name: fadeInUp;
}

/*--------------------------------------------------------------
# Portfolio Page
--------------------------------------------------------------*/
.case-page {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .case-page {
    padding: 80px 0;
  }
}
.case-page .blog-page__pagination {
  margin-top: 26px;
}

/*-- Case Details --*/
.case-details {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .case-details {
    padding: 80px 0;
  }
}
.case-details__image {
  position: relative;
  margin: 0 0 30px;
}
.case-details__image img {
  width: 100%;
  height: auto;
}
.case-details__meta {
  position: relative;
  margin-bottom: 25px;
}
.case-details__meta a {
  display: inline-block;
  padding: 0 10px;
  line-height: 30px;
  height: 30px;
  background: #115da9;
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 400;
  color: #FFFFFF;
}
.case-details__meta a:hover {
  background-color: #00000F;
  color: #FFFFFF;
}
.case-details__title {
  font-size: 32px;
  margin: 0 0 16px;
}
.case-details__content {
  position: relative;
}
.case-details__content__text {
  margin: 0 0 17px;
}
.case-details__content__heading {
  font-size: 24px;
  line-height: 34px;
  margin: 35px 0 17px;
}
.case-details__content__image {
  position: relative;
  margin-top: 15px;
  margin-bottom: 42px;
}
.case-details__content__image img {
  width: 100%;
  height: auto;
}
.case-details__info {
  position: relative;
  background-color: rgba(244, 244, 244, 0.5);
  padding: 30px;
}
.case-details__info__title {
  font-size: 18px;
  margin: 0 0 19px;
}
.case-details__info__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.case-details__info__list li {
  position: relative;
  margin: 0 0 14px;
}
.case-details__info__list li span {
  display: block;
  font-weight: 700;
  color: #00000F;
}
.case-details__info__list li span a {
  color: #115da9;
}
.case-details__info__list li span a:hover {
  color: #00000F;
}
.case-details__info__social {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 43px 0 0;
}
.case-details__info__social a {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: rgba(67, 67, 92, 0.5);
  background: rgba(67, 67, 92, 0.1);
  font-size: 18px;
  border: unset;
  outline: unset;
}
.case-details__info__social a:hover {
  background: #115da9;
  color: #FFFFFF;
}
.case-details__cta-image {
  margin-top: 0;
  margin-bottom: 50px;
}
.case-details .mt20 {
  margin-top: 20px;
}
.case-details__feature {
  position: relative;
}
.case-details__feature__icon {
  font-size: 80px;
  color: #115da9;
  line-height: 1;
  margin-bottom: 2px;
  display: block;
  position: relative;
  transition: all 0.4s ease;
}
.case-details__feature__icon i {
  display: inline-block;
  transition: all 0.6s ease;
}
.case-details__feature__icon .ripc-icon-blueprint1 {
  font-size: 65px;
  margin-bottom: 16px;
}
.case-details__feature:hover .case-details__feature__icon i {
  transform: rotateY(180deg);
}
.case-details__feature__title {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 6px;
}
.case-details__feature__text {
  margin: 0;
}
@media (min-width: 768px) and (max-width: 991px) {
  .case-details__feature__text br {
    display: none;
  }
}
.case-details__video {
  position: relative;
  margin-top: 42px;
}
.case-details__video img {
  width: 100%;
  height: auto;
}
@media (max-width: 500px) {
  .case-details__video img {
    min-height: 300px;
    object-fit: cover;
  }
}
.case-details__video .video-popup {
  width: 100px;
  height: 100px;
  background-color: #115da9;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
}
.case-details__video .video-popup:hover {
  background-color: #00000F;
  color: #FFFFFF;
}
.case-details__pagination {
  margin-top: 50px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0;
  border-top: 1px solid rgba(0, 0, 15, 0.1);
  border-bottom: 1px solid rgba(0, 0, 15, 0.1);
}
.case-details__pagination a {
  font-size: 16px;
  color: #43435C;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  gap: 22px;
}
@media (max-width: 500px) {
  .case-details__pagination a {
    font-size: 0;
  }
}
.case-details__pagination a i {
  width: 70px;
  height: 70px;
  background-color: #F4F4F4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(67, 67, 92, 0.4);
  font-size: 25px;
  transition: 0.3s ease-in-out;
}
.case-details__pagination a:hover {
  color: #115da9;
}
.case-details__pagination a:hover i {
  background-color: #115da9;
  color: #FFFFFF;
}

/*--------------------------------------------------------------
# Pricing 01
--------------------------------------------------------------*/
.pricing-one {
  position: relative;
  background-color: #FFFFFF;
  padding: 111px 0 120px;
}
.pricing-one .sec-title__title {
  margin: -9px 0 14px;
}
.pricing-one .sec-title__sesc {
  margin: 0 0 42px;
}
.pricing-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.1;
}
.pricing-one .container {
  position: relative;
  z-index: 3;
}

.pricing-one__setting {
  position: relative;
  margin: 0 0 0;
}
@media (max-width: 991px) {
  .pricing-one__setting {
    margin-bottom: 60px;
  }
}
.pricing-one__setting .pricing-one__setting__switch {
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
  column-gap: 20px;
  margin: 0 0 24px;
}
.pricing-one__setting .pricing-one__setting__switch h4 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
}
.pricing-one__setting .pricing-one__setting__switch input[type=checkbox] {
  height: 0;
  width: 0;
  visibility: hidden;
  position: absolute;
}
.pricing-one__setting .pricing-one__setting__switch label {
  cursor: pointer;
  text-indent: -9999px;
  width: 59px;
  height: 31px;
  background: transparent;
  display: block;
  border-radius: 50px;
  position: relative;
  border: 1px solid rgba(0, 0, 15, 0.2);
}
.pricing-one__setting .pricing-one__setting__switch label:after {
  content: "";
  position: absolute;
  top: 7px;
  left: 8px;
  width: 15px;
  height: 15px;
  background: #115da9;
  border-radius: 50%;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
}
.pricing-one__setting .pricing-one__setting__switch input:checked + label {
  background: transparent;
}
.pricing-one__setting .pricing-one__setting__switch input:checked + label:after {
  left: calc(100% - 8px);
  transform: translateX(-100%);
}
.pricing-one__setting .pricing-one__setting__switch label:active:after {
  width: 59px;
}
.pricing-one__setting .pricing-one__setting__advantges {
  font-size: 18px;
  margin: 0 0 43px;
}
.pricing-one__setting .pricing-one__setting__advantges a {
  color: #115da9;
}
.pricing-one__setting .pricing-one__setting__content {
  position: relative;
}
.pricing-one__setting .pricing-one__setting__thumb {
  position: relative;
}
.pricing-one__setting .pricing-one__setting__thumb img {
  max-width: 100%;
  width: 100%;
}
.pricing-one__setting .pricing-one__setting__cnt_text {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 28px 28px 20px;
}
.pricing-one__setting .pricing-one__setting__title {
  font-size: 32px;
  line-height: 42px;
  color: #FFFFFF;
}
@media (max-width: 1199px) {
  .pricing-one__setting .pricing-one__setting__title {
    font-size: 30px;
    line-height: 40px;
  }
}
.pricing-one__setting .pricing-one__setting__title a {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}
.pricing-one__setting .pricing-one__setting__title a:hover {
  color: #115da9;
}
.pricing-one__setting .pricing-one__setting__tagline {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #FFFFFF;
  margin: 0 0 10px;
}

.pricing-one {
  position: relative;
  padding: 120px 0;
  background-color: #FFFFFF;
}
@media (max-width: 767px) {
  .pricing-one {
    padding: 80px 0;
  }
}
.pricing-one__card {
  position: relative;
  z-index: 2;
  background-color: #FFFFFF;
  border-radius: 0;
  padding: 42px 50px 50px;
  margin: 0;
  transition: 500ms ease;
}
@media (max-width: 1199px) {
  .pricing-one__card {
    padding: 30px 25px 35px;
  }
}
.pricing-one__card::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  z-index: -1;
  opacity: 0;
  border-radius: 0;
  background-color: #115da9;
  transition: all 0.5s;
}
.pricing-one__card:hover::before, .pricing-one__card.active::before {
  height: 100%;
  opacity: 1;
}
.pricing-one__card:hover .pricing-one__card__icon, .pricing-one__card.active .pricing-one__card__icon {
  background-color: #115da9;
  color: #FFFFFF;
}
.pricing-one__card:hover .pricing-one__card__icon i, .pricing-one__card.active .pricing-one__card__icon i {
  animation: bounceIn 1s linear;
  animation-duration: 1s;
  animation-duration: 1s;
  animation-duration: 2s;
}
.pricing-one__card:hover .pricing-one__card__price,
.pricing-one__card:hover .pricing-one__card__title, .pricing-one__card.active .pricing-one__card__price,
.pricing-one__card.active .pricing-one__card__title {
  color: #FFFFFF;
}
.pricing-one__card:hover .pricing-one__card__list li, .pricing-one__card.active .pricing-one__card__list li {
  color: #FFFFFF;
}
.pricing-one__card:hover .ripcar-btn, .pricing-one__card.active .ripcar-btn {
  background: #FFFFFF;
  color: #00000F;
}
.pricing-one__card:hover .ripcar-btn:hover, .pricing-one__card.active .ripcar-btn:hover {
  background: #00000F;
  color: #FFFFFF;
}
.pricing-one__card:hover .pricing-one__card__status, .pricing-one__card.active .pricing-one__card__status {
  background: #FFFFFF;
  color: #00000F;
}
.pricing-one__card__title {
  font-size: 16px;
  color: #00000F;
  line-height: 26px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 16px;
  font-family: "DM Sans", sans-serif;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
}
.pricing-one__card__price {
  color: #00000F;
  font-size: 52px;
  font-weight: 700;
  line-height: 62px;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  margin-bottom: 44px;
}
@media (max-width: 1199px) {
  .pricing-one__card__price {
    margin-bottom: 28px;
  }
}
.pricing-one__card__price span {
  display: inline-block;
  font-size: 16px;
  line-height: 26px;
  margin-left: 12px;
  top: -4px;
  position: relative;
}
.pricing-one__card__status {
  font-size: 16px;
  line-height: 26px;
  color: #FFFFFF;
  font-weight: 700;
  padding: 10px 16px 9px;
  background: #115da9;
  clip-path: polygon(0% 0%, 91% 0%, 100% 100%, 0% 100%);
  transition: all 0.4s;
  max-width: 324px;
  width: 100%;
}
.pricing-one__card__list {
  margin: 23px 0 43px;
  padding: 0;
  border: unset;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  row-gap: 10px;
}
.pricing-one__card__list li {
  list-style: none;
  font-size: 16px;
  line-height: 26px;
  color: #43435C;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
}
.pricing-one__card__list li i {
  font-size: 11px;
  margin-right: 7px;
  opacity: 40%;
}
.pricing-one__card .ripcar-btn {
  color: #FFFFFF;
  background-color: #00000F;
  padding: 0 29px;
}
.pricing-one__card .ripcar-btn:hover {
  color: #00000F;
  background-color: #FFFFFF;
}
.pricing-one--pricing {
  position: relative;
}
.pricing-one--pricing .pricing-one__card {
  background: rgba(244, 244, 244, 0.5);
}
.pricing-one--home-four {
  background-color: rgba(244, 244, 244, 0.5);
  padding: 110px 0;
}
@media (max-width: 767px) {
  .pricing-one--home-four {
    padding: 80px 0;
  }
}
.pricing-one--home-four .sec-title__tagline {
  color: #FF5F2A;
}
.pricing-one--home-four .sec-title__title {
  margin: 0;
}
.pricing-one--home-four__btn {
  text-align: right;
  margin: 7px 0 0;
}
@media (max-width: 767px) {
  .pricing-one--home-four__btn {
    text-align: left;
    margin: 30px 0 0px;
  }
}
.pricing-one--home-four__btn .ripcar-btn {
  background-color: #FF5F2A;
  height: 54px;
  padding: 0 30px;
}
.pricing-one--home-four__btn .ripcar-btn:hover {
  background-color: #00000F;
}
.pricing-one--home-four .pricing-one__card::before,
.pricing-one--home-four .pricing-one__card__status {
  background: #FF5F2A;
}

/*--------------------------------------------------------------
# Testimonial 01
--------------------------------------------------------------*/
.testimonials-one {
  position: relative;
  padding: 111px 0 53px;
}
@media (max-width: 767px) {
  .testimonials-one {
    padding: 80px 0 20px;
  }
}
@media (max-width: 991px) {
  .testimonials-one .sec-title {
    margin-bottom: 60px;
  }
}
.testimonials-one .sec-title__title {
  margin-bottom: 13px;
}
.testimonials-one .sec-title__sesc {
  margin-bottom: 42px;
}
@media (max-width: 1199px) {
  .testimonials-one .sec-title__sesc br {
    display: none;
  }
}
.testimonials-one__nav {
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
  column-gap: 10px;
}
.testimonials-one__nav button {
  width: 80px;
  height: 48px;
  background: #00000F;
  color: #FFFFFF;
  font-size: 22px;
  border: unset;
  outline: unset;
  box-shadow: unset;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.testimonials-one__nav button:hover::after {
  background: #115da9;
}
.testimonials-one__nav button.testimonials-one__prev {
  background: #115da9;
}
.testimonials-one__nav button.testimonials-one__prev:hover::after {
  background: #00000F;
}
.testimonials-one__wrapper {
  position: relative;
  margin-top: 10px;
}
.testimonials-one__card {
  position: relative;
}
@media (max-width: 767px) {
  .testimonials-one__card {
    padding-top: 80px;
  }
}
.testimonials-one__card .testimonials-one__card__author {
  position: relative;
  padding: 15px 0 14px 111px;
  margin-bottom: 23px;
}
@media (max-width: 575px) {
  .testimonials-one__card .testimonials-one__card__author {
    padding: 8px 0 7px 85px;
  }
}
.testimonials-one__card .testimonials-one__card__img {
  max-width: 88px;
  width: 100%;
  height: 88px;
  border-radius: 50%;
  border: unset;
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 575px) {
  .testimonials-one__card .testimonials-one__card__img {
    max-width: 70px;
    width: 70px;
    height: 70px;
  }
}
.testimonials-one__card .testimonials-one__card__name {
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
  margin-bottom: 7px;
  text-transform: uppercase;
}
@media (max-width: 575px) {
  .testimonials-one__card .testimonials-one__card__name {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 5px;
  }
}
.testimonials-one__card .testimonials-one__card__designation {
  font-size: 16px;
  line-height: 26px;
  color: #115da9;
  margin: 0;
}
@media (max-width: 575px) {
  .testimonials-one__card .testimonials-one__card__designation {
    font-size: 12px;
    line-height: 24px;
  }
}
.testimonials-one__card .testimonials-one__card__rating {
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
  column-gap: 5px;
}
.testimonials-one__card .testimonials-one__card__rating i {
  color: #115da9;
  font-size: 30px;
  position: relative;
  z-index: 2;
  background: #FFFFFF;
}
@media (max-width: 575px) {
  .testimonials-one__card .testimonials-one__card__rating i {
    font-size: 22px;
  }
}
.testimonials-one__card .testimonials-one__card__rating__bdr {
  position: absolute;
  width: calc(100% - 216px);
  height: 1px;
  background: #00000F;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}
@media (max-width: 575px) {
  .testimonials-one__card .testimonials-one__card__rating__bdr {
    width: calc(100% - 160px);
  }
}
.testimonials-one__card .testimonials-one__card__content {
  position: relative;
}
.testimonials-one__card .testimonials-one__card__content h3 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  margin-bottom: 22px;
}
@media (max-width: 575px) {
  .testimonials-one__card .testimonials-one__card__content h3 {
    font-size: 20px;
    line-height: 30px;
  }
}
.testimonials-one__card .testimonials-one__card__quote {
  font-size: 50px;
  padding: 19px 15px;
  background-color: #115da9;
  position: absolute;
  top: 0;
  right: 0;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 78%);
}
@media (max-width: 575px) {
  .testimonials-one__card .testimonials-one__card__quote {
    font-size: 38px;
  }
}
.testimonials-one__card .testimonials-one__card__quote i {
  color: #FFFFFF;
}

/*--------------------------------------------------------------
# Testimonial 02
--------------------------------------------------------------*/
.testimonials-two {
  padding: 113px 0 0;
}
@media (max-width: 767px) {
  .testimonials-two {
    padding: 80px 0 0;
  }
}
.testimonials-two .sec-title {
  margin-bottom: 40px;
  max-width: 536px;
  margin-left: auto;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .testimonials-two .sec-title {
    padding-left: 40px;
  }
}
@media (max-width: 991px) {
  .testimonials-two .sec-title {
    margin-bottom: 40px;
    max-width: 100%;
    margin-left: 0;
    padding-top: 41px;
  }
}
.testimonials-two__image {
  margin-right: -186px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .testimonials-two__image {
    margin-right: -120px;
    overflow: hidden;
  }
  .testimonials-two__image img {
    max-width: unset;
    object-fit: cover;
  }
}
@media (max-width: 991px) {
  .testimonials-two__image {
    margin-right: 0;
  }
}
.testimonials-two__card {
  position: relative;
  background-color: #00000F;
  padding: 50px 88px 50px 111px;
  clip-path: polygon(11.8% 0, 100% 0%, 100% 93.5%, 0 100%);
}
@media (max-width: 1199px) {
  .testimonials-two__card {
    padding: 40px 40px 45px 80px;
  }
}
@media (max-width: 767px) {
  .testimonials-two__card {
    padding: 22px 20px 30px 20px;
  }
}
@media (max-width: 991px) {
  .testimonials-two__card {
    clip-path: unset;
  }
}
@media (max-width: 380px) {
  .testimonials-two__card {
    padding: 80px 22px 30px 22px;
  }
}
.testimonials-two__card .testimonials-two__card__author {
  position: relative;
  padding: 15px 0 14px 111px;
  margin-bottom: 23px;
}
@media (max-width: 767px) {
  .testimonials-two__card .testimonials-two__card__author {
    padding: 12px 0 11px 78px;
  }
}
.testimonials-two__card .testimonials-two__card__img {
  max-width: 88px;
  width: 100%;
  height: 88px;
  border-radius: 50%;
  border: unset;
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 767px) {
  .testimonials-two__card .testimonials-two__card__img {
    max-width: 65px;
    height: 65px;
  }
}
.testimonials-two__card .testimonials-two__card__name {
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
  margin-bottom: 7px;
  text-transform: uppercase;
  color: #FFFFFF;
}
@media (max-width: 767px) {
  .testimonials-two__card .testimonials-two__card__name {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
  }
}
.testimonials-two__card .testimonials-two__card__designation {
  font-size: 16px;
  line-height: 26px;
  color: #115da9;
  margin: 0;
}
@media (max-width: 767px) {
  .testimonials-two__card .testimonials-two__card__designation {
    font-size: 14px;
    line-height: 24px;
  }
}
.testimonials-two__card .testimonials-two__card__rating {
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
  column-gap: 5px;
}
.testimonials-two__card .testimonials-two__card__rating i {
  color: #FFFFFF;
  font-size: 22px;
  position: relative;
  z-index: 2;
  background: #115da9;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 30px;
  height: 30px;
  display: flex;
}
@media (max-width: 767px) {
  .testimonials-two__card .testimonials-two__card__rating i {
    font-size: 18px;
    width: 25px;
    height: 25px;
  }
}
.testimonials-two__card .testimonials-two__card__rating__bdr {
  position: absolute;
  width: calc(100% - 216px);
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}
@media (max-width: 767px) {
  .testimonials-two__card .testimonials-two__card__rating__bdr {
    width: calc(100% - 180px);
  }
}
.testimonials-two__card .testimonials-two__card__content {
  position: relative;
}
.testimonials-two__card .testimonials-two__card__content h3 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  margin-bottom: 22px;
  color: #FFFFFF;
}
@media (max-width: 1199px) {
  .testimonials-two__card .testimonials-two__card__content h3 {
    font-size: 22px;
    line-height: 32px;
  }
}
@media (max-width: 767px) {
  .testimonials-two__card .testimonials-two__card__content h3 {
    font-size: 18px;
    line-height: 28px;
  }
}
.testimonials-two__card .testimonials-two__card__quote {
  font-size: 50px;
  padding: 19px 15px;
  background-color: #115da9;
  position: absolute;
  top: 50px;
  right: 88px;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 78%);
}
@media (max-width: 1199px) {
  .testimonials-two__card .testimonials-two__card__quote {
    right: 40px;
  }
}
@media (max-width: 767px) {
  .testimonials-two__card .testimonials-two__card__quote {
    right: 20px;
    font-size: 28px;
    top: 22px;
    padding: 15px 13px;
  }
}
.testimonials-two__card .testimonials-two__card__quote i {
  color: #FFFFFF;
}
.testimonials-two__carousel.owl-carousel {
  position: relative;
}
.testimonials-two__carousel.owl-carousel .owl-dots {
  width: 100%;
  position: absolute;
  left: -73.6%;
  bottom: 0;
  max-width: 499px;
  column-gap: 0;
  justify-content: start;
}
@media (max-width: 1199px) {
  .testimonials-two__carousel.owl-carousel .owl-dots {
    left: -52%;
    max-width: 310px;
  }
}
.testimonials-two__carousel.owl-carousel .owl-dots button.owl-dot {
  width: 100%;
  height: 2px;
  border: unset;
  background: rgba(0, 0, 15, 0.3);
  transition: 0.4s ease-in-out;
  -webkit-transition: 0.4s ease-in-out;
  -moz-transition: 0.4s ease-in-out;
  border: none;
}
.testimonials-two__carousel.owl-carousel .owl-dots button.owl-dot.active, .testimonials-two__carousel.owl-carousel .owl-dots button.owl-dot:hover {
  width: 100%;
  background: #115da9;
}

/*--------------------------------------------------------------
# Testimonial 03
--------------------------------------------------------------*/
.testimonials-three {
  position: relative;
  padding: 0 0 0;
}
.testimonials-three .sec-title__tagline {
  color: #43435C;
  margin: 0;
}
.testimonials-three .sec-title {
  margin-bottom: 50px;
}
.testimonials-three__nav {
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
  column-gap: 10px;
}
.testimonials-three__nav button {
  width: 80px;
  height: 48px;
  background: #00000F;
  color: #FFFFFF;
  font-size: 22px;
  border: unset;
  outline: unset;
  box-shadow: unset;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.testimonials-three__nav button:hover {
  color: #00000F;
}
.testimonials-three__nav button:hover::after {
  background: #C2ED08;
}
.testimonials-three__image img {
  max-width: 100%;
  width: 100%;
}
.testimonials-three__wrapper {
  position: relative;
  margin-top: 10px;
  max-width: 649px;
  width: 100%;
}
@media (max-width: 991px) {
  .testimonials-three__wrapper {
    max-width: 100%;
  }
}
.testimonials-three__card {
  position: relative;
}
@media (max-width: 991px) {
  .testimonials-three__card {
    padding-bottom: 20px;
  }
}
.testimonials-three__card .testimonials-three__card__author {
  position: relative;
  padding: 46px 0 0;
  margin: 0;
  border-top: 1px solid rgba(0, 0, 15, 0.1);
}
@media (max-width: 767px) {
  .testimonials-three__card .testimonials-three__card__author {
    padding-top: 30px;
  }
}
.testimonials-three__card .testimonials-three__card__img {
  max-width: 88px;
  width: 100%;
  height: 88px;
  border-radius: 50%;
  border: unset;
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 991px) {
  .testimonials-three__card .testimonials-three__card__img img {
    max-width: 100%;
    width: 100%;
  }
}
.testimonials-three__card .testimonials-three__card__name {
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
  margin-bottom: 7px;
  text-transform: uppercase;
}
.testimonials-three__card .testimonials-three__card__designation {
  font-size: 16px;
  line-height: 26px;
  margin: 0;
}
.testimonials-three__card .testimonials-three__card__rating {
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
  column-gap: 5px;
  margin-bottom: 23px;
}
.testimonials-three__card .testimonials-three__card__rating i {
  color: rgba(0, 0, 15, 0.1);
  font-size: 30px;
  position: relative;
  z-index: 2;
  background: #FFFFFF;
}
.testimonials-three__card .testimonials-three__card__content {
  position: relative;
}
.testimonials-three__card .testimonials-three__card__content h3 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  margin-bottom: 22px;
}
@media (max-width: 1199px) {
  .testimonials-three__card .testimonials-three__card__content h3 {
    font-size: 20px;
    line-height: 30px;
  }
}
.testimonials-three__card .testimonials-three__card__quote {
  font-size: 50px;
  padding: 19px 15px;
  background-color: #00000F;
  position: absolute;
  bottom: 9px;
  right: 0;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 78%);
}
@media (max-width: 991px) {
  .testimonials-three__card .testimonials-three__card__quote {
    bottom: 14px;
  }
}
@media (max-width: 767px) {
  .testimonials-three__card .testimonials-three__card__quote {
    font-size: 34px;
  }
}
.testimonials-three__card .testimonials-three__card__quote i {
  color: #FFFFFF;
}
.testimonials-three__carousel.owl-carousel {
  position: relative;
}
@media (max-width: 991px) {
  .testimonials-three__carousel.owl-carousel {
    margin-bottom: 40px;
  }
}
.testimonials-three__carousel.owl-carousel .owl-nav {
  width: 100%;
  position: absolute;
  right: -275px;
  bottom: 11px;
  column-gap: 10px;
  justify-content: end;
}
@media (max-width: 991px) {
  .testimonials-three__carousel.owl-carousel .owl-nav {
    display: none;
  }
}
@media (max-width: 1199px) {
  .testimonials-three__carousel.owl-carousel .owl-nav {
    right: -194px;
  }
}
.testimonials-three__carousel.owl-carousel .owl-nav button span {
  width: 80px;
  height: 48px;
  background: #00000F;
  color: #FFFFFF;
  font-size: 22px;
  border: unset;
  outline: unset;
  box-shadow: unset;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.testimonials-three__carousel.owl-carousel .owl-nav button span::after {
  background: #C2ED08;
}
.testimonials-three__carousel.owl-carousel .owl-nav button span:hover {
  color: #00000F;
}
.testimonials-three__carousel.owl-carousel .owl-nav button span:hover::after {
  background: #C2ED08;
}
.testimonials-three__carousel.owl-carousel .owl-nav button.owl-prev span {
  background: #C2ED08;
  color: #00000f;
}
.testimonials-three__carousel.owl-carousel .owl-nav button.owl-prev span::after {
  background: #00000f;
}
.testimonials-three__carousel.owl-carousel .owl-nav button.owl-prev span:hover {
  color: #FFFFFF;
}

/*--------------------------------------------------------------
# Testimonial 04
--------------------------------------------------------------*/
.testimonials-four {
  position: relative;
  padding: 110px 0;
}
@media (max-width: 767px) {
  .testimonials-four {
    padding: 75px 0;
  }
}
.testimonials-four .sec-title {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .testimonials-four .sec-title {
    margin-bottom: 30px;
  }
}
.testimonials-four .sec-title__tagline {
  color: #FF5F2A;
}
.testimonials-four .testimonials-one__card .testimonials-one__card__designation {
  color: #FF5F2A;
}
.testimonials-four .testimonials-one__card .testimonials-one__card__rating i {
  color: #00000F;
}
.testimonials-four__carousel.owl-carousel {
  position: relative;
}
.testimonials-four__carousel.owl-carousel::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  content: "";
  width: 1px;
  height: 265px;
  background-color: rgba(0, 0, 15, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: -1;
}
@media (max-width: 991px) {
  .testimonials-four__carousel.owl-carousel::after {
    bottom: 38px;
    top: auto;
    width: 100%;
    height: 1px;
  }
}
.testimonials-four__carousel.owl-carousel .owl-nav {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  width: 80px;
  height: 80px;
  background-color: #F4F4F4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
@media (max-width: 991px) {
  .testimonials-four__carousel.owl-carousel .owl-nav {
    position: relative;
    margin-top: 20px;
  }
}
.testimonials-four__carousel.owl-carousel .owl-nav button {
  background-color: transparent;
  font-size: 18px;
  color: #00000F;
  margin: 0;
  line-height: 1;
  padding: 0;
  transition: 0.4s ease-in-out;
  -webkit-transition: 0.4s ease-in-out;
  -moz-transition: 0.4s ease-in-out;
}
.testimonials-four__carousel.owl-carousel .owl-nav button:hover {
  background-color: transparent;
  color: #FF5F2A;
}

/*-- Testimonials Page --*/
.testimonials-page {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .testimonials-page {
    padding: 80px 0;
  }
}
.testimonials-page .testimonials-one__card .testimonials-one__card__rating i {
  color: #00000F;
}
.testimonials-page .testimonials-one__card .testimonials-one__card__rating__bdr {
  background-color: rgba(0, 0, 15, 0.1);
}
.testimonials-page .testimonials-one__card {
  margin-bottom: 50px;
}
.testimonials-page .testimonials-one__card--odd {
  border-right: 1px solid rgba(0, 0, 15, 0.1);
  padding-right: 110px;
}
@media (max-width: 1340px) {
  .testimonials-page .testimonials-one__card--odd {
    padding-right: 30px;
  }
}
@media (max-width: 991px) {
  .testimonials-page .testimonials-one__card--odd {
    border-right: none;
    padding-right: 0;
  }
}
.testimonials-page .testimonials-one__card--even {
  padding-left: 110px;
}
@media (max-width: 1340px) {
  .testimonials-page .testimonials-one__card--even {
    padding-left: 30px;
  }
}
@media (max-width: 991px) {
  .testimonials-page .testimonials-one__card--even {
    padding-left: 0;
  }
}

/*--------------------------------------------------------------
# Blog 01
--------------------------------------------------------------*/
.blog-one {
  position: relative;
  padding: 60px 0;
}
@media (max-width: 767px) {
  .blog-one {
    padding: 60px 0 0;
  }
}
.blog-one .sec-title__title {
  margin-bottom: 2px;
}

.blog-card {
  position: relative;
}
.blog-card .blog-card__image {
  max-width: 100%;
  width: 100%;
  padding-left: 24px;
  position: relative;
}
@media (max-width: 1199px) {
  .blog-card .blog-card__image a {
    width: 100%;
  }
  .blog-card .blog-card__image img {
    width: 100%;
    max-width: unset;
  }
}
@media (max-width: 991px) {
  .blog-card .blog-card__image img {
    min-height: 400px;
    object-fit: cover;
    object-position: center;
  }
}
.blog-card .blog-card__image__link {
  position: relative;
}
.blog-card .blog-card__image__link::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 192px;
  bottom: 0;
  left: 0;
  background: rgb(0, 3, 30);
  background: -moz-linear-gradient(180deg, rgba(0, 3, 30, 0) 0%, rgb(0, 0, 15) 100%);
  background: -webkit-linear-gradient(180deg, rgba(0, 3, 30, 0) 0%, rgb(0, 0, 15) 100%);
  background: linear-gradient(180deg, rgba(0, 3, 30, 0) 0%, rgb(0, 0, 15) 100%);
}
.blog-card .blog-card__date {
  position: absolute;
  width: auto;
  top: 0;
  left: 0;
  background: #F4F4F4;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 26px;
  text-transform: uppercase;
  padding: 14px 32px 14px 52px;
  transform: rotateZ(-90deg) translate(-86px, -66px);
  clip-path: polygon(0% 0%, 17% 100%, 100% 100%, 100% 0%, 100% 100%, 100% 0);
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .blog-card .blog-card__date {
    padding: 8px 22px 14px 38px;
    transform: rotateZ(-90deg) translate(-80px, -58px);
  }
}
.blog-card .blog-card__content {
  position: absolute;
  bottom: 23px;
  left: 54px;
  width: calc(100% - 90px);
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .blog-card .blog-card__content {
    left: 46px;
    width: calc(100% - 62px);
  }
}
.blog-card .blog-card__meta {
  color: #FFFFFF;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: row;
  column-gap: 30px;
  margin: 0 0 10px;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .blog-card .blog-card__meta {
    flex-wrap: wrap;
    row-gap: 2px;
  }
}
.blog-card .blog-card__meta a {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
  column-gap: 10px;
}
.blog-card .blog-card__meta a:hover {
  color: #FFFFFF;
}
.blog-card .blog-card__title {
  font-size: 18px;
  line-height: 28px;
  color: #FFFFFF;
  margin: 0;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
}
.blog-card .blog-card__title:hover {
  color: #115da9;
}
.blog-card .blog-card__title a {
  font-size: inherit;
  color: inherit;
  font-weight: inherit;
}
.blog-card .blog-card__link {
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  color: #FFFFFF;
  font-weight: 700;
  line-height: 26px;
  visibility: hidden;
  position: absolute;
  opacity: 0;
  bottom: -20px;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  column-gap: 24px;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
}
.blog-card .blog-card__link i {
  font-size: 18px;
  position: relative;
}
.blog-card .blog-card__link:hover {
  column-gap: 18px;
}
.blog-card:hover .blog-card__date {
  background: #115da9;
  color: #FFFFFF;
}
.blog-card:hover .blog-card__title {
  margin-bottom: 41px;
}
.blog-card:hover .blog-card__link {
  color: #115da9;
  opacity: 1;
  visibility: visible;
  bottom: 0px;
}

/*--------------------------------------------------------------
# Blog 02
--------------------------------------------------------------*/
.blog-two {
  padding: 113px 0 120px;
}
@media (max-width: 767px) {
  .blog-two {
    padding: 80px 0 80px;
  }
}

.blog-card-two {
  position: relative;
}
.blog-card-two__content {
  position: relative;
  padding: 30px 0 18px 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .blog-card-two__content {
    padding: 15px 0 10px 0;
  }
}
@media (max-width: 575px) {
  .blog-card-two__content {
    padding: 0px 0 18px 0;
    margin-top: -28px;
  }
}
.blog-card-two__image {
  max-width: 100%;
  width: 100%;
  height: auto;
}
@media (max-width: 991px) {
  .blog-card-two__image a {
    width: 100%;
  }
  .blog-card-two__image img {
    width: 100%;
    max-width: unset;
  }
}
.blog-card-two__date {
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  color: #FFFFFF;
  background-color: #115da9;
  text-transform: uppercase;
  padding: 9px 32px 9px 52px;
  margin-left: -59px;
  margin-bottom: 13px;
  min-width: 188px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 19% 100%);
}
@media (max-width: 575px) {
  .blog-card-two__date {
    margin-left: 0;
  }
}
.blog-card-two__title {
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  margin-bottom: 7px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .blog-card-two__title {
    font-size: 16px;
    line-height: 26px;
  }
}
.blog-card-two__title a {
  color: inherit;
  font-weight: inherit;
  font-size: inherit;
  margin-bottom: 7px;
}
.blog-card-two__title a:hover {
  color: #115da9;
}
.blog-card-two__text {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 17px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .blog-card-two__text {
    font-size: 14px;
    line-height: 24px;
  }
}
.blog-card-two__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  column-gap: 15px;
  border-bottom: 1px solid rgba(0, 0, 15, 0.1);
}
.blog-card-two__meta li > a {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
  column-gap: 10px;
  font-size: 16px;
  line-height: 26px;
  color: #43435C;
}
.blog-card-two__meta li > a:hover {
  color: #115da9;
}
.blog-card-two__meta li > a i {
  color: #00000F;
  font-size: 17px;
}
.blog-card-two__meta li {
  width: 100%;
  padding-bottom: 15px;
}
.blog-card-two__link {
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
  color: #115da9;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
  column-gap: 24px;
}
.blog-card-two__link i {
  font-size: 18px;
}
.blog-card-two__link:hover {
  color: #00000F;
  column-gap: 18px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .blog-card-two__link {
    font-size: 14px;
    line-height: 24px;
  }
}

/*--------------------------------------------------------------
# Blog 03
--------------------------------------------------------------*/
.blog-three {
  position: relative;
  padding: 105px 0 120px;
}
@media (max-width: 767px) {
  .blog-three {
    padding: 80px 0;
  }
}
.blog-three .sec-title__tagline {
  color: #43435C;
}
.blog-three .ripcar-btn {
  column-gap: 15px;
  padding: 0 29px;
  margin-top: 20px;
  background: #00000F;
  color: #FFFFFF;
}
.blog-three .ripcar-btn::after {
  background: #C2ED08;
}
.blog-three .ripcar-btn:hover {
  color: #00000F;
  background: #C2ED08;
}

.blog-card-three {
  position: relative;
}
.blog-card-three .blog-card-three__image {
  max-width: 100%;
  width: 100%;
  height: auto;
  position: relative;
}
.blog-card-three .blog-card-three__image__link {
  display: block;
}
.blog-card-three .blog-card-three__image img {
  width: 100%;
}
.blog-card-three .blog-card-three__date {
  position: absolute;
  left: 24px;
  bottom: 8px;
  opacity: 0;
  visibility: hidden;
  padding: 12px 30px;
  background-color: #C2ED08;
  color: #00000F;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
  margin-bottom: 11px;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: column;
  display: inline-flex;
  transition: 0.4s ease-in-out;
  -webkit-transition: 0.4s ease-in-out;
  -moz-transition: 0.4s ease-in-out;
}
.blog-card-three .blog-card-three__date::after {
  position: absolute;
  content: "";
  left: 50%;
  bottom: -11px;
  width: 20px;
  height: 11px;
  background: #C2ED08;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  clip-path: polygon(50% 100%, 0% 0%, 100% 0%);
  transform: translateX(-50%);
}
.blog-card-three .blog-card-three__content {
  position: relative;
  padding: 24px 32px 22px 0;
}
.blog-card-three .blog-card-three__title {
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  color: #00000F;
  margin-bottom: 15px;
}
.blog-card-three .blog-card-three__title a {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  line-height: inherit;
}
.blog-card-three .blog-card-three__title a:hover {
  color: #C2ED08;
}
.blog-card-three .blog-card-three__link {
  color: #43435C;
  column-gap: 24px;
}
.blog-card-three .blog-card-three__link i {
  font-size: 18px;
}
.blog-card-three .blog-card-three__link:hover {
  column-gap: 18px;
}
.blog-card-three .blog-card-three__link:hover {
  column-gap: 18px;
}
.blog-card-three:hover .blog-card-three__date {
  opacity: 1;
  visibility: visible;
  bottom: 13px;
}
.blog-card-three:hover .blog-card-three__date::after {
  visibility: visible;
  opacity: 1;
}
.blog-card-three:hover .blog-card-three__link {
  color: #00000F;
}
.blog-card-three:hover .blog-card-three__link:hover {
  color: #C2ED08;
}

/*--------------------------------------------------------------
# Blog 04
--------------------------------------------------------------*/
/*-- Blog Card --*/
.blog-card-four {
  position: relative;
}
.blog-card-four__image {
  position: relative;
  padding: 20px 0 0;
  margin: 0 0 23px;
}
.blog-card-four__image img {
  width: 100%;
  height: auto;
}
.blog-card-four__image__link {
  display: block;
}
.blog-card-four__date {
  position: absolute;
  left: 22px;
  top: 0;
  text-align: center;
  background-color: #00000F;
  color: #FFFFFF;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 19px 18px 27px;
  clip-path: polygon(0 0, 100% 0, 100% 75%, 0% 100%);
  transition: 0.3s ease-in-out;
}
.blog-card-four:hover .blog-card-four__date {
  background-color: #115da9;
}
.blog-card-four__content {
  position: relative;
}
.blog-card-four__meta {
  color: #43435C;
  display: flex;
  align-items: center;
  gap: 35px;
  margin: 0 0 10px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .blog-card-four__meta {
    gap: 15px;
  }
}
.blog-card-four__meta li {
  display: flex;
  align-items: center;
  position: relative;
}
.blog-card-four__meta li a {
  color: inherit;
  transition: 0.3s ease-in-out;
}
.blog-card-four__meta li a:hover {
  color: #115da9;
}
.blog-card-four__meta li a:hover i {
  color: #115da9;
}
.blog-card-four__meta li i {
  display: inline-block;
  transition: 0.3s ease-in-out;
  color: #00000F;
  margin-right: 10px;
}
.blog-card-four__title {
  font-size: 18px;
  line-height: 28px;
  margin: 0;
}
.blog-card-four__title a {
  color: inherit;
}
.blog-card-four__title a:hover {
  color: #115da9;
}

/*-- Blog Page --*/
.blog-page {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .blog-page {
    padding: 80px 0;
  }
}
.blog-page__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 12px;
}
.blog-page__pagination.text-left {
  justify-content: flex-start;
}
.blog-page__pagination a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background-color: #F4F4F4;
  color: #43435C;
  font-size: 16px;
  font-weight: 400;
  border-radius: 0;
  transition: 500ms ease;
}
@media (max-width: 500px) {
  .blog-page__pagination a {
    width: 50px;
    height: 50px;
  }
}
.blog-page__pagination a.current, .blog-page__pagination a:hover {
  background-color: #00000F;
  color: #FFFFFF;
}
.blog-page__pagination a.prev, .blog-page__pagination a.next {
  color: rgba(67, 67, 92, 0.4);
  font-size: 25px;
}
@media (max-width: 500px) {
  .blog-page__pagination a.prev, .blog-page__pagination a.next {
    font-size: 20px;
  }
}
.blog-page__pagination a.prev:hover, .blog-page__pagination a.next:hover {
  background-color: #115da9;
  color: #FFFFFF;
}

.blog-four {
  position: relative;
  padding: 110px 0;
}
@media (max-width: 767px) {
  .blog-four {
    padding: 80px 0;
  }
}
.blog-four .sec-title__tagline {
  color: #FF5F2A;
}
.blog-four__btn {
  text-align: right;
  margin: 7px 0 0;
}
@media (max-width: 767px) {
  .blog-four__btn {
    text-align: left;
    margin: 30px 0 0px;
  }
}
.blog-four__btn .ripcar-btn {
  background-color: #FF5F2A;
  height: 54px;
  padding: 0 30px;
}
.blog-four__btn .ripcar-btn:hover {
  background-color: #00000F;
}
.blog-four .blog-card-four:hover .blog-card-four__date {
  background-color: #FF5F2A;
}
.blog-four .blog-card-four__meta li a:hover,
.blog-four .blog-card-four__title a:hover {
  color: #FF5F2A;
}

/*--------------------------------------------------------------
# Contact 01
--------------------------------------------------------------*/
.contact-one {
  position: relative;
  padding: 50px 0 120px;
}
@media (max-width: 767px) {
  .contact-one {
    padding: 80px 0;
  }
}
.contact-one .contact-one__content {
  position: relative;
  background: #F4F4F4;
  padding: 50px;
  margin: 8px 0 0;
}
@media (max-width: 1199px) {
  .contact-one .contact-one__content {
    padding: 40px 25px;
  }
}
.contact-one .sec-title {
  position: relative;
}
.contact-one .sec-title img {
  max-width: 100%;
  width: auto;
  height: auto;
}
@media (max-width: 991px) {
  .contact-one .sec-title img {
    display: block;
    margin-bottom: 50px;
    width: 100%;
  }
}
.contact-one .sec-title__title {
  margin-bottom: 14px;
}
.contact-one .sec-title__sesc {
  margin-bottom: 15px;
}
.contact-one .contact-one__mail {
  display: inline-block;
  color: #115da9;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 41.5px;
}
.contact-one .contact-one__mail:hover {
  color: #00000F;
}
.contact-one--about {
  position: relative;
  padding-top: 68px;
}
@media (max-width: 767px) {
  .contact-one--about {
    padding-top: 40px;
  }
}
.contact-one--about__content {
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 42px 50px 45px;
  min-height: 568px;
}
@media (min-width: 1345px) {
  .contact-one--about__content {
    margin-right: 14px;
  }
}
.contact-one--about__content .sec-title__title {
  color: #FFFFFF;
}
.contact-one--about__content .sec-title__sesc {
  color: rgba(255, 255, 255, 0.8);
}
.contact-one--about__content .contact-one__mail,
.contact-one--about__content .contact-one__mail:hover {
  color: #FFFFFF;
}
.contact-one--about .contact-one__content {
  margin-top: 0;
}
@media (max-width: 991px) {
  .contact-one--about .contact-one__content {
    margin-top: 45px;
  }
}

/*--------------------------------------------------------------
# Contact 02
--------------------------------------------------------------*/
.contact-two {
  padding: 111px 0 0;
  background: rgb(0, 0, 15);
  position: relative;
}
@media (max-width: 991px) {
  .contact-two {
    padding: 80px 0;
  }
}
.contact-two__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.contact-two__bg::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -moz-linear-gradient(90deg, rgb(0, 0, 15) 0%, rgba(0, 0, 15, 0.3) 51%);
  background: -webkit-linear-gradient(90deg, rgb(0, 0, 15) 0%, rgba(0, 0, 15, 0.3) 51%);
  background: linear-gradient(90deg, rgb(0, 0, 15) 0%, rgba(0, 0, 15, 0.3) 51%);
  z-index: 0;
}
.contact-two .contact-two__content {
  position: relative;
  background: #F4F4F4;
  padding: 50px;
  margin: 9px 0 0;
}
@media (max-width: 1199px) {
  .contact-two .contact-two__content {
    padding: 40px 25px;
  }
}
.contact-two .sec-title__title {
  margin-bottom: 14px;
  color: #FFFFFF;
}
.contact-two .sec-title__sesc {
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.7);
}
.contact-two .sec-title img {
  max-width: 100%;
  width: auto;
  height: auto;
}
@media (max-width: 991px) {
  .contact-two .sec-title img {
    display: block;
    margin-bottom: 50px;
    width: 100%;
  }
}
.contact-two .contact-two__mail {
  display: inline-block;
  color: #115da9;
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
  margin-bottom: 41.5px;
}
.contact-two .contact-two__mail:hover {
  color: #FFFFFF;
}

/*--------------------------------------------------------------
# Contact 03
--------------------------------------------------------------*/
.contact-three {
  position: relative;
  padding: 112px 0 120px;
  background: rgba(244, 244, 244, 0.5);
}
@media (max-width: 991px) {
  .contact-three {
    padding: 80px 0;
  }
}
.contact-three .contact-three__content {
  position: relative;
  background: #F4F4F4;
  padding: 50px;
  margin: 8px 0 0;
}
@media (max-width: 1199px) {
  .contact-three .contact-three__content {
    padding: 40px 25px;
  }
}
.contact-three .sec-title__title {
  margin-bottom: 14px;
}
.contact-three .sec-title__sesc {
  margin-bottom: 15px;
}
.contact-three .sec-title {
  position: relative;
}
.contact-three .sec-title img {
  max-width: 100%;
  width: auto;
  height: auto;
}
@media (max-width: 991px) {
  .contact-three .sec-title img {
    display: block;
    margin-bottom: 50px;
    max-width: 100%;
    width: 100%;
  }
}
.contact-three .contact-three__mail {
  display: inline-block;
  color: #00000F;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 41.5px;
}
.contact-three .contact-three__mail:hover {
  color: #C2ED08;
}
.contact-three .ripcar-btn {
  background: #C2ED08;
  color: #00000F;
}
.contact-three .ripcar-btn:hover {
  color: #FFFFFF;
  background: #00000F;
}
.contact-three .contact-agree-checkbox span {
  color: #43435C;
}
.contact-three .contact-agree-checkbox span a {
  color: #00000F;
}
.contact-three .contact-agree-checkbox span a:hover {
  color: #C2ED08;
}
.contact-three .contact-agree-checkbox input[type=checkbox]:checked + span:before {
  border-color: #C2ED08;
  color: #C2ED08;
}
.contact-three--pricing {
  position: relative;
}
.contact-three--pricing .contact-agree-checkbox span a:hover,
.contact-three--pricing .contact-three__mail:hover {
  color: #115da9;
}
.contact-three--pricing .contact-agree-checkbox input[type=checkbox]:checked + span:before {
  border-color: #115da9;
  color: #115da9;
}
.contact-three--pricing .ripcar-btn {
  background: #115da9;
  color: #FFFFFF;
}

/*-- Contact Page --*/
.google-map {
  position: relative;
  padding: 120px 0 115px;
}
@media (max-width: 767px) {
  .google-map {
    padding: 80px 0;
  }
}
.google-map__wrapper {
  position: relative;
  background-color: #F4F4F4;
}
.google-map iframe {
  background-color: #F4F4F4;
  position: relative;
  display: block;
  border: none;
  height: 700px;
  width: 100%;
  mix-blend-mode: luminosity;
}
@media (max-width: 1199px) {
  .google-map iframe {
    height: 550px;
  }
}
@media (max-width: 767px) {
  .google-map iframe {
    height: 450px;
  }
}

.contact-info {
  position: relative;
}
.contact-info__item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-info__item__icon {
  font-size: 50px;
  line-height: 50px;
  color: #115da9;
  flex-shrink: 0;
  top: 5px;
  position: relative;
  transition: all 0.6s ease;
}
.contact-info__item:hover .contact-info__item__icon {
  transform: rotateY(180deg);
}
.contact-info__item__title {
  margin: 0 0 9px;
}
.contact-info__item__text {
  font-size: 18px;
  line-height: 30px;
  margin: 0;
}
.contact-info__item__text a {
  color: inherit;
}
.contact-info__item__text a:hover {
  color: #115da9;
}
.contact-info__border {
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 15, 0.1);
  margin-top: 42px;
}

.contact-page {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .contact-page {
    padding: 80px 0;
  }
}
.contact-page__content {
  position: relative;
}
.contact-page__content__title {
  font-size: 32px;
  margin: 0 0 40px;
}
.contact-page__content__info {
  margin: 0 0 4px;
}
.contact-page__content__info span {
  color: #FF5F2A;
}
.contact-page input[type=text],
.contact-page input[type=email],
.contact-page input[type=tel],
.contact-page textarea {
  display: block;
  width: 100%;
  height: 50px;
  background-color: rgba(244, 244, 244, 0.5);
  color: #43435C;
  font-size: 16px;
  font-weight: 400;
  border: none;
  border-radius: 0;
  outline: none;
  padding-left: 30px;
  padding-right: 30px;
}
.contact-page textarea {
  height: 90px;
  padding-top: 13px;
  resize: none;
}
.contact-page .form-one__group {
  grid-gap: 24px;
  grid-row-gap: 24px;
}
.contact-page__right {
  position: relative;
  text-align: center;
  padding: 99px 25px 77px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 991px) {
  .contact-page__right {
    margin-top: 45px;
  }
}
.contact-page__right::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-image: linear-gradient(129deg, rgba(0, 0, 15, 0.6) 0%, rgba(0, 0, 15, 0.5) 100%);
}
.contact-page__right__sub-title {
  color: #115da9;
  font-size: 16px;
  margin: 0 0 3px;
  position: relative;
  z-index: 1;
}
.contact-page__right__title {
  color: #FFFFFF;
  font-size: 52px;
  line-height: 62px;
  margin: 0 0 38px;
  position: relative;
  z-index: 1;
}
.contact-page__right .ripcar-btn {
  position: relative;
  z-index: 1;
}

/*--------------------------------------------------------------
# instagram Gallery 
--------------------------------------------------------------*/
.insta-gallery__sec {
  position: relative;
  margin-bottom: -3px;
}

.insta-gallery__wrap {
  position: relative;
  line-height: 1;
}
.insta-gallery__wrap .insta__item_box {
  position: relative;
  line-height: 1;
}
.insta-gallery__wrap .insta__item_box:hover .insta_icon {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  z-index: 2;
}
.insta-gallery__wrap .insta__item_box:hover::after {
  height: calc(100% - 86px);
}
.insta-gallery__wrap .insta__item_box::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: rgb(0, 3, 30);
  background: -moz-linear-gradient(180deg, rgba(0, 3, 30, 0) 0%, rgb(0, 0, 15) 100%);
  background: -webkit-linear-gradient(180deg, rgba(0, 3, 30, 0) 0%, rgb(0, 0, 15) 100%);
  background: linear-gradient(180deg, rgba(0, 3, 30, 0) 0%, rgb(0, 0, 15) 100%);
  z-index: 1;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
}
@media (max-width: 575px) {
  .insta-gallery__wrap .insta__item_box {
    display: block;
    width: 100%;
  }
  .insta-gallery__wrap .insta__item_box img {
    max-width: 100%;
    width: 100% !important;
  }
}
.insta-gallery__wrap .insta_icon {
  width: 100px;
  height: 100px;
  background: #115da9;
  color: #FFFFFF;
  font-size: 34px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: 0.3s ease-in-out;
}
@media (max-width: 1199px) {
  .insta-gallery__wrap .insta_icon {
    width: 90px;
    height: 90px;
  }
}
@media (max-width: 767px) {
  .insta-gallery__wrap .insta_icon {
    width: 80px;
    height: 80px;
  }
}

/*-- Gallery Page --*/
.gallery-page {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .gallery-page {
    padding: 80px 0;
  }
}
.gallery-page__card {
  position: relative;
  overflow: hidden;
  transition: 0.4s ease-in-out;
}
.gallery-page__card img {
  width: 100%;
  height: auto;
  transition: 0.4s ease-in-out;
}
.gallery-page__card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0%;
  opacity: 0;
  visibility: hidden;
  background-image: linear-gradient(180deg, rgba(0, 0, 15, 0) 0%, rgba(0, 0, 15, 0.9) 100%);
  transition: 0.4s ease-in-out;
}
.gallery-page__card:hover img {
  transform: scale(1.05) rotate(1.5deg);
}
.gallery-page__card:hover::after {
  height: 100%;
  opacity: 1;
  visibility: visible;
}
.gallery-page__card:hover .img-popup {
  opacity: 1;
  transform: translateY(0);
}
.gallery-page__card .img-popup {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #115da9;
  color: #FFFFFF;
  font-size: 25px;
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transition: 0.4s ease-in-out;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 500ms ease, transform 500ms ease;
}
.gallery-page__card .img-popup:hover {
  transition: 0.4s ease-in-out;
  background-color: #00000F;
  color: #FFFFFF;
}
.gallery-page .blog-page__pagination {
  margin-top: 25px;
}
@media (max-width: 767px) {
  .gallery-page .blog-page__pagination {
    margin-top: 10px;
  }
}

/*--------------------------------------------------------------
# Footer 
--------------------------------------------------------------*/
.main-footer {
  position: relative;
  padding: 139px 0 0;
}
@media (max-width: 767px) {
  .main-footer {
    padding-top: 80px;
  }
}
@media (max-width: 991px) {
  .main-footer .container {
    max-width: 100%;
  }
}
.main-footer .main-footer__top {
  padding: 0 0 142px;
  position: relative;
}
@media (max-width: 1199px) {
  .main-footer .main-footer__top {
    padding: 0 0 60px;
  }
}
@media (max-width: 991px) {
  .main-footer .main-footer__top .row {
    align-items: end !important;
  }
}
@media (max-width: 767px) {
  .main-footer .main-footer__top {
    max-width: 536px;
    margin: 0 auto;
  }
}
.main-footer .main_footer_content {
  position: relative;
  padding: 83px 0 110px;
}
@media (max-width: 767px) {
  .main-footer .main_footer_content {
    padding: 75px 0 60px;
  }
}
@media (max-width: 1199px) {
  .main-footer .main_footer_content .col-md-6:nth-of-type(1), .main-footer .main_footer_content .col-md-6:nth-of-type(2) {
    margin-bottom: 50px;
  }
}
@media (max-width: 575px) {
  .main-footer .main_footer_content .col-md-6:nth-of-type(3) {
    margin-bottom: 50px;
  }
}
.main-footer .list-unstyled {
  margin: 0;
}
.main-footer .main-footer__top__left__title {
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 -6px 0 0;
}
.main-footer .main-footer__top__left__title span {
  position: relative;
  color: #115da9;
}
@media (max-width: 1399px) {
  .main-footer .main-footer__top__left__title {
    font-size: 23px;
  }
}
@media (max-width: 1199px) {
  .main-footer .main-footer__top__left__title {
    font-size: 19px;
  }
}
@media (max-width: 991px) {
  .main-footer .main-footer__top__left__title {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .main-footer .main-footer__top__left__title {
    font-size: 20px;
    margin-bottom: 50px;
  }
}
@media (max-width: 575px) {
  .main-footer .main-footer__top__left__title {
    font-size: 18px;
    line-height: 28px;
  }
}
.main-footer .main-footer__top__left__title::after {
  content: "";
  position: absolute;
  left: 12px;
  top: -41px;
  width: 859px;
  height: 150px;
  background-image: url(../images/shapes/footer-newsletter.png);
  background-repeat: no-repeat;
  background-position: left center;
}
@media (max-width: 1199px) {
  .main-footer .main-footer__top__left__title::after {
    width: 659px;
    background-size: 110%;
  }
}
@media (max-width: 991px) {
  .main-footer .main-footer__top__left__title::after {
    width: 559px;
    background-size: 110%;
    top: -24px;
  }
}
@media (max-width: 767px) {
  .main-footer .main-footer__top__left__title::after {
    background-size: 110%;
    top: -41px;
  }
}
@media (max-width: 575px) {
  .main-footer .main-footer__top__left__title::after {
    background-size: 105%;
    top: -36px;
  }
}
.main-footer__Button:hover {
  color: #00000F;
}
.main-footer__Button:after {
  background: #FFFFFF;
}

.main-footer__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center center;
  opacity: 7%;
}

.main-footer__newsletter {
  position: relative;
  margin-left: 14px;
  padding: 0 0 10px;
  max-width: 536px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin-left: auto;
}
.main-footer__newsletter input[type=text] {
  width: 100%;
  display: block;
  border: none;
  outline: none;
  height: 40px;
  border: unset;
  background-color: transparent;
  color: #43435C;
  font-size: 16px;
  font-weight: 400;
  padding-right: 45px;
}
.main-footer__newsletter button {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  right: 0;
  top: 0;
  height: 40px;
  padding: 0 10px;
  width: 40px;
  background: #115da9;
  border: unset;
  outline: unset;
  box-shadow: unset;
  color: #FFFFFF;
  font-size: 12px;
  z-index: 1;
}
.main-footer__newsletter button:hover {
  color: #115da9;
}
.main-footer__newsletter button:hover:after {
  background: #F4F4F4;
}
.main-footer__newsletter button i {
  transform: rotate(-45deg);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.footer-widget {
  position: relative;
}
.footer-widget .footer-widget__title {
  font-size: 22px;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-transform: capitalize;
  margin: 0;
  margin-bottom: 18px;
}
.footer-widget .footer-widget__text {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 42px;
}
.footer-widget__social {
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
  column-gap: 10px;
}
.footer-widget__social a {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
  font-size: 18px;
  border: unset;
  outline: unset;
}
.footer-widget__social a:hover {
  color: #FFFFFF;
}
.footer-widget__social a:hover::after {
  background: #115da9;
}
.footer-widget .footer-widget__info,
.footer-widget .footer-widget__links,
.footer-widget .footer-widget__schedule {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  row-gap: 10px;
  flex-wrap: wrap;
}
.footer-widget .footer-widget__info li,
.footer-widget .footer-widget__links li a,
.footer-widget .footer-widget__schedule li {
  font-size: 16px;
  width: 400;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.7);
}
.footer-widget .footer-widget__info {
  row-gap: 16px;
}
.footer-widget .footer-widget__info li a {
  color: #115da9;
  display: inline-block;
  font-weight: 700;
}
.footer-widget .footer-widget__info li a:hover {
  color: #F4F4F4;
}
.footer-widget .footer-widget__info li a.info_tel {
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
  color: #FFFFFF;
  margin: -9px 0 0;
  font-family: "Montserrat", sans-serif;
}
.footer-widget .footer-widget__info li a.info_tel:hover {
  color: #115da9;
}
.footer-widget .footer-widget__links li a {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
  column-gap: 10px;
  position: relative;
}
.footer-widget .footer-widget__links li a i {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  font-size: 12px;
}
.footer-widget .footer-widget__links li a:hover i {
  opacity: 1;
  visibility: visible;
  color: #115da9;
}
.footer-widget .footer-widget__links li a:hover {
  padding-left: 22px;
  color: #115da9;
}

.main-footer__bottom {
  background: #000000;
  padding: 17.5px 0;
}

.main-footer__copyright {
  margin: 0;
  font-size: 16px;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.7);
}
.main-footer__copyright a {
  color: #115da9;
}
.main-footer__copyright a:hover {
  color: #F4F4F4;
}

/*--------------------------------------------------------------
# Footer 02
--------------------------------------------------------------*/
.main-footer-two {
  position: relative;
  background-color: #00000F;
  padding: 193px 0 0;
}
.main-footer-two__content {
  padding-bottom: 50px;
}
.main-footer-two__content > .row > [class^=col-]::after, .main-footer-two__content > .row > [class*=col-]::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 1px;
  top: 0;
  right: 32px;
  background: rgba(67, 67, 92, 0.3);
}
.main-footer-two__content > .row > [class^=col-]:last-child::after, .main-footer-two__content > .row > [class*=col-]:last-child::after {
  display: none;
}
@media (max-width: 991px) {
  .main-footer-two__content .col-md-6:nth-of-type(1), .main-footer-two__content .col-md-6:nth-of-type(2) {
    margin-bottom: 50px;
  }
  .main-footer-two__content > .row > [class^=col-]:nth-last-child(2)::after, .main-footer-two__content > .row > [class*=col-]:nth-last-child(2)::after {
    display: none;
  }
  .main-footer-two__content > .row > [class^=col-]::after, .main-footer-two__content > .row > [class*=col-]::after {
    right: 20px;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .main-footer-two__content > .row > [class^=col-]::after, .main-footer-two__content > .row > [class*=col-]::after {
    display: none;
  }
}
.main-footer-two .footer-widget {
  position: relative;
}
@media (max-width: 1199px) {
  .main-footer-two .footer-widget {
    padding-right: 40px;
  }
}
@media (max-width: 575px) {
  .main-footer-two .footer-widget {
    padding-right: 0px;
  }
}
.main-footer-two .footer-widget__title {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.main-footer-two .footer-widget__info {
  margin: 0;
}
.main-footer-two .footer-widget__logo {
  max-width: 173px;
  margin-bottom: 23px;
}
.main-footer-two .footer-widget__text {
  margin-bottom: 35px;
}
.main-footer-two .footer-widget__getin-touch h2 {
  font-size: 32px;
  line-height: 44px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 13px;
}
.main-footer-two .footer-widget__getin-touch p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 43px;
  color: #FFFFFF;
}
@media (max-width: 1199px) {
  .main-footer-two .footer-widget__getin-touch p br {
    display: none;
  }
}
.main-footer-two .footer-widget__getin-touch p a {
  color: #115da9;
}
.main-footer-two .footer-widget__getin-touch p a:hover {
  color: #F4F4F4;
}
.main-footer-two .footer-widget__getin-touch .message_info {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
  column-gap: 6px;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
}
.main-footer-two .footer-widget__getin-touch .message_info i {
  color: #115da9;
  position: relative;
}
@media (max-width: 767px) {
  .main-footer-two .footer-widget__getin-touch .message_info {
    align-items: start;
  }
  .main-footer-two .footer-widget__getin-touch .message_info i {
    top: 6px;
  }
}
.main-footer-two__newsletter {
  margin-left: 0;
  padding: 5px 4px 5px 30px;
  max-width: 536px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-right: auto;
  position: relative;
  margin-bottom: 23px;
}
.main-footer-two__newsletter input[type=text] {
  width: 100%;
  display: block;
  border: none;
  outline: none;
  height: 40px;
  border: unset;
  background-color: transparent;
  color: rgba(255, 255, 255, 0.4);
  font-size: 16px;
  font-weight: 400;
  padding-right: 45px;
}
.main-footer-two__newsletter button {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  right: 4px;
  top: 5px;
  height: 40px;
  padding: 0 10px;
  width: 40px;
  background: #115da9;
  border: unset;
  outline: unset;
  box-shadow: unset;
  color: #FFFFFF;
  font-size: 12px;
  z-index: 1;
}
.main-footer-two__newsletter button:hover {
  color: #115da9;
}
.main-footer-two__newsletter button:hover:after {
  background: #F4F4F4;
}
.main-footer-two__newsletter button i {
  transform: rotate(-45deg);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.main-footer-two__bottom {
  position: relative;
  padding: 20px 0;
}
@media (max-width: 767px) {
  .main-footer-two__bottom {
    border-top: 1px solid rgba(67, 67, 92, 0.3);
  }
}
.main-footer-two__bottom::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 63.7%;
  height: 100%;
  background: #115da9;
  z-index: -1;
  clip-path: polygon(0% 0%, 96% 0%, 100% 100%, 0% 100%);
}
@media (max-width: 991px) {
  .main-footer-two__bottom::after {
    width: 57.7%;
  }
}
@media (max-width: 767px) {
  .main-footer-two__bottom::after {
    width: 0%;
  }
}
.main-footer-two__bottom .main-footer-two__copyright {
  margin: 0;
  font-size: 16px;
  line-height: 26px;
  color: #FFFFFF;
}
.main-footer-two__bottom .main-footer-two__copyright a {
  color: #00000F;
}
.main-footer-two__bottom .main-footer-two__copyright a:hover {
  color: #F4F4F4;
}
@media (max-width: 767px) {
  .main-footer-two__bottom .main-footer-two__copyright {
    padding-bottom: 30px;
    text-align: center !important;
  }
  .main-footer-two__bottom .main-footer-two__copyright a {
    color: #F4F4F4;
    opacity: 0.4;
  }
  .main-footer-two__bottom .main-footer-two__copyright a:hover {
    opacity: 1;
    color: #115da9;
  }
}
.main-footer-two__bottom .footer-widget__social {
  justify-content: end;
}
@media (max-width: 767px) {
  .main-footer-two__bottom .footer-widget__social {
    justify-content: center;
  }
  .main-footer-two__bottom .footer-widget__social a {
    width: 50px;
    height: 50px;
  }
}

/*--------------------------------------------------------------
# Footer 03
--------------------------------------------------------------*/
.main-footer-three {
  position: relative;
  padding: 60px 0 0;
}
.main-footer-three .list-unstyled {
  margin: 0;
}
.main-footer-three__content {
  position: relative;
  padding: 72px 0 75px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 1199px) {
  .main-footer-three__content .col-md-6:nth-of-type(1), .main-footer-three__content .col-md-6:nth-of-type(2) {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .main-footer-three__content .col-md-6:nth-of-type(3) {
    margin-bottom: 60px;
  }
}
.main-footer-three__newsletter {
  position: relative;
  margin-left: 14px;
  padding: 0 0 10px;
  max-width: 536px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin-left: auto;
  margin-bottom: 24px;
}
.main-footer-three__newsletter input[type=text] {
  width: 100%;
  display: block;
  border: none;
  outline: none;
  height: 40px;
  border: unset;
  background-color: transparent;
  color: #43435C;
  font-size: 16px;
  font-weight: 400;
  padding-right: 45px;
}
.main-footer-three__newsletter button {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  right: 0;
  top: 0;
  height: 40px;
  padding: 0 10px;
  width: 40px;
  background: #C2ED08;
  border: unset;
  outline: unset;
  box-shadow: unset;
  color: #00000F;
  font-size: 12px;
  z-index: 1;
}
.main-footer-three__newsletter button:hover {
  color: #00000F;
  background: #FFFFFF;
}
.main-footer-three__newsletter button:hover:after {
  background: #FFFFFF;
}
.main-footer-three__newsletter button i {
  transform: rotate(-45deg);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.main-footer-three .footer-widget {
  position: relative;
}
.main-footer-three .footer-widget__title {
  font-size: 22px;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
  text-transform: uppercase;
  margin: 0;
  margin-bottom: 17px;
}
.main-footer-three .footer-widget__text {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 42px;
}
.main-footer-three .footer-widget__social {
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
  column-gap: 10px;
}
.main-footer-three .footer-widget__social a {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
  font-size: 18px;
  border: unset;
  outline: unset;
}
.main-footer-three .footer-widget__social a:hover {
  color: #00000F;
}
.main-footer-three .footer-widget__social a:hover::after {
  background: #C2ED08;
}
.main-footer-three .footer-widget__info, .main-footer-three .footer-widget__links, .main-footer-three .footer-widget__schedule {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  row-gap: 10px;
  flex-wrap: wrap;
}
.main-footer-three .footer-widget__info li, .main-footer-three .footer-widget__links li a, .main-footer-three .footer-widget__schedule li {
  font-size: 16px;
  width: 400;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.7);
}
.main-footer-three .footer-widget__info {
  row-gap: 16px;
}
.main-footer-three .footer-widget__info li {
  padding-left: 39px;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  font-size: 16px;
  line-height: 26px;
}
.main-footer-three .footer-widget__info li i {
  font-size: 20px;
  color: #FFFFFF;
  position: absolute;
  left: 0;
  top: 3px;
}
.main-footer-three .footer-widget__info li a {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}
.main-footer-three .footer-widget__info li a:hover {
  color: #C2ED08;
}
.main-footer-three .footer-widget__info li a.info_tel {
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
  color: #FFFFFF;
  margin: -9px 0 0;
  font-family: "Montserrat", sans-serif;
}
.main-footer-three .footer-widget__info li a.info_tel:hover {
  color: #115da9;
}
.main-footer-three .footer-widget .message_info {
  font-size: 16px;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  padding-left: 24px;
}
.main-footer-three .footer-widget .message_info span {
  width: 16px;
  height: 16px;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 6.5px;
  border-radius: 50%;
  background: rgba(194, 237, 8, 0.3);
}
.main-footer-three .footer-widget .message_info span:after {
  position: absolute;
  left: 50%;
  top: 50%;
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #C2ED08;
  transform: translate(-50%, -50%);
}
.main-footer-three .footer-widget__links li a {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
  column-gap: 10px;
  position: relative;
}
.main-footer-three .footer-widget__links li a i {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  font-size: 12px;
}
.main-footer-three .footer-widget__links li a:hover i {
  opacity: 1;
  visibility: visible;
  color: #C2ED08;
}
.main-footer-three .footer-widget__links li a:hover {
  padding-left: 22px;
  color: #C2ED08;
}

.main-footer-three__copyright {
  margin: 0;
  font-size: 16px;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.7);
  padding: 27px 0;
}
.main-footer-three__copyright a {
  color: #C2ED08;
}
.main-footer-three__copyright a:hover {
  color: #F4F4F4;
}

/*--------------------------------------------------------------
# Footer Navigation
--------------------------------------------------------------*/
.main-footer__menu-sec {
  position: relative;
  border-bottom: 1px solid rgba(67, 67, 92, 0.4);
}
.main-footer__inner {
  display: flex;
  align-items: center;
  position: relative;
  padding: 0;
  margin: 0 0 12.5px;
}
@media (max-width: 767px) {
  .main-footer__inner {
    flex-wrap: wrap;
    row-gap: 24px;
  }
  .main-footer__inner > * {
    flex: 0 100%;
  }
}
.main-footer__logo {
  display: flex;
  width: 213px;
  align-items: center;
  position: relative;
  z-index: 9;
  padding: 32px 0 31px;
  border-right: 1px solid rgba(67, 67, 92, 0.4);
}
@media (max-width: 767px) {
  .main-footer__logo {
    padding: 11px 0 10px;
    border-right: 0;
  }
}
.main-footer .footer-menu {
  display: flex;
  width: auto;
  align-items: center;
  position: relative;
  z-index: 9;
}
.main-footer .main-footer__nav {
  margin-left: 15%;
  margin-right: auto;
}
@media (max-width: 1199px) {
  .main-footer .main-footer__nav {
    margin-left: 5%;
  }
}
@media (max-width: 991px) {
  .main-footer .main-footer__nav {
    margin-left: 4%;
  }
}
@media (max-width: 767px) {
  .main-footer .main-footer__nav {
    margin-left: 0%;
  }
}
.main-footer__right {
  display: flex;
  justify-content: end;
  align-items: center;
  flex-direction: row;
  padding: 0;
}
@media (max-width: 767px) {
  .main-footer__right {
    justify-content: start;
    margin-bottom: 50px;
  }
}

.footer-menu {
  position: relative;
}
.footer-menu .footer-menu__list > li {
  padding: 36px 0;
}
@media (max-width: 767px) {
  .footer-menu .footer-menu__list > li {
    padding: 15px 0;
  }
}
.footer-menu .footer-menu__list li ul li {
  flex: 1 1 100%;
  width: 100%;
  position: relative;
}
.footer-menu .footer-menu__list > li + li {
  margin-left: 29px;
}
@media (max-width: 991px) {
  .footer-menu .footer-menu__list > li + li {
    margin-left: 15px;
  }
}
.footer-menu .footer-menu__list > li.current > a, .footer-menu .footer-menu__list > li:hover > a {
  color: #115da9;
  text-shadow: 0 0 0.5px currentColor;
}
.footer-menu .footer-menu__list,
.footer-menu .footer-menu__list ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  align-items: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1200px) {
  .footer-menu .footer-menu__list,
  .footer-menu .footer-menu__list ul {
    display: flex !important;
  }
}
.footer-menu .footer-menu__list > li,
.footer-menu .footer-menu__list ul > li {
  position: relative;
}
.footer-menu .footer-menu__list > li > a,
.footer-menu .footer-menu__list ul > li > a {
  font-size: 16px;
  line-height: 24px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  color: #EFEFFB;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  position: relative;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .footer-menu .footer-menu__list > li > a,
  .footer-menu .footer-menu__list ul > li > a {
    font-size: 12px;
    line-height: 22px;
  }
}
.footer-menu .footer-menu__list > li.dropdown,
.footer-menu .footer-menu__list ul > li.dropdown {
  position: relative;
}
.footer-menu .footer-menu__list > li.dropdown > a::after,
.footer-menu .footer-menu__list ul > li.dropdown > a::after {
  position: relative;
  right: 0;
  top: 0;
  border-radius: 0;
  font-size: 10px;
  font-weight: 600;
  font-family: Ripcar !important;
  content: "\e92d";
  color: inherit;
  line-height: 10px;
  margin-left: 3px;
}
.footer-menu .footer-menu__list li ul,
.footer-menu .footer-menu__list ul li ul {
  position: absolute;
  top: 100%;
  left: -25px;
  min-width: 270px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  transform-origin: top center;
  transform: scaleY(0) translateZ(100px);
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
  z-index: 99;
  color: #FFFFFF;
  background-color: #F4F4F4;
  box-shadow: 0px 10px 60px 0px RGBA(var(--tolak-white-rgb, 255, 255, 255), 0.07);
  padding: 15px 20px 11px;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}
.footer-menu .footer-menu__list li:hover ul,
.footer-menu .footer-menu__list ul li:hover ul {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1) translateZ(0px);
}
.footer-menu .footer-menu__list li ul li a,
.footer-menu .footer-menu__list ul li ul li a {
  font-size: 15px;
  line-height: 26px;
  color: #00000F;
  font-weight: 600;
  display: flex;
  padding: 8px 20px;
  transition: 400ms;
  margin-bottom: 4px;
}
.footer-menu .footer-menu__list li ul li.current > a, .footer-menu .footer-menu__list li ul li:hover > a,
.footer-menu .footer-menu__list ul li ul li.current > a,
.footer-menu .footer-menu__list ul li ul li:hover > a {
  background-color: rgba(63, 62, 61, 0.3);
  color: #115da9;
}
.footer-menu .footer-menu__list li ul li.current > a::after, .footer-menu .footer-menu__list li ul li:hover > a::after,
.footer-menu .footer-menu__list ul li ul li.current > a::after,
.footer-menu .footer-menu__list ul li ul li:hover > a::after {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}

/*--------------------------------------------------------------
# Footer Navigation 02
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .main-footer-three .container {
    max-width: 100%;
  }
}
.main-footer-three__menu-sec {
  position: relative;
  border-bottom: 1px solid rgba(67, 67, 92, 0.4);
}
.main-footer-three__inner {
  display: flex;
  align-items: center;
  position: relative;
  padding: 0;
  margin: 0 0 12.5px;
}
@media (max-width: 767px) {
  .main-footer-three__inner {
    flex-wrap: wrap;
    row-gap: 24px;
  }
  .main-footer-three__inner > * {
    flex: 0 100%;
  }
}
.main-footer-three__logo {
  display: flex;
  width: 213px;
  align-items: center;
  position: relative;
  z-index: 9;
  padding: 33px 0 32px;
  border-right: 1px solid rgba(67, 67, 92, 0.4);
}
@media (max-width: 767px) {
  .main-footer-three__logo {
    padding: 11px 0 10px;
    border-right: 0;
  }
}
.main-footer-three .footer-menu-three {
  display: flex;
  width: auto;
  align-items: center;
  position: relative;
  z-index: 9;
}
.main-footer-three .main-footer-three__nav {
  margin-left: 15%;
  margin-right: auto;
}
@media (max-width: 1199px) {
  .main-footer-three .main-footer-three__nav {
    margin-left: 5%;
  }
}
@media (max-width: 991px) {
  .main-footer-three .main-footer-three__nav {
    margin-left: 3%;
  }
}
.main-footer-three__right {
  display: flex;
  justify-content: end;
  align-items: center;
  flex-direction: row;
  padding: 0;
}
@media (max-width: 767px) {
  .main-footer-three__right {
    justify-content: start;
    margin-bottom: 50px;
  }
}
.main-footer-three__button {
  height: 56px;
  background: #C2ED08;
  color: #00000F;
}
.main-footer-three__button:hover {
  color: #00000F;
  background: #FFFFFF;
}
.main-footer-three__button:hover:after {
  background: #FFFFFF;
}

.footer-menu-three {
  position: relative;
}
.footer-menu-three .footer-menu-three__list > li {
  padding: 36px 0;
}
@media (max-width: 767px) {
  .footer-menu-three .footer-menu-three__list > li {
    padding: 15px 0;
  }
}
.footer-menu-three .footer-menu-three__list li ul li {
  flex: 1 1 100%;
  width: 100%;
  position: relative;
}
.footer-menu-three .footer-menu-three__list > li + li {
  margin-left: 29px;
}
@media (max-width: 991px) {
  .footer-menu-three .footer-menu-three__list > li + li {
    margin-left: 15px;
  }
}
.footer-menu-three .footer-menu-three__list > li.current > a, .footer-menu-three .footer-menu-three__list > li:hover > a {
  color: #C2ED08;
  text-shadow: 0 0 0.5px currentColor;
}
.footer-menu-three .footer-menu-three__list,
.footer-menu-three .footer-menu-three__list ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  align-items: center;
  display: inline-flex;
  justify-content: center;
}
@media (min-width: 1200px) {
  .footer-menu-three .footer-menu-three__list,
  .footer-menu-three .footer-menu-three__list ul {
    display: flex !important;
  }
}
.footer-menu-three .footer-menu-three__list > li,
.footer-menu-three .footer-menu-three__list ul > li {
  position: relative;
}
.footer-menu-three .footer-menu-three__list > li > a,
.footer-menu-three .footer-menu-three__list ul > li > a {
  font-size: 16px;
  line-height: 24px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  color: #EFEFFB;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  position: relative;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .footer-menu-three .footer-menu-three__list > li > a,
  .footer-menu-three .footer-menu-three__list ul > li > a {
    font-size: 12px;
    line-height: 22px;
  }
}
.footer-menu-three .footer-menu-three__list > li.dropdown,
.footer-menu-three .footer-menu-three__list ul > li.dropdown {
  position: relative;
}
.footer-menu-three .footer-menu-three__list > li.dropdown > a::after,
.footer-menu-three .footer-menu-three__list ul > li.dropdown > a::after {
  position: relative;
  right: 0;
  top: 0;
  border-radius: 0;
  font-size: 10px;
  font-weight: 600;
  font-family: Ripcar !important;
  content: "\e92d";
  color: inherit;
  line-height: 10px;
  margin-left: 3px;
}
.footer-menu-three .footer-menu-three__list li ul,
.footer-menu-three .footer-menu-three__list ul li ul {
  position: absolute;
  top: 100%;
  left: -25px;
  min-width: 270px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  transform-origin: top center;
  transform: scaleY(0) translateZ(100px);
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
  z-index: 99;
  color: #FFFFFF;
  background-color: #F4F4F4;
  box-shadow: 0px 10px 60px 0px RGBA(var(--tolak-white-rgb, 255, 255, 255), 0.07);
  padding: 15px 20px 11px;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}
.footer-menu-three .footer-menu-three__list li:hover ul,
.footer-menu-three .footer-menu-three__list ul li:hover ul {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1) translateZ(0px);
}
.footer-menu-three .footer-menu-three__list li ul li a,
.footer-menu-three .footer-menu-three__list ul li ul li a {
  font-size: 15px;
  line-height: 26px;
  color: #00000F;
  font-weight: 600;
  display: flex;
  padding: 8px 20px;
  transition: 400ms;
  margin-bottom: 4px;
}
.footer-menu-three .footer-menu-three__list li ul li.current > a, .footer-menu-three .footer-menu-three__list li ul li:hover > a,
.footer-menu-three .footer-menu-three__list ul li ul li.current > a,
.footer-menu-three .footer-menu-three__list ul li ul li:hover > a {
  background-color: rgba(63, 62, 61, 0.3);
  color: #115da9;
}
.footer-menu-three .footer-menu-three__list li ul li.current > a::after, .footer-menu-three .footer-menu-three__list li ul li:hover > a::after,
.footer-menu-three .footer-menu-three__list ul li ul li.current > a::after,
.footer-menu-three .footer-menu-three__list ul li ul li:hover > a::after {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}

/*--------------------------------------------------------------
# Footer 04
--------------------------------------------------------------*/
.main-footer-four {
  position: relative;
  background-color: #00000F;
  padding: 0;
}
.main-footer-four__top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 60px;
  padding: 70px 0;
}
@media (max-width: 767px) {
  .main-footer-four__top {
    flex-direction: column;
    justify-content: center;
    padding: 50px 0;
    gap: 30px;
  }
}
.main-footer-four__top__text {
  color: #FFFFFF;
  font-size: 120px;
  margin: 0;
}
@media (max-width: 991px) {
  .main-footer-four__top__text {
    font-size: 85px;
  }
}
@media (max-width: 767px) {
  .main-footer-four__top__text {
    font-size: 60px;
  }
}
.main-footer-four__top__text span {
  display: inline-block;
  position: relative;
  color: #FF5F2A;
}
.main-footer-four__top__text span::after {
  position: absolute;
  content: "";
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 6px;
  background: #FF5F2A;
  animation: borderHv 2s infinite;
}
@keyframes borderHv {
  0% {
    width: 0%;
  }
  50% {
    width: 100%;
    left: 0;
  }
  100% {
    width: 0;
    left: 100%;
  }
}
.main-footer-four__top__rm {
  width: 186px;
  height: 186px;
  background-color: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #FFFFFF;
  font-weight: 700;
  text-transform: capitalize;
  font-family: "Montserrat", sans-serif;
  gap: 5px;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .main-footer-four__top__rm {
    width: 146px;
    height: 146px;
  }
}
.main-footer-four__top__rm i {
  font-size: 12px;
  display: inline-block;
  transform: rotate(-45deg);
}
.main-footer-four__top__rm::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0;
  background: 0 0;
  border-radius: 50%;
  transition: all 0.4s;
  border: 1px solid #FF5F2A;
  transform: scale(1.2, 1.2);
}
.main-footer-four__top__rm::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: 50%;
  background-color: #FF5F2A;
  transition: all 0.3s;
}
.main-footer-four__top__rm:hover {
  color: #FF5F2A;
}
.main-footer-four__top__rm:hover i {
  transform: rotate(0);
}
.main-footer-four__top__rm:hover::after {
  opacity: 1;
  transform: scale(1, 1);
}
.main-footer-four__top__rm:hover::before {
  opacity: 0;
  transform: scale(0.5, 0.5);
}
.main-footer-four .main-footer-two__content > .row > [class^=col-]::after,
.main-footer-four .main-footer-two__content > .row > [class*=col-]::after {
  background: 1px solid rgba(255, 255, 255, 0.15);
}
.main-footer-four .main-footer-two__newsletter input[type=text] {
  border-color: rgba(255, 255, 255, 0.15);
}
.main-footer-four .main-footer-two__newsletter button,
.main-footer-four .footer-widget__social a:hover::after,
.main-footer-four .main-footer-two__bottom::after {
  background: #FF5F2A;
}
.main-footer-four .main-footer-two__newsletter button:hover,
.main-footer-four .footer-widget__getin-touch .message_info i,
.main-footer-four .footer-widget__getin-touch p a,
.main-footer-four .footer-widget .footer-widget__info li a,
.main-footer-four .footer-widget .footer-widget__links li a:hover i,
.main-footer-four .footer-widget .footer-widget__links li a:hover {
  color: #FF5F2A;
}
.main-footer-four .footer-widget .footer-widget__info li a:hover {
  color: #FFFFFF;
}
.main-footer-four .footer-widget .footer-widget__info li a.info_tel {
  color: #FFFFFF;
}
.main-footer-four .footer-widget .footer-widget__info li a.info_tel:hover {
  color: #FF5F2A;
}

/*--------------------------------------------------------------
# Slide One
--------------------------------------------------------------*/
.slide-text {
  position: relative;
  z-index: 99;
  padding: 80px 0 30px;
  overflow: hidden;
  margin: -80px 0;
}
@media (max-width: 767px) {
  .slide-text {
    padding: 0;
    margin: 0;
  }
}
.slide-text__one {
  background: #115da9;
  padding: 26px 0 25px;
  position: relative;
  white-space: nowrap;
  z-index: 2;
}
@media (max-width: 1199px) {
  .slide-text__one {
    padding: 20px 0 19px;
  }
}
@media (max-width: 575px) {
  .slide-text__one {
    padding: 12px 0 11px;
  }
}
.slide-text__one__list {
  margin: 0;
  padding: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  animation: text-scrolling 22s linear infinite;
  will-change: transform;
  flex-wrap: nowrap;
  gap: 114px;
}
@media (max-width: 767px) {
  .slide-text__one__list {
    animation: text-scrolling 6s linear infinite;
  }
}
.slide-text__one__list li {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  letter-spacing: 0;
  margin: 0;
  color: #FFFFFF;
  font-size: 35px;
  line-height: 50px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
}
@media (max-width: 1199px) {
  .slide-text__one__list li {
    font-size: 25px;
  }
}
.slide-text__one__list li::after {
  position: absolute;
  content: "";
  right: -84px;
  top: -2px;
  width: 54px;
  height: 54px;
  border: 2px solid #FFFFFF;
  border-radius: 50%;
}
@media (max-width: 575px) {
  .slide-text__one__list li::after {
    right: -82px;
    top: 2.5px;
    width: 45px;
    height: 45px;
  }
}
.slide-text__one__list:hover {
  animation-play-state: paused;
}
@keyframes text-scrolling {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-100%);
  }
}
.slide-text__two {
  background: #F4F4F4;
  overflow: hidden;
  padding: 26px 0 25px;
  position: relative;
  top: -79px;
  left: -22px;
  z-index: 1;
  -webkit-transform: rotate(-6.19deg);
  transform: rotate(-6.19deg);
  width: calc(100% + 72px);
  box-shadow: 0px -1px 7px rgba(0, 0, 0, 0.03);
  white-space: nowrap;
}
@media (max-width: 1199px) {
  .slide-text__two {
    padding: 20px 0 19px;
    top: -78px;
    -webkit-transform: rotate(-8.19deg);
    transform: rotate(-8.19deg);
  }
}
@media (max-width: 991px) {
  .slide-text__two {
    display: none;
  }
}
.slide-text__two__list {
  margin: 0;
  padding: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  animation: text-scrolling-two 22s linear infinite;
  will-change: transform;
  flex-wrap: nowrap;
  gap: 114px;
}
.slide-text__two__list li {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  letter-spacing: 0;
  margin: 0;
  color: #00000F;
  font-size: 35px;
  line-height: 50px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
}
@media (max-width: 1199px) {
  .slide-text__two__list li {
    font-size: 25px;
  }
}
.slide-text__two__list li::after {
  position: absolute;
  content: "";
  right: -84px;
  top: -2px;
  width: 54px;
  height: 54px;
  border: 2px solid #00000F;
  border-radius: 50%;
}
@media (max-width: 575px) {
  .slide-text__two__list li::after {
    right: -82px;
    top: 2.5px;
    width: 45px;
    height: 45px;
  }
}
.slide-text__two__list:hover {
  animation-play-state: paused;
}
@keyframes text-scrolling-two {
  from {
    transform: translate(-100%, 0);
  }
  to {
    transform: translate(0, 0);
  }
}

/*--------------------------------------------------------------
# Service 01 
--------------------------------------------------------------*/
.service-one {
  position: relative;
  padding: 114px 0 120px;
}
@media (max-width: 767px) {
  .service-one {
    padding: 80px 0;
  }
}
.service-one .sec-title_wrap {
  position: relative;
  margin: 0 0 50px;
}
.service-one .service-one__wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 24px;
  align-items: start;
  justify-items: start;
  margin: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .service-one .service-one__wrap {
    column-gap: 18px;
  }
}
@media (max-width: 991px) {
  .service-one .service-one__wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .service-one .service-one__wrap {
    grid-template-columns: repeat(1, 1fr);
  }
}
.service-one .service-one__wrap li {
  position: relative;
}
@media (max-width: 991px) {
  .service-one .service-one__wrap li {
    width: 100%;
  }
}
.service-one .service-one__wrap li::after {
  position: absolute;
  content: "";
  left: 50%;
  bottom: 0;
  width: 40px;
  height: 20px;
  background: #00000F;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  clip-path: polygon(50% 100%, 0% 0%, 100% 0%);
  transform: translateX(-50%);
}
@media (max-width: 991px) {
  .service-one .service-one__wrap li:after {
    display: none;
  }
}
.service-one .service-one__wrap li.active::after {
  opacity: 1;
  visibility: visible;
}
.service-one .service-one__tabContent {
  position: relative;
  display: none;
}
@media (max-width: 767px) {
  .service-one .service-one__tabContent {
    min-height: 270px;
  }
  .service-one .service-one__tabContent img {
    max-width: 100%;
    min-height: 270px;
    max-height: 270px;
    object-fit: cover;
  }
}
.service-one__item {
  position: relative;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  overflow: hidden;
  margin: 0 0 20px;
}
@media (max-width: 991px) {
  .service-one__item {
    margin-bottom: 24px;
  }
}
.service-one__item .service-one__item__image {
  max-width: 100%;
  width: 100%;
}
@media (max-width: 991px) {
  .service-one__item .service-one__item__image a {
    display: block;
    width: 100%;
  }
  .service-one__item .service-one__item__image img {
    width: 100%;
    object-fit: cover;
  }
}
.service-one__item .service-one__item__image .service-one__item__title {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 25px 20px 25px 25px;
  width: 100%;
  height: auto;
  font-size: 18px;
  line-height: 28px;
  color: #FFFFFF;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: row;
  column-gap: 10px;
  margin: 0;
  opacity: 1;
  visibility: visible;
  transition: 0.2s ease-in-out;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .service-one__item .service-one__item__image .service-one__item__title {
    padding: 25px 12px 25px 12px;
    font-size: 15px;
    line-height: 25px;
  }
}
.service-one__item .service-one__item__image .service-one__item__title i {
  color: #115da9;
  font-size: 28px;
  position: relative;
  top: 6px;
}
.service-one__item .service-one__item__image .service-one__item__title a:hover {
  color: #115da9;
}
.service-one__item .service-one__item__content {
  position: absolute;
  bottom: -101%;
  left: 0;
  right: 0;
  padding: 30px 25px;
  width: 100%;
  height: 0;
  background: #00000F;
  z-index: 2;
  transition: 0.4s ease-in-out;
  -webkit-transition: 0.4s ease-in-out;
  -moz-transition: 0.4s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  flex-wrap: nowrap;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .service-one__item .service-one__item__content {
    padding: 15px 12px;
  }
}
.service-one__item .service-one__item__icon {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 24px;
  background: #115da9;
  height: 40px;
  width: 40px;
  color: #FFFFFF;
  margin: 0 0 23px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .service-one__item .service-one__item__icon {
    margin-bottom: 14px;
    width: 30px;
    height: 30px;
    font-size: 20px;
  }
}
.service-one__item .service-one__item__title {
  font-size: 18px;
  line-height: 28px;
  color: #FFFFFF;
  margin: 0 0 5px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .service-one__item .service-one__item__title {
    font-size: 15px;
    line-height: 25px;
  }
}
.service-one__item .service-one__item__title a {
  color: inherit;
  font-weight: inherit;
  font-size: inherit;
}
.service-one__item .service-one__item__title a:hover {
  color: #115da9;
}
.service-one__item .service-one__item__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 23px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .service-one__item .service-one__item__text {
    font-size: 12px;
    line-height: 22px;
    margin-bottom: 14px;
  }
}
.service-one__item .service-one__item__rm {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 10px;
  width: 40px;
  height: 40px;
  background: #115da9;
  color: #FFFFFF;
  z-index: 2;
}
.service-one__item .service-one__item__rm:hover {
  color: #115da9;
}
.service-one__item .service-one__item__rm:hover::after {
  background: #F4F4F4;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .service-one__item .service-one__item__rm {
    width: 30px;
    height: 30px;
  }
}
.service-one__item:hover .service-one__item__content {
  height: 100%;
  bottom: 0;
}
.service-one__item:hover .service-one__item__image .service-one__item__title {
  opacity: 0;
  visibility: hidden;
}
.service-one .service-one__wrap li.active .service-one__item__content {
  height: 100%;
  bottom: 0;
}
.service-one .service-one__image__video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.service-one .service-one__image__video a {
  width: 100px;
  height: 100px;
  background: #FFFFFF;
  font-size: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 50%;
  color: #00000F;
}
.service-one .service-one__image__video a:hover {
  background: #115da9;
  color: #FFFFFF;
}
@media (max-width: 767px) {
  .service-one .service-one__image__video a {
    width: 75px;
    height: 75px;
  }
}

/*--------------------------------------------------------------
# Service 02
--------------------------------------------------------------*/
.service-two {
  position: relative;
  background: #F4F4F4;
  padding: 114px 0 145px;
}
@media (max-width: 991px) {
  .service-two {
    padding: 80px 0;
  }
}
.service-two .sec-title_wrap {
  margin-bottom: 50px;
}
.service-two .sec-title_wrap .ripcar-btn {
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .service-two .sec-title_wrap .sec-title__title {
    margin-bottom: 40px;
  }
}
.service-two__wrap {
  position: relative;
}
@media (max-width: 991px) {
  .service-two__wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 16px;
  }
  .service-two__wrap > li {
    flex: 0 calc(50% - 8px);
  }
}
@media (max-width: 767px) {
  .service-two__wrap > li {
    flex: 0 100%;
  }
}
.service-two__wrap > li {
  position: relative;
  margin-bottom: 16px;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
}
.service-two__wrap > li:last-child() {
  margin-bottom: 0;
}
.service-two__wrap > li.active .service-two__tab .service-two__tab__title {
  background: #115da9;
  border-color: #115da9;
  color: #FFFFFF;
}
.service-two__tab {
  position: relative;
}
.service-two__tab .service-two__tab__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  margin: 0;
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  color: #00000F;
  padding: 18px 24px 16px 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.service-two__tab .service-two__tab__title > i {
  font-size: 20px;
}
.service-two__tab .service-two__tab__title:hover {
  border-color: #115da9;
  background: #115da9;
  color: #FFFFFF;
}
.service-two__item {
  padding: 24px 24px 0px;
  background: #FFFFFF;
  position: relative;
}
@media (max-width: 1199px) {
  .service-two__item {
    margin-bottom: 25px;
  }
}
.service-two__item .service-two__item__image {
  max-width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
}
.service-two__item .service-two__item__image img {
  transition: 0.4s ease-in-out;
  -webkit-transition: 0.4s ease-in-out;
  -moz-transition: 0.4s ease-in-out;
}
@media (max-width: 991px) {
  .service-two__item .service-two__item__image a {
    display: block;
  }
  .service-two__item .service-two__item__image img {
    max-width: unset;
    width: 100%;
  }
}
.service-two__item .service-two__item__icon {
  position: absolute;
  font-size: 24px;
  color: #FFFFFF;
  left: 15px;
  bottom: 15px;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #115da9;
  clip-path: polygon(0% 0%, 100% 0%, 87% 100%, 0% 100%);
}
.service-two__item .service-two__item__content {
  padding: 23px 0 0px;
}
.service-two__item .service-two__item__title {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 7px;
  color: #00000F;
}
.service-two__item .service-two__item__title a {
  display: inline-block;
  color: inherit;
  font-weight: inherit;
}
.service-two__item .service-two__item__title a:hover {
  color: #115da9;
}
@media (max-width: 767px) {
  .service-two__item .service-two__item__title br {
    display: none;
  }
}
.service-two__item .service-two__item__text {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 1px;
}
@media (max-width: 767px) {
  .service-two__item .service-two__item__text br {
    display: none;
  }
}
.service-two__item .service-two__item__rm {
  font-size: 16px;
  color: #FFFFFF;
  width: 56px;
  height: 50px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  bottom: -25px;
  background-color: #00000F;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
}
.service-two__item .service-two__item__rm:hover {
  color: #FFFFFF;
  background-color: #115da9;
}
.service-two__item:hover .service-two__item__image img {
  transform: scale3d(1.1, 1.1, 1.1);
}
.service-two__tabContent {
  display: none;
}
.service-two__tabContent .row {
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.service-two__tabContent[style="display: block;"] .row {
  animation-delay: 0.1s;
  animation-name: fadeInUp;
}
.service-two--pricing {
  background-color: transparent;
  padding: 0 0 225px;
}
@media (max-width: 1199px) {
  .service-two--pricing {
    padding-bottom: 120px;
  }
}
@media (max-width: 767px) {
  .service-two--pricing {
    padding-bottom: 80px;
  }
}
.service-two--pricing .service-two__item {
  border: 1px solid rgba(0, 0, 15, 0.1);
  margin-bottom: 24px;
  transition: all ease 350ms;
}
.service-two--pricing .service-two__item:hover {
  filter: drop-shadow(0px 8px 4px rgba(0, 0, 0, 0.05));
}
.service-two--page {
  background-color: transparent;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .service-two--page {
    padding: 80px 0;
  }
}
.service-two--page .service-two__item {
  border: 1px solid rgba(0, 0, 15, 0.1);
  margin-bottom: 24px;
  transition: all ease 350ms;
}
.service-two--page .service-two__item:hover {
  filter: drop-shadow(0px 8px 4px rgba(0, 0, 0, 0.05));
}

/*--------------------------------------------------------------
# Service 03
--------------------------------------------------------------*/
.service-three {
  position: relative;
  padding: 113px 0 112px;
  background: #00000F;
}
@media (max-width: 767px) {
  .service-three {
    padding: 80px 0 60px;
  }
}
.service-three__shape {
  position: absolute;
  left: 16px;
  top: 110px;
}
.service-three__shape img {
  max-width: 100%;
  width: 100%;
}
.service-three .sec-title {
  margin-bottom: 50px;
}
.service-three .sec-title__tagline {
  color: #C2ED08;
}
.service-three .sec-title__title {
  color: #FFFFFF;
}
.service-three__item {
  position: relative;
}
.service-three__item .service-three__item__image {
  max-width: 100%;
  width: auto;
  height: auto;
  position: relative;
  overflow: hidden;
}
.service-three__item .service-three__item__image img {
  transform: scale(1.08);
  position: relative;
  right: 10px;
  transition: 0.4s ease-in-out;
  -webkit-transition: 0.4s ease-in-out;
  -moz-transition: 0.4s ease-in-out;
}
.service-three__item .service-three__item__content {
  padding: 24px 24px 30px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: transparent;
}
.service-three__item .service-three__item__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 22px;
  background-color: #C2ED08;
  color: #00000F;
  width: 62px;
  height: 32px;
  border-radius: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: 0.4s ease-in-out;
  -webkit-transition: 0.4s ease-in-out;
  -moz-transition: 0.4s ease-in-out;
  transform: translate(-50%, -50%) scale3d(0, 0, 0);
  -webkit-transform: translate(-50%, -50%) scale3d(0, 0, 0);
  -moz-transform: translate(-50%, -50%) scale3d(0, 0, 0);
}
.service-three__item .service-three__item__type {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  display: inline-block;
  margin-bottom: 5px;
}
.service-three__item .service-three__item__type:hover {
  color: #C2ED08;
}
.service-three__item .service-three__item__title {
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 22px;
}
.service-three__item .service-three__item__title a {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}
.service-three__item .service-three__item__title a:hover {
  color: #C2ED08;
}
.service-three__item:hover .service-three__item__icon {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale3d(1, 1, 1);
  -webkit-transform: translate(-50%, -50%) scale3d(1, 1, 1);
  -moz-transform: translate(-50%, -50%) scale3d(1, 1, 1);
}
.service-three__item:hover .service-three__item__type {
  color: #C2ED08;
}
.service-three__item:hover .service-three__item__image img {
  right: 0;
}
.service-three__carousel.owl-carousel {
  position: relative;
}
.service-three__carousel.owl-carousel .owl-dots {
  width: 100%;
  column-gap: 10px;
}
.service-three__carousel.owl-carousel .owl-dots button.owl-dot {
  width: 20px;
  height: 2px;
  border: unset;
  background: rgba(255, 255, 255, 0.3);
  transition: 0.4s ease-in-out;
  -webkit-transition: 0.4s ease-in-out;
  -moz-transition: 0.4s ease-in-out;
  border: none;
}
.service-three__carousel.owl-carousel .owl-dots button.owl-dot.active, .service-three__carousel.owl-carousel .owl-dots button.owl-dot:hover {
  background: #C2ED08;
}
.service-three__carousel.owl-carousel .owl-dots button.owl-dot.active {
  width: 86px;
}

/*-- Service Details --*/
.service-details {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .service-details {
    padding: 80px 0;
  }
}
.service-details__image {
  position: relative;
  margin: 0 0 30px;
}
.service-details__image img {
  width: 100%;
  height: auto;
}
.service-details__meta {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin: 0 0 22px;
}
.service-details__meta__icon {
  width: 58px;
  height: 58px;
  display: flex;
  font-size: 36px;
  justify-content: center;
  align-items: center;
  background-color: #115da9;
  color: #FFFFFF;
  clip-path: polygon(0% 0%, 100% 0%, 87% 100%, 0% 100%);
  flex-shrink: 0;
}
.service-details__meta__title {
  margin: 0;
  font-size: 32px;
}
.service-details__content {
  position: relative;
}
.service-details__content__text {
  margin: 0 0 17px;
}
.service-details__content__image {
  position: relative;
  margin-top: 15px;
  margin-bottom: 42px;
}
.service-details__content__image img {
  width: 100%;
  height: auto;
}
.service-details__pagination {
  margin-top: 44px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0;
  border-top: 1px solid rgba(0, 0, 15, 0.1);
  border-bottom: 1px solid rgba(0, 0, 15, 0.1);
}
.service-details__pagination a {
  font-size: 16px;
  color: #43435C;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  gap: 22px;
}
@media (max-width: 500px) {
  .service-details__pagination a {
    font-size: 0;
  }
}
.service-details__pagination a i {
  width: 70px;
  height: 70px;
  background-color: #F4F4F4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(67, 67, 92, 0.4);
  font-size: 25px;
  transition: 0.3s ease-in-out;
}
.service-details__pagination a:hover {
  color: #115da9;
}
.service-details__pagination a:hover i {
  background-color: #115da9;
  color: #FFFFFF;
}
.service-details__sidebar {
  position: relative;
}
.service-details__sidebar__widget {
  position: relative;
  background-color: rgba(244, 244, 244, 0.5);
  padding: 30px;
}
.service-details__sidebar__widget + .service-details__sidebar__widget {
  margin-top: 30px;
}
.service-details__sidebar__title {
  font-size: 20px;
  text-transform: capitalize;
  margin: 0 0 26px;
}
.service-details__sidebar input[type=text],
.service-details__sidebar input[type=email],
.service-details__sidebar input[type=tel],
.service-details__sidebar textarea {
  display: block;
  width: 100%;
  height: 50px;
  background-color: #FFFFFF;
  color: #43435C;
  font-size: 14px;
  font-weight: 400;
  border: none;
  border-radius: 0;
  outline: none;
  padding-left: 20px;
  padding-right: 20px;
}
.service-details__sidebar textarea {
  height: 100px;
  padding-top: 13px;
  resize: none;
  margin-bottom: 14px;
}
.service-details__sidebar .form-one__group {
  grid-gap: 10px;
  grid-row-gap: 10px;
}
.service-details__sidebar .sidebar__search {
  position: relative;
}
.service-details__sidebar .sidebar__search input[type=search],
.service-details__sidebar .sidebar__search input[type=text] {
  outline: none;
  width: 100%;
  height: 50px;
  background-color: #FFFFFF;
  font-size: 14px;
  color: #43435C;
  border-radius: 0;
  border: none;
  padding-left: 30px;
  padding-right: 30px;
  transition: all 500ms ease;
}
.service-details__sidebar .sidebar__search button[type=submit] {
  border: none;
  outline: none;
  background-color: transparent;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  width: auto;
  font-size: 14px;
  line-height: 50px;
  color: #00000F;
  border-radius: 0;
  transition: all 500ms ease;
}
.service-details__sidebar .sidebar__search button[type=submit]:hover {
  color: #115da9;
}
.service-details__sidebar__info {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.service-details__sidebar__info__item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 17px;
}
.service-details__sidebar__info__item__icon {
  font-size: 24px;
  line-height: 24px;
  color: #115da9;
  flex-shrink: 0;
  top: 1px;
  position: relative;
  transition: all 0.6s ease;
}
.service-details__sidebar__info__item:hover .service-details__sidebar__info__item__icon {
  transform: rotateY(180deg);
}
.service-details__sidebar__info__item__title {
  font-size: 16px;
  margin: 0 0 10px;
}
.service-details__sidebar__info__item__text {
  margin: 0;
}
.service-details__sidebar__info__item__text a {
  color: inherit;
}
.service-details__sidebar__info__item__text a:hover {
  color: #115da9;
}

/*--------------------------------------------------------------
# Team One
--------------------------------------------------------------*/
.team-one {
  padding: 113px 0;
  position: relative;
  background-color: #FFF;
}
@media (max-width: 767px) {
  .team-one {
    padding: 80px 0;
  }
}
.team-one .sec-title {
  margin-bottom: 50px;
}
.team-one__card {
  position: relative;
  overflow: hidden;
}
.team-one__card__image {
  position: relative;
}
.team-one__card__image img {
  width: 100%;
  height: auto;
  transition: 0.4s ease-in-out;
  -webkit-transition: 0.4s ease-in-out;
  -moz-transition: 0.4s ease-in-out;
}
.team-one__card__image::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 125px;
  background: rgb(0, 3, 30);
  background: -moz-linear-gradient(180deg, rgba(0, 3, 30, 0) 0%, rgb(0, 0, 15) 100%);
  background: -webkit-linear-gradient(180deg, rgba(0, 3, 30, 0) 0%, rgb(0, 0, 15) 100%);
  background: linear-gradient(180deg, rgba(0, 3, 30, 0) 0%, rgb(0, 0, 15) 100%);
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
}
.team-one__card__content {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 29px 29px 22px;
  width: 100%;
  height: auto;
}
@media (max-width: 991px) {
  .team-one__card__content {
    padding: 20px 20px 22px;
  }
}
@media (max-width: 991px) {
  .team-one__card__content {
    padding: 20px 20px 22px;
  }
}
.team-one__card__title {
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 6px;
}
@media (max-width: 991px) {
  .team-one__card__title {
    margin-bottom: 4px;
  }
}
.team-one__card__title a {
  color: inherit;
}
.team-one__card__title a:hover {
  color: #115da9;
}
.team-one__card__designation {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}
.team-one__card__social {
  position: absolute;
  right: -53px;
  bottom: 11px;
  width: 166px;
  height: auto;
  background-color: #115da9;
  transform: rotate(-40deg);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
}
.team-one__card__social__list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  column-gap: 12px;
  padding: 8px 12px 8px 22px;
}
.team-one__card__social__list a {
  font-size: 15px;
  color: #FFFFFF;
  display: inline-block;
  line-height: 1;
}
.team-one__card__social__list a:hover {
  color: #00000F;
}
.team-one__card:hover .team-one__card__social {
  visibility: visible;
  opacity: 1;
  right: -29px;
  bottom: 26px;
}
.team-one__card:hover .team-one__card__image > img {
  -webkit-transform: rotate(2deg) scale(1.1);
  transform: rotate(2deg) scale(1.1);
}
.team-one__carousel.owl-carousel {
  position: relative;
}
.team-one__carousel.owl-carousel .owl-nav {
  position: absolute;
  top: 0;
  right: 0;
  margin-top: -100px;
}
@media (max-width: 767px) {
  .team-one__carousel.owl-carousel .owl-nav {
    position: relative;
    margin: 30px 0 0;
  }
}
.team-one__carousel.owl-carousel .owl-nav .owl-prev span {
  background: #115da9;
  color: #FFFFFF;
}
.team-one__carousel.owl-carousel .owl-nav .owl-prev span::after {
  background-color: #F4F4F4;
}
.team-one__carousel.owl-carousel .owl-nav .owl-prev span:hover {
  color: #00000F;
}
.team-one__bottom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #F4F4F4;
  border-left: none;
  border-right: 0;
  padding: 30px 20px;
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #00000F;
  gap: 20px;
  margin: 50px 0 0;
}
@media (max-width: 500px) {
  .team-one__bottom {
    font-size: 24px;
  }
}
.team-one__bottom a {
  width: 70px;
  height: 70px;
  background-color: #115da9;
  color: #FFFFFF;
  font-size: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-one__bottom a:hover {
  background-color: #00000F;
}

/*--------------------------------------------------------------
# Team two
--------------------------------------------------------------*/
.team-two {
  padding: 250px 0 120px;
  position: relative;
  background-color: #00000F;
}
@media (max-width: 767px) {
  .team-two {
    padding: 210px 0 80px;
  }
}
.team-two__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.2;
}
.team-two__content {
  position: relative;
}
@media (max-width: 1199px) {
  .team-two__content {
    margin: 0 0 45px;
  }
}
.team-two__content .sec-title__tagline {
  color: #FF5F2A;
}
.team-two__content .sec-title__tagline__left {
  background-color: #FF5F2A;
}
.team-two__content .sec-title__title {
  color: #FFFFFF;
}
.team-two__content__text {
  color: rgba(255, 255, 255, 0.7);
  margin: 8px 0 50px;
}
@media (max-width: 1299px) {
  .team-two__content__text br {
    display: none;
  }
}
.team-two__carousel-nav {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}
.team-two__carousel-nav a {
  border: medium;
  outline: none;
  width: 46px;
  height: 40px;
  background-color: #F4F4F4;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #00000F;
  font-size: 16px;
  transition: 0.4s ease-in-out;
  position: relative;
  z-index: 1;
}
.team-two__carousel-nav a::after {
  content: "";
  position: absolute;
  right: 0px;
  left: auto;
  width: 0px;
  height: 100%;
  background: #FF5F2A;
  transition: 0.35s ease-in-out;
  z-index: -1;
  border-radius: inherit;
}
.team-two__carousel-nav a:hover {
  color: #FFFFFF;
}
.team-two__carousel-nav a:hover::after {
  right: auto;
  left: 0;
  width: 100%;
}
.team-two__carousel {
  position: relative;
  max-height: 350px;
  overflow: hidden;
}
.team-two .item {
  width: 300px;
  height: 350px;
  transition: 0.4s ease-in-out;
  margin: 0 12px;
}
@media (max-width: 767px) {
  .team-two .item {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0 12px;
  }
}
.team-two__card {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  margin: auto;
}
.team-two__card__image {
  position: relative;
  width: 100%;
  height: 100%;
}
.team-two__card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-two__card__image::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0%;
  opacity: 0;
  visibility: hidden;
  background-image: linear-gradient(180deg, rgba(0, 3, 30, 0) 0%, rgb(0, 0, 15) 100%);
  transition: 0.4s ease-in-out;
}
.team-two__card__content {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 29px 29px 22px;
  width: 100%;
  height: auto;
}
@media (max-width: 991px) {
  .team-two__card__content {
    padding: 20px 20px 22px;
  }
}
@media (max-width: 991px) {
  .team-two__card__content {
    padding: 20px 20px 22px;
  }
}
.team-two__card__title {
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 5px;
  transition: 0.5s ease-in-out;
  transform: translateX(30px);
  opacity: 0;
  visibility: hidden;
}
.team-two__card__title a {
  color: inherit;
}
.team-two__card__title a:hover {
  color: #FF5F2A;
}
.team-two__card__designation {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  transition: 0.6s ease-in-out;
  transform: translateX(30px);
  opacity: 0;
  visibility: hidden;
}
.team-two__card__social {
  position: absolute;
  right: -53px;
  bottom: 11px;
  width: 166px;
  height: auto;
  background-color: #FF5F2A;
  transform: rotate(-40deg);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
}
.team-two__card__social__list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  column-gap: 12px;
  padding: 8px 12px 8px 22px;
}
.team-two__card__social__list a {
  font-size: 15px;
  color: #FFFFFF;
  display: inline-block;
  line-height: 1;
}
.team-two__card__social__list a:hover {
  color: #00000F;
}
.team-two .center .item {
  width: 312px;
}
@media (max-width: 767px) {
  .team-two .center .item {
    width: 100%;
    height: auto;
  }
}
.team-two .center .team-two__card__title,
.team-two .center .team-two__card__designation {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.team-two .center .team-two__card__image::after {
  height: 100%;
  opacity: 1;
  visibility: visible;
}
.team-two .center .team-two__card__social {
  visibility: visible;
  opacity: 1;
  right: -29px;
  bottom: 26px;
}

/*--------------------------------------------------------------
# client Carousel
--------------------------------------------------------------*/
.client-carousel {
  position: relative;
}
.client-carousel.no-border {
  border: none;
}
.client-carousel__one {
  position: relative;
  background: #FFFFFF;
  box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.1);
  padding: 54px 20px;
  margin-bottom: -82px;
}
.client-carousel__one__item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: transparent;
}
.client-carousel__one img {
  max-height: 106px;
  max-width: 100%;
  width: auto !important;
  height: 100%;
}

/*--------------------------------------------------------------
# Faq One
--------------------------------------------------------------*/
.faq-one {
  position: relative;
  background-color: #FFFFFF;
  padding: 60px 0 120px;
}
@media (max-width: 767px) {
  .faq-one {
    padding: 60px 0 80px;
  }
}
.faq-one .sec-title__title {
  margin-bottom: 18px;
}
.faq-one__content__text {
  margin-bottom: 42px;
}
.faq-one__image {
  position: relative;
  margin-top: 6px;
  padding-bottom: 145px;
}
@media (max-width: 991px) {
  .faq-one__image {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .faq-one__image {
    padding-bottom: 0;
  }
}
.faq-one__image img {
  max-width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
}
@media (max-width: 1199px) {
  .faq-one__image img {
    max-width: 80%;
  }
}
@media (max-width: 991px) {
  .faq-one__image img {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .faq-one__image img {
    max-width: 100%;
    width: 100%;
  }
}
.faq-one__image img:nth-child(2) {
  position: absolute;
  left: 150px;
  top: 99px;
  z-index: 1;
}
@media (max-width: 1199px) {
  .faq-one__image img:nth-child(2) {
    left: 91px;
  }
}
@media (max-width: 991px) {
  .faq-one__image img:nth-child(2) {
    left: auto;
    right: 0;
  }
}
@media (max-width: 767px) {
  .faq-one__image img:nth-child(2) {
    display: none;
  }
}
.faq-one__accordion {
  position: relative;
}
@media (max-width: 991px) {
  .faq-one__accordion {
    margin: 45px 0 0;
  }
}
.faq-one__accordion .accrodion {
  background-color: #F4F4F4;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
}
.faq-one__accordion .accrodion + .accrodion {
  margin-top: 30px;
}
.faq-one__accordion .accrodion-title {
  padding: 20px 52px 19px 28px;
  cursor: pointer;
  overflow: hidden;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
}
.faq-one__accordion .accrodion-title h4 {
  font-weight: 700;
  color: #00000F;
  font-size: 16px;
  line-height: 26px;
  margin: 0;
  position: relative;
  transition: 0.4s ease-in-out;
  -webkit-transition: 0.4s ease-in-out;
  -moz-transition: 0.4s ease-in-out;
}
@media (max-width: 500px) {
  .faq-one__accordion .accrodion-title h4 {
    display: flex;
  }
}
.faq-one__accordion .accrodion-title h4 i {
  width: 20px;
  height: 20px;
  display: inline-block;
  border: 1px solid #115da9;
  border-radius: 50%;
  font-size: 16px;
  color: #115da9;
  text-align: center;
  line-height: 20px;
  margin-right: 14px;
  position: relative;
  top: 1px;
  transition: 0.5s ease-in-out;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
}
.faq-one__accordion .accrodion-title__icon {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-size: 22px;
  color: #43435C;
}
.faq-one__accordion .accrodion-title__icon::before {
  position: absolute;
  top: 50%;
  left: 100%;
  content: "\e91a";
  font-family: "Ripcar" !important;
  transform: translate(0, -50%);
  transition: 0.4s ease-in-out;
  -webkit-transition: 0.4s ease-in-out;
  -moz-transition: 0.4s ease-in-out;
  opacity: 0.4;
}
.faq-one__accordion .active .accrodion-title__icon {
  top: 0;
}
.faq-one__accordion .active .accrodion-title__icon::before {
  opacity: 1;
  transform: rotateZ(90deg);
}
.faq-one__accordion .accrodion-content .inner {
  padding: 23px 45px 22px 30px;
  border-top: 1px solid rgba(21, 27, 43, 0.1);
  margin-top: -2px;
  background: #F4F4F4;
}
.faq-one__accordion .accrodion-content p {
  margin: 0;
  color: #43435C;
  font-size: 16px;
  line-height: 26px;
}
.faq-one--home-four {
  position: relative;
}
.faq-one--home-four .sec-title__tagline {
  color: #FF5F2A;
}
.faq-one--home-four .faq-one__image {
  text-align: right;
  padding-right: 116px;
}
@media (max-width: 1199px) {
  .faq-one--home-four .faq-one__image {
    padding-right: 60px;
  }
  .faq-one--home-four .faq-one__image img {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .faq-one--home-four .faq-one__image img {
    max-width: 100%;
  }
}
@media (max-width: 991px) {
  .faq-one--home-four .faq-one__image {
    text-align: left;
    margin: 45px 0 0;
    padding-right: 0;
  }
}
.faq-one--home-four .faq-one__image img:nth-child(2) {
  left: auto;
  right: 0;
}
@media (max-width: 767px) {
  .faq-one--home-four .faq-one__image img:nth-child(2) {
    left: 65px;
  }
}

/*--------------------------------------------------------------
# Feature 01
--------------------------------------------------------------*/
.feature-one {
  position: relative;
  z-index: 2;
  background-color: transparent;
  padding: 0px 0;
  counter-reset: count;
  margin-top: -100px;
}
@media (max-width: 991px) {
  .feature-one {
    padding: 0px 0 0px;
    margin-top: -73px;
  }
}
.feature-one__inner {
  max-width: 1305px;
  background-color: #115da9;
  padding: 0 30px 0 59px;
  clip-path: polygon(0% 0%, 91.9% 0%, 100% 100%, 0% 100%);
}
@media (max-width: 1199px) {
  .feature-one__inner {
    padding: 0;
  }
}
@media (max-width: 1199px) {
  .feature-one__inner {
    clip-path: unset;
  }
}
.feature-one__wrap {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0;
}
@media (max-width: 991px) {
  .feature-one__wrap {
    justify-content: center;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 30px;
  }
}
@media (max-width: 499px) {
  .feature-one__wrap {
    grid-template-columns: repeat(1, 1fr);
  }
}
.feature-one__wrap li {
  position: relative;
}
.feature-one__wrap li::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 71px;
  background-color: #B9B9C7;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 575px) {
  .feature-one__wrap li::after {
    width: 100%;
    height: 1px;
    bottom: 0;
    top: unset;
    transform: translate(0);
  }
}
@media (max-width: 991px) {
  .feature-one__wrap li::after {
    display: none;
  }
}
.feature-one__wrap li:hover::after, .feature-one__wrap li.active::after {
  background-color: #00000F;
}
.feature-one__wrap li:hover + li::after, .feature-one__wrap li.active + li::after {
  background-color: transparent;
}
@media (max-width: 575px) {
  .feature-one__wrap li:hover + li::after, .feature-one__wrap li.active + li::after {
    background-color: #B9B9C7;
  }
}
.feature-one__wrap li:first-child::after {
  display: none;
}
.feature-one__wrap li.active .feature-one__item {
  background-color: #00000F;
}
.feature-one__item {
  position: relative;
  display: block;
  counter-increment: count;
  text-align: center;
  padding: 41px 50px 38px;
  background-color: #115da9;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
}
@media (max-width: 1199px) {
  .feature-one__item {
    padding: 41px 28px 38px;
  }
}
@media (max-width: 991px) {
  .feature-one__item {
    padding: 21px 30px 18px;
  }
}
@media (max-width: 767px) {
  .feature-one__item {
    min-width: 160px;
    text-align: center !important;
  }
}
@media (max-width: 575px) {
  .feature-one__item {
    padding: 33px 50px 30px;
  }
}
@media (max-width: 991px) {
  .feature-one__item {
    background-color: rgba(0, 0, 15, 0.3);
  }
}
.feature-one__item__icon {
  color: #FFFFFF;
  font-size: 52px;
  margin-bottom: 21px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.feature-one__item__title {
  font-size: 16px;
  line-height: 26px;
  color: #FFFFFF;
  margin: 0;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .feature-one__item__title {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}
.feature-one__item:hover {
  background-color: #00000F;
}

/*--------------------------------------------------------------
# Feature 02
--------------------------------------------------------------*/
.feature-two {
  position: relative;
  z-index: 1;
  padding: 112px 0 0;
}
@media (max-width: 767px) {
  .feature-two {
    padding: 60px 0 0;
  }
}
.feature-two__item {
  position: relative;
  z-index: 3;
  background-color: transparent;
  padding: 0 0 0 74px;
}
@media (max-width: 1199px) {
  .feature-two__item {
    margin-bottom: 40px;
  }
}
@media (max-width: 575px) {
  .feature-two__item {
    max-width: 290px;
    margin-left: auto;
    margin-right: auto;
  }
}
.feature-two__item__icon {
  position: absolute;
  left: 0;
  top: 26px;
  font-size: 45px;
  color: #C2ED08;
}
.feature-two__item__title {
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 6px;
}
.feature-two__item__text {
  margin: 0;
  font-size: 16px;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}
.feature-two__item--reverse {
  padding: 0 75px 0 0;
}
.feature-two__item--reverse .feature-two__item__icon {
  left: auto;
  right: 0;
}

/*--------------------------------------------------------------
# Car Feature accrodion
--------------------------------------------------------------*/
.car-features-one {
  padding: 113px 0 37px;
}
@media (max-width: 767px) {
  .car-features-one {
    padding: 80px 0 37px;
  }
}
.car-features-one .sec-title__title {
  margin-bottom: 40px;
}
@media (max-width: 575px) {
  .car-features-one .sec-title__title {
    font-size: 25px;
    line-height: 35px;
  }
}
.car-features-one__tab {
  position: relative;
  z-index: 991;
}
.car-features-one__item {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
  position: relative;
  height: 100%;
  -webkit-transition: 0.8s ease;
  transition: 0.8s ease;
  overflow: hidden;
  width: 520px;
  background: #FFFFFF;
  box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 16px;
}
@media (max-width: 1199px) {
  .car-features-one__item {
    width: 445px;
  }
}
@media (max-width: 767px) {
  .car-features-one__item {
    width: 350px;
  }
}
.car-features-one__item__inner {
  position: relative;
  width: 742px;
  display: flex;
  justify-content: start;
  align-items: center;
  padding: 18px 20px;
}
@media (max-width: 767px) {
  .car-features-one__item__inner {
    padding: 14px 16px;
  }
}
@media (max-width: 1199px) {
  .car-features-one__item__inner {
    width: 680px;
  }
}
@media (max-width: 767px) {
  .car-features-one__item__inner {
    width: 100%;
    justify-content: flex-start;
    align-items: start;
    flex-direction: column;
    align-items: start;
  }
}
.car-features-one__item__title {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
  column-gap: 20px;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  min-width: 345px;
}
@media (max-width: 767px) {
  .car-features-one__item__title {
    column-gap: 12px;
    min-width: 320px;
  }
}
.car-features-one__item__title h4 {
  font-size: 18px;
  line-height: 28px;
  margin: 0;
}
@media (max-width: 767px) {
  .car-features-one__item__title {
    font-size: 16px;
    line-height: 26px;
  }
}
@media (max-width: 575px) {
  .car-features-one__item__title {
    justify-content: center;
    align-items: start;
    flex-direction: column;
    row-gap: 13px;
  }
}
.car-features-one__item__icon {
  width: 68px;
  height: 72px;
  font-size: 30px;
  background-color: #F4F4F4;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .car-features-one__item__icon {
    width: 50px;
    height: 62px;
    font-size: 26px;
  }
}
@media (max-width: 575px) {
  .car-features-one__item__icon {
    width: 60px;
    height: 64px;
  }
}
.car-features-one__item__text {
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
  -webkit-transition: 0.8s ease;
  transition: 0.8s ease;
  width: 225px;
  opacity: 0;
  visibility: hidden;
}
.car-features-one__item__text p {
  margin: 0;
}
@media (max-width: 767px) {
  .car-features-one__item__text {
    height: 0%;
    top: 10px;
    position: absolute;
  }
}
.car-features-one__item::after {
  position: absolute;
  right: 0;
  top: 0;
  content: "\e902";
  font-size: 22px;
  color: #00000F;
  font-family: "Ripcar";
  width: 47px;
  height: 100%;
  background: #F4F4F4;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media (max-width: 767px) {
  .car-features-one__item::after {
    width: 37px;
  }
}
.car-features-one__item.active-tab {
  width: 742px;
}
.car-features-one__item.active-tab .car-features-one__item__icon {
  background: #115da9;
  color: #FFFFFF;
}
@media (max-width: 1199px) {
  .car-features-one__item.active-tab {
    width: 680px;
  }
}
@media (max-width: 767px) {
  .car-features-one__item.active-tab {
    width: 100%;
  }
}
.car-features-one__item.active-tab .car-features-one__item__text {
  opacity: 1;
  visibility: visible;
  position: relative;
  margin-top: 15px;
  top: 0;
}
.car-features-one__item.active-tab::after {
  background: #115da9;
  color: #FFFFFF;
  content: "\e901";
}
.car-features-one__item.active-tab__text {
  height: 100%;
}
.car-features-one__image {
  margin-top: 7px;
  margin-left: -112px;
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@media (max-width: 1199px) {
  .car-features-one__image {
    margin: 115px 0 0 -108px;
  }
}
.car-features-one__image img {
  max-width: 100%;
  width: auto;
}
@media (max-width: 991px) {
  .car-features-one__image {
    margin-left: 0;
    margin-top: 50px;
  }
  .car-features-one__image img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
}
.car-features-one .carFeatures_1TabContent[style="display: block;"] .car-features-one__image {
  animation-delay: 0.1s;
  animation-name: fadeInRight;
}
.car-features-one .carFeatures_1TabContent {
  display: none;
}
.car-features-one--service {
  position: relative;
  padding: 113px 0 87px;
}
@media (max-width: 767px) {
  .car-features-one--service {
    padding: 80px 0;
  }
}
.car-features-one--home-four {
  position: relative;
  padding-bottom: 105px;
}
@media (max-width: 767px) {
  .car-features-one--home-four {
    padding-bottom: 70px;
  }
}
.car-features-one--home-four .sec-title__tagline {
  color: #FF5F2A;
}
.car-features-one--home-four .car-features-one__item.active-tab::after,
.car-features-one--home-four .car-features-one__item.active-tab .car-features-one__item__icon {
  background: #FF5F2A;
}
.car-features-one--home-four .car-features-one__image {
  margin-left: 0;
  margin-right: -112px;
}
@media (max-width: 1199px) {
  .car-features-one--home-four .car-features-one__image {
    margin: 0 0 50px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .car-features-one--home-four .car-features-one__image {
    overflow: hidden;
  }
  .car-features-one--home-four .car-features-one__image img {
    max-width: none;
  }
}
.car-features-one--home-four .sec-title {
  max-width: 520px;
  margin-left: auto;
}
@media (max-width: 1199px) {
  .car-features-one--home-four .sec-title {
    margin-left: 0;
  }
}
.car-features-one--home-four .car-features-one__tab {
  position: relative;
  display: flex;
  align-items: end;
  flex-direction: column;
  justify-content: flex-end;
}
@media (max-width: 991px) {
  .car-features-one--home-four .car-features-one__tab {
    display: block;
  }
}

/*--------------------------------------------------------------
# Feature 03
--------------------------------------------------------------*/
.feature-three {
  position: relative;
  z-index: 1;
  margin-top: -233px;
}
.feature-three__item {
  position: relative;
  overflow: hidden;
}
.feature-three__item__normal {
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 161px 24px 63px;
  clip-path: polygon(0 0, 100% 0, 100% 87%, 0% 100%);
}
@media (max-width: 991px) {
  .feature-three__item__normal {
    clip-path: none;
  }
}
.feature-three__item__normal::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-image: linear-gradient(180deg, rgba(0, 3, 30, 0) 0%, rgb(0, 0, 15) 100%);
}
.feature-three__item__normal__icon {
  position: relative;
  z-index: 1;
  width: 75px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #00000F;
  color: #FF5F2A;
  font-size: 40px;
  clip-path: polygon(0 0, 100% 0, 100% 86%, 0% 100%);
  margin: 0 0 30px;
}
.feature-three__item__normal__title {
  margin: 0;
  color: #FFFFFF;
  font-size: 18px;
  line-height: 28px;
  position: relative;
  z-index: 2;
}
.feature-three__item__hover {
  position: absolute;
  z-index: 3;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #FF5F2A;
  clip-path: polygon(0 0, 100% 0, 100% 87%, 0% 100%);
  padding: 24px 24px;
  visibility: hidden;
  opacity: 0;
  transition: 0.4s ease-in-out;
}
@media (max-width: 991px) {
  .feature-three__item__hover {
    clip-path: none;
  }
}
@media (min-width: 992px) and (max-width: 1299px) {
  .feature-three__item__hover {
    padding-right: 15px;
  }
}
.feature-three__item:hover .feature-three__item__hover {
  visibility: visible;
  opacity: 1;
  height: 100%;
}
.feature-three__item__icon {
  position: relative;
  z-index: 2;
  width: 75px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFFFFF;
  color: #FF5F2A;
  font-size: 40px;
  clip-path: polygon(0 0, 100% 0, 100% 86%, 0% 100%);
  margin: 0 0 56px;
}
@media (max-width: 1340px) {
  .feature-three__item__icon {
    margin-bottom: 40px;
  }
}
.feature-three__item__title {
  margin: 0 0 20px;
  color: #FFFFFF;
  font-size: 18px;
  line-height: 28px;
  position: relative;
  z-index: 2;
}
.feature-three__item__title a {
  color: inherit;
}
.feature-three__item__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}
.feature-three__item__rm {
  width: 59px;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #00000F;
  color: #FFFFFF;
  font-size: 16px;
  clip-path: polygon(0 0, 100% 0, 100% 86%, 0% 100%);
  position: absolute;
  right: 24px;
  bottom: 0;
  z-index: 3;
  transform: translateY(-20px);
  transition: 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.feature-three__item__rm:hover {
  color: #FF5F2A;
}
.feature-three__item:hover .feature-three__item__rm {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/*--------------------------------------------------------------
# Feature 04
--------------------------------------------------------------*/
.feature-four {
  position: relative;
  padding: 120px 0 20px;
}
@media (max-width: 767px) {
  .feature-four {
    padding: 80px 0 0;
  }
}
.feature-four .sec-title__tagline {
  color: #FF5F2A;
}
.feature-four__content {
  position: relative;
  margin-top: -7px;
}
@media (max-width: 991px) {
  .feature-four__content {
    margin: 0 0 45px;
  }
}
.feature-four__content__text {
  margin: 13px 0 43px;
}
.feature-four__content .ripcar-btn {
  background-color: #00000F;
  margin: 0 0 50px;
}
.feature-four__content .ripcar-btn::after {
  background-color: #FF5F2A;
}
.feature-four__content .ripcar-btn:hover {
  background-color: #FF5F2A;
}
.feature-four__content img {
  max-width: 100%;
  display: block;
}
@media (max-width: 991px) {
  .feature-four__content img {
    width: 100%;
  }
}
.feature-four__item {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 28px;
  border: 1px solid rgba(0, 0, 15, 0.15);
  transition: 0.4s ease-in-out;
  -webkit-transition: 0.4s ease-in-out;
  -moz-transition: 0.4s ease-in-out;
  padding: 21px 30px 19px;
  margin-bottom: 33px;
}
@media (max-width: 767px) {
  .feature-four__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
.feature-four__item::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #FF5F2A;
  z-index: -1;
  transform: scale(1, 0);
  perspective: 400px;
  visibility: hidden;
  transition: transform 500ms ease-in-out, visibility 500ms ease-in-out;
  transform-origin: bottom center;
}
.feature-four__item:hover {
  border-color: #FF5F2A;
}
.feature-four__item:hover::after {
  transform: scale(1, 1);
  visibility: visible;
  transform-origin: top center;
}
.feature-four__item__icon {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 45px;
  line-height: 1;
  color: #FF5F2A;
  transition: 0.5s ease-in-out;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  transform: scale(1);
}
.feature-four__item:hover .feature-four__item__icon {
  color: #FFFFFF;
  transform: scale(1.1);
}
.feature-four__item__title {
  font-size: 24px;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  margin: 0 0 7px;
}
.feature-four__item:hover .feature-four__item__title {
  color: #FFFFFF;
}
.feature-four__item__text {
  margin: 0;
  color: #43435C;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
}
.feature-four__item:hover .feature-four__item__text {
  color: #FFFFFF;
}

/*--------------------------------------------------------------
# Video Popup 01
--------------------------------------------------------------*/
.video-full-one {
  position: relative;
  min-height: 800px;
}
@media (max-width: 1199px) {
  .video-full-one {
    min-height: 600px;
  }
}
@media (max-width: 1199px) {
  .video-full-one {
    min-height: 540px;
  }
}
.video-full-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.video-full-one__bg::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000F;
  z-index: 0;
  background: rgb(0, 0, 15);
  background: -moz-linear-gradient(90deg, rgb(0, 0, 15) 10%, rgba(0, 0, 15, 0.1) 100%);
  background: -webkit-linear-gradient(90deg, rgb(0, 0, 15) 10%, rgba(0, 0, 15, 0.1) 100%);
  background: linear-gradient(90deg, rgb(0, 0, 15) 10%, rgba(0, 0, 15, 0.1) 100%);
}
.video-full-one__item {
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.video-full-one__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: 0.4s ease-in-out;
  -webkit-transition: 0.4s ease-in-out;
  -moz-transition: 0.4s ease-in-out;
}
.video-full-one__btn a {
  width: 150px;
  height: 150px;
  background: #C2ED08;
  border-radius: 50%;
  color: #00000F;
  font-size: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: 0.4s ease-in-out;
  -webkit-transition: 0.4s ease-in-out;
  -moz-transition: 0.4s ease-in-out;
}
.video-full-one__btn a:hover {
  background-color: #00000F;
  color: #C2ED08;
}
@media (max-width: 1199px) {
  .video-full-one__btn a {
    width: 110px;
    height: 110px;
  }
}
@media (max-width: 767px) {
  .video-full-one__btn a {
    width: 90px;
    height: 90px;
  }
}
.video-full-one__scrollDown {
  position: absolute;
  bottom: 120px;
  left: auto;
  right: auto;
  max-width: 1324px;
  width: 100%;
  transition: 0.4s ease-in-out;
  -webkit-transition: 0.4s ease-in-out;
  -moz-transition: 0.4s ease-in-out;
}
@media (max-width: 1199px) {
  .video-full-one__scrollDown {
    padding: 0 12px;
  }
}
@media (max-width: 767px) {
  .video-full-one__scrollDown {
    bottom: 70px;
  }
}
@media (max-width: 575px) {
  .video-full-one__scrollDown {
    text-align: center;
  }
}
.video-full-one__scrollDown__btn {
  font-size: 32px;
  line-height: 42px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
  column-gap: 18px;
  display: inline-flex;
  transition: 0.4s ease-in-out;
  -webkit-transition: 0.4s ease-in-out;
  -moz-transition: 0.4s ease-in-out;
}
@media (max-width: 767px) {
  .video-full-one__scrollDown__btn {
    font-size: 24px;
    line-height: 34px;
  }
}
.video-full-one__scrollDown__btn span {
  display: inline-block;
  position: relative;
}
.video-full-one__scrollDown__btn i {
  font-size: 22px;
  color: #C2ED08;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid #C2ED08;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: 0.4s ease-in-out;
  -webkit-transition: 0.4s ease-in-out;
  -moz-transition: 0.4s ease-in-out;
}
@media (max-width: 767px) {
  .video-full-one__scrollDown__btn i {
    width: 50px;
    height: 50px;
  }
}
.video-full-one__scrollDown__btn:hover {
  color: #C2ED08;
}
.video-full-one__scrollDown__btn:hover i {
  background-color: #C2ED08;
  color: #00000F;
}
.video-full-one--about {
  position: relative;
}
.video-full-one--about .video-full-one__btn a {
  background-color: #115da9;
  color: #FFFFFF;
}
.video-full-one--about .video-full-one__btn a:hover {
  background-color: #00000F;
}
.video-full-one--about .video-full-one__scrollDown__btn {
  color: #FFFFFF;
}
.video-full-one--about .video-full-one__scrollDown__btn i {
  color: #FFFFFF;
  background-color: #115da9;
  border-color: #115da9;
}
.video-full-one--about .video-full-one__scrollDown__btn:hover {
  color: #115da9;
}

/*--------------------------------------------------------------
# Product feature One
--------------------------------------------------------------*/
.pdt-feature-one {
  position: relative;
  padding: 120px 0 0;
  background: #FFFFFF;
}
@media (max-width: 767px) {
  .pdt-feature-one {
    padding: 80px 0 0;
  }
}
.pdt-feature-one__item {
  position: relative;
}
.pdt-feature-one__item .pdt-feature-one__item__image {
  max-width: 100%;
  width: auto;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.pdt-feature-one__item .pdt-feature-one__item__image img {
  transition: 0.4s ease-in-out;
  -webkit-transition: 0.4s ease-in-out;
  -moz-transition: 0.4s ease-in-out;
}
.pdt-feature-one__item .pdt-feature-one__item__content {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 22px;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  justify-content: end;
  align-items: center;
  flex-direction: column;
  transition: 0.4s ease-in-out;
  -webkit-transition: 0.4s ease-in-out;
  -moz-transition: 0.4s ease-in-out;
}
.pdt-feature-one__item .pdt-feature-one__item__content::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0%;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  background: rgb(194, 237, 8);
  background: -moz-linear-gradient(0deg, rgba(194, 237, 8, 0.7987570028) 0%, rgba(0, 3, 30, 0) 90%);
  background: -webkit-linear-gradient(0deg, rgba(194, 237, 8, 0.7987570028) 0%, rgba(0, 3, 30, 0) 90%);
  background: linear-gradient(0deg, rgba(194, 237, 8, 0.7987570028) 0%, rgba(0, 3, 30, 0) 90%);
  transition: 0.4s ease-in-out;
  -webkit-transition: 0.4s ease-in-out;
  -moz-transition: 0.4s ease-in-out;
}
.pdt-feature-one__item .pdt-feature-one__item__content::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 1;
  visibility: visible;
  background: -moz-linear-gradient(-90deg, rgba(0, 3, 30, 0) 0%, #00000F 100%);
  background: linear-gradient(-90deg, rgba(0, 3, 30, 0) 0%, #00000F 100%);
  background: -webkit-linear-gradient(-90deg, rgba(0, 3, 30, 0) 0%, #00000F 100%);
  transition: 0.4s ease-in-out;
  -webkit-transition: 0.4s ease-in-out;
  -moz-transition: 0.4s ease-in-out;
}
.pdt-feature-one__item .pdt-feature-one__item__icon {
  font-size: 34px;
  color: #FFFFFF;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s ease-in-out;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  margin-bottom: 1px;
}
.pdt-feature-one__item .pdt-feature-one__item__title {
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
  font-style: italic;
  margin-bottom: 5px;
  color: #FFFFFF;
}
.pdt-feature-one__item .pdt-feature-one__item__btn {
  font-size: 13px;
  line-height: 26px;
  font-weight: 500;
  column-gap: 7px;
  justify-content: center;
}
.pdt-feature-one__item .pdt-feature-one__item__btn i {
  font-size: 12px;
  position: relative;
  top: 1px;
}
.pdt-feature-one__item .pdt-feature-one__item__btn:hover {
  column-gap: 10px;
}
.pdt-feature-one__item:hover .pdt-feature-one__item__content::after {
  height: 100%;
  opacity: 1;
  visibility: visible;
}
.pdt-feature-one__item:hover .pdt-feature-one__item__content::before {
  opacity: 0;
  visibility: hidden;
}
.pdt-feature-one__item:hover .pdt-feature-one__item__icon {
  opacity: 1;
  visibility: visible;
}
.pdt-feature-one__item:hover .pdt-feature-one__item__image img {
  transform: scale3d(1.1, 1.1, 1.1);
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  -moz-transform: scale3d(1.1, 1.1, 1.1);
}
.pdt-feature-one__carousel.owl-carousel {
  position: relative;
}
.pdt-feature-one__carousel.owl-carousel .owl-dots {
  width: 100%;
  column-gap: 10px;
}
.pdt-feature-one__carousel.owl-carousel .owl-dots button.owl-dot {
  width: 20px;
  height: 2px;
  border: unset;
  background: rgba(0, 0, 15, 0.3);
  transition: 0.4s ease-in-out;
  -webkit-transition: 0.4s ease-in-out;
  -moz-transition: 0.4s ease-in-out;
  border: none;
}
.pdt-feature-one__carousel.owl-carousel .owl-dots button.owl-dot.active, .pdt-feature-one__carousel.owl-carousel .owl-dots button.owl-dot:hover {
  background: #00000F;
}
.pdt-feature-one__carousel.owl-carousel .owl-dots button.owl-dot.active {
  width: 86px;
}

/*--------------------------------------------------------------
# Prodcut Filter 01
--------------------------------------------------------------*/
.product-one {
  position: relative;
  padding: 113px 0 120px;
  background-color: #FFFFFF;
}
@media (max-width: 767px) {
  .product-one {
    padding: 80px 0;
  }
}
.product-one .sec-title__tagline {
  color: #43435C;
}
.product-one .sec-title {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .product-one .sec-title {
    text-align: center;
  }
}
.product-one__filter {
  position: relative;
  display: flex;
  justify-content: end;
  align-items: center;
  flex-direction: row;
  column-gap: 17px;
}
@media (max-width: 991px) {
  .product-one__filter {
    column-gap: 12px;
  }
}
@media (max-width: 991px) {
  .product-one__filter {
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    row-gap: 12px;
  }
}
@media (max-width: 575px) {
  .product-one__filter {
    align-items: start;
    row-gap: 12px;
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .product-one__filter {
    margin: 35px 0 -10px;
    align-items: center;
    justify-content: center;
  }
}
.product-one__filter li {
  padding: 10px 20px;
  background-color: transparent;
  color: #00000F;
  font-size: 16px;
  line-height: 26px;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .product-one__filter li {
    padding: 10px 15px;
    font-size: 14px;
    line-height: 24px;
  }
}
@media (max-width: 575px) {
  .product-one__filter li {
    border: 1px solid #C2ED08;
  }
}
.product-one__filter li:hover, .product-one__filter li.active {
  background-color: #C2ED08;
}
.product-one__item {
  position: relative;
  border: 1px solid rgba(0, 0, 15, 0.1);
  overflow: hidden;
}
.product-one__item .product-one__item__image {
  width: 100%;
  background-color: #FFFFFF;
  position: relative;
  overflow: hidden;
}
.product-one__item .product-one__item__image img {
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
  transition: all 500ms ease;
  transform: scale(1);
}
.product-one__item .product-one__item__content {
  position: relative;
  padding: 29px 28px 26px;
  display: flex;
  justify-content: end;
  align-items: start;
  flex-direction: column;
  transition: 0.2s ease-in-out;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
}
.product-one__item .product-one__item__content__overlay {
  position: absolute;
  bottom: -101%;
  left: 0;
  right: 0;
  background-color: transparent;
  width: 100%;
  height: 0;
  transition: 0.4s ease-in-out;
  -webkit-transition: 0.4s ease-in-out;
  -moz-transition: 0.4s ease-in-out;
  z-index: 2;
  display: flex;
  justify-content: end;
  align-items: start;
  flex-direction: column;
  flex-wrap: nowrap;
}
.product-one__item .product-one__item__content__overlay__inner {
  position: relative;
  padding: 30px 30px 23px;
  z-index: 2;
}
.product-one__item .product-one__item__title {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  color: #00000F;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .product-one__item .product-one__item__title {
    font-size: 18px;
    line-height: 28px;
  }
  .product-one__item .product-one__item__title br {
    display: none;
  }
}
.product-one__item .product-one__item__title a {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  line-height: inherit;
}
.product-one__item .product-one__item__title a:hover {
  color: #00000f;
}
.product-one__item .product-one__item__ratings {
  font-size: 23px;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
  display: inline-flex;
  column-gap: 7px;
  color: rgba(0, 0, 15, 0.1);
  margin-bottom: 24px;
}
.product-one__item .product-one__item__price_lable {
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
  column-gap: 30px;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
}
.product-one__item .product-one__item__price {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  color: #00000F;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
  column-gap: 8px;
}
.product-one__item .product-one__item__price > span {
  position: relative;
  display: inline-block;
}
.product-one__item .product-one__item__price del {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #43435C;
}
.product-one__item .product-one__item__prLabels {
  position: relative;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #43435C;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
  column-gap: 15px;
}
.product-one__item .product-one__item__prLabels span {
  background-color: #C2ED08;
  position: relative;
  display: inline-block;
  padding: 1px 7px 1px 14px;
  clip-path: polygon(100% 0%, 13% 0%, 0 50%, 13% 100%, 100% 100%);
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
}
.product-one__item .product-one__item__prLabels span::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  top: 50%;
  left: 3px;
  border-radius: 50%;
  background-color: #FFFFFF;
  transform: translateY(-50%);
}
.product-one__item .product-one__item__prLabels span:hover {
  background-color: #00000F;
  color: #FFFFFF;
}
.product-one__item .product-one__item__variation {
  position: relative;
}
.product-one__item .product-one__item__variation label {
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
  color: #000000;
  display: inline-block;
  margin-bottom: 13px;
  font-family: "Montserrat", sans-serif;
  cursor: pointer;
}
.product-one__item .product-one__item__variation ul {
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
  column-gap: 10px;
}
.product-one__item .product-one__item__variation ul li {
  padding: 0 10px;
  font-size: 16px;
  line-height: 26px;
  background-color: #FFFFFF;
  color: #00000F;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
}
.product-one__item .product-one__item__variation ul li:hover, .product-one__item .product-one__item__variation ul li.active {
  background-color: #00000F;
  color: #FFFFFF;
}
.product-one__item .product-one__item__action {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
  column-gap: 8px;
  margin-top: 37px;
}
.product-one__item .ripcar-btn {
  padding: 0 30px;
  border-radius: 50px;
  height: 50px;
  background: #00000F;
  font-weight: 700;
  color: #FFFFFF;
}
@media (max-width: 1340px) {
  .product-one__item .ripcar-btn {
    padding: 0 25px;
  }
}
.product-one__item .ripcar-btn::after {
  background: #C2ED08;
}
.product-one__item .ripcar-btn:hover {
  background-color: #C2ED08;
  color: #00000F;
}
.product-one__item .product-one__item__wishlisst {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #FFFFFF;
  font-size: 16px;
  color: #43435C;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
}
.product-one__item .product-one__item__wishlisst:hover {
  color: #00000F;
  background-color: #C2ED08;
}
.product-one__item .product-one__item__preview {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #FFFFFF;
  font-size: 19px;
  color: #43435C;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
}
.product-one__item .product-one__item__preview:hover {
  color: #00000F;
  background-color: #C2ED08;
}
.product-one__item::after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(244, 244, 244, 0.9);
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
}
.product-one__item:hover .product-one__item__image > img {
  transform: scale(1.05);
}
.product-one__item:hover .product-one__item__content {
  opacity: 0;
  visibility: hidden;
}
.product-one__item:hover .product-one__item__content__overlay {
  height: 100%;
  bottom: 0;
}
.product-one__item:hover::after {
  z-index: 1;
  visibility: visible;
  opacity: 1;
}

/*-- Product Page --*/
.shop-page {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .shop-page {
    padding: 80px 0;
  }
}
.shop-page__sidebar {
  position: relative;
}
.shop-page__sidebar__widget {
  position: relative;
  background-color: rgba(244, 244, 244, 0.5);
  padding: 30px;
}
.shop-page__sidebar__widget + .shop-page__sidebar__widget {
  margin-top: 30px;
}
.shop-page__sidebar__title {
  font-size: 18px;
  text-transform: capitalize;
  margin: 0 0 26px;
}
.shop-page__sidebar form {
  position: relative;
}
.shop-page__sidebar form input[type=search],
.shop-page__sidebar form input[type=text] {
  outline: none;
  width: 100%;
  height: 50px;
  background-color: #FFFFFF;
  font-size: 14px;
  color: #43435C;
  border-radius: 0;
  border: none;
  padding-left: 30px;
  padding-right: 30px;
  transition: all 500ms ease;
}
.shop-page__sidebar form button[type=submit] {
  border: none;
  outline: none;
  background-color: transparent;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  width: auto;
  font-size: 14px;
  line-height: 50px;
  color: #00000F;
  border-radius: 0;
  transition: all 500ms ease;
}
.shop-page__sidebar form button[type=submit]:hover {
  color: #115da9;
}
.shop-page__sidebar ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.shop-page__sidebar ul li {
  position: relative;
  transition: all 300ms ease;
}
.shop-page__sidebar ul li a {
  font-size: 16px;
  color: #43435C;
  text-transform: capitalize;
  background-color: #FFFFFF;
  padding: 12px 30px;
  display: inline-block;
  width: 100%;
  position: relative;
  z-index: 1;
}
.shop-page__sidebar ul li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #115da9;
  z-index: -1;
  transform: scale(1, 0);
  perspective: 400px;
  visibility: hidden;
  transition: transform 500ms ease-in-out, visibility 500ms ease-in-out;
  transform-origin: bottom center;
}
.shop-page__sidebar ul li a::after {
  position: absolute;
  right: 30px;
  content: "\e902";
  font-family: "Ripcar" !important;
  transition: all 300ms ease;
  font-weight: normal;
  font-size: 12px;
  opacity: 0.4;
}
.shop-page__sidebar ul li:hover a {
  color: #FFFFFF;
}
.shop-page__sidebar ul li:hover a::after {
  opacity: 1;
}
.shop-page__sidebar ul li:hover a::before {
  transform: scale(1, 1);
  visibility: visible;
  transform-origin: top center;
}
.shop-page__sidebar ul li + li {
  margin-top: 10px;
}
.shop-page__sidebar__social {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
.shop-page__sidebar__social a {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: rgba(67, 67, 92, 0.5);
  background: rgba(67, 67, 92, 0.1);
  font-size: 18px;
  border: unset;
  outline: unset;
}
.shop-page__sidebar__social a:hover {
  background: #115da9;
  color: #FFFFFF;
}
.shop-page__sidebar__products {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.shop-page__sidebar__products__item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.shop-page__sidebar__products__item__image {
  position: relative;
  background-color: #FFFFFF;
  width: 93px;
  height: 93px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
}
.shop-page__sidebar__products__item__image img {
  max-width: 100%;
  height: auto;
}
.shop-page__sidebar__products__item__title {
  font-size: 20px;
  text-transform: capitalize;
  margin: 0 0 10px;
}
.shop-page__sidebar__products__item__title a {
  color: inherit;
}
.shop-page__sidebar__products__item__title a:hover {
  color: #115da9;
}
.shop-page__sidebar__products__item__ratings {
  font-size: 16px;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
  display: inline-flex;
  column-gap: 6px;
  color: rgba(0, 0, 15, 0.1);
  margin-bottom: 14px;
}
.shop-page__sidebar__products__item__price {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #00000F;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
  column-gap: 7px;
}
.shop-page__sidebar__products__item__price > span {
  position: relative;
  display: inline-block;
}
.shop-page__sidebar__products__item__price del {
  font-size: 14px;
  font-weight: 400;
  color: #43435C;
}
.shop-page__info-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 35px;
}
@media (max-width: 767px) {
  .shop-page__info-top {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}
.shop-page__showing-text {
  margin: 0;
}
.shop-page__showing-sort {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 16px;
}
.shop-page__showing-sort .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  position: relative;
  display: block;
  width: 204px !important;
}
.shop-page__showing-sort .bootstrap-select > .dropdown-toggle::after {
  display: none;
}
.shop-page__showing-sort .bootstrap-select .dropdown-menu {
  border: none;
}
.shop-page__showing-sort .bootstrap-select > .dropdown-toggle {
  position: relative;
  height: 40px;
  outline: none !important;
  border-radius: 0;
  border: 0;
  background-color: rgba(244, 244, 244, 0.5) !important;
  margin: 0;
  padding: 0;
  padding-left: 20px;
  padding-right: 20px;
  color: #43435C !important;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  box-shadow: none !important;
  background-repeat: no-repeat;
  background-size: 14px 12px;
  background-position: right 25.75px center;
}
.shop-page__showing-sort .bootstrap-select > .dropdown-toggle:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  font-family: "Ripcar" !important;
  content: "\e900";
  font-size: 12px;
  color: #43435C;
}
.shop-page__showing-sort .bootstrap-select .dropdown-menu > li + li > a {
  border-top: 1px solid rgba(0, 0, 15, 0.1);
}
.shop-page__showing-sort .bootstrap-select .dropdown-menu > li > a {
  font-size: 16px;
  font-weight: 400;
  padding: 7px 20px;
  color: #43435C;
  background-color: #F4F4F4;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.shop-page__showing-sort .bootstrap-select .dropdown-menu > li:hover > a,
.shop-page__showing-sort .bootstrap-select .dropdown-menu > li.selected > a {
  background: #115da9;
  color: #FFFFFF;
  border-color: #115da9;
}
.shop-page__showing-sort__right {
  position: relative;
}
.shop-page__showing-sort__right .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  width: 120px !important;
}
.shop-page .product-one__item .ripcar-btn:hover {
  color: #FFFFFF;
  background: #115da9;
}
.shop-page .product-one__item .ripcar-btn::after {
  background: #115da9;
}
.shop-page .product-one__item .product-one__item__wishlisst:hover,
.shop-page .product-one__item .product-one__item__preview:hover {
  color: #FFFFFF;
  background: #115da9;
}
.shop-page .product-one__item .product-one__item__prLabels span {
  background: #115da9;
  color: #FFFFFF;
}
.shop-page .blog-page__pagination {
  margin-top: 50px;
}

/*-- Product Details --*/
.product-details {
  position: relative;
  padding: 120px 0 0;
}
@media (max-width: 767px) {
  .product-details {
    padding: 80px 0 0;
  }
}
.product-details__gallery {
  position: relative;
}
@media (min-width: 1345px) {
  .product-details__gallery {
    padding-right: 30px;
  }
}
.product-details__gallery__image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
  min-height: 450px;
}
@media (max-width: 767px) {
  .product-details__gallery__image {
    min-height: 350px;
  }
}
.product-details__gallery__image img {
  max-width: 100%;
  height: auto;
}
.product-details__carousel {
  background-color: rgba(244, 244, 244, 0.5);
  position: relative;
  min-height: 450px;
}
@media (max-width: 767px) {
  .product-details__carousel {
    min-height: 350px;
  }
}
.product-details__carousel-thumb {
  max-width: 520px;
  z-index: 8;
  padding: 0;
  margin: auto;
  position: relative;
  margin-top: -35px;
}
@media (max-width: 500px) {
  .product-details__carousel-thumb {
    max-width: 320px;
  }
}
.product-details__carousel-thumb .item {
  position: relative;
  text-align: center;
  display: inline-block;
  padding: 6px 0 0;
}
.product-details__carousel-thumb .item .product-details__meta-thumb {
  width: 130px;
  height: 130px;
  background-color: rgba(244, 244, 244, 0.5);
  padding: 12px;
  border-radius: 50%;
  object-fit: cover;
  cursor: pointer;
  display: block;
  position: relative;
}
@media (max-width: 500px) {
  .product-details__carousel-thumb .item .product-details__meta-thumb {
    width: 80px;
    height: 80px;
  }
}
.product-details__carousel-thumb .item .product-details__meta-thumb::after {
  position: absolute;
  left: -5px;
  top: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  margin: auto;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  content: "";
  border: 5px solid #115da9;
  visibility: hidden;
  opacity: 0;
  transition: 500ms ease;
  transform: scale(0.8);
}
.product-details__carousel-thumb .item .product-details__meta-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
}
.product-details__carousel-thumb .slick-active.slick-center .item .product-details__meta-thumb::after {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}
.product-details__content {
  position: relative;
}
@media (min-width: 1345px) {
  .product-details__content {
    padding-right: 70px;
  }
}
@media (max-width: 1199px) {
  .product-details__content {
    margin: 45px 0 0;
  }
}
.product-details__title {
  font-size: 24px;
  line-height: 34px;
  margin: 0 0 8px;
}
.product-details__ratings {
  font-size: 18px;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
  display: inline-flex;
  letter-spacing: 2px;
  color: rgba(67, 67, 92, 0.4);
  margin-bottom: 24px;
}
.product-details__ratings a {
  color: #43435c;
  display: inline-block;
  letter-spacing: 0;
  margin-left: 5px;
}
.product-details__ratings a:hover {
  color: #115da9;
}
.product-details__price-wrapper {
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
  column-gap: 30px;
  transition: 0.3s ease-in-out;
  margin: 0 0 22px;
}
.product-details__price-wrapper__price {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #00000F;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
  column-gap: 7px;
}
.product-details__price-wrapper__price > span {
  position: relative;
  display: inline-block;
}
.product-details__price-wrapper__price del {
  font-size: 16px;
  font-weight: 400;
  color: #43435C;
}
.product-details__price-wrapper__prLabels {
  position: relative;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #FFFFFF;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
  column-gap: 15px;
}
.product-details__price-wrapper__prLabels span {
  background-color: #115da9;
  position: relative;
  display: inline-block;
  padding: 0 7px 0 14px;
  clip-path: polygon(100% 0%, 13% 0%, 0 50%, 13% 100%, 100% 100%);
  transition: 0.3s ease-in-out;
}
.product-details__price-wrapper__prLabels span::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  top: 50%;
  left: 3px;
  border-radius: 50%;
  background-color: #FFFFFF;
  transform: translateY(-50%);
}
.product-details__excerpt {
  margin: 0 0 43px;
}
.product-details__variation {
  position: relative;
  display: flex;
  align-items: center;
}
.product-details__variation label {
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
  color: #00000F;
  display: inline-block;
  margin-right: 12px;
  font-family: "Montserrat", sans-serif;
  cursor: pointer;
}
.product-details__variation ul {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
  column-gap: 10px;
}
.product-details__variation ul li {
  padding: 0 10px;
  font-size: 16px;
  line-height: 26px;
  background-color: rgba(244, 244, 244, 0.5);
  color: #00000F;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
}
.product-details__variation ul li:hover, .product-details__variation ul li.active {
  background-color: #00000F;
  color: #FFFFFF;
}
.product-details__quantity {
  position: relative;
  display: flex;
  align-items: center;
  margin: 30px 0 23px;
}
.product-details__quantity__title {
  margin: 0;
  font-size: 16px;
  text-transform: capitalize;
  margin-right: 11px;
}
.product-details__quantity .quantity-box {
  position: relative;
  width: 150px;
  height: 40px;
  border: 1px solid rgba(0, 0, 15, 0.05);
}
.product-details__quantity .quantity-box input {
  width: 100%;
  height: 40px;
  text-align: center;
  border: none;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
  color: #00000F;
  outline: none;
  font-size: 16px;
  font-weight: 400;
  background-color: transparent;
}
.product-details__quantity .quantity-box button {
  width: 40px;
  height: 40px;
  color: #00000F;
  font-size: 12px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  transition: all 500ms ease;
}
.product-details__quantity .quantity-box button.add {
  right: 0;
  left: auto;
}
.product-details__quantity .quantity-box button:hover {
  color: #115da9;
}
.product-details__tags {
  position: relative;
  display: flex;
  align-items: center;
  gap: 3px;
  margin: 0 0 24px;
}
.product-details__tags__title {
  margin: 0;
  font-size: 16px;
  text-transform: capitalize;
  margin-right: 11px;
}
.product-details__tags a {
  color: #43435C;
}
.product-details__tags a:hover {
  color: #115da9;
}
.product-details__action {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 23px;
}
.product-details__action a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: rgba(244, 244, 244, 0.5);
  color: #43435C;
  font-size: 16px;
  border-radius: 50%;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
}
.product-details__action a:hover {
  background-color: #115da9;
  color: #FFFFFF;
}
.product-details__action a.product-details__action__cart {
  width: auto;
  background-color: #00000F;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  border-radius: 30px;
  padding: 0 33px;
  text-transform: capitalize;
}
.product-details__action a.product-details__action__cart:hover {
  background-color: #115da9;
  color: #FFFFFF;
}
.product-details__action a.product-details__action__wishlist {
  background-color: #115da9;
  color: #FFFFFF;
}
.product-details__action a.product-details__action__wishlist:hover {
  background-color: #00000F;
  color: #FFFFFF;
}
.product-details__feature {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}
.product-details__feature li {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 8px 0 0;
}
.product-details__feature li i {
  width: 14px;
  height: 14px;
  background-color: #115da9;
  color: #FFFFFF;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.product-details__tab {
  position: relative;
  margin: 60px 0 0;
}
.product-details__tab__list {
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 25px;
}
.product-details__tab__list li {
  position: relative;
  background-color: #f4f4f4;
  color: #00000F;
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  padding: 12px 38px;
  cursor: pointer;
  transition: 0.4s ease-in-out;
  -webkit-transition: 0.4s ease-in-out;
  -moz-transition: 0.4s ease-in-out;
}
@media (max-width: 500px) {
  .product-details__tab__list li {
    padding: 12px 20px;
  }
}
.product-details__tab__list li.active-btn, .product-details__tab__list li:hover {
  background-color: #115da9;
  color: #FFFFFF;
}
.product-details__tab__description {
  position: relative;
}
.product-details__tab__description__text {
  margin: 0 0 16px;
}
.product-details__tab__description__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.product-details__tab__description__list li {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 8px;
}
.product-details__tab__reviews {
  position: relative;
}
.product-details__tab__reviews__title {
  font-size: 30px;
  line-height: 34px;
  margin: 0 0 32px;
}
.product-details__tab__reviews__list {
  margin: 0;
  padding: 0;
}
.product-details__tab__reviews__card {
  display: flex;
  align-items: center;
  position: relative;
  gap: 40px;
}
@media (min-width: 1345px) {
  .product-details__tab__reviews__card {
    margin-right: 70px;
  }
}
@media (max-width: 767px) {
  .product-details__tab__reviews__card {
    flex-direction: column;
  }
}
.product-details__tab__reviews__card__image {
  width: 166px;
  height: 166px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
}
@media (max-width: 767px) {
  .product-details__tab__reviews__card__image {
    margin-right: auto;
  }
}
.product-details__tab__reviews__card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-details__tab__reviews__card__title {
  font-size: 20px;
  margin: 0 0 19px;
}
.product-details__tab__reviews__card__text {
  margin: 0;
}
.product-details__tab__reviews__card__content {
  position: relative;
}
.product-details__tab__reviews__card__ratings {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 18px;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
  display: inline-flex;
  column-gap: 6px;
  color: rgba(67, 67, 92, 0.4);
}
.product-details__tab__reviews__card + .product-details__tab__reviews__card {
  border-top: 1px solid rgba(0, 0, 15, 0.1);
  padding-top: 28px;
  margin-top: 27px;
}

/*--------------------------------------------------------------
# Image comparison
--------------------------------------------------------------*/
.comparison-image-one {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.comparison-image-one__car {
  width: 100%;
  height: 600px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.comparison-image-one figure {
  position: absolute;
  background-size: cover;
  background-position: center center;
  font-size: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}
.comparison-image-one__text {
  font-size: 65px;
  line-height: 80px;
  font-weight: 700;
  font-style: italic;
  font-family: "Montserrat", sans-serif;
  max-width: 1320px;
  width: 100%;
  color: #FFFFFF;
  position: absolute;
  z-index: 999;
  left: auto;
  right: auto;
  bottom: 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
}
@media (max-width: 1199px) {
  .comparison-image-one__text {
    padding: 0 12px;
  }
}
@media (max-width: 991px) {
  .comparison-image-one__text {
    font-size: 52px;
    line-height: 72px;
  }
}
@media (max-width: 767px) {
  .comparison-image-one__text {
    font-size: 42px;
    line-height: 42px;
  }
}
@media (max-width: 575px) {
  .comparison-image-one__text {
    font-size: 36px;
    line-height: 46px;
  }
}
.comparison-image-one__text span {
  font-family: inherit;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
}
.comparison-image-one__text span:first-child {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #FFFFFF;
}
.comparison-image-one__text.af_hide span:first-child, .comparison-image-one__text.bf_hide span:last-child {
  opacity: 0;
  visibility: hidden;
}

#comparison_divisor {
  background-size: cover;
  position: absolute;
  width: 50%;
  box-shadow: 0 5px 10px -2px rgba(0, 0, 0, 0.3);
  bottom: 0;
  height: 100%;
}
@media (max-width: 767px) {
  #comparison_divisor {
    background-position: center center;
  }
}

#comparison_handle {
  position: absolute;
  height: 100px;
  width: 100px;
  background-color: #FFFFFF;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 1;
  overflow: hidden;
  cursor: pointer;
}
#comparison_handle::before, #comparison_handle::after {
  content: "";
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  font-size: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#comparison_handle::before {
  content: "\e901";
  font-family: "Ripcar";
  left: 0;
  color: #00000F;
  background-color: #FFFFFF;
  padding-left: 10px;
}
#comparison_handle::after {
  content: "\e902";
  font-family: "Ripcar";
  right: 0;
  color: #FFFFFF;
  padding-right: 10px;
  background-color: #115da9;
}

input[type=range] {
  -webkit-appearance: none;
  -moz-appearance: none;
  position: absolute;
  top: 50%;
  left: -25px;
  transform: translateY(-50%);
  background-color: transparent;
  width: calc(100% + 50px);
  z-index: 2;
}
input[type=range]:focus, input[type=range]:active {
  border: none;
  outline: none;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  border: none;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  background: transparent;
  cursor: ew-resize;
}

input[type=range]::-moz-range-track {
  -moz-appearance: none;
  height: 15px;
  width: 100%;
  background-color: transparent;
  position: relative;
  outline: none;
  cursor: pointer;
}

.mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  transform: translateX(-100%);
  transform-origin: left center;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
  visibility: hidden;
  position: fixed;
}
.mobile-nav__wrapper .container {
  padding-left: 0;
  padding-right: 0;
}
.mobile-nav__wrapper .home-showcase .row [class*=col-] {
  flex: 0 0 100%;
}
.mobile-nav__wrapper .home-showcase {
  margin-bottom: -1px;
  margin-top: 0;
  border-bottom: 1px solid;
}
.mobile-nav__wrapper .home-showcase__inner {
  padding: 15px 0px;
  background-color: transparent;
  box-shadow: none;
}
.mobile-nav__wrapper .home-showcase__title {
  color: #FFFFFF;
}

.mobile-nav__wrapper.expanded {
  opacity: 1;
  transform: translateX(0%);
  visibility: visible;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
}
.mobile-nav__wrapper.expanded .mobile-nav__content {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
}

.mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #00000F;
  opacity: 0.8;
  cursor: url(../images/close.png), auto;
}

.mobile-nav__content {
  width: 300px;
  background-color: #00000F;
  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;
  transform: translateX(-100%);
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
}
.mobile-nav__content .main-menu__nav {
  display: block;
  padding: 0;
}

.mobile-nav__content .logo-box {
  margin-bottom: 40px;
  display: flex;
}

.mobile-nav__close {
  position: absolute;
  top: 32px;
  right: 15px;
  font-size: 22px;
  color: #FFFFFF;
  cursor: pointer;
}
.mobile-nav__close:hover {
  color: #115da9;
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.mobile-nav__content .main-menu__list ul {
  display: none;
  border-top: 1px solid RGBA(#FFFFFF, 0.1);
}

.mobile-nav__content .main-menu__list ul li > a {
  padding-left: 1em;
}

.mobile-nav__content .main-menu__list li:not(:last-child) {
  border-bottom: 1px solid RGBA(#FFFFFF, 0.1);
}

.mobile-nav__content .main-menu__list li > a {
  display: flex;
  justify-content: space-between;
  line-height: 30px;
  color: #FFFFFF;
  font-size: 12px;
  font-family: "DM Sans", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  height: 46px;
  align-items: center;
  transition: 500ms;
}

.mobile-nav__content .main-menu__list li a.expanded {
  color: #115da9;
}

.mobile-nav__content .main-menu__list li a button {
  width: 30px;
  height: 30px;
  background-color: #115da9;
  border: none;
  outline: none;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(-90deg);
  transition: transform 500ms ease;
}

.mobile-nav__content .main-menu__list li a button.expanded {
  transform: rotate(0deg);
  background-color: #FFFFFF;
  color: #00000F;
}

.mobile-nav__social {
  display: flex;
  align-items: center;
}
.mobile-nav__social a {
  font-size: 16px;
  color: #FFFFFF;
  transition: 500ms;
}
.mobile-nav__social a + a {
  margin-left: 20px;
}
.mobile-nav__social a:hover {
  color: #115da9;
}

.mobile-nav__contact {
  margin-bottom: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}
.mobile-nav__contact li {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
}
.mobile-nav__contact li + li {
  margin-top: 15px;
}
.mobile-nav__contact li a {
  color: inherit;
  transition: 500ms;
}
.mobile-nav__contact li a:hover {
  color: #115da9;
}
.mobile-nav__contact li > i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #115da9;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 12px;
  margin-right: 10px;
  color: #FFFFFF;
}

.mobile-nav__contact-btn {
  margin-top: 20px;
  padding: 0 29px;
}

.mobile-nav__container .main-menu__logo,
.mobile-nav__container .main-menu__right {
  display: none;
}

/*--------------------------------------------------------------
# Search Popup 01 
--------------------------------------------------------------*/
.search-popup {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -2;
  -webkit-transition: all 1s ease;
  -khtml-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.search-popup__overlay {
  position: fixed;
  width: 224vw;
  height: 224vw;
  top: calc(90px - 112vw);
  right: calc(50% - 112vw);
  z-index: 3;
  display: block;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-transform: scale(0);
  -khtml-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transition: transform 0.8s ease-in-out;
  -khtml-transition: transform 0.8s ease-in-out;
  -moz-transition: transform 0.8s ease-in-out;
  -ms-transition: transform 0.8s ease-in-out;
  -o-transition: transform 0.8s ease-in-out;
  transition: transform 0.8s ease-in-out;
  transition-delay: 0s;
  transition-delay: 0.3s;
  -webkit-transition-delay: 0.3s;
  background-color: #000;
  opacity: 0.9;
  cursor: url(../images/close.png), auto;
}
@media (max-width: 767px) {
  .search-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: none;
    width: 100%;
    height: 100%;
    border-radius: 0;
    transform: translateY(-110%);
  }
}
.search-popup__content {
  position: fixed;
  width: 0;
  max-width: 560px;
  padding: 30px 15px;
  left: 50%;
  top: 50%;
  opacity: 0;
  z-index: 3;
  -webkit-transform: translate(-50%, -50%);
  -khtml-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -khtml-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -moz-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -ms-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -o-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  transition-delay: 0s, 0.8s, 0s;
  transition-delay: 0s, 0.4s, 0s;
  transition-delay: 0.2s;
  -webkit-transition-delay: 0.2s;
}
.search-popup__form {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}
.search-popup__form input[type=search],
.search-popup__form input[type=text] {
  width: 100%;
  background-color: #FFFFFF;
  font-size: 15px;
  color: #43435C;
  border: none;
  outline: none;
  height: 66px;
  padding-left: 30px;
}
.search-popup__form .ripcar-btn {
  padding: 0;
  width: 66px;
  height: 66px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top: 0;
  right: -1px;
  border-radius: 0;
  background: #115da9;
  border: unset;
  outline: unset;
  box-shadow: unset;
  font-size: 24px;
  color: #FFFFFF;
}
.search-popup__form .ripcar-btn i {
  margin: 0;
}
.search-popup__form .ripcar-btn:hover {
  background: #00000F;
}
.search-popup.active {
  z-index: 9999;
}
.search-popup.active .search-popup__overlay {
  top: auto;
  bottom: calc(90px - 112vw);
  -webkit-transform: scale(1);
  -khtml-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  transition-delay: 0s;
  -webkit-transition-delay: 0s;
  opacity: 0.9;
  -webkit-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -khtml-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -moz-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -ms-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -o-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
}
@media (max-width: 575px) {
  .search-popup.active .search-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: none;
    width: 100%;
    height: 100%;
    border-radius: 0;
    transform: translateY(0%);
  }
}
.search-popup.active .search-popup__content {
  width: 100%;
  opacity: 1;
  transition-delay: 0.7s;
  -webkit-transition-delay: 0.7s;
}

/*--------------------------------------------------------------
# Sidebar Popup 01 
--------------------------------------------------------------*/
.sidebar-one {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99999;
  transform: translateX(100%);
  transform-origin: right center;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
}
.sidebar-one.active {
  opacity: 1;
  transform: translateX(0%);
  visibility: visible;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}
.sidebar-one.active .sidebar-one__content {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
}
.sidebar-one__overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #00000F;
  opacity: 0.5;
  cursor: url(../images/close.png), auto;
}
.sidebar-one__close {
  position: absolute;
  right: 50px;
  top: 48px;
  font-size: 38px;
  color: #115da9;
  transition: all 0.4s ease;
  cursor: pointer;
}
.sidebar-one__close:hover {
  color: #FFFFFF;
}
.sidebar-one__logo {
  padding-top: 77px;
  padding-bottom: 29px;
  border-bottom: 1px solid RGBA(255, 255, 255, 0.2);
}
.sidebar-one__content {
  max-width: 447px;
  width: 100%;
  background-color: #00000F;
  z-index: 10;
  position: relative;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  overflow-y: auto;
  padding-top: 48px;
  padding-bottom: 30px;
  padding-left: 38px;
  padding-right: 50px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  scrollbar-width: none;
}
.sidebar-one__text {
  color: #43435C;
  margin: 35px 0 30px;
  line-height: 30px;
  opacity: 80%;
}
.sidebar-one__title {
  color: #FFFFFF;
  font-size: 20px;
  margin: 0 0 18px;
}
.sidebar-one__info {
  margin: 0;
  padding: 44px 0 21px;
  list-style: none;
  border-bottom: 1px solid RGBA(255, 255, 255, 0.2);
}
.sidebar-one__info li {
  position: relative;
  margin-bottom: 10px;
  color: #43435C;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  margin-bottom: 25px;
}
.sidebar-one__info li h4 {
  font-size: 16px;
  line-height: 26px;
  font-family: #115da9;
  color: #43435C;
  margin-bottom: 7px;
  text-transform: capitalize;
}
.sidebar-one__info li span {
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  color: #FFFFFF;
  display: block;
}
.sidebar-one__info li a {
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  color: #FFFFFF;
  display: inline-block;
}
.sidebar-one__info li a:hover {
  color: #115da9;
}
.sidebar-one__info li:last-child {
  margin-bottom: 0;
}
.sidebar-one__workingTime {
  position: relative;
  padding: 24px 0 72px;
}
.sidebar-one__workingTime h3 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 9px;
}
.sidebar-one__workingTime ul {
  padding: 0;
  margin: 0;
}
.sidebar-one__workingTime ul li {
  font-size: 16px;
  line-height: 26px;
  color: #115da9;
  font-weight: 400;
  margin-bottom: 7px;
}
.sidebar-one__workingTime ul li:last-child {
  color: #FFFFFF;
  margin: 0;
}
.sidebar-one__social {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 40px;
}
.sidebar-one__social a {
  width: 50px;
  height: 50px;
  font-size: 17px;
  background-color: RGBA(255, 255, 255, 0.05);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  position: relative;
}
.sidebar-one__social a i {
  position: relative;
  z-index: 2;
  display: inline-block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.sidebar-one__social a:hover {
  color: #FFFFFF;
}
.sidebar-one__social a:hover i {
  animation: iconTranslateY 0.4s forwards;
}
.sidebar-one__social a:hover::after {
  background: #115da9;
}
.sidebar-one__newsletter {
  position: relative;
}
.sidebar-one__newsletter input[type=text] {
  width: 100%;
  display: block;
  border: none;
  outline: none;
  height: 60px;
  background-color: RGBA(255, 255, 255, 0.08);
  color: #00000F;
  font-size: 16px;
  font-weight: 400;
  padding-left: 30px;
  padding-right: 50px;
  transition: all 500ms ease;
  border-radius: 5px;
}
.sidebar-one__newsletter button[type=submit] {
  background-color: transparent;
  width: auto;
  height: auto;
  border: none;
  outline: none;
  color: #FFFFFF;
  font-size: 16px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  transition: all 500ms ease;
}
.sidebar-one__newsletter button[type=submit]:hover {
  color: #115da9;
}

/*-- Page Details --*/
.page-banner {
  position: relative;
  background-color: #00000F;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 160px 0 220px;
}
@media (max-width: 1199px) {
  .page-banner {
    padding: 140px 0 200px;
  }
}
@media (max-width: 767px) {
  .page-banner {
    padding: 100px 0 120px;
  }
}
.page-banner__content {
  position: relative;
  z-index: 1;
}
.page-banner__breadcrumb {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  margin: 0 0 19px;
  padding: 0;
}
.page-banner__breadcrumb li {
  font-size: 24px;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: capitalize;
  display: flex;
  align-items: center;
}
.page-banner__breadcrumb li a {
  color: inherit;
  color: #FFFFFF;
  opacity: 0.5;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.page-banner__breadcrumb li a:hover {
  color: #115da9;
  background-size: 100% 1px;
  opacity: 1;
}
.page-banner__breadcrumb li:not(:last-of-type)::after {
  content: "/";
  position: relative;
  top: -1px;
  margin-left: 6px;
  margin-right: 6px;
  opacity: 0.5;
}
.page-banner__title {
  font-size: 76px;
  color: #FFFFFF;
  margin: 0;
}
@media (max-width: 1199px) {
  .page-banner__title {
    font-size: 65px;
  }
}
@media (max-width: 767px) {
  .page-banner__title {
    font-size: 40px;
  }
}
.page-banner__layer {
  position: absolute;
  right: 5%;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: right center;
  background-repeat: no-repeat;
  background-size: auto;
}
@media (max-width: 1800px) {
  .page-banner__layer {
    width: 55%;
    background-size: contain;
  }
}
@media (max-width: 1500px) {
  .page-banner__layer {
    width: 55%;
    background-size: contain;
    right: 3%;
  }
}
@media (max-width: 1300px) {
  .page-banner__layer {
    width: 50%;
    background-size: contain;
    right: 1%;
  }
}
@media (max-width: 1199px) {
  .page-banner__layer {
    display: none;
  }
}
.page-banner--gallery .page-banner__layer {
  right: 1%;
}

.blog-details {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .blog-details {
    padding: 80px 0;
  }
}
.blog-details__image {
  position: relative;
  padding-top: 20px;
  margin-bottom: 24px;
}
.blog-details__image__date {
  position: absolute;
  left: 22px;
  top: 0;
  text-align: center;
  background-color: #115da9;
  color: #FFFFFF;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 19px 18px 27px;
  clip-path: polygon(0 0, 100% 0, 100% 75%, 0% 100%);
}
.blog-details__image img {
  max-width: 100%;
  height: auto;
}
.blog-details__content {
  position: relative;
}
.blog-details__meta {
  color: #43435C;
  display: flex;
  align-items: center;
  gap: 35px;
  margin: 0 0 10px;
}
.blog-details__meta li {
  display: flex;
  align-items: center;
  position: relative;
}
.blog-details__meta li a {
  color: inherit;
  transition: 0.3s ease-in-out;
}
.blog-details__meta li a:hover {
  color: #115da9;
}
.blog-details__meta li a:hover i {
  color: #115da9;
}
.blog-details__meta li i {
  display: inline-block;
  transition: 0.3s ease-in-out;
  color: #00000F;
  margin-right: 10px;
}
.blog-details__title {
  font-size: 32px;
  line-height: 42px;
  margin: 0 0 15px;
}
@media (min-width: 1345px) {
  .blog-details__title {
    padding-right: 30px;
  }
}
.blog-details__text {
  margin: 0 0 16px;
}
.blog-details__heading {
  font-size: 24px;
  line-height: 34px;
  margin: 36px 0 15px;
}
.blog-details__pagination {
  margin-top: 44px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0;
  border-top: 1px solid rgba(0, 0, 15, 0.1);
  border-bottom: 1px solid rgba(0, 0, 15, 0.1);
}
.blog-details__pagination a {
  font-size: 16px;
  color: #43435C;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  gap: 22px;
}
@media (max-width: 500px) {
  .blog-details__pagination a {
    font-size: 0;
  }
}
.blog-details__pagination a i {
  width: 70px;
  height: 70px;
  background-color: #F4F4F4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(67, 67, 92, 0.4);
  font-size: 25px;
  transition: 0.3s ease-in-out;
}
.blog-details__pagination a:hover {
  color: #115da9;
}
.blog-details__pagination a:hover i {
  background-color: #115da9;
  color: #FFFFFF;
}
.blog-details__author {
  position: relative;
  background-color: rgba(244, 244, 244, 0.5);
  padding: 50px;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .blog-details__author {
    flex-direction: column;
    padding: 30px;
    gap: 25px;
  }
}
.blog-details__author img {
  width: 100px;
  height: 91px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .blog-details__author img {
    margin-right: auto;
  }
}
.blog-details__author__name {
  font-size: 18px;
  text-transform: capitalize;
  margin: 0 0 21px;
}
.blog-details__author__text {
  margin: 0;
}
@media (max-width: 1300px) {
  .blog-details__author__text br {
    display: none;
  }
}
.blog-details__author__social {
  position: absolute;
  top: 38px;
  right: 30px;
  gap: 10px;
  display: flex;
  align-items: center;
}
.blog-details__author__social a {
  width: 50px;
  height: 50px;
  background-color: #00000F;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #FFFFFF;
}
.blog-details__author__social a:hover {
  background-color: #115da9;
  color: #FFFFFF;
}
.blog-details__related {
  position: relative;
  margin-top: 45px;
}
.blog-details__related .sec-title {
  margin-bottom: 50px;
}
.blog-details__related__btn {
  position: relative;
  text-align: right;
  margin: 6px 0 0;
}
@media (max-width: 767px) {
  .blog-details__related__btn {
    margin: -30px 0 45px;
    text-align: left;
  }
}
.blog-details__comments {
  position: relative;
  background-color: rgba(244, 244, 244, 0.5);
  padding: 48px 110px 55px;
  margin-top: 100px;
}
@media (max-width: 1300px) {
  .blog-details__comments {
    padding: 48px 50px 55px;
  }
}
@media (max-width: 767px) {
  .blog-details__comments {
    padding: 48px 30px 55px;
  }
}
.blog-details__comments__title {
  font-size: 24px;
  line-height: 34px;
  margin: 0 0 42px;
}
.blog-details__comments__list {
  margin: 0;
  padding: 0;
}
.blog-details__comments__list .children {
  margin: 0;
  padding: 0;
  list-style: none;
}
.blog-details__comments__list .children .blog-details__comments__card {
  border-top: 1px solid rgba(0, 0, 15, 0.1);
  padding-top: 28px;
  margin-top: 27px;
  padding-left: 70px;
}
@media (max-width: 1300px) {
  .blog-details__comments__list .children .blog-details__comments__card {
    padding-left: 40px;
  }
}
@media (max-width: 767px) {
  .blog-details__comments__list .children .blog-details__comments__card {
    padding-left: 20px;
  }
}
.blog-details__comments__card {
  display: flex;
  align-items: center;
  position: relative;
  gap: 24px;
}
@media (max-width: 767px) {
  .blog-details__comments__card {
    flex-direction: column;
  }
}
.blog-details__comments__card__image {
  width: 86px;
  height: 86px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .blog-details__comments__card__image {
    margin-right: auto;
  }
}
.blog-details__comments__card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-details__comments__card__title {
  font-size: 18px;
  margin: 0 0 19px;
}
.blog-details__comments__card__text {
  margin: 0;
}
.blog-details__comments__card__content {
  position: relative;
}
.blog-details__comments__card__btn {
  position: absolute;
  right: 0;
  top: 0;
}
.blog-details__comments__card__btn a {
  display: inline-block;
  background-color: #00000F;
  color: #FFFFFF;
  font-size: 16px;
  padding: 0px 15px;
  text-transform: capitalize;
}
.blog-details__comments__card__btn a:hover {
  background-color: #115da9;
  color: #FFFFFF;
}
@media (max-width: 767px) {
  .blog-details__comments__card__btn {
    position: relative;
    margin: 20px 0 0;
  }
}
.blog-details__form {
  position: relative;
  background-color: rgba(244, 244, 244, 0.5);
  padding: 48px 110px 65px;
  margin-top: 50px;
}
@media (max-width: 1300px) {
  .blog-details__form {
    padding: 48px 50px 65px;
  }
}
@media (max-width: 767px) {
  .blog-details__form {
    padding: 48px 30px 65px;
  }
}
.blog-details__form__title {
  font-size: 24px;
  line-height: 34px;
  margin: 0 0 42px;
}
.blog-details__form input[type=text],
.blog-details__form input[type=email],
.blog-details__form input[type=tel],
.blog-details__form textarea {
  display: block;
  width: 100%;
  height: 50px;
  background-color: #FFFFFF;
  color: #43435C;
  font-size: 16px;
  font-weight: 400;
  border: none;
  border-radius: 0;
  outline: none;
  padding-left: 30px;
  padding-right: 30px;
  margin: 0 0 24px;
}
.blog-details__form textarea {
  height: 110px;
  padding-top: 13px;
  resize: none;
}
.blog-details__form__info {
  margin: 26px 0 42px;
}
.blog-details__form__info span {
  color: #FF5F2A;
}
.blog-details__sidebar {
  position: relative;
}
.blog-details__sidebar__widget {
  position: relative;
  background-color: rgba(244, 244, 244, 0.5);
  padding: 30px;
}
.blog-details__sidebar__widget + .blog-details__sidebar__widget {
  margin-top: 30px;
}
.blog-details__sidebar__title {
  font-size: 18px;
  text-transform: capitalize;
  margin: 0 0 26px;
}
.blog-details__sidebar form {
  position: relative;
}
.blog-details__sidebar form input[type=search],
.blog-details__sidebar form input[type=text] {
  outline: none;
  width: 100%;
  height: 50px;
  background-color: #FFFFFF;
  font-size: 14px;
  color: #43435C;
  border-radius: 0;
  border: none;
  padding-left: 30px;
  padding-right: 30px;
  transition: all 500ms ease;
}
.blog-details__sidebar form button[type=submit] {
  border: none;
  outline: none;
  background-color: transparent;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  width: auto;
  font-size: 14px;
  line-height: 50px;
  color: #00000F;
  border-radius: 0;
  transition: all 500ms ease;
}
.blog-details__sidebar form button[type=submit]:hover {
  color: #115da9;
}
.blog-details__sidebar ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.blog-details__sidebar ul li {
  position: relative;
  transition: all 300ms ease;
}
.blog-details__sidebar ul li a {
  font-size: 16px;
  color: #43435C;
  text-transform: capitalize;
  background-color: #FFFFFF;
  padding: 12px 30px;
  display: inline-block;
  width: 100%;
  position: relative;
  z-index: 1;
}
.blog-details__sidebar ul li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #115da9;
  z-index: -1;
  transform: scale(1, 0);
  perspective: 400px;
  visibility: hidden;
  transition: transform 500ms ease-in-out, visibility 500ms ease-in-out;
  transform-origin: bottom center;
}
.blog-details__sidebar ul li a::after {
  position: absolute;
  right: 30px;
  content: "\e902";
  font-family: "Ripcar" !important;
  transition: all 300ms ease;
  font-weight: normal;
  font-size: 12px;
  opacity: 0.4;
}
.blog-details__sidebar ul li:hover a {
  color: #FFFFFF;
}
.blog-details__sidebar ul li:hover a::after {
  opacity: 1;
}
.blog-details__sidebar ul li:hover a::before {
  transform: scale(1, 1);
  visibility: visible;
  transform-origin: top center;
}
.blog-details__sidebar ul li + li {
  margin-top: 10px;
}
.blog-details__sidebar__social {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
.blog-details__sidebar__social a {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: rgba(67, 67, 92, 0.5);
  background: rgba(67, 67, 92, 0.1);
  font-size: 18px;
  border: unset;
  outline: unset;
}
.blog-details__sidebar__social a:hover {
  background: #115da9;
  color: #FFFFFF;
}
.blog-details__sidebar__instagram {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.blog-details__sidebar__instagram > a {
  width: 110px;
  height: 110px;
  display: block;
  position: relative;
  overflow: hidden;
}
.blog-details__sidebar__instagram > a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 300ms ease;
}
.blog-details__sidebar__instagram > a:hover img {
  transform: scale(1.05);
}
.blog-details__sidebar__instagram__btn {
  position: relative;
  width: 100%;
  margin-top: 15px;
}
.blog-details__sidebar__instagram__btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #115da9;
  color: #FFFFFF;
  font-size: 16px;
  gap: 12px;
  text-transform: capitalize;
  width: 100%;
  padding: 10px 30px;
  position: relative;
  z-index: 1;
}
.blog-details__sidebar__instagram__btn a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #00000F;
  z-index: -1;
  transform: scale(1, 0);
  perspective: 400px;
  visibility: hidden;
  transition: transform 500ms ease-in-out, visibility 500ms ease-in-out;
  transform-origin: bottom center;
}
.blog-details__sidebar__instagram__btn a:hover {
  color: #FFFFFF;
}
.blog-details__sidebar__instagram__btn a:hover::before {
  transform: scale(1, 1);
  visibility: visible;
  transform-origin: top center;
}

.cta-one {
  position: relative;
  z-index: 2;
  margin-bottom: -130px;
}
.cta-one__wrapper {
  position: relative;
  padding: 66px;
}
@media (max-width: 1299px) {
  .cta-one__wrapper {
    padding: 66px 30px;
  }
}
@media (max-width: 767px) {
  .cta-one__wrapper {
    padding: 46px 30px;
  }
}
.cta-one__wrapper__bg {
  position: absolute;
  background-color: #00000F;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  clip-path: polygon(0 0, 100% 0, 92% 100%, 0% 100%);
}
@media (max-width: 1199px) {
  .cta-one__wrapper__bg {
    background-image: none !important;
  }
}
@media (max-width: 991px) {
  .cta-one__wrapper__bg {
    clip-path: none;
  }
}
.cta-one__info {
  display: flex;
  align-items: center;
  gap: 125px;
  position: relative;
}
@media (max-width: 1299px) {
  .cta-one__info {
    gap: 25px;
  }
}
@media (max-width: 991px) {
  .cta-one__info {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cta-one__info {
    gap: 15px;
  }
}
.cta-one__info__icon {
  position: relative;
  width: 100px;
  height: 100px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  font-size: 45px;
  color: #FF5F2A;
  justify-content: center;
  transition: 0.4s ease-in-out;
}
@media (max-width: 1199px) {
  .cta-one__info__icon {
    width: 80px;
    height: 80px;
    font-size: 38px;
  }
}
.cta-one__info__icon i {
  display: inline-block;
  transition: 0.6s ease-in-out;
}
.cta-one__info__icon::after {
  position: absolute;
  right: -105px;
  bottom: 0;
  top: 0;
  margin: auto;
  width: 75px;
  height: 1px;
  content: "";
  background-color: #FFFFFF;
}
@media (max-width: 1299px) {
  .cta-one__info__icon::after {
    display: none;
  }
}
.cta-one__info:hover .cta-one__info__icon {
  background-color: rgba(255, 255, 255, 0.2);
}
.cta-one__info:hover .cta-one__info__icon i {
  transform: rotateY(180deg);
}
.cta-one__info__text {
  color: #FF5F2A;
  font-size: 16px;
  margin: 0 0 20px;
}
.cta-one__info__number {
  font-size: 52px;
  color: #FFFFFF;
  margin: 0;
}
@media (max-width: 1299px) {
  .cta-one__info__number {
    font-size: 40px;
  }
}
@media (max-width: 1199px) {
  .cta-one__info__number {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .cta-one__info__number {
    font-size: 25px;
  }
}
.cta-one__info__number a {
  color: inherit;
}
.cta-one__info__number a:hover {
  color: #FF5F2A;
}
.cta-one__image {
  position: absolute;
  z-index: 2;
  right: 185px;
  bottom: 0;
  animation: leftToRIght 3s linear infinite;
}
@media (max-width: 1299px) {
  .cta-one__image {
    right: 105px;
  }
}
@media (max-width: 991px) {
  .cta-one__image {
    display: none;
  }
}
.cta-one__image img {
  max-width: inherit;
}

/*# sourceMappingURL=ripcar.css.map */
