/*-----------------------------------------------------------

@File: Steed Template Styles

* This file contains the styling for the actual template, this
is the file you need to edit to change the look of the template.

This files table contents are outlined below>>>>>

******************************************* 
** - DEFAULT AREA STYLE - **

** - Default Btn Area Style
** - Read More Area Style
** - Section Title Area Style
** - Header Area Style
** - Nav Area Style
** - Banner Area Style
** - Futures Area Style
** - About Area Style
** - Services Area Style
** - Ready To Talk Area Style
** - Choose Us Area Style
** - Case Studies Area Style
** - Customer Area Style
** - Team Area Style
** - Partner Area Style
** - Blog Area Style
** - Footer Area Style
** - Copy Right Area Style

** - OTHER STYLE AREA - **

** - Preloader Area Style
** - Go Top Style
** - Video wave Style
-------------------------------------------------------------*/
:root {
  --fontFamily: "Kanit", sans-serif;
  --strFont: Acorn;
  --bodyColor: #555555;
  --primaryColor: #f4bc3e;
  --headingColor: #222222;
  --starColor: #ffc107;
  --blackColor: #000000;
  --whiteColor: #ffffff;
  --transition: all ease 0.5s;
}

body {
  font-family: var(--fontFamily);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  padding: 0;
  margin: 0;
  color: var(--bodyColor);
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  color: var(--headingColor);
  font-family: var(--fontFamily);
  font-weight: 500;
  line-height: 1.2;
}

a {
  color: var(--bodyColor);
  transition: var(--transition);
  text-decoration: none;
}
a:hover {
  color: var(--headingColor);
}

p {
  font-size: 16px;
  color: var(--bodyColor);
  margin-bottom: 15px;
  line-height: 1.6;
}
p:last-child {
  margin-bottom: 0;
}

.ptb-150 {
  padding-top: 150px;
  padding-bottom: 150px;
}

.pt-150 {
  padding-top: 150px;
}

.pb-150 {
  padding-bottom: 150px;
}

.pb-125 {
  padding-bottom: 125px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pt-100 {
  padding-top: 100px;
}

.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

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

.responsive-image {
  display: none;
}

.black-mode-logo {
  display: none;
}

.default-btn {
  padding: 14px 23px;
  display: inline-block;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  border: none;
  color: var(--headingColor);
  background: var(--primaryColor);
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.default-btn::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 0;
  width: 0;
  opacity: 0;
  transition: var(--transition);
  z-index: -1;
  background-color: var(--whiteColor);
}
.default-btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  height: 0;
  width: 0;
  transition: var(--transition);
  z-index: -1;
  background-color: var(--whiteColor);
}
.default-btn:hover {
  color: var(--headingColor);
}
.default-btn:hover::after {
  opacity: 1;
  height: 100%;
  width: 70%;
}
.default-btn:hover:before {
  opacity: 1;
  height: 100%;
  width: 30%;
}
.default-btn:hover span::before {
  background-color: var(--headingColor);
}
.default-btn i {
  position: relative;
  top: 4px;
  margin-left: 6px;
}
.default-btn span {
  position: relative;
}
.default-btn span::before {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 1px;
  transition: var(--transition);
  width: 100%;
  background-color: var(--headingColor);
}

.container-fluid {
  max-width: 1520px;
}
.container-fluid.style2 {
  max-width: 1630px;
}
.container-fluid.style3 {
  max-width: 1730px;
}

.section-title {
  text-align: center;
  margin-bottom: 45px;
}
.section-title h1 {
  font-size: 100px;
  margin-bottom: 0;
  font-family: Alga;
  font-weight: 700;
  letter-spacing: -3px;
}
.section-title h1 img {
  position: relative;
  top: -6px;
}
.section-title h1 span {
  font-family: Playfair Display;
  font-style: italic;
  letter-spacing: -2px;
  bottom: -5px;
  left: 10px;
}
.section-title h3 {
  font-size: 50px;
  font-weight: 500;
  line-height: 60px;
  margin-bottom: 65px;
}
.section-title h3 span {
  background: var(--primaryColor);
  padding: 0 5px;
  margin-left: -5px;
  width: auto;
  display: inline-block;
}

.section-warp {
  margin-bottom: 28px;
}
.section-warp h2 {
  font-size: 46px;
  margin-bottom: 0;
  max-width: 495px;
  letter-spacing: -1.38px;
}
.section-warp p {
  margin-bottom: 0;
  max-width: 585px;
}

.bg-F4BC3E {
  background: var(--primaryColor);
}

.bg-BA898D {
  background: #BA898D;
}

.bg-FFF5D0 {
  background-color: #FFF5D0;
}

.bg-F7FFE9 {
  background: #F7FFE9;
}

.main-bg {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.pagination-btn {
  position: relative;
}
.pagination-btn .swiper-pagination {
  position: relative;
  margin-top: 20px;
  margin-bottom: -15px;
  transition: var(--transition);
}
.pagination-btn .swiper-pagination-bullet {
  height: 11px;
  width: 11px;
  transition: var(--transition);
  opacity: 1;
  background-color: transparent;
  border: solid 1px var(--headingColor);
}
.pagination-btn .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 20px;
  height: 1px;
  transition: var(--transition);
  width: 0;
  background: var(--primaryColor);
}
.pagination-btn .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  background-color: var(--headingColor) !important;
  margin-right: 75px !important;
  position: relative;
  transition: var(--transition);
}
.pagination-btn .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  width: 57px;
}

.swiper-btn .swiper-button-next,
.swiper-btn .swiper-button-prev {
  top: var(--swiper-navigation-top-offset, 45%);
}
.swiper-btn .swiper-button-next::after,
.swiper-btn .swiper-button-prev::after {
  display: none;
}
.swiper-btn .swiper-button-next::before,
.swiper-btn .swiper-button-prev::before {
  position: absolute;
  display: block;
  color: var(--headingColor);
  font-family: flaticon_mycollection !important;
  text-align: center;
  border-radius: 50%;
  font-size: 25px;
  transition: var(--transition);
}
.swiper-btn .swiper-button-next:hover::before,
.swiper-btn .swiper-button-prev:hover::before {
  color: var(--primaryColor);
}
.swiper-btn .swiper-button-next {
  left: auto;
  right: -80px;
}
.swiper-btn .swiper-button-next:before {
  content: "\f1d1";
}
.swiper-btn .swiper-button-prev {
  left: -80px;
  right: auto;
}
.swiper-btn .swiper-button-prev:before {
  content: "\f1d0";
}

/*
All Key Style
======================================================*/
@keyframes simple-square-to-circle {
  100% {
    border-radius: 50%;
  }
}
@keyframes simple-rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes simple-scale {
  100% {
    transform: scale(1.5);
  }
}
@keyframes simple-move {
  100% {
    transform: translate(50px, 0);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
@keyframes movebounce {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(300px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes moveleftbounce {
  0% {
    transform: translateX(100px);
  }
  50% {
    transform: translateX(300px);
  }
  100% {
    transform: translateX(100px);
  }
}
@keyframes rotateme {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes rotate3d {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}
@keyframes ripple {
  0% {
    transform: scale(1);
  }
  75% {
    transform: scale(1.5);
    opacity: 0.6;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
/*
Hero  Warp  Style
======================================================*/
.hero-warp {
  padding-top: 540px;
  padding-bottom: 290px;
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: -112px;
}

.hero-content {
  position: relative;
}
.hero-content h1 {
  color: #FFF5D0;
  font-family: Alga;
  font-size: 150px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -7.5px;
  margin-bottom: 0;
}
.hero-content h1 span {
  font-style: italic;
  letter-spacing: -2px;
  font-weight: 700;
  font-family: Playfair Display;
}
.hero-content h1 span img {
  position: relative;
  padding-right: 0;
  padding-left: 5px;
  top: -5px;
}
.hero-content h1 span span {
  position: relative;
  margin-left: -22px;
}
.hero-content .line-content {
  display: flex;
  align-items: center;
  margin-top: 30px;
}
.hero-content .line-content p {
  max-width: 590px;
  color: #FFF5D0;
  font-size: 18px;
  margin-bottom: -5px;
}
.hero-content .line-content h1 {
  margin-left: 50px;
  margin-bottom: 0;
  margin-right: -35px;
}
.hero-content .upper-icon {
  position: absolute;
  width: 127px;
  height: 127px;
  background-color: var(--primaryColor);
  border-radius: 50%;
  text-align: center;
  line-height: 147px;
  font-size: 60px;
  right: 0;
  top: -70%;
  color: var(--headingColor);
  transition: var(--transition);
}
.hero-content .upper-icon:hover {
  background-color: var(--headingColor);
  color: var(--primaryColor);
}

/*
Provide  Warp  Style
======================================================*/
.provide-warp .inner-provide {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.provide-image {
  max-width: 377px;
  margin-left: auto;
  padding-bottom: 90px;
}

.provide-content {
  position: relative;
}
.provide-content .get-quote {
  width: 204px;
  height: 204px;
  border-radius: 50%;
  text-align: center;
  padding: 78px 0;
  color: var(--headingColor);
  margin-left: 110px;
  display: inline-block;
  margin-bottom: 135px;
  transition: var(--transition);
  border: solid 1px rgba(34, 34, 34, 0.15);
}
.provide-content .get-quote span {
  display: block;
  font-size: 15px;
  color: var(--headingColor);
  font-weight: 500;
  line-height: 1;
}
.provide-content .get-quote:hover {
  background-color: var(--primaryColor);
  border-color: var(--primaryColor);
}
.provide-content h3 {
  font-size: 50px;
  font-weight: 500;
  line-height: 60px;
  margin-bottom: 0;
  margin-right: -225px;
}
.provide-content h3 span {
  background: var(--primaryColor);
  padding: 0 5px;
  margin-left: -5px;
  width: auto;
  display: inline-block;
}

/*
Traning Warp  Style
======================================================*/
.traning-card-widget {
  padding: 71px 80px;
  position: relative;
  box-shadow: 0px 0px 46px 6px rgba(194, 194, 194, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #222;
  transition: var(--transition);
  z-index: 1;
  margin-bottom: 150px;
}
.traning-card-widget .traning-content {
  display: flex;
}
.traning-card-widget .traning-content .content {
  margin-left: 30px;
  margin-top: -5px;
}
.traning-card-widget .traning-content .content h3 {
  font-size: 50px;
  font-weight: 500;
  margin-bottom: 14px;
}
.traning-card-widget .traning-content .content h3 a {
  color: var(--headingColor);
}
.traning-card-widget .traning-content .content p {
  color: var(--headingColor);
  font-size: 18px;
  margin-bottom: 0;
  padding-right: 120px;
}
.traning-card-widget .traning-content .icon {
  width: 59px;
  height: 59px;
  position: relative;
  bottom: -10px;
}
.traning-card-widget .traning-content .icon img {
  width: 59px;
  height: 59px;
}
.traning-card-widget .traning-icon {
  width: 127px;
  height: 127px;
  border-radius: 50%;
  text-align: center;
  font-size: 55px;
  line-height: 137px;
  color: var(--headingColor);
  border: solid 1px var(--headingColor);
  margin-left: auto;
}
.traning-card-widget .traning-icon a {
  color: var(--headingColor);
}
.traning-card-widget.highlight {
  background-color: var(--primaryColor);
  z-index: 999 !important;
}
.traning-card-widget.style2 {
  padding: 95px 105px;
  transform: skew(7deg, 0deg);
}
.traning-card-widget.style2 .traning-content .icon {
  width: 164px;
  position: absolute;
  left: -100px;
  text-align: center;
  line-height: 164px;
  top: 50%;
  transform: translateY(-74px);
  height: 164px;
  transition: var(--transition);
  opacity: 0;
  border-radius: 50%;
  border: solid 1px var(--headingColor);
  background-color: #FFF5D0;
}
.traning-card-widget.style2 .traning-icon {
  background-color: var(--headingColor);
  color: var(--primaryColor);
}
.traning-card-widget.style2 .traning-icon a {
  color: var(--primaryColor);
}
.traning-card-widget.style2.highlight .traning-content .icon {
  opacity: 1;
}
.traning-card-widget:hover {
  background-color: var(--primaryColor);
  z-index: 999 !important;
}
.traning-card-widget:nth-child(2) {
  position: absolute;
  left: 50px;
  top: 50px;
  right: -50px;
  z-index: 2;
}
.traning-card-widget:nth-child(3) {
  position: absolute;
  left: 100px;
  top: 100px;
  right: -100px;
  z-index: 1;
}
.traning-card-widget:nth-child(4) {
  position: absolute;
  left: 150px;
  top: 150px;
  right: -150px;
  z-index: -1;
}
.traning-card-widget .tr-shape1 {
  position: absolute;
  top: 0;
  right: 32.5%;
  pointer-events: none;
}
.traning-card-widget .tr-shape2 {
  position: absolute;
  top: 0;
  right: 22%;
  pointer-events: none;
}
.traning-card-widget .tr-shape3 {
  position: absolute;
  top: 0;
  right: 11.5%;
  pointer-events: none;
}

.inner-traning-widget {
  position: relative;
}
.inner-traning-widget .traning-button {
  position: absolute;
  bottom: -155px;
}
.inner-traning-widget .traning-button .toggle-button {
  background-color: transparent;
  border: none;
  font-size: 24px;
  transition: var(--transition);
}
.inner-traning-widget .traning-button .toggle-button:hover {
  color: var(--primaryColor);
}

.traning-warp {
  position: relative;
  z-index: 1;
}

/*
Slider Text  Warp  Style
======================================================*/
.slide-text-warp {
  height: 112px;
  line-height: 112px;
  width: 100%;
  position: relative;
  transition: var(--transition);
  z-index: 1;
}
.slide-text-warp .container-fluid {
  width: 100%;
}
.slide-text-warp .text-slide {
  display: inline-block;
  white-space: nowrap;
  position: relative;
  transform: translate3d(-10%, 0, 0);
  animation-name: marquee;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-duration: 40s;
}
.slide-text-warp .text-slide:hover {
  animation-play-state: paused !important;
}
.slide-text-warp .text-slide h1 {
  width: 50%;
  display: inline-block;
  transition: var(--transition);
  padding-right: 50px;
  line-height: 1;
  margin-bottom: 0;
}
.slide-text-warp .text-slide h1 span {
  font-family: Alga;
  font-size: 130px;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(34, 34, 34, 0.2392156863);
}
.slide-text-warp .text-slide h1 img {
  position: relative;
  top: -18px;
}

.text-video {
  overflow: hidden;
}

@keyframes marquee {
  0% {
    transform: translate3d(0%, 0, 0);
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}
/*
Provide Video  Warp  Style
======================================================*/
.provide-video-content {
  margin-bottom: 95px;
  position: relative;
}
.provide-video-content .video-content-shape {
  position: absolute;
  left: 0;
  right: 180px;
  margin-left: auto;
  margin-right: auto;
  top: 50%;
  transform: translateY(-50px);
}
.provide-video-content p {
  font-size: 18px;
  margin-bottom: 0;
}
.provide-video-content .count-content {
  margin-top: 245px;
}
.provide-video-content .count-content h1 {
  font-size: 100px;
  margin-bottom: 1px;
  font-weight: 700;
}
.provide-video-content .count-content span {
  font-size: 18px;
  margin-bottom: 0;
}

.provide-video-count {
  position: relative;
}
.provide-video-count .video-count {
  position: absolute;
  right: 0;
  bottom: 0;
}
.provide-video-count .video-count h1 {
  font-size: 100px;
  font-style: normal;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -2px;
}
.provide-video-count .video-count span {
  font-size: 18px;
  margin-bottom: 0;
}
.provide-video-count .provide-video {
  max-width: 785px;
  position: relative;
  margin-left: -115px;
  z-index: 999;
}
.provide-video-count .provide-video .video-btn {
  position: absolute;
  width: 144px;
  height: 144px;
  border-radius: 50%;
  text-align: center;
  font-size: 45px;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  top: 50%;
  top: 50%;
  transform: translateY(-75px);
  line-height: 144px;
  color: var(--headingColor);
  background-color: var(--primaryColor);
  transition: var(--transition);
}
.provide-video-count .provide-video .video-btn:hover {
  background-color: var(--headingColor);
  color: var(--whiteColor);
}

.provide-video-warp {
  margin-top: -85px;
}

/*
Trusted  Warp  Style
======================================================*/
.trusted-content h1 {
  font-size: 100px;
  font-family: Alga;
  letter-spacing: -3px;
  font-weight: 700;
}
.trusted-content h1 span {
  font-family: Playfair Display;
  letter-spacing: -2px;
  font-style: italic;
}

.trusted-icon {
  text-align: end;
}
.trusted-icon a {
  width: 180px;
  height: 180px;
  color: var(--headingColor);
  border-radius: 50%;
  display: inline-block;
  margin-left: auto;
  border: solid 1px rgba(34, 34, 34, 0.15);
  padding: 60px 0;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}
.trusted-icon a:hover {
  background-color: var(--headingColor);
  color: var(--whiteColor);
}
.trusted-icon a span {
  font-size: 15px;
  font-weight: 500;
  display: block;
}
.trusted-icon a a {
  color: var(--headingColor);
}

/*
Branding  Warp  Style
======================================================*/
.branding-warp {
  overflow: hidden;
}
.branding-warp .swiper {
  overflow: inherit;
}
.branding-warp .swiper-wrapper {
  justify-content: center;
}
.branding-warp .section-title {
  margin-bottom: 55px;
}

/*
Package  Warp  Style
======================================================*/
.package-card {
  display: flex;
  background-color: var(--headingColor);
  padding: 75px 70px;
  margin-left: -38px;
}
.package-card .package-card-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  margin-right: 55px;
}
.package-card .package-card-list li {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  color: #FFF5D0;
  font-family: Kanit;
  font-size: 18px;
}
.package-card .package-card-list li:last-child {
  margin-bottom: 0;
}
.package-card .package-card-list li .nav-link {
  cursor: pointer;
}
.package-card .package-card-list li .nav-link .switch {
  display: inline-block;
  position: relative;
  width: 40px;
  height: 18px;
  margin-right: 10px;
  transition: var(--transition);
}
.package-card .package-card-list li .nav-link .switch::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  border: 1px solid #FFF5D0;
  border-radius: 34px;
  left: 0;
  top: 2px;
  transition: var(--transition);
}
.package-card .package-card-list li .nav-link .switch::after {
  position: absolute;
  content: "";
  height: 12px;
  width: 12px;
  left: 4px;
  right: auto;
  border-radius: 50%;
  top: 5px;
  background-color: var(--whiteColor);
  transition: 0.4s;
  transition: var(--transition);
}
.package-card .package-card-list .nav-link.active .switch::before {
  border: 1px solid var(--primaryColor);
  background-color: var(--primaryColor);
}
.package-card .package-card-list .nav-link.active .switch::after {
  background-color: var(--headingColor);
  right: 4px;
  left: auto;
}
.package-card .card-content {
  padding-left: 55px;
  margin-top: -10px;
  border-left: solid 1px rgba(255, 255, 255, 0.1);
}
.package-card .card-content .card-tag {
  position: relative;
  display: flex;
  align-items: end;
  margin-bottom: 15px;
}
.package-card .card-content .card-tag span {
  position: relative;
  font-size: 16px;
  bottom: 15px;
  left: 5px;
  color: var(--primaryColor);
}
.package-card .card-content .card-tag h2 {
  color: var(--primaryColor);
  margin-bottom: 0;
  letter-spacing: -2.4px;
  font-family: Alga;
  font-size: 80px;
  font-weight: 700;
}
.package-card .card-content .content-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 100px;
}
.package-card .card-content .content-list li {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 400;
  color: #FFF5D0;
  position: relative;
  padding-left: 25px;
}
.package-card .card-content .content-list li:last-child {
  margin-bottom: 0;
}
.package-card .card-content .content-list li i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
}
.package-card .card-content .default-btn {
  color: var(--headingColor);
}
.package-card .card-content .default-btn span {
  position: relative;
}
.package-card .card-content .default-btn span::before {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 1px;
  transition: var(--transition);
  width: 100%;
  background-color: var(--headingColor);
}

.package-content {
  padding-right: 150px;
}
.package-content h3 {
  font-size: 50px;
  font-weight: 500;
  margin-bottom: 15px;
}
.package-content p {
  color: var(--headingColor);
  margin-bottom: 25px;
  font-size: 18px;
}
.package-content .package-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.package-content .package-list li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 35px;
  font-family: Kanit;
  font-size: 18px;
  font-weight: 400;
  color: var(--headingColor);
}
.package-content .package-list li img {
  position: absolute;
  left: 0;
}

/*
Staff  Warp  Style
======================================================*/
.staff-details-box {
  display: flex;
  align-items: center;
  width: 425px;
  margin: 0 18px 38px 18px;
  transition: var(--transition);
}
.staff-details-box:first-child {
  margin-left: 0;
}
.staff-details-box .image {
  width: 425px;
  height: 421px;
}
.staff-details-box .content {
  opacity: 0;
  display: none;
  transition: var(--transition);
  margin-left: 30px;
  padding-right: 50px;
}
.staff-details-box .content h3 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 12px;
}
.staff-details-box .content h3 a {
  color: var(--headingColor);
}
.staff-details-box .content p {
  font-size: 18px;
  padding-bottom: 20px;
  width: 293px;
  margin-bottom: 15px;
  border-bottom: solid 1px #EADCAC;
}
.staff-details-box .content .social-list {
  list-style: none;
  padding-left: 0;
  margin-top: 28px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
}
.staff-details-box .content .social-list h3 {
  font-size: 18px;
  margin-bottom: 0;
  font-weight: 400;
  margin-right: 0;
}
.staff-details-box .content .social-list li {
  display: inline-block;
  padding-right: 12px;
}
.staff-details-box .content .social-list li:last-child {
  padding-right: 0;
}
.staff-details-box .content .social-list li .icon {
  width: 32px;
  height: 32px;
  line-height: 30px;
  display: inline-block;
  border-radius: 50%;
  text-align: center;
  color: var(--headingColor);
  border: solid 1px rgba(34, 34, 34, 0.17);
}
.staff-details-box .content .social-list li .icon:hover {
  background-color: var(--primaryColor);
  border-color: var(--primaryColor);
}
.staff-details-box.active {
  width: 830px;
  height: 421px;
}
.staff-details-box.active .content {
  opacity: 1;
  display: block;
}
.staff-details-box.responsive {
  margin-right: 0;
}

.staff-warp .container-fluid {
  max-width: 1780px;
  margin-left: auto;
  margin-right: auto;
}
.staff-warp .staff-widget {
  overflow: hidden;
}
.staff-warp .middle-item {
  display: flex;
  align-items: center;
}

/*
Staff  Warp  Style
======================================================*/
.costomer-content {
  margin-right: -20px;
}
.costomer-content h1 {
  font-family: Alga;
  font-size: 100px;
  letter-spacing: -3px;
  margin-bottom: 30px;
  line-height: 1;
  font-weight: 700;
}

.customer-image {
  margin-left: 65px;
  position: relative;
}
.customer-image .customer-image1 {
  position: absolute;
  top: 40px;
  left: 0;
}
.customer-image .customer-image2 {
  position: absolute;
  bottom: 40px;
}

.costomer-slider-warp {
  position: relative;
}
.costomer-slider-warp .customer-card {
  padding-right: 15px;
}
.costomer-slider-warp .customer-card p {
  font-size: 24px;
  color: var(--headingColor);
  font-weight: 400;
  margin-bottom: 40px;
}
.costomer-slider-warp .customer-card .customer-details {
  display: flex;
  align-items: center;
}
.costomer-slider-warp .customer-card .customer-details .image {
  width: 68px;
  height: 68px;
}
.costomer-slider-warp .customer-card .customer-details .image img {
  border-radius: 50%;
}
.costomer-slider-warp .customer-card .customer-details .details {
  margin-left: 15px;
}
.costomer-slider-warp .customer-card .customer-details .details h4 {
  font-size: 32px;
  margin-bottom: 5px;
}
.costomer-slider-warp .customer-card .customer-details .details span {
  font-size: 18px;
  display: block;
}
.costomer-slider-warp .swiper-btn {
  display: flex;
}
.costomer-slider-warp .swiper-btn .swiper-button-next,
.costomer-slider-warp .swiper-btn .swiper-button-prev {
  top: var(--swiper-navigation-top-offset, 90%);
}
.costomer-slider-warp .swiper-btn .swiper-button-next::after,
.costomer-slider-warp .swiper-btn .swiper-button-prev::after {
  display: none;
}
.costomer-slider-warp .swiper-btn .swiper-button-next {
  left: auto;
  right: 0;
}
.costomer-slider-warp .swiper-btn .swiper-button-prev {
  left: auto;
  right: 40px;
}

/*
Talk  Warp  Style
======================================================*/
.talk-warp {
  background-color: var(--headingColor);
}

.talk-content {
  max-width: 435px;
}
.talk-content h3 {
  font-size: 50px;
  font-weight: 500;
  color: #FFF5D0;
  margin-bottom: 20px;
}
.talk-content p {
  font-size: 18px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.75);
}

.talk-form-warp .form-control {
  border: 1px solid rgba(255, 255, 255, 0.09);
  background-color: transparent;
  border-radius: 0;
  margin-bottom: 25px;
  height: 52px;
  padding-left: 20px;
  font-weight: 300;
  color: var(--whiteColor);
  font-size: 18px;
}
.talk-form-warp .form-control:focus {
  box-shadow: unset;
}
.talk-form-warp .form-control:focus::-moz-placeholder {
  color: transparent;
}
.talk-form-warp .form-control:focus::placeholder {
  color: transparent;
}
.talk-form-warp .form-control::-moz-placeholder {
  color: rgba(255, 255, 255, 0.4);
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.talk-form-warp .form-control::placeholder {
  color: rgba(255, 255, 255, 0.4);
  transition: var(--transition);
}
.talk-form-warp textarea {
  height: 134px !important;
  padding-top: 20px;
}
.talk-form-warp .form-select {
  border: 1px solid rgba(255, 255, 255, 0.09);
  background-color: transparent;
  border-radius: 0;
  margin-bottom: 25px;
  height: 52px;
  font-weight: 300;
  padding-left: 20px;
  font-size: 18px;
  color: var(--whiteColor);
}
.talk-form-warp .form-select:focus {
  box-shadow: unset;
}
.talk-form-warp option {
  background-color: var(--headingColor);
}
.talk-form-warp .default-btn {
  color: var(--headingColor);
}
.talk-form-warp .default-btn span {
  position: relative;
}
.talk-form-warp .default-btn span::before {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 1px;
  transition: var(--transition);
  width: 100%;
  background-color: var(--headingColor);
}

/*
Footer  Warp  Style
======================================================*/
.before-footer {
  position: relative;
  z-index: 1;
  background: #222;
}
.before-footer::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 88%;
  z-index: -1;
  bottom: 0;
  background: #282828;
}
.before-footer .footer-widget.widget_sintra_newsletter {
  margin-left: 110px;
}
.before-footer .footer-widget.col:nth-child(3) {
  left: 0;
  max-width: 400px;
}
.before-footer .footer-widget.col:nth-child(2) {
  left: 110px;
}

.footer-widget h3 {
  font-size: 24px;
  font-weight: 500;
  color: #FFF5D0;
  margin-bottom: 25px;
}
.footer-widget h2 {
  font-size: 24px;
  font-weight: 500;
  color: #FFF5D0;
  margin-bottom: 25px;
}
.footer-widget .footer-input {
  margin-bottom: 65px;
}
.footer-widget .footer-input .form-control {
  height: 52px;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 0;
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 300;
  color: var(--whiteColor);
  padding-left: 20px;
  font-weight: 300;
}
.footer-widget .footer-input .form-control:focus {
  box-shadow: unset;
}
.footer-widget .footer-input .form-control:focus::-moz-placeholder {
  color: transparent;
}
.footer-widget .footer-input .form-control:focus::placeholder {
  color: transparent;
}
.footer-widget .footer-input .form-control::-moz-placeholder {
  -moz-transition: var(--transition);
  transition: var(--transition);
  color: rgba(255, 255, 255, 0.4);
}
.footer-widget .footer-input .form-control::placeholder {
  transition: var(--transition);
  color: rgba(255, 255, 255, 0.4);
}
.footer-widget .footer-input .default-btn {
  color: var(--headingColor);
  border: none;
  padding: 12px 28px;
}
.footer-widget .footer-input .default-btn span {
  position: relative;
}
.footer-widget .footer-input .default-btn span::before {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 1px;
  transition: var(--transition);
  width: 100%;
  background-color: var(--headingColor);
}
.footer-widget .footer-input .default-btn:focus {
  background-color: var(--whiteColor);
}
.footer-widget .footer-input .alert-danger {
  padding: 0;
  background-color: transparent;
  border: unset;
  color: var(--primaryColor);
  margin-top: 5px;
}
.footer-widget .location {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
}
.footer-widget .footer-link {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  margin-top: -8px;
}
.footer-widget .footer-link li {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 300;
}
.footer-widget .footer-link li:last-child {
  margin-bottom: 0;
}
.footer-widget .footer-link li a {
  color: rgba(255, 255, 255, 0.75);
}
.footer-widget .footer-link li a:hover {
  color: var(--primaryColor);
}
.footer-widget .footer-logo {
  margin-bottom: 20px;
}
.footer-widget p {
  font-size: 18px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.75);
}
.footer-widget .social-list {
  list-style: none;
  padding-left: 0;
  margin-top: 28px;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
}
.footer-widget .social-list h4 {
  color: #FFF5D0;
  font-size: 18px;
  margin-right: 15px;
  margin-bottom: 0;
}
.footer-widget .social-list li {
  display: inline-block;
  padding-right: 12px;
  margin-bottom: 0;
}
.footer-widget .social-list li:last-child {
  padding-right: 0;
}
.footer-widget .social-list li a {
  width: 32px;
  height: 32px;
  line-height: 30px;
  display: inline-block;
  border-radius: 50%;
  text-align: center;
  color: #FFF5D0;
  border: solid 1px rgba(255, 255, 255, 0.17);
}
.footer-widget .social-list li a:hover {
  background-color: var(--primaryColor);
  border-color: var(--primaryColor);
  color: var(--whiteColor);
}
.footer-widget .social-list li a svg {
  fill: var(--whiteColor);
}
.footer-widget .round-link {
  width: 180px;
  height: 180px;
  display: inline-block;
  border-radius: 50%;
  padding: 60px 0;
  color: #FFF5D0;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  border: solid 1px rgba(255, 255, 255, 0.15);
}
.footer-widget .round-link:hover {
  background-color: var(--primaryColor);
  border-color: var(--primaryColor);
}
.footer-widget .round-link:hover a {
  color: var(--headingColor);
}
.footer-widget .round-link span {
  font-size: 15px;
  display: block;
}
.footer-widget .round-link a {
  color: #FFF5D0;
}
.footer-widget ul {
  padding-left: 0;
}
.footer-widget ul li {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 300;
  list-style-type: none;
}
.footer-widget ul li:last-child {
  margin-bottom: 0;
}
.footer-widget ul li a {
  color: rgba(255, 255, 255, 0.75);
}
.footer-widget ul li a:hover {
  color: var(--primaryColor);
}
.footer-widget.widget_sintra_newsletter {
  max-width: 350px;
}
.footer-widget.widget_nav_menu {
  position: relative;
}
.footer-widget.widget_sintra_footer_info {
  position: relative;
  margin-left: -255px;
}
.footer-widget.col:nth-child(2) {
  position: relative;
  left: 60px;
}
.footer-widget.col:nth-child(3) {
  position: relative;
  left: -90px;
}

.col-lg-4:nth-child(1) .footer-widget {
  margin-left: 135px;
  margin-right: -20px;
}
.col-lg-4:nth-child(2) .footer-widget {
  padding-left: 178px;
}
.col-lg-4:nth-child(3) .footer-widget {
  padding-left: 60px;
}

/*
Copy Right  Warp  Style
======================================================*/
.both-warp {
  position: relative;
  z-index: 1;
}
.both-warp .footer-image {
  position: absolute;
  left: 0;
  bottom: 0;
  max-width: 355px;
  z-index: 2;
}

.copy-right-warp {
  background-color: var(--headingColor);
}
.copy-right-warp .inner-copy-area {
  max-width: 1190px;
  margin-left: auto;
  padding-bottom: 30px;
  padding-top: 30px;
}
.copy-right-warp .inner-copy-area p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
}
.copy-right-warp .inner-copy-area p a {
  text-decoration-line: underline;
  color: rgba(255, 255, 255, 0.5);
}
.copy-right-warp .inner-copy-area p a:hover {
  color: var(--primaryColor);
}
.copy-right-warp .inner-copy-area p span {
  text-decoration-line: underline;
}
.copy-right-warp .inner-copy-area p span:hover {
  color: var(--primaryColor);
}
.copy-right-warp .inner-copy-area .copy-right-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  text-align: end;
}
.copy-right-warp .inner-copy-area .copy-right-list li {
  display: inline-block;
  position: relative;
  padding-right: 20px;
}
.copy-right-warp .inner-copy-area .copy-right-list li::before {
  content: "";
  position: absolute;
  bottom: 5px;
  right: 7px;
  transform: rotate(22deg);
  width: 1px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
}
.copy-right-warp .inner-copy-area .copy-right-list li:last-child {
  padding-right: 0;
}
.copy-right-warp .inner-copy-area .copy-right-list li:last-child::before {
  display: none;
}
.copy-right-warp .inner-copy-area .copy-right-list li a {
  color: rgba(255, 255, 255, 0.5);
}
.copy-right-warp .inner-copy-area .copy-right-list li a:hover {
  color: var(--primaryColor);
}

/*
Top Header  Warp  Style
======================================================*/
.top-header-warp {
  padding-top: 12px;
  padding-bottom: 12px;
}
.top-header-warp p {
  color: #222;
  margin-bottom: 0;
}
.top-header-warp .top-header-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  text-align: end;
}
.top-header-warp .top-header-list li {
  display: inline-block;
  position: relative;
  padding-left: 25px;
  color: var(--headingColor);
  padding-right: 40px;
}
.top-header-warp .top-header-list li:last-child {
  padding-right: 0;
}
.top-header-warp .top-header-list li img {
  position: absolute;
  left: 0;
  top: 5px;
}
.top-header-warp .top-header-list li a {
  color: var(--headingColor);
}

/*
Hero Style2  Warp  Style
======================================================*/
.hero-style2-warp {
  padding-top: 95px;
  padding-bottom: 125px;
}

.hero-style2-content {
  padding-right: 68px;
}
.hero-style2-content h1 {
  font-size: 125px;
  font-family: Alga;
  line-height: 143px;
  font-weight: 700;
  letter-spacing: -5px;
  margin-bottom: 110px;
}
.hero-style2-content h1 span {
  font-family: Playfair Display;
  font-size: 112px;
  font-style: italic;
  padding: 0 28px;
  width: 503px;
  margin-left: auto;
  display: block;
  z-index: 1;
  position: relative;
}
.hero-style2-content h1 span::before {
  content: "";
  position: absolute;
  top: 15px;
  right: 1px;
  bottom: 0;
  width: 503px;
  z-index: -1;
  height: 124px;
  background-color: var(--primaryColor);
}
.hero-style2-content h1 img {
  padding-left: 90px;
  padding-right: 20px;
  position: relative;
}
.hero-style2-content p {
  max-width: 503px;
  margin-left: auto;
  font-size: 18px;
  margin-bottom: 5px;
}
.hero-style2-content .round-video {
  width: 170px;
  height: 170px;
  line-height: 178px;
  border-radius: 50%;
  text-align: center;
  position: relative;
  z-index: 1;
}
.hero-style2-content .round-video .hero2-shape1 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  animation: rotateme 30s infinite linear;
}
.hero-style2-content .round-video .video-btn {
  width: 66.98px;
  height: 66.98px;
  border-radius: 50%;
  background-color: var(--headingColor);
  text-align: center;
  display: inline-block;
  line-height: 66px;
  font-size: 34px;
  color: var(--primaryColor);
  cursor: pointer;
}
.hero-style2-content .round-video .video-btn i {
  position: relative;
  left: 2px;
}
.hero-style2-content .round-video .video-btn:hover {
  background-color: var(--primaryColor);
  color: var(--headingColor);
}

.hero-style2-image .image2 {
  padding-left: 20px;
}

/*
Hero Style2  Warp  Style
======================================================*/
.resource-content h3 {
  font-size: 50px;
  font-weight: 500;
  margin-bottom: 58px;
}
.resource-content h3 span {
  background: var(--primaryColor);
  padding: 0 8px;
  margin-left: -5px;
  width: auto;
  display: inline-block;
}
.resource-content .counter h1 {
  font-size: 100px;
  font-weight: 700;
  margin-bottom: 2px;
  letter-spacing: -2px;
}
.resource-content .counter p {
  font-size: 18px;
  margin-bottom: 0;
  color: #555;
}
.resource-content .resource-counter {
  margin-bottom: 85px;
}
.resource-content .profession {
  padding-right: 30px;
}
.resource-content .profession h4 {
  color: #222;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 12px;
}
.resource-content .profession h4 span {
  color: #979797;
  font-size: 18px;
  font-weight: 400;
  margin-right: 5px;
  position: relative;
  top: -3px;
}
.resource-content .profession p {
  font-size: 18px;
  margin-bottom: 0;
}
.resource-content .col-lg-5:nth-child(2) .counter {
  margin-left: -45px;
}
.resource-content .col-lg-6:nth-child(2) .profession {
  margin-left: -25px;
  padding-right: 100px;
}

.resource-image {
  margin-left: -115px;
  margin-right: -80px;
}

/*
Service  Warp  Style
======================================================*/
.service-widget {
  padding: 60px 60px 60px 285px;
  position: relative;
  border: 1px solid #222;
}
.service-widget .horse-icon {
  position: absolute;
  left: 60px;
  top: 60px;
}
.service-widget .horse-icon .show {
  transition: var(--transition);
  position: relative;
  left: -4px;
}
.service-widget .horse-icon .hide {
  opacity: 0;
  left: 0;
  position: absolute;
}
.service-widget .horse-icon.style2::before {
  left: 0;
}
.service-widget .content h2 {
  font-size: 50px;
  margin-bottom: 15px;
}
.service-widget .content h2 a {
  color: var(--headingColor);
}
.service-widget .content p {
  font-size: 18px;
  margin-bottom: 30px;
}
.service-widget .content .read-more {
  font-size: 15px;
  color: var(--headingColor);
  font-weight: 500;
}
.service-widget .content .read-more span {
  position: relative;
}
.service-widget .content .read-more span::before {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 1px;
  width: 100%;
  background-color: var(--headingColor);
}
.service-widget .content .read-more i {
  position: relative;
  top: 4px;
  left: 4px;
}
.service-widget::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 0;
  width: 0;
  opacity: 0;
  transition: var(--transition);
  z-index: -1;
  background-color: var(--primaryColor);
}
.service-widget::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  height: 0;
  width: 0;
  transition: var(--transition);
  z-index: -1;
  background-color: var(--primaryColor);
}
.service-widget:hover::after {
  opacity: 1;
  height: 100%;
  width: 70%;
}
.service-widget:hover:before {
  opacity: 1;
  height: 100%;
  width: 30%;
}
.service-widget:hover .horse-icon .show {
  opacity: 0;
}
.service-widget:hover .horse-icon .hide {
  opacity: 1;
}

.service-slider-warp {
  position: relative;
}
.service-slider-warp .swiper-slide {
  width: 875px !important;
}
.service-slider-warp .swiper {
  overflow: inherit;
}
.service-slider-warp .swiper-btn {
  display: flex;
}
.service-slider-warp .swiper-btn .swiper-button-next,
.service-slider-warp .swiper-btn .swiper-button-prev {
  top: var(--swiper-navigation-top-offset, 118%);
}
.service-slider-warp .swiper-btn .swiper-button-next::after,
.service-slider-warp .swiper-btn .swiper-button-prev::after {
  display: none;
}
.service-slider-warp .swiper-btn .swiper-button-next {
  left: auto;
  right: 0;
}
.service-slider-warp .swiper-btn .swiper-button-prev {
  left: auto;
  right: 40px;
}

.service-provide-warp {
  overflow: hidden;
}
.service-provide-warp .service-slide-btn {
  margin-top: 50px;
}
.service-provide-warp .service-slide-btn .default-btn {
  background-color: transparent;
  border: solid 1px var(--headingColor);
}

/*
Choose  Warp  Style
======================================================*/
.choose-content {
  max-width: 845px;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: 60px;
}
.choose-content h3 {
  font-size: 50px;
  margin-bottom: 0;
}
.choose-content h3 span {
  background: var(--primaryColor);
  padding: 0 8px;
  margin-left: -5px;
  width: auto;
  display: inline-block;
}

.choose-image {
  position: relative;
  text-align: center;
  margin-right: -30px;
}
.choose-image .video-btn {
  position: absolute;
  width: 116px;
  height: 116px;
  border-radius: 50%;
  color: var(--headingColor);
  font-size: 45px;
  text-align: center;
  line-height: 116px;
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-58px);
  background-color: var(--primaryColor);
}

.choose-small-widget {
  background: #FFF5D2;
  padding: 100px;
  margin-left: -32px;
}
.choose-small-widget h5 {
  font-size: 28px;
  margin-bottom: 58px;
  line-height: 38px;
  letter-spacing: -0.28px;
}
.choose-small-widget .choose-item {
  margin-bottom: 45px;
  position: relative;
  padding-left: 70px;
}
.choose-small-widget .choose-item .content h1 {
  font-size: 100px;
  font-weight: 700;
  line-height: 0.8;
  margin-bottom: 10px;
}
.choose-small-widget .choose-item .content p {
  font-size: 18px;
}
.choose-small-widget .choose-item .icon {
  position: absolute;
  left: 0;
  top: 10px;
}
.choose-small-widget .round-icon {
  width: 204px;
  height: 204px;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  padding: 77px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--headingColor);
  border: solid 1px #222;
  transition: var(--transition);
  margin-top: 60px;
}
.choose-small-widget .round-icon:hover {
  background-color: var(--primaryColor);
  border-color: var(--primaryColor);
}
.choose-small-widget .round-icon span {
  display: block;
}
.choose-small-widget .round-icon a {
  color: var(--headingColor);
}

/*
Beginners  Warp  Style
======================================================*/
.beginners-content {
  padding-left: 20px;
  margin-right: -15px;
}
.beginners-content h3 {
  font-size: 50px;
  font-weight: 500;
  margin-bottom: 75px;
  margin-right: -20px;
}
.beginners-content h3 span {
  background: var(--primaryColor);
  padding: 0 8px;
  margin-left: -5px;
  width: auto;
  display: inline-block;
}
.beginners-content .content {
  padding-left: 200px;
  padding-right: 30px;
}
.beginners-content .beginners-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 30px;
}
.beginners-content .beginners-list li {
  position: relative;
  padding-left: 38px;
  margin-bottom: 18px;
  font-size: 18px;
  color: var(--headingColor);
  font-weight: 400;
}
.beginners-content .beginners-list li:last-child {
  margin-bottom: 0;
}
.beginners-content .beginners-list li img {
  position: absolute;
  left: 0;
  top: 3px;
}
.beginners-content p {
  font-size: 18px;
}

.beginners-image {
  position: relative;
  margin-right: -100px;
  margin-left: -90px;
}
.beginners-image .round-video {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 170px;
  height: 170px;
  line-height: 178px;
  border-radius: 50%;
  text-align: center;
  z-index: 1;
}
.beginners-image .round-video .hero2-shape1 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  animation: rotateme 30s infinite linear;
}
.beginners-image .round-video .video-btn {
  width: 66.98px;
  height: 66.98px;
  border-radius: 50%;
  background-color: var(--headingColor);
  text-align: center;
  display: inline-block;
  line-height: 66px;
  font-size: 34px;
  color: var(--primaryColor);
  cursor: pointer;
}
.beginners-image .round-video .video-btn i {
  position: relative;
  left: 2px;
}

/*
Review  Warp  Style
======================================================*/
.review-widget {
  padding: 50px;
  border: 1px solid #222;
  background: #F7FFE9;
}
.review-widget.style2 {
  margin-top: 90px;
}
.review-widget .star {
  font-size: 20px;
  color: var(--starColor);
  margin: 0 3px;
}
.review-widget p {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  margin-top: 15px;
  margin-bottom: 35px;
}
.review-widget .user-details {
  display: flex;
  align-items: center;
}
.review-widget .user-details .details {
  margin-left: 20px;
}
.review-widget .user-details .details h4 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 5px;
}
.review-widget .user-details .details span {
  font-size: 18px;
}
.review-widget .user-details .user {
  width: 68px;
  height: 68px;
}
.review-widget .user-details .user img {
  border-radius: 50%;
}

.review-slider-warp {
  position: relative;
}
.review-slider-warp .swiper-slide-next {
  margin-top: 0 !important;
}
.review-slider-warp .swiper-slide {
  transition: var(--transition);
  margin-top: 90px;
}
.review-slider-warp .swiper-btn {
  display: flex;
  position: absolute;
  right: 10%;
  bottom: 25px;
}
.review-slider-warp .swiper-btn .swiper-button-next,
.review-slider-warp .swiper-btn .swiper-button-prev {
  top: var(--swiper-navigation-top-offset, 95%);
}
.review-slider-warp .swiper-btn .swiper-button-next::after,
.review-slider-warp .swiper-btn .swiper-button-prev::after {
  display: none;
}
.review-slider-warp .swiper-btn .swiper-button-next {
  left: auto;
  right: 0;
}
.review-slider-warp .swiper-btn .swiper-button-prev {
  left: auto;
  right: 40px;
}

.review-warp {
  position: relative;
}
.review-warp .review-shape {
  position: absolute;
  top: 178px;
  left: 15%;
  animation: rotateme 30s infinite linear;
}

/*
Question  Warp  Style
======================================================*/
.question-warp .round-icon {
  text-align: end;
}
.question-warp .round-icon a {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  text-align: center;
  margin-left: auto;
  padding: 60px 0;
  font-size: 15px;
  display: inline-block;
  font-weight: 500;
  color: var(--headingColor);
  border: solid 1px #222;
  transition: var(--transition);
  margin-top: 60px;
}
.question-warp .round-icon a:hover {
  background-color: var(--primaryColor);
  border-color: var(--primaryColor);
}
.question-warp .round-icon a span {
  display: block;
}
.question-warp .stylshet-tag {
  margin-bottom: 60px;
  max-width: 860px;
  margin-left: auto;
  margin-right: -15px;
}
.question-warp .stylshet-tag h3 {
  font-size: 50px;
  font-weight: 500;
  margin-bottom: 0;
}
.question-warp .stylshet-tag h3 span {
  background: var(--primaryColor);
  padding: 0 8px;
  margin-left: -5px;
  width: auto;
  display: inline-block;
}

.question-widget {
  padding-right: 48px;
}
.question-widget .accordion {
  background-color: transparent;
}
.question-widget .accordion .accordion-item {
  background-color: transparent;
  border: none;
  border-radius: 0;
  border-bottom: solid 1px #222;
  padding-bottom: 15px;
  margin-bottom: 38px;
}
.question-widget .accordion .accordion-item:last-child {
  margin-bottom: 0;
}
.question-widget .accordion .accordion-item .accordion-button {
  background-color: transparent;
  border: none;
  padding: 0;
  border-radius: 0;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.22px;
  color: var(--headingColor);
  box-shadow: unset;
}
.question-widget .accordion .accordion-item .accordion-button::before {
  top: 50%;
  right: 24px;
  margin-top: 1px;
  content: "\f1d2";
  color: var(--blackColor);
  position: absolute;
  transition: var(--transition);
  transform: translateY(-50%) rotate(180deg);
  font-family: flaticon_mycollection !important;
  font-size: 20px;
}
.question-widget .accordion .accordion-item .accordion-button::after {
  display: none;
}
.question-widget .accordion .accordion-item .accordion-button.collapsed::before {
  transform: translateY(-50%);
}
.question-widget .accordion .accordion-item .accordion-button:focus {
  box-shadow: unset;
}
.question-widget .accordion .accordion-item .accordion-body {
  padding: 18px 0 0 0;
}
.question-widget .accordion .accordion-item .accordion-body p {
  font-size: 18px;
}

/*
Blog  Warp  Style
======================================================*/
.blog-slider-warp {
  position: relative;
}
.blog-slider-warp .swiper-btn {
  display: flex;
  position: absolute;
  right: 0;
  top: -110px;
}
.blog-slider-warp .swiper-btn .swiper-button-next,
.blog-slider-warp .swiper-btn .swiper-button-prev {
  top: var(--swiper-navigation-top-offset, 95%);
}
.blog-slider-warp .swiper-btn .swiper-button-next::after,
.blog-slider-warp .swiper-btn .swiper-button-prev::after {
  display: none;
}
.blog-slider-warp .swiper-btn .swiper-button-next {
  left: auto;
  right: 0;
}
.blog-slider-warp .swiper-btn .swiper-button-prev {
  left: auto;
  right: 40px;
}

.blog-card {
  padding-right: 100px;
  position: relative;
}
.blog-card .image {
  position: relative;
  padding-right: 15px;
}
.blog-card .image .tag {
  position: absolute;
  background: #F7FFE9;
  padding: 8px 65px 8px 28px;
  right: 0;
  top: 0;
}
.blog-card .image .tag a {
  position: relative;
  font-size: 18px;
  font-weight: 400;
  color: var(--headingColor);
  text-decoration-line: underline;
}
.blog-card .image .date {
  position: absolute;
  right: -75px;
  top: 36%;
  letter-spacing: 0.88px;
  transform: rotate(-90deg);
}
.blog-card .content {
  position: absolute;
  bottom: 0;
  right: 0;
  display: inline-block;
  padding: 28px 0 25px 35px;
  background: #F7FFE9;
  max-width: 395px;
}
.blog-card .content h3 {
  font-size: 22px;
  letter-spacing: -0.22px;
  margin-bottom: 15px;
}
.blog-card .content h3 a {
  color: var(--headingColor);
  transition: var(--transition);
}
.blog-card .content h3 a:hover {
  color: var(--primaryColor);
}
.blog-card .content .blog-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.blog-card .content .blog-list li {
  display: inline-block;
  position: relative;
  padding-right: 30px;
  padding-left: 22px;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.18px;
  color: var(--headingColor);
}
.blog-card .content .blog-list li:last-child {
  padding-right: 0;
}
.blog-card .content .blog-list li a {
  color: var(--headingColor);
}
.blog-card .content .blog-list li a:hover {
  color: var(--primaryColor);
}
.blog-card .content .blog-list li i {
  position: absolute;
  left: 0;
}
.blog-card.style2 .image .tag {
  background: #FFF5D0;
}
.blog-card.style2 .content {
  background: #FFF5D0;
}

/*
Main Footer  Warp  Style
======================================================*/
.main-footer {
  background-color: var(--headingColor);
}
.main-footer .col-lg-5:nth-child(2) .footer-widget {
  margin-left: 60px;
}

.main-copy {
  background: #282828;
}
.main-copy .inner-copy-area {
  max-width: 100%;
}

/*
Text Slider  Warp  Style
======================================================*/
.slide-text-warp-style2 {
  height: 105px;
  background-color: var(--primaryColor);
  overflow: hidden;
}
.slide-text-warp-style2 .all-text {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}
.slide-text-warp-style2 .all-text .item {
  margin-left: 100px;
}
.slide-text-warp-style2 .all-text .star {
  position: relative;
  top: -10px;
  margin-left: 5px;
  margin-right: 5px;
}
.slide-text-warp-style2 .all-text .default-btn {
  background-color: var(--headingColor);
  display: inline;
  top: -5px;
  position: relative;
}
.slide-text-warp-style2 .all-text .default-btn span {
  font-size: 16px;
  color: var(--primaryColor);
  top: 0;
}
.slide-text-warp-style2 .all-text .default-btn span::before {
  background-color: var(--primaryColor);
}
.slide-text-warp-style2 .all-text span {
  margin-left: 10px;
  font-size: 36px;
  position: relative;
  top: -5px;
  color: var(--headingColor);
  font-weight: 400;
}

/*
Header Style2 Warp  Style
======================================================*/
.header-style3 {
  background: var(--headingColor);
}
.header-style3 p {
  color: #FFF5D0;
}
.header-style3 .top-header-list li {
  color: #FFF5D0;
}
.header-style3 .top-header-list li a {
  color: #FFF5D0;
}
.header-style3 .top-header-list li img {
  filter: brightness(0) saturate(100%) invert(94%) sepia(10%) saturate(1113%) hue-rotate(322deg) brightness(104%) contrast(108%);
}

/*
hero Style3  Warp  Style
======================================================*/
.hero-style3-warp {
  padding-top: 190px;
  padding-bottom: 170px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.hero-style3-warp .hero3-shape2 {
  position: absolute;
  right: 8%;
  top: 14%;
}

.hero-style3-content h2 {
  font-family: Alga;
  font-size: 116px;
  color: #FFF5D0;
  font-weight: 700;
  letter-spacing: -4.64px;
  margin-bottom: 175px;
  line-height: 1;
}
.hero-style3-content h2 span {
  font-family: Playfair Display;
  font-size: 150px;
  font-weight: 700;
  letter-spacing: -2.25px;
  display: block;
}
.hero-style3-content h2 .middle-tag {
  margin-left: 10px;
}
.hero-style3-content .video-content {
  display: flex;
  align-items: center;
}
.hero-style3-content .video-content .video-round {
  width: 141px;
  height: 141px;
  left: -5px;
  border-radius: 50%;
  position: relative;
  text-align: center;
  line-height: 155px;
  background-color: var(--primaryColor);
}
.hero-style3-content .video-content .video-round .hero3-shape2 {
  position: absolute;
  left: 0;
  top: 20px;
  right: 0;
  margin-left: auto;
  pointer-events: none;
  margin-right: auto;
}
.hero-style3-content .video-content .video-round .video-btn {
  width: 55.554px;
  height: 55.554px;
  line-height: 60px;
  color: var(--primaryColor);
  font-size: 30px;
  display: inline-block;
  border-radius: 50%;
  cursor: pointer;
  background-color: var(--headingColor);
}
.hero-style3-content .video-content .video-round .video-btn i {
  position: relative;
  bottom: 2px;
  left: 1px;
}
.hero-style3-content .video-content h1 {
  font-size: 320px;
  font-weight: 700;
  font-family: Alga;
  letter-spacing: -3.2px;
  -webkit-text-stroke-width: 1px;
  color: transparent;
  position: relative;
  display: inline-block;
  line-height: 215px;
  margin-bottom: 0;
  -webkit-text-stroke-color: rgba(255, 245, 208, 0.1803921569);
  margin-left: 32px;
}
.hero-style3-content .video-content h1 .hero3-image2 {
  position: absolute;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: -80px;
  top: -20px;
}

/*
Experience  Warp  Style
======================================================*/
.experience-content {
  position: relative;
}
.experience-content h3 {
  font-size: 50px;
  font-weight: 500;
  margin-bottom: 0;
  margin-left: -424px;
  margin-right: -20px;
  background: #FFF5D0;
  margin-bottom: 105px;
  padding: 0 0 22px 60px;
}
.experience-content h3 span {
  background: var(--primaryColor);
  padding: 0 8px;
  margin-left: -5px;
  width: auto;
  display: inline-block;
}
.experience-content .choose-item {
  margin-bottom: 70px;
  position: relative;
  padding-left: 70px;
  margin-left: 150px;
}
.experience-content .choose-item.style2 {
  margin-bottom: 0;
}
.experience-content .choose-item .content h1 {
  font-size: 100px;
  font-weight: 700;
  line-height: 0.8;
  margin-bottom: 10px;
}
.experience-content .choose-item .content p {
  font-size: 18px;
}
.experience-content .choose-item .icon {
  position: absolute;
  left: 0;
  top: 10px;
}
.experience-content .round-link {
  width: 204px;
  height: 204px;
  text-align: center;
  border-radius: 50%;
  font-size: 15px;
  font-weight: 500;
  background-color: var(--primaryColor);
  position: absolute;
  padding: 77px 0;
  left: -33%;
  bottom: 15%;
  transition: var(--transition);
  cursor: pointer;
}
.experience-content .round-link:hover {
  background-color: var(--headingColor);
  color: var(--primaryColor);
}
.experience-content .round-link span {
  display: block;
}
.experience-content .round-link a {
  color: var(--headingColor);
}

.experience-imags {
  padding-right: 50px;
}

.experience-warp {
  padding-bottom: 95px;
}

/*
Branding Style2 Warp  Style
======================================================*/
.branding-border {
  border-bottom: solid 1px var(--headingColor);
}

/*
Traning Style2  Warp  Style
======================================================*/
.traning-button.style2 {
  left: -50px;
}
.traning-button.style2 .toggle-button {
  color: #837D70;
  font-size: 18px;
}
.traning-button.style2 .toggle-button.active {
  color: var(--headingColor);
}

/*
Watch  Warp  Style
======================================================*/
.inner-watch-warp {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 435px;
  padding-bottom: 435px;
}
.inner-watch-warp .video-btn {
  position: absolute;
  width: 136px;
  height: 136px;
  line-height: 143px;
  border-radius: 50%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  top: 50%;
  font-size: 60px;
  transform: translateY(-60px);
  color: var(--headingColor);
  background-color: var(--primaryColor);
}
.inner-watch-warp .video-btn:hover {
  background-color: var(--headingColor);
  color: var(--primaryColor);
}
.inner-watch-warp .video-btn i {
  position: relative;
  left: 2px;
  bottom: 2px;
}
.inner-watch-warp h3 {
  position: absolute;
  font-size: 50px;
  background: #FFF5D0;
  top: 0;
  left: 0;
  margin-bottom: 0;
  padding: 35px 90px 50px 148px;
}
.inner-watch-warp .before1 {
  position: absolute;
  width: 240px;
  height: 60px;
  left: 0;
  bottom: 0;
  background-color: var(--primaryColor);
}
.inner-watch-warp .before2 {
  position: absolute;
  width: 310px;
  height: 105px;
  background-color: var(--primaryColor);
  right: 0;
  bottom: 0;
}
.inner-watch-warp .before3 {
  position: absolute;
  width: 310px;
  height: 105px;
  background-color: var(--primaryColor);
  right: 0;
  bottom: 0;
}
.inner-watch-warp .before3 {
  position: absolute;
  width: 155px;
  height: 215px;
  background-color: var(--primaryColor);
  right: 0;
  bottom: 0;
}

.before-watch {
  position: relative;
  z-index: 1;
}
.before-watch::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  width: 100%;
  z-index: -1;
  background-color: var(--primaryColor);
}

/*
Amazing  Warp  Style
======================================================*/
.amazing-content {
  margin-top: -10px;
}
.amazing-content h1 {
  font-family: Alga;
  font-size: 100px;
  letter-spacing: -3px;
  font-weight: 700;
  margin-right: -200px;
  z-index: 1;
  position: relative;
  margin-bottom: 40px;
}
.amazing-content h1 span {
  font-family: Playfair Display;
  font-size: 100px;
  font-style: italic;
  font-weight: 700;
  letter-spacing: -2px;
}
.amazing-content .resource-counter {
  margin-bottom: 60px;
}
.amazing-content .counter h2 {
  font-size: 100px;
  font-weight: 700;
  margin-bottom: 2px;
  letter-spacing: -2px;
}
.amazing-content .counter p {
  font-size: 18px;
  margin-bottom: 0;
  color: var(--headingColor);
}
.amazing-content .package-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.amazing-content .package-list li {
  position: relative;
  margin-bottom: 20px;
  padding-left: 35px;
  font-family: Kanit;
  font-size: 18px;
  font-weight: 400;
  color: var(--headingColor);
}
.amazing-content .package-list li img {
  position: absolute;
  left: 0;
}
.amazing-content .main-p {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 30px;
  line-height: 34px;
  color: var(--headingColor);
}
.amazing-content .content {
  padding-right: 110px;
}
.amazing-content .col-lg-6:nth-child(2) .counter {
  margin-left: 20px;
  margin-right: -10px;
}

.amazing-image {
  position: relative;
  margin-left: -15px;
}
.amazing-image .bg1 {
  position: absolute;
  height: 180px;
  width: 245px;
  background-color: var(--primaryColor);
  left: 0;
  top: 0;
}
.amazing-image .bg2 {
  position: absolute;
  height: 80px;
  width: 250px;
  background-color: var(--primaryColor);
  left: 0;
  bottom: 0;
}

/*
Breakout  Warp  Style
======================================================*/
.breakout-widget {
  position: relative;
}
.breakout-widget .content {
  background-position: center center;
  background-size: 100%;
  background-repeat: no-repeat;
  padding: 50px 50px 90px 50px;
}
.breakout-widget .content .star {
  color: var(--starColor);
  font-size: 20px;
  margin: 0 4px;
}
.breakout-widget .content p {
  margin-top: 8px;
  font-size: 24px;
  line-height: 34px;
  color: var(--headingColor);
  font-weight: 400;
  margin-bottom: 0;
}
.breakout-widget .breakout-details {
  display: flex;
  align-items: center;
  margin-left: 170px;
  margin-top: -10px;
}
.breakout-widget .breakout-details .user {
  width: 68px;
  height: 68px;
}
.breakout-widget .breakout-details .user img {
  border-radius: 50%;
}
.breakout-widget .breakout-details .details {
  margin-left: 15px;
}
.breakout-widget .breakout-details .details h4 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 2px;
}
.breakout-widget .breakout-details .details span {
  font-size: 18px;
  color: #555;
}

.breakout-warp {
  overflow: hidden;
}
.breakout-warp .section-title {
  max-width: 740px;
}
.breakout-warp .breakout-slider-warp {
  position: relative;
}
.breakout-warp .breakout-slider-warp .swiper {
  overflow: inherit;
}
.breakout-warp .breakout-slider-warp .swiper-btn {
  display: flex;
  position: absolute;
  right: 0;
  top: -100px;
}
.breakout-warp .breakout-slider-warp .swiper-btn .swiper-button-next,
.breakout-warp .breakout-slider-warp .swiper-btn .swiper-button-prev {
  top: var(--swiper-navigation-top-offset, 95%);
}
.breakout-warp .breakout-slider-warp .swiper-btn .swiper-button-next::after,
.breakout-warp .breakout-slider-warp .swiper-btn .swiper-button-prev::after {
  display: none;
}
.breakout-warp .breakout-slider-warp .swiper-btn .swiper-button-next {
  left: auto;
  right: 0;
}
.breakout-warp .breakout-slider-warp .swiper-btn .swiper-button-prev {
  left: auto;
  right: 40px;
}

/*
Breakout  Warp  Style
======================================================*/
.ready-content h2 {
  font-family: Alga;
  font-size: 100px;
  letter-spacing: -3px;
  font-weight: 700;
  margin-bottom: 50px;
}
.ready-content h2 span {
  font-family: Playfair Display;
  font-style: italic;
  letter-spacing: -2px;
  display: block;
}
.ready-content p {
  font-size: 24px;
  margin-bottom: 50px;
  color: var(--headingColor);
  font-weight: 400;
  padding-right: 100px;
  line-height: 34px;
}
.ready-content .ready-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.ready-content .ready-list li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 30px;
  font-size: 18px;
  font-weight: 400;
}
.ready-content .ready-list li span {
  color: var(--headingColor);
}
.ready-content .ready-list li a {
  color: var(--headingColor);
}
.ready-content .ready-list li:last-child {
  margin-bottom: 0;
}
.ready-content .ready-list li i {
  position: absolute;
  left: 0;
  top: 0;
}

.ready-form {
  margin-top: 30px;
  padding-left: 150px;
}
.ready-form h3 {
  font-size: 24px;
  margin-bottom: 20px;
}
.ready-form .col-lg-6 {
  width: 100%;
}
.ready-form .form-control {
  height: 52px;
  border: 1px solid #222;
  border-radius: 0;
  padding-left: 20px;
  background-color: transparent;
  margin-bottom: 20px;
  font-size: 18px;
}
.ready-form .form-control:focus {
  box-shadow: unset;
}
.ready-form .form-control:focus::-moz-placeholder {
  color: transparent;
}
.ready-form .form-control:focus::placeholder {
  color: transparent;
}
.ready-form .form-control::-moz-placeholder {
  -moz-transition: var(--transition);
  transition: var(--transition);
  color: rgba(34, 34, 34, 0.65);
}
.ready-form .form-control::placeholder {
  transition: var(--transition);
  color: rgba(34, 34, 34, 0.65);
}
.ready-form .form-select {
  height: 52px;
  border: 1px solid #222;
  border-radius: 0;
  background-color: transparent;
  padding-left: 20px;
  margin-bottom: 20px;
  color: var(--headingColor);
  font-size: 18px;
}
.ready-form .form-select:focus {
  box-shadow: unset;
}
.ready-form textarea {
  height: 113px !important;
  padding-top: 20px;
}
.ready-form .default-btn {
  color: var(--headingColor);
}
.ready-form .default-btn span {
  position: relative;
}
.ready-form .default-btn span::before {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 1px;
  transition: var(--transition);
  width: 100%;
  background-color: var(--headingColor);
}

/*
Inner  Warp  Style
======================================================*/
.inner-hero-warp {
  padding-top: 150px;
  padding-bottom: 160px;
  background-color: var(--headingColor);
  position: relative;
}
.inner-hero-warp .hero-inner-shape1 {
  position: absolute;
  left: 13%;
  top: 10%;
}
.inner-hero-warp .hero-inner-shape2 {
  position: absolute;
  right: 12%;
  top: 15%;
}

.inner-hero-content {
  text-align: center;
}
.inner-hero-content h1, .inner-hero-content h2, .inner-hero-content h3 {
  font-size: 50px;
  font-weight: 500;
  color: #FFF5D0;
  margin-bottom: 5px;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}
.inner-hero-content .inner-hero-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.inner-hero-content .inner-hero-list li {
  display: inline-block;
  padding-right: 30px;
  position: relative;
  color: #FFF5D0;
}
.inner-hero-content .inner-hero-list li:last-child {
  padding-right: 0;
}
.inner-hero-content .inner-hero-list li:last-child::before {
  display: none;
}
.inner-hero-content .inner-hero-list li::before {
  content: "";
  position: absolute;
  top: 13px;
  right: 10px;
  bottom: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #FFF5D0;
}
.inner-hero-content .inner-hero-list li a {
  color: var(--primaryColor);
  font-weight: 600;
}

/*
Inner Services Pages  Style
======================================================*/
.service-caed {
  margin-bottom: 25px;
  border: 1px solid #222;
  padding: 20px;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}
.service-caed .image {
  position: relative;
}
.service-caed .image .icon {
  position: absolute;
  width: 73px;
  height: 62px;
  bottom: 20px;
  left: 20px;
  transition: var(--transition);
  text-align: center;
  background-color: var(--headingColor);
}
.service-caed .image .icon .show {
  position: absolute;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  top: 11px;
  transition: var(--transition);
}
.service-caed .image .icon .hide {
  position: absolute;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  top: 11px;
  opacity: 0;
  transition: var(--transition);
}
.service-caed .content {
  padding-top: 20px;
}
.service-caed .content h3 {
  font-size: 28px;
  margin-bottom: 12px;
}
.service-caed .content h3 a {
  color: var(--headingColor);
}
.service-caed .content .read-more {
  font-size: 15px;
  color: var(--headingColor);
  font-weight: 500;
}
.service-caed .content .read-more span {
  position: relative;
}
.service-caed .content .read-more span::before {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 1px;
  width: 100%;
  background-color: var(--headingColor);
}
.service-caed .content .read-more i {
  position: relative;
  top: 4px;
  left: 4px;
}
.service-caed .content p {
  font-size: 18px;
  margin-bottom: 15px;
  transition: var(--transition);
}
.service-caed::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 0;
  width: 0;
  opacity: 0;
  transition: var(--transition);
  z-index: -1;
  background-color: var(--primaryColor);
}
.service-caed::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  height: 0;
  width: 0;
  transition: var(--transition);
  z-index: -1;
  background-color: var(--primaryColor);
}
.service-caed:hover {
  border-color: var(--primaryColor);
}
.service-caed:hover::after {
  opacity: 1;
  height: 100%;
  width: 70%;
}
.service-caed:hover:before {
  opacity: 1;
  height: 100%;
  width: 30%;
}
.service-caed:hover .content p {
  color: var(--headingColor);
}
.service-caed:hover .image .icon {
  background-color: var(--primaryColor);
}
.service-caed:hover .image .icon .show {
  opacity: 0;
}
.service-caed:hover .image .icon .hide {
  opacity: 1;
}

.details-image {
  margin-bottom: 40px;
}

.details-content {
  max-width: 875px;
  margin-left: auto;
  margin-right: auto;
}
.details-content p {
  font-size: 18px;
}
.details-content .content1 {
  margin-bottom: 40px;
}
.details-content .content1 h2 {
  font-size: 50px;
  letter-spacing: -0.25px;
  margin-bottom: 12px;
  margin-bottom: 20px;
}
.details-content .content2 {
  margin-bottom: 40px;
}
.details-content .content2 h3 {
  font-size: 24px;
  letter-spacing: -0.12px;
}
.details-content .content3 {
  margin-bottom: 40px;
}
.details-content .content3 h3 {
  font-size: 24px;
  letter-spacing: -0.12px;
}
.details-content .content4 {
  margin-bottom: 40px;
  margin-top: 20px;
}
.details-content .content4 h3 {
  font-size: 24px;
  letter-spacing: -0.12px;
}
.details-content .content4 .service-details-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 25px;
}
.details-content .content4 .service-details-list li {
  display: inline-block;
  position: relative;
  padding-left: 18px;
  padding-right: 60px;
  font-size: 18px;
  font-weight: 400;
}
.details-content .content4 .service-details-list li a {
  color: var(--headingColor);
}
.details-content .content4 .service-details-list li:before {
  content: "";
  position: absolute;
  top: 14px;
  left: 0;
  height: 4px;
  width: 4px;
  border-radius: 50%;
  background-color: var(--headingColor);
}
.details-content .details-form h3 {
  font-size: 24px;
  margin-bottom: 20px;
}
.details-content .details-form .form-control {
  height: 52px;
  border: 1px solid #222;
  border-radius: 0;
  padding-left: 20px;
  background-color: transparent;
  margin-bottom: 20px;
  font-size: 18px;
}
.details-content .details-form .form-control:focus {
  box-shadow: unset;
}
.details-content .details-form .form-control:focus::-moz-placeholder {
  color: transparent;
}
.details-content .details-form .form-control:focus::placeholder {
  color: transparent;
}
.details-content .details-form .form-control::-moz-placeholder {
  -moz-transition: var(--transition);
  transition: var(--transition);
  color: rgba(34, 34, 34, 0.65);
}
.details-content .details-form .form-control::placeholder {
  transition: var(--transition);
  color: rgba(34, 34, 34, 0.65);
}
.details-content .details-form .form-select {
  height: 52px;
  border: 1px solid #222;
  border-radius: 0;
  background-color: transparent;
  padding-left: 20px;
  margin-bottom: 20px;
  color: var(--headingColor);
  font-size: 18px;
}
.details-content .details-form .form-select:focus {
  box-shadow: unset;
}
.details-content .details-form textarea {
  height: 192px !important;
  padding-top: 20px;
}
.details-content .details-form .default-btn {
  color: var(--headingColor);
}
.details-content .details-form .default-btn span {
  position: relative;
}
.details-content .details-form .default-btn span::before {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 1px;
  transition: var(--transition);
  width: 100%;
  background-color: var(--headingColor);
}
.details-content .details-form .default-btn:hover {
  background-color: var(--blackColor);
}
.details-content .details-form .default-btn:hover span::before {
  background-color: var(--blackColor);
}

.divide-image {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.divide-image .image {
  margin-bottom: 25px;
}

.pricing-card {
  padding: 60px;
  background-color: var(--headingColor);
  position: relative;
  transition: var(--transition);
  margin: 0 12px;
  z-index: 1;
  margin-bottom: 25px !important;
}
.pricing-card .card-tag {
  position: relative;
  display: flex;
  align-items: end;
  margin-bottom: 15px;
}
.pricing-card .card-tag span {
  position: relative;
  font-size: 16px;
  bottom: 15px;
  left: 5px;
  color: var(--primaryColor);
  transition: var(--transition);
}
.pricing-card .card-tag h2 {
  color: var(--primaryColor);
  margin-bottom: 0;
  letter-spacing: -2.4px;
  font-family: Alga;
  font-size: 80px;
  transition: var(--transition);
  font-weight: 700;
}
.pricing-card .content-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 35px;
}
.pricing-card .content-list li {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 400;
  color: #FFF5D0;
  position: relative;
  padding-left: 25px;
  transition: var(--transition);
}
.pricing-card .content-list li:last-child {
  margin-bottom: 0;
}
.pricing-card .content-list li i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
}
.pricing-card .default-btn {
  color: var(--headingColor);
}
.pricing-card .default-btn span {
  position: relative;
}
.pricing-card .default-btn span::before {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 1px;
  transition: var(--transition);
  width: 100%;
  background-color: var(--headingColor);
}
.pricing-card .default-btn:hover {
  color: var(--whiteColor);
}
.pricing-card .default-btn:hover span::before {
  background-color: var(--whiteColor);
}
.pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 0;
  width: 0;
  opacity: 0;
  transition: var(--transition);
  z-index: -1;
  background-color: var(--primaryColor);
}
.pricing-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  height: 0;
  width: 0;
  transition: var(--transition);
  z-index: -1;
  background-color: var(--primaryColor);
}
.pricing-card:hover::after {
  opacity: 1;
  height: 100%;
  width: 70%;
}
.pricing-card:hover:before {
  opacity: 1;
  height: 100%;
  width: 30%;
}
.pricing-card:hover .card-tag span {
  color: var(--headingColor);
}
.pricing-card:hover .card-tag h2 {
  color: var(--headingColor);
}
.pricing-card:hover .content-list li {
  color: var(--headingColor);
}
.pricing-card:hover .default-btn {
  color: var(--primaryColor);
  background-color: var(--headingColor);
}
.pricing-card:hover .default-btn span::before {
  background-color: var(--primaryColor);
}
.pricing-card:hover .default-btn::before {
  background-color: var(--headingColor);
}
.pricing-card:hover .default-btn::after {
  background-color: var(--headingColor);
}

.inner-pricing-widget {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.staff-details-content {
  margin-left: 90px;
}
.staff-details-content h3 {
  font-size: 32px;
  margin-bottom: 12px;
}
.staff-details-content p {
  font-size: 18px;
}
.staff-details-content .first-p {
  margin-bottom: 25px;
}
.staff-details-content .progress-item {
  margin-bottom: 22px;
}
.staff-details-content .progress-item .progress-content {
  position: relative;
  margin-bottom: 5px;
}
.staff-details-content .progress-item .progress-content p {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0;
  color: var(--headingColor);
}
.staff-details-content .progress-item .progress-content span {
  position: absolute;
  top: 0;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0;
  color: var(--headingColor);
}
.staff-details-content .progress-item .progress {
  height: 4px;
  background: #FFE7B1;
}
.staff-details-content .progress-item .progress-bar {
  background-color: var(--primaryColor);
}
.staff-details-content .social-list {
  list-style: none;
  padding-left: 0;
  margin-top: 35px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
}
.staff-details-content .social-list h3 {
  font-size: 18px;
  margin-bottom: 0;
  font-weight: 400;
}
.staff-details-content .social-list li {
  display: inline-block;
  padding-right: 12px;
}
.staff-details-content .social-list li:last-child {
  padding-right: 0;
}
.staff-details-content .social-list li .icon {
  width: 32px;
  height: 32px;
  line-height: 30px;
  display: inline-block;
  border-radius: 50%;
  text-align: center;
  color: var(--headingColor);
  border: solid 1px rgba(34, 34, 34, 0.17);
}
.staff-details-content .social-list li .icon:hover {
  background-color: var(--primaryColor);
  border-color: var(--primaryColor);
}

.staff-info-content {
  margin-right: -50px;
}
.staff-info-content h3 {
  font-size: 32px;
  margin-bottom: 12px;
}
.staff-info-content .first-p {
  margin-bottom: 25px;
}
.staff-info-content p {
  font-size: 18px;
}

.staff-info-form {
  padding-left: 95px;
}
.staff-info-form h4 {
  font-size: 24px;
  letter-spacing: -0.48px;
  margin-bottom: 20px;
}
.staff-info-form .form-control {
  height: 52px;
  border: 1px solid #222;
  padding-left: 20px;
  margin-bottom: 20px;
  border-radius: 0;
  background-color: transparent;
}
.staff-info-form .form-control:focus {
  box-shadow: unset;
}
.staff-info-form .form-control:focus::-moz-placeholder {
  color: transparent;
}
.staff-info-form .form-control:focus::placeholder {
  color: transparent;
}
.staff-info-form .form-control::-moz-placeholder {
  color: rgba(34, 34, 34, 0.65);
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.staff-info-form .form-control::placeholder {
  color: rgba(34, 34, 34, 0.65);
  transition: var(--transition);
}
.staff-info-form .form-select {
  height: 52px;
  border: 1px solid #222;
  background-color: transparent;
  border-radius: 0;
  margin-bottom: 20px;
  border: 1px solid #222;
  color: var(--headingColor);
  padding-left: 25px;
}
.staff-info-form .form-select:focus {
  box-shadow: unset;
}
.staff-info-form .form-select:focus::-moz-placeholder {
  color: transparent;
}
.staff-info-form .form-select:focus::placeholder {
  color: transparent;
}
.staff-info-form .form-select::-moz-placeholder {
  color: rgba(34, 34, 34, 0.65);
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.staff-info-form .form-select::placeholder {
  color: rgba(34, 34, 34, 0.65);
  transition: var(--transition);
}
.staff-info-form textarea {
  height: 129px !important;
  padding-top: 20px;
}

.asking-content h3 {
  font-size: 50px;
  margin-bottom: 55px;
}
.asking-content h3 span {
  background: var(--primaryColor);
  padding: 0 8px;
  margin-left: -5px;
  width: auto;
  display: inline-block;
}
.asking-content.style3 {
  padding-left: 38px;
}
.asking-content.style2 {
  padding-right: 38px;
}
.asking-content .question-widget {
  padding-right: 0;
}

.login-contact-form {
  padding-left: 75px;
  margin-right: -20px;
}
.login-contact-form .logo {
  margin-bottom: 18px;
  display: block;
}
.login-contact-form h3 {
  font-family: Alga;
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 12px;
}
.login-contact-form .login-input {
  margin-bottom: 15px;
}
.login-contact-form .login-input .form-label {
  font-size: 18px;
  font-weight: 500;
  color: var(--headingColor);
  margin-bottom: 8px;
}
.login-contact-form .login-input .form-control {
  height: 52px;
  border: 1px solid #222;
  padding-left: 20px;
  border-radius: 0;
  background-color: transparent;
}
.login-contact-form .login-input .form-control:focus {
  box-shadow: unset;
}
.login-contact-form .login-input .form-control:focus::-moz-placeholder {
  color: transparent;
}
.login-contact-form .login-input .form-control:focus::placeholder {
  color: transparent;
}
.login-contact-form .login-input .form-control::-moz-placeholder {
  color: rgba(34, 34, 34, 0.65);
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.login-contact-form .login-input .form-control::placeholder {
  color: rgba(34, 34, 34, 0.65);
  transition: var(--transition);
}
.login-contact-form .form-check .form-check-input {
  width: 15px;
  height: 15px;
  position: relative;
  top: 3px;
  border-radius: 2px;
  border: 1px solid #222;
  background-color: transparent;
}
.login-contact-form .form-check .form-check-input:checked {
  background-color: var(--primaryColor);
}
.login-contact-form .form-check .form-check-input:focus {
  box-shadow: unset;
}
.login-contact-form .form-check .form-check-label {
  font-size: 15px;
}
.login-contact-form .form-check .form-check-label a {
  font-weight: 500;
  color: var(--headingColor);
}
.login-contact-form .default-btn {
  width: 100%;
}
.login-contact-form .login-content {
  margin-bottom: 25px;
}
.login-contact-form .login-content p {
  font-size: 15px;
  color: rgba(34, 34, 34, 0.75);
}
.login-contact-form .login-content p a {
  font-weight: 500;
  color: var(--headingColor);
}
.login-contact-form .social-login {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.login-contact-form .social-login li {
  display: inline-block;
  padding-right: 16px;
}
.login-contact-form .social-login li:last-child {
  padding-right: 0;
}
.login-contact-form .social-login li h6 {
  font-size: 15px;
  font-weight: 600;
  padding-right: 10px;
}
.login-contact-form .social-login li .icon {
  width: 102px;
  height: 50px;
  line-height: 49px;
  display: inline-block;
  text-align: center;
  border: 1px solid #222;
}

.account-image {
  padding-right: 15px;
}

.account-warp {
  vertical-align: middle;
  padding-top: 140px;
  padding-bottom: 125px;
}

.account-body {
  background-color: var(--headingColor);
}

.inner-blog-card {
  margin-bottom: 25px;
  padding: 20px;
  border: solid 1px var(--headingColor);
}
.inner-blog-card .image {
  margin-bottom: 20px;
}
.inner-blog-card .content .inb-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 15px;
}
.inner-blog-card .content .inb-list li {
  display: inline-block;
  padding-right: 20px;
}
.inner-blog-card .content .inb-list li:last-child {
  padding-right: 0;
}
.inner-blog-card .content .inb-list li a {
  text-decoration: underline;
  color: #222;
}
.inner-blog-card .content h3 {
  font-size: 24px;
  margin-bottom: 15px;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}
.inner-blog-card .content h3 a {
  color: var(--headingColor);
}
.inner-blog-card .content h3 a:hover {
  color: var(--primaryColor);
}
.inner-blog-card .content .read-more {
  font-size: 15px;
  color: var(--headingColor);
  font-weight: 500;
}
.inner-blog-card .content .read-more span {
  position: relative;
}
.inner-blog-card .content .read-more span::before {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 1px;
  width: 100%;
  background-color: var(--headingColor);
}
.inner-blog-card .content .read-more i {
  position: relative;
  top: 4px;
  left: 4px;
}
.inner-blog-card .image {
  overflow: hidden;
}
.inner-blog-card .image img {
  transition: var(--transition);
}
.inner-blog-card.sticky {
  background-color: #f5dca0;
}
.inner-blog-card:hover .image img {
  transform: scale(1.1);
}

.pagination-area {
  margin-top: 30px !important;
  justify-content: center;
}
.pagination-area .page-numbers {
  margin-right: 12px;
  width: 55px;
  height: 36px;
  line-height: 33px;
  text-align: center;
  border-radius: 0 !important;
  border: 1px solid #222;
  font-size: 17px;
  color: var(--headingColor);
  display: inline-block;
  font-weight: 400;
  transition: var(--transition);
  background-color: transparent;
}
.pagination-area .page-numbers:last-child {
  margin-right: 0;
}
.pagination-area .page-numbers.next {
  background-color: var(--primaryColor);
  border: 1px solid var(--primaryColor);
}
.pagination-area .page-numbers.next i {
  position: relative;
  top: 3px;
}
.pagination-area .page-numbers.prev {
  background-color: var(--primaryColor);
  border: 1px solid var(--primaryColor);
}
.pagination-area .page-numbers.prev i {
  position: relative;
  top: 3px;
}
.pagination-area .page-numbers.current {
  background-color: var(--primaryColor);
  border-color: var(--primaryColor);
}
.pagination-area .page-numbers:hover {
  background-color: var(--primaryColor);
  border-color: var(--primaryColor);
}
.pagination-area .page-numbers .page-numbers {
  width: 55px;
  height: 36px;
  line-height: 33px;
  text-align: center;
  border-radius: 0 !important;
  border: 1px solid #222;
  font-size: 17px;
  color: var(--headingColor);
  font-weight: 400;
  transition: var(--transition);
  background-color: transparent;
}
.pagination-area .page-numbers .page-numbers:focus {
  box-shadow: unset;
}

.blog-small-widget {
  padding-left: 20px;
  margin-top: -10px;
}
.blog-small-widget .blog-input {
  margin-bottom: 55px;
}
.blog-small-widget .blog-input .form-label {
  font-size: 18px;
  font-weight: 500;
  color: var(--headingColor);
  margin-bottom: 5px;
}
.blog-small-widget .blog-input .form-control {
  height: 52px;
  border: solid 1px var(--headingColor);
  padding-left: 20px;
  font-size: 18px;
  font-weight: 300;
  background-color: transparent;
  border-radius: 0;
}
.blog-small-widget .blog-input .form-control:focus {
  box-shadow: unset;
}
.blog-small-widget .blog-input .form-control:focus::-moz-placeholder {
  color: transparent;
}
.blog-small-widget .blog-input .form-control:focus::placeholder {
  color: transparent;
}
.blog-small-widget .blog-input .form-control::-moz-placeholder {
  color: rgba(34, 34, 34, 0.65);
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.blog-small-widget .blog-input .form-control::placeholder {
  color: rgba(34, 34, 34, 0.65);
  transition: var(--transition);
}
.blog-small-widget .all-boxes h3 {
  font-size: 18px;
  font-weight: 500;
  color: var(--headingColor);
  margin-bottom: 20px;
}
.blog-small-widget .recent-blog {
  margin-bottom: 55px;
}
.blog-small-widget .recent-blog .blog-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.blog-small-widget .recent-blog .blog-item .content {
  margin-left: 12px;
}
.blog-small-widget .recent-blog .blog-item .content span {
  color: #616161;
  font-size: 16px;
  display: block;
  margin-bottom: 5px;
}
.blog-small-widget .recent-blog .blog-item .content h3 {
  font-size: 16px;
  margin-bottom: 0;
  font-weight: 500;
}
.blog-small-widget .recent-blog .blog-item .content h3 a {
  color: var(--headingColor);
}
.blog-small-widget .recent-blog .blog-item .image-style {
  width: 100px;
  height: 87px;
}
.blog-small-widget .recent-blog .blog-item .image-style .image {
  width: 100px;
  height: 87px;
}
.blog-small-widget .categories {
  margin-bottom: 55px;
}
.blog-small-widget .categories .catedories-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.blog-small-widget .categories .catedories-list li {
  position: relative;
  margin-bottom: 12px;
}
.blog-small-widget .categories .catedories-list li:last-child {
  margin-bottom: 0;
}
.blog-small-widget .categories .catedories-list li a {
  font-size: 16px;
  font-weight: 400;
  color: var(--headingColor);
}
.blog-small-widget .categories .catedories-list li span {
  position: absolute;
  right: 0;
  font-size: 16px;
  font-weight: 400;
  color: var(--headingColor);
}
.blog-small-widget .tags a {
  display: inline-block;
  padding: 6px 14px;
  line-height: 1;
  font-size: 16px;
  color: var(--headingColor);
  text-align: center;
  font-weight: 400;
  border: 1px solid #222;
  margin: 0 6px 8px 0;
  transition: var(--transition);
}
.blog-small-widget .tags a:hover {
  background-color: var(--primaryColor);
  color: var(--whiteColor);
  border-color: var(--primaryColor);
}
.blog-small-widget .range-slider {
  margin-bottom: 40px;
}
.blog-small-widget .range-slider .slider-container {
  width: 100%;
  text-align: center;
}
.blog-small-widget .range-slider input[type=range] {
  width: 100%;
  -webkit-appearance: none;
  background-color: var(--primaryColor);
  height: 8px;
  outline: none;
}
.blog-small-widget .range-slider .number-value span {
  position: relative;
  top: 6px;
  margin-right: 5px;
  color: var(--headingColor);
}
.blog-small-widget .range-slider input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  background-color: var(--primaryColor);
  border-radius: 50%;
  cursor: pointer;
}
.blog-small-widget .range-slider #sliderValue {
  text-align: start;
  color: var(--headingColor);
  margin-top: 12px;
}
.blog-small-widget .range-slider #rangeSlider {
  background: #EADCAC;
  height: 8px;
}

.details-big-warp .main-image {
  margin-bottom: 25px;
}
.details-big-warp p {
  font-size: 18px;
}
.details-big-warp .details-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 25px;
  margin-left: 0;
}
.details-big-warp .details-list li {
  display: inline-block;
  position: relative;
  padding-right: 30px;
  padding-left: 23px;
  font-size: 18px;
  color: #555;
}
.details-big-warp .details-list li a {
  font-weight: 400;
}
.details-big-warp .details-list li i {
  position: absolute;
  left: 0;
  top: 1px;
}
.details-big-warp .blog-details-info {
  padding-top: 30px;
  padding-bottom: 30px;
  clear: both;
  margin-top: 30px;
  margin-right: 15px;
  border-top: 1px solid #49354e;
  border-bottom: 1px solid #49354e;
}
.details-big-warp .blog-details-info .tags span {
  font-size: 18px;
  letter-spacing: -0.9px;
  margin-right: 10px;
}
.details-big-warp .blog-details-info .tags a {
  letter-spacing: -0.45px;
  display: inline-block;
  border: 1px solid var(--blackColor);
  padding: 7px 15px;
  color: var(--blackColor);
}
.details-big-warp .blog-details-info .tags a:hover {
  background-color: var(--primaryColor);
  color: var(--whiteColor);
}
.details-big-warp .blog-details-info .socials-link {
  text-align: end;
}
.details-big-warp .blog-details-info .socials-link span {
  font-size: 18px;
  margin-right: 15px;
  letter-spacing: -0.9px;
}
.details-big-warp .blog-details-info .socials-link a {
  font-size: 16px;
  margin-right: 15px;
  color: var(--blackColor);
}
.details-big-warp .blog-details-info .socials-link a:hover {
  color: var(--primaryColor);
}
.details-big-warp .blog-details-info .socials-link a:last-child {
  margin-right: 0;
}
.details-big-warp .blockquote, .details-big-warp blockquote {
  position: relative;
  padding: 30px;
  background: #FFEDA4;
  border-left: 6px solid var(--primaryColor);
  margin-top: 40px;
  margin-bottom: 40px;
}
.details-big-warp .blockquote p, .details-big-warp blockquote p {
  font-size: 18px;
  margin-bottom: 0;
  line-height: 28px;
  font-family: var(--fontFamily);
  color: var(--headingColor);
  font-weight: 500;
  margin-bottom: 10px;
}
.details-big-warp .blockquote cite, .details-big-warp blockquote cite {
  color: var(--bodyColor);
  font-style: normal;
}
.details-big-warp .frist-p {
  margin-bottom: 20px;
}
.details-big-warp .style-tag {
  padding: 30px;
  background: #FFEDA4;
  border-left: solid 6px var(--primaryColor);
  margin-top: 35px;
  margin-bottom: 35px;
}
.details-big-warp .style-tag h6 {
  font-size: 18px;
  margin-bottom: 0;
  line-height: 28px;
}
.details-big-warp .content2 {
  margin-top: 30px;
  margin-bottom: 45px;
}
.details-big-warp .content2 h5 {
  font-weight: 500;
  margin-bottom: 12px;
}
.details-big-warp .right-image {
  margin-left: -20px;
}
.details-big-warp .right-image .image2 {
  margin-bottom: 25px;
}
.details-big-warp .left-image {
  padding-right: 20px;
}
.details-big-warp .reply-form {
  margin-top: 50px;
}
.details-big-warp .reply-form h3 {
  font-size: 36px;
  margin-bottom: 20px;
}
.details-big-warp .reply-form .form-control {
  margin-bottom: 20px;
  height: 52px;
  background-color: transparent;
  padding-left: 25px;
  border-radius: 0;
  border: 1px solid #222;
}
.details-big-warp .reply-form .form-control:focus {
  box-shadow: unset;
}
.details-big-warp .reply-form .form-control:focus::-moz-placeholder {
  color: transparent;
}
.details-big-warp .reply-form .form-control:focus::placeholder {
  color: transparent;
}
.details-big-warp .reply-form .form-control::-moz-placeholder {
  color: rgba(34, 34, 34, 0.65);
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.details-big-warp .reply-form .form-control::placeholder {
  color: rgba(34, 34, 34, 0.65);
  transition: var(--transition);
}
.details-big-warp .reply-form textarea {
  height: 253px !important;
  padding-top: 20px;
}
.details-big-warp .reply-form .form-check {
  margin-bottom: 20px;
}
.details-big-warp .reply-form .form-check .form-check-input {
  width: 15px;
  height: 15px;
  position: relative;
  top: 2px;
  background-color: transparent;
  border-radius: 2px;
  border: 1px solid #222;
}
.details-big-warp .reply-form .form-check .form-check-input:checked {
  background-color: var(--primaryColor);
}
.details-big-warp .reply-form .form-check .form-check-input:focus {
  box-shadow: unset;
}
.details-big-warp .reply-form .form-check .form-check-label {
  color: rgba(34, 34, 34, 0.65);
}

.product-content {
  margin-bottom: 30px;
}
.product-content p {
  font-size: 18px;
  margin-bottom: 0;
}
.product-content .form-select {
  max-width: 160px;
  margin-left: auto;
  background-color: transparent;
  border: none;
  padding: 0;
}
.product-content .form-select:focus {
  box-shadow: unset;
}

.product-box {
  margin-bottom: 25px;
  position: relative;
}
.product-box:hover .icon {
  background-color: var(--headingColor);
  color: var(--primaryColor);
}
.product-box:hover .icon-list {
  opacity: 1;
}
.product-box .icon {
  position: absolute;
  font-size: 25px;
  width: 44px;
  height: 44px;
  background-color: transparent;
  transition: all ease 0.5s;
  text-align: center;
  line-height: 49px;
  right: 23px;
  top: 30px;
  transition: var(--transition);
}
.product-box .icon-list {
  position: absolute;
  left: 0;
  right: 0;
  top: 40%;
  margin-left: auto;
  nav-right: auto;
  list-style: none;
  opacity: 0;
  padding-left: 0;
  transition: var(--transition);
  margin-bottom: 0;
  text-align: center;
}
.product-box .icon-list li {
  display: inline-block;
  margin-right: 10px;
}
.product-box .icon-list li:last-child {
  margin-right: 0;
}
.product-box .icon-list li .hover-icon {
  width: 44px;
  display: inline-block;
  height: 42px;
  line-height: 39px;
  text-align: center;
  background-color: var(--whiteColor);
}
.product-box .icon-list li .hover-icon:hover {
  background-color: var(--primaryColor);
}
.product-box .content {
  position: absolute;
  left: 23px;
  bottom: 30px;
}
.product-box .content .star {
  font-size: 18px;
  color: var(--starColor);
  margin: 0 4px;
  position: relative;
  left: -5px;
}
.product-box .content h3 {
  font-size: 22px;
  margin-bottom: 2px;
  margin-top: 0;
}
.product-box .content h3 a {
  color: var(--headingColor);
}
.product-box .content span {
  color: var(--headingColor);
}

.product-small-warp {
  padding-left: 0;
}

.product-big-warp .all-pagination-page {
  justify-content: left;
}

/*
Product  Warp  Style
======================================================*/
.product-slider-warp {
  padding-right: 60px;
}
.product-slider-warp .hero-thumb {
  position: relative;
  margin-top: -95px;
  left: 40px;
}
.product-slider-warp .hero-thumb .watch {
  width: 146px;
  height: 121px;
  cursor: pointer;
  position: relative;
}
.product-slider-warp .hero-thumb .watch::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  transition: var(--transition);
  right: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.4235294118);
}
.product-slider-warp .hero-thumb .watch img {
  width: 146px;
  height: 121px;
}
.product-slider-warp .hero-thumb .swiper-slide {
  margin-right: 26px !important;
  transition: var(--transition);
}
.product-slider-warp .hero-thumb .swiper-slide-thumb-active {
  opacity: 1;
}
.product-slider-warp .hero-thumb .swiper-slide-thumb-active .watch::before {
  background-color: transparent;
}
.product-slider-warp .details-image {
  position: relative;
  margin-bottom: 20px;
}
.product-slider-warp .details-image .details-input {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 400px;
  height: 50px;
}
.product-slider-warp .details-image .details-input .form-control {
  height: 50px;
  width: 0%;
  border: none;
  background-color: var(--whiteColor);
  border-radius: 0;
  transition: var(--transition);
  padding-left: 20px;
  opacity: 0;
}
.product-slider-warp .details-image .details-input .form-control:focus {
  box-shadow: unset;
}
.product-slider-warp .details-image .details-input .form-control:focus::-moz-placeholder {
  color: transparent;
}
.product-slider-warp .details-image .details-input .form-control:focus::placeholder {
  color: transparent;
}
.product-slider-warp .details-image .details-input .form-control::-moz-placeholder {
  color: var(--bodyColor);
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.product-slider-warp .details-image .details-input .form-control::placeholder {
  color: var(--bodyColor);
  transition: var(--transition);
}
.product-slider-warp .details-image .details-input .details-search {
  position: absolute;
  right: 0;
  bottom: 0;
  border: none;
  background-color: var(--whiteColor);
  padding: 14px 15px;
  font-size: 22px;
  line-height: 0;
}
.product-slider-warp .details-image .details-input:hover .form-control {
  opacity: 1;
  width: 100%;
}
.product-slider-warp .details-image .details-input.active .form-control {
  opacity: 1;
  width: 100%;
}

.product-details-warp {
  padding-bottom: 40px;
}

.product-details-content {
  padding-left: 40px;
}
.product-details-content .count-button {
  display: flex;
  align-items: center;
}
.product-details-content .count-button .number-input {
  margin-right: 20px;
  display: flex;
  justify-content: center;
  width: 130px;
  height: 52px;
  line-height: 50px;
  border: 1px solid var(--headingColor);
}
.product-details-content .count-button .number-input .quantity {
  width: 50px;
  border: none;
  height: auto;
  position: relative;
  right: 0;
  background-color: transparent;
  text-align: center;
}
.product-details-content .count-button .number-input .quantity::-webkit-outer-spin-button, .product-details-content .count-button .number-input .quantity::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.product-details-content .count-button .number-input .quantity:focus {
  box-shadow: unset;
}
.product-details-content .count-button .number-input .quantity:focus-visible {
  outline: 0;
}
.product-details-content .count-button .number-input .quantity::-webkit-scrollbar {
  display: none;
}
.product-details-content .count-button .number-input button {
  background-color: transparent;
  border: none;
  font-size: 21px;
}
.product-details-content .count-button .icon {
  width: 60px;
  height: 52px;
  line-height: 50px;
  text-align: center;
  border: 1px solid #222;
  margin-left: 20px;
}
.product-details-content .star {
  font-size: 18px;
  font-weight: 400;
  color: var(--headingColor);
  margin-bottom: 5px;
}
.product-details-content .star i {
  color: var(--starColor);
  position: relative;
  margin-right: 10px;
  top: -1px;
}
.product-details-content h2 {
  font-size: 50px;
  margin-bottom: 15px;
}
.product-details-content p {
  font-size: 18px;
  margin-bottom: 12px;
}
.product-details-content h3 {
  font-size: 30px;
  font-weight: 600;
  padding-bottom: 30px;
  border-bottom: solid 1px #222;
}
.product-details-content .details-list {
  padding-left: 0;
  margin-bottom: 30px;
  margin-top: 25px;
  list-style: none;
}
.product-details-content .details-list li {
  position: relative;
  color: var(--headingColor);
  font-weight: 600;
  margin-bottom: 15px;
}
.product-details-content .details-list li:last-child {
  margin-bottom: 0;
}
.product-details-content .details-list li span {
  position: absolute;
  font-weight: 400;
  color: #555;
  left: 140px;
}

/*
Description  Warp  Style
======================================================*/
.inner-description-warp {
  max-width: 875px;
}
.inner-description-warp .nav-tabs {
  margin-bottom: 30px;
  border: none;
}
.inner-description-warp .nav-tabs .nav-item {
  margin-right: 50px;
}
.inner-description-warp .nav-tabs .nav-item .nav-link {
  border: none;
  background-color: transparent;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  font-size: 22px;
  color: #6F654F;
  font-weight: 500;
}
.inner-description-warp .nav-tabs .nav-item .nav-link.active {
  color: var(--headingColor);
  text-decoration: underline;
}
.inner-description-warp .description p {
  font-size: 18px;
  margin-bottom: 0;
}
.inner-description-warp .warranty-btn {
  display: flex;
  margin-top: 40px;
  align-items: center;
  justify-content: space-between;
}
.inner-description-warp .warranty-btn.style2 {
  margin-top: 20px;
}
.inner-description-warp .warranty-btn .warranty {
  border: none;
  width: 277.333px;
  height: 60px;
  line-height: 60px;
  background: #EBDFE1;
  font-size: 14px;
  font-weight: 700;
  color: #233342;
  text-align: center;
}
.inner-description-warp .warranty-btn .warranty i {
  position: relative;
  padding-right: 20px;
  font-size: 30px;
  line-height: 0;
  top: 10px;
}
.inner-description-warp .use-warp span {
  position: relative;
  color: var(--headingColor);
  padding-left: 25px;
  display: block;
  font-weight: 500;
  margin-bottom: 24px;
}
.inner-description-warp .use-warp span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background-color: #BA898D;
  border-radius: 50%;
}
.inner-description-warp .use-warp .break-coures {
  margin-bottom: 35px;
}
.inner-description-warp .use-warp .break-coures .use-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.inner-description-warp .use-warp .break-coures .use-list li {
  margin-bottom: 11px;
}
.inner-description-warp .use-warp .break-coures .use-list li:last-child {
  margin-bottom: 0;
}
.inner-description-warp .use-warp .break-coures .use-list li span {
  font-weight: 500;
  color: var(--headingColor);
  padding-left: 0;
  padding-right: 10px;
  margin-bottom: 0;
  display: inline-block;
}
.inner-description-warp .use-warp .break-coures .use-list li span::before {
  display: none;
}
.inner-description-warp .use-warp .notes {
  margin-bottom: 60px;
}
.inner-description-warp .use-warp .last-p {
  margin-bottom: 0;
}
.inner-description-warp .customer-review-warp {
  position: relative;
}
.inner-description-warp .customer-review-warp .customer-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.inner-description-warp .customer-review-warp .customer-content .star {
  margin-bottom: 2px;
  font-size: 16px;
}
.inner-description-warp .customer-review-warp .customer-content .star i {
  color: var(--starColor);
}
.inner-description-warp .customer-review-warp .customer-content .star span {
  font-size: 14px;
  font-weight: 800;
  margin-left: 5px;
}
.inner-description-warp .customer-review-warp .customer-review .review-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.inner-description-warp .customer-review-warp .customer-review .review-list li {
  display: flex;
  align-items: center;
  margin-bottom: 3px;
}
.inner-description-warp .customer-review-warp .customer-review .review-list li:last-child {
  margin-bottom: 0;
}
.inner-description-warp .customer-review-warp .customer-review .review-list li:nth-child(1) span::after {
  width: 76px;
}
.inner-description-warp .customer-review-warp .customer-review .review-list li:nth-child(2) span::after {
  width: 14px;
}
.inner-description-warp .customer-review-warp .customer-review .review-list li:nth-child(3) span::after {
  width: 4px;
}
.inner-description-warp .customer-review-warp .customer-review .review-list li:nth-child(4) span::after {
  width: 2px;
}
.inner-description-warp .customer-review-warp .customer-review .review-list li i {
  font-size: 12px;
  color: var(--starColor);
  margin-right: 2px;
}
.inner-description-warp .customer-review-warp .customer-review .review-list li span {
  padding-left: 125px;
  position: relative;
  font-size: 18px;
  font-weight: 500;
  color: var(--bodyColor);
}
.inner-description-warp .customer-review-warp .customer-review .review-list li span::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 7px;
  bottom: 0;
  width: 109px;
  height: 12px;
  background-color: #D4DDEA;
}
.inner-description-warp .customer-review-warp .customer-review .review-list li span::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 7px;
  bottom: 0;
  height: 12px;
  background-color: #617092;
}
.inner-description-warp .customer-review-warp .customer-review .review-list li p {
  color: #A9B0BA;
  font-size: 16px;
  margin-left: 25px;
  margin-bottom: 0;
}
.inner-description-warp .customer-review-warp .comment-item {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: solid 1px var(--headingColor);
}
.inner-description-warp .customer-review-warp .comment-item .comment-details {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.inner-description-warp .customer-review-warp .comment-item .comment-details .user {
  width: 50px;
  height: 50px;
}
.inner-description-warp .customer-review-warp .comment-item .comment-details .user .icon {
  width: 50px;
  height: 50px;
}
.inner-description-warp .customer-review-warp .comment-item .comment-details .user .icon img {
  border-radius: 50%;
}
.inner-description-warp .customer-review-warp .comment-item .comment-details .content {
  margin-left: 12px;
}
.inner-description-warp .customer-review-warp .comment-item .comment-details .content h5 {
  font-weight: 400;
  color: var(--headingColor);
  font-size: 18px;
  margin-bottom: 8px;
}
.inner-description-warp .customer-review-warp .comment-item .comment-details .content h5 span {
  font-size: 14px;
  color: var(--bodyColor);
  margin-left: 10px;
}
.inner-description-warp .customer-review-warp .comment-item .comment-details .content .star {
  font-size: 16px;
}
.inner-description-warp .customer-review-warp .comment-item .comment-details .content .star i {
  color: var(--starColor);
}
.inner-description-warp .customer-review-warp .comment-item .comment-details .content .star span {
  color: var(--headingColor);
  font-size: 16px;
  font-weight: 400;
  margin-left: 5px;
}
.inner-description-warp .customer-review-warp .comment-item .comment-details p {
  margin-bottom: 0;
  color: .inner-description-warp .customer-review-warp .comment-item .comment-details p var(--bodyColor);
}
.inner-description-warp p {
  color: var(--bodyColor);
}

.details-product-warp h1 {
  font-size: 50px;
  margin-bottom: 20px;
}

.contact-card-warp h1 {
  font-family: Alga;
  font-size: 100px;
  letter-spacing: -3px;
  font-weight: 700;
  margin-bottom: 30px;
}
.contact-card-warp h1 span {
  font-style: italic;
  font-weight: 700;
  letter-spacing: -2px;
}

.contact-card {
  padding: 35px;
  border: 1px solid #222;
  margin-bottom: 25px;
  transition: var(--transition);
}
.contact-card .icon {
  width: 100px;
  height: 100px;
  line-height: 100px;
  transition: var(--transition);
  background-color: var(--primaryColor);
  text-align: center;
  margin-bottom: 15px;
}
.contact-card .icon i {
  font-size: 50px;
  color: var(--blackColor);
}
.contact-card a {
  font-size: 32px;
  font-weight: 400;
  display: block;
  color: var(--headingColor);
  line-height: 1.3;
}
.contact-card a:hover {
  color: var(--primaryColor);
}
.contact-card span {
  font-size: 32px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--headingColor);
}
.contact-card:hover {
  border-color: var(--primaryColor);
}
.contact-card:hover .icon {
  background-color: var(--whiteColor);
}

.contact-form-warp h3 {
  font-size: 50px;
  font-weight: 500;
  margin-bottom: 20px;
}
.contact-form-warp .form-control {
  height: 52px;
  border: 1px solid #222;
  background-color: transparent;
  border-radius: 0;
  margin-bottom: 20px;
  border: 1px solid #222;
  color: rgba(34, 34, 34, 0.65);
  padding-left: 25px;
}
.contact-form-warp .form-control:focus {
  box-shadow: unset;
}
.contact-form-warp .form-control:focus::-moz-placeholder {
  color: transparent;
}
.contact-form-warp .form-control:focus::placeholder {
  color: transparent;
}
.contact-form-warp .form-control::-moz-placeholder {
  color: rgba(34, 34, 34, 0.65);
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.contact-form-warp .form-control::placeholder {
  color: rgba(34, 34, 34, 0.65);
  transition: var(--transition);
}
.contact-form-warp textarea {
  height: 248px !important;
  padding-top: 20px;
}
.contact-form-warp .form-select {
  height: 52px;
  border: 1px solid #222;
  background-color: transparent;
  border-radius: 0;
  margin-bottom: 20px;
  border: 1px solid #222;
  color: var(--headingColor);
  padding-left: 25px;
}
.contact-form-warp .form-select:focus {
  box-shadow: unset;
}
.contact-form-warp .form-select:focus::-moz-placeholder {
  color: transparent;
}
.contact-form-warp .form-select:focus::placeholder {
  color: transparent;
}
.contact-form-warp .form-select::-moz-placeholder {
  color: rgba(34, 34, 34, 0.65);
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.contact-form-warp .form-select::placeholder {
  color: rgba(34, 34, 34, 0.65);
  transition: var(--transition);
}

.contact-map-warp .map iframe {
  width: 1320px;
  height: 565px;
}

/*
Cart  Warp  Style
======================================================*/
.cart-widget .table-responsive {
  background: #FEF5D0;
}
.cart-widget thead {
  background: #FEF5D0;
}
.cart-widget thead tr {
  height: 60px;
  line-height: 1;
}
.cart-widget thead tr th {
  padding: 0 0 40px;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 1.2px;
  border-right: solid 1px var(--headingColor);
  border-bottom: solid 1px var(--headingColor);
  background: #FEF5D0;
}
.cart-widget thead tr th:last-child {
  text-align: end;
  border-right: none;
}
.cart-widget thead tr th:first-child {
  text-align: start;
}
.cart-widget tbody {
  background: #FEF5D0;
}
.cart-widget tbody tr {
  height: 142px;
  vertical-align: middle;
}
.cart-widget tbody tr td {
  padding: 30px 0;
  background: #FEF5D0;
  border: solid 1px #222;
}
.cart-widget tbody tr td:first-child {
  border-left: none;
}
.cart-widget tbody tr td:last-child {
  border-right: none;
}
.cart-widget .image-content {
  display: flex;
  align-items: center;
  padding-right: 100px;
}
.cart-widget .image-content .image {
  width: 83px;
  height: 76px;
}
.cart-widget .image-content .image .product-thumbnail {
  width: 83px;
  height: 76px;
}
.cart-widget .image-content .content {
  margin-left: 20px;
}
.cart-widget .image-content .content p {
  color: var(--headingColor);
  font-size: 14px;
}
.cart-widget .image-content .content p span {
  color: var(--headingColor);
  display: inline-block;
}
.cart-widget .image-content .content a {
  font-weight: 600;
  color: var(--headingColor);
  margin-bottom: 8px;
  display: inline-block;
}
.cart-widget .add-to-cart-counter {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-widget .add-to-cart-counter .number-input {
  margin-right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 135px;
  height: 48px;
  line-height: 48px;
  border: 1px solid var(--headingColor);
}
.cart-widget .add-to-cart-counter .number-input .quantity {
  width: 48px;
  border: none;
  height: auto;
  background-color: transparent;
  text-align: center;
}
.cart-widget .add-to-cart-counter .number-input .quantity:focus {
  box-shadow: unset;
}
.cart-widget .add-to-cart-counter .number-input .quantity:focus-visible {
  outline: 0;
}
.cart-widget .add-to-cart-counter .number-input .quantity::-webkit-outer-spin-button, .cart-widget .add-to-cart-counter .number-input .quantity::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.cart-widget .add-to-cart-counter .number-input button {
  background-color: transparent;
  border: none;
  font-size: 21px;
}
.cart-widget .product-subtotal {
  width: 345px;
  text-align: center;
}
.cart-widget .product-subtotal span {
  font-size: 18px;
  color: var(--headingColor);
  font-weight: 400;
}
.cart-widget .product-quantity {
  width: 365px;
  text-align: center;
}
.cart-widget .product-amount {
  width: 260px;
  text-align: right;
}
.cart-widget .product-amount span {
  font-size: 18px;
  color: var(--headingColor);
  font-weight: 400;
}

.coupon-warp {
  margin-top: 30px;
}
.coupon-warp .coupon-input {
  max-width: 575px;
  display: flex;
  align-items: center;
}
.coupon-warp .coupon-input .form-control {
  width: 376px;
  height: 52px;
  border: solid 1px var(--headingColor);
  padding-left: 20px;
  background-color: transparent;
  border-radius: 0;
}
.coupon-warp .coupon-input .form-control:focus {
  box-shadow: unset;
}
.coupon-warp .coupon-input .form-control:focus::-moz-placeholder {
  color: transparent;
}
.coupon-warp .coupon-input .form-control:focus::placeholder {
  color: transparent;
}
.coupon-warp .coupon-input .default-btn {
  margin-left: 20px;
}

.cart-totals {
  max-width: 565px;
}
.cart-totals h3 {
  font-size: 50px;
  margin-bottom: 30px;
}
.cart-totals .total-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.cart-totals .total-list li {
  position: relative;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  color: var(--headingColor);
  padding-bottom: 30px;
  margin-bottom: 20px;
  border-bottom: solid 1px var(--headingColor);
}
.cart-totals .total-list li:last-child {
  border: none;
}
.cart-totals .total-list li span {
  position: absolute;
  right: 0;
}
.cart-totals .total-list li .content-list {
  list-style: none;
  padding-left: 0;
  right: 0;
  margin-bottom: 0;
}
.cart-totals .total-list li .content-list li {
  margin-bottom: 5px;
  display: block;
  padding: 0;
  border: none;
}
.cart-totals .total-list li .content-list li:last-child {
  margin-bottom: 0;
}
.cart-totals .total-list li .content-list li .form-check-input {
  height: 15px;
  width: 15px;
  position: relative;
  top: 8px;
  border: solid 1px var(--headingColor);
  border-radius: 50%;
  background-color: transparent;
}
.cart-totals .total-list li .content-list li .form-check-label {
  font-size: 18px;
  font-weight: 400;
  color: #555;
}
.cart-totals .total-list li .content-list li .form-check-label p {
  font-weight: 600;
  color: var(--headingColor);
  display: inline-block;
}
.cart-totals .total-list li .content-list li .form-check {
  max-width: 150px;
}

/*
Privacy  Warp  Style
======================================================*/
.inner-privacy-warp {
  max-width: 875px;
  margin-left: auto;
  margin-right: auto;
}
.inner-privacy-warp .image {
  margin-bottom: 30px;
}
.inner-privacy-warp .content {
  margin-bottom: 30px;
}
.inner-privacy-warp h3 {
  font-size: 32px;
  margin-bottom: 10px;
}
.inner-privacy-warp h3 {
  font-size: 32px;
  margin-bottom: 10px;
}
.inner-privacy-warp .content9 p {
  margin-bottom: 0;
}

.checkout-form p {
  font-size: 18px;
  font-weight: 400;
  color: #555;
  margin-bottom: 45px;
}
.checkout-form p a {
  font-weight: 400;
  color: var(--headingColor);
}
.checkout-form h3 {
  font-size: 50px;
  margin-bottom: 20px;
}
.checkout-form .check-input {
  margin-bottom: 30px;
}
.checkout-form .check-input .form-label {
  font-size: 18px;
  font-weight: 500;
  color: var(--headingColor);
  margin-bottom: 8px;
}
.checkout-form .check-input .form-control {
  height: 52px;
  border: solid 1px var(--headingColor);
  padding-left: 20px;
  background-color: transparent;
  border-radius: 0;
}
.checkout-form .check-input .form-control:focus {
  box-shadow: unset;
}
.checkout-form .check-input .form-control:focus::-moz-placeholder {
  color: transparent;
}
.checkout-form .check-input .form-control:focus::placeholder {
  color: transparent;
}
.checkout-form .check-input .form-control::-moz-placeholder {
  color: rgba(34, 34, 34, 0.65);
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.checkout-form .check-input .form-control::placeholder {
  color: rgba(34, 34, 34, 0.65);
  transition: var(--transition);
}
.checkout-form .check-input .form-select {
  height: 52px;
  border: solid 1px var(--headingColor);
  padding-left: 20px;
  background-color: transparent;
  color: rgba(34, 34, 34, 0.65);
  border-radius: 0;
}
.checkout-form .check-input .form-select:focus {
  box-shadow: unset;
}
.checkout-form .form-check {
  margin-bottom: 25px;
}
.checkout-form .form-check .form-check-input {
  width: 15px;
  height: 15px;
  border-radius: 2px;
  border: 1px solid #222;
  background-color: transparent;
  position: relative;
  top: 3px;
}
.checkout-form .form-check .form-check-input:checked {
  background-color: var(--blackColor);
}
.checkout-form .form-check .form-check-input:focus {
  box-shadow: unset;
}
.checkout-form .form-check .form-check-label {
  color: #222;
  font-size: 18px;
  font-weight: 400;
}
.checkout-form textarea {
  height: 166px !important;
  padding-top: 20px;
}

.order-warp {
  background: #FFF1B8;
  padding: 30px;
  margin-bottom: 40px;
  margin-top: 70px;
  margin-left: 15px;
}
.order-warp h3 {
  font-size: 35px;
  margin-bottom: 20px;
}
.order-warp .order-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.order-warp .order-list li {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
  font-size: 16px;
  font-weight: 500;
  color: var(--headingColor);
  border-bottom: solid 1px var(--headingColor);
}
.order-warp .order-list li span {
  position: absolute;
  font-size: 18px;
  right: 0;
}
.order-warp .order-list li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.payment-warp {
  background: #FFF1B8;
  padding: 30px;
  margin-left: 15px;
}
.payment-warp h3 {
  font-size: 35px;
  margin-bottom: 20px;
}
.payment-warp .payment-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}
.payment-warp .payment-list li {
  margin-bottom: 15px;
  color: #555;
}
.payment-warp .payment-list li .form-check-input {
  height: 13px;
  width: 13px;
  border: solid 1px var(--headingColor);
  border-radius: 50%;
  background-color: transparent;
  position: relative;
  top: 3px;
}
.payment-warp .payment-list li .form-check-input:focus {
  box-shadow: unset;
}
.payment-warp .payment-list li .form-check-input:checked {
  background-color: var(--headingColor);
}
.payment-warp .default-btn {
  background-color: var(--headingColor);
  color: var(--primaryColor);
}
.payment-warp .default-btn span {
  color: var(--primaryColor);
}
.payment-warp .default-btn span::before {
  background-color: var(--primaryColor);
}

.not-found-area .error-content {
  max-width: 500px;
  margin: auto;
}
.not-found-area .error-content .error-image {
  margin-bottom: 25px;
}
.not-found-area .error-content p {
  margin-bottom: 25px;
  margin-top: 15px;
}

/*
Preloader Area Style*/
.preloader {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
}
.preloader .lds-ripple {
  position: absolute;
  width: 80px;
  height: 80px;
  animation: spin-six 2.5s infinite cubic-bezier(0.17, 0.72, 0.55, 1.66);
  left: 50%;
  top: 50%;
  transform: translate(-40px, -50px);
}
.preloader .preloader-container {
  width: 80px;
  height: 80px;
}
.preloader .petal {
  position: absolute;
  width: 30%;
  height: 50%;
  bottom: 50%;
  left: 50%;
  transform-origin: bottom center;
  border-radius: 50%;
  z-index: 2;
}
.preloader .petal::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  bottom: 0%;
  left: 0%;
  transform-origin: bottom center;
  border-radius: 50%;
  background: var(--primaryColor);
  z-index: 2;
  animation: opacity-nine 0.8s infinite linear;
  opacity: 1;
  border-left: 1px solid var(--primaryColor);
}
.preloader .petal:nth-of-type(6) {
  transform: translate(-50%, 0%) rotate(225deg);
}
.preloader .petal:nth-of-type(6)::before {
  background-color: transparent;
  animation-delay: 0.5s;
}
.preloader .petal:nth-of-type(7) {
  transform: translate(-50%, 0%) rotate(270deg);
}
.preloader .petal:nth-of-type(7)::before {
  background-color: transparent;
  animation-delay: 0.6s;
}
.preloader .petal:nth-of-type(8) {
  transform: translate(-50%, 0%) rotate(315deg);
}
.preloader .petal:nth-of-type(8)::before {
  background-color: transparent;
  animation-delay: 0.7s;
}
.preloader .petal:nth-of-type(1) {
  transform: translate(-50%, 0%);
}
.preloader .petal:nth-of-type(1)::before {
  animation-delay: 0s;
}
.preloader .petal:nth-of-type(2) {
  transform: translate(-50%, 0%) rotate(45deg);
}
.preloader .petal:nth-of-type(2)::before {
  animation-delay: 0.1s;
}
.preloader .petal:nth-of-type(3) {
  transform: translate(-50%, 0%) rotate(90deg);
}
.preloader .petal:nth-of-type(3)::before {
  animation-delay: 0.2s;
}
.preloader .petal:nth-of-type(4) {
  transform: translate(-50%, 0%) rotate(135deg);
}
.preloader .petal:nth-of-type(4)::before {
  animation-delay: 0.3s;
}
.preloader .petal:nth-of-type(5) {
  transform: translate(-50%, 0%) rotate(180deg);
}
.preloader .petal:nth-of-type(5)::before {
  animation-delay: 0.4s;
}
.preloader .petal-1 {
  position: absolute;
  width: 30%;
  height: 50%;
  bottom: 50%;
  left: 50%;
  transform-origin: bottom center;
  border-radius: 50%;
  z-index: -1;
}
.preloader .petal-1::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  bottom: 0%;
  left: 0%;
  transform-origin: bottom center;
  border-radius: 50%;
  background: var(--primaryColor);
  z-index: 2;
  animation: opacity-nine 0.8s infinite linear;
  opacity: 1;
}
.preloader .petal-1:nth-of-type(9) {
  transform: translate(-50%, 0%) rotate(225deg);
}
.preloader .petal-1:nth-of-type(9)::before {
  animation-delay: 0.5s;
}
.preloader .petal-1:nth-of-type(10) {
  transform: translate(-50%, 0%) rotate(270deg);
}
.preloader .petal-1:nth-of-type(10)::before {
  animation-delay: 0.6s;
}
.preloader .petal-1:nth-of-type(11) {
  transform: translate(-50%, 0%) rotate(315deg);
}
.preloader .petal-1:nth-of-type(11)::before {
  animation-delay: 0.7s;
}
.preloader .ball {
  position: absolute;
  width: 28%;
  height: 28%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid var(--primaryColor);
  background: var(--primaryColor);
  z-index: 3;
}
.preloader.preloader-deactivate {
  visibility: hidden;
}
.preloader.preloader-img img {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
}
.preloader .text-center {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: auto;
  font-size: 60px;
  color: var(--primaryColor);
  line-height: 1;
}

@keyframes opacity-nine {
  0% {
    opacity: 1;
  }
  95% {
    opacity: 0.2;
  }
  100% {
    opacity: 0.2;
  }
}
/*================================================
Back to Top CSS
=================================================*/
#backtotop {
  opacity: 0;
  right: 40px;
  z-index: 99;
  width: 50px;
  bottom: 40px;
  height: 50px;
  font-size: 25px;
  transition: 0.5s;
  line-height: 50px;
  color: var(--whiteColor);
  background-color: var(--blackColor);
  animation: border-transform 10s linear infinite alternate forwards;
}
#backtotop:hover {
  background-color: var(--primaryColor);
  color: var(--whiteColor);
}

.go-top.active {
  opacity: 1 !important;
}

@keyframes border-transform {
  0%, 100% {
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }
  14% {
    border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
  }
  28% {
    border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
  }
  42% {
    border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
  }
  56% {
    border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
  }
  70% {
    border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
  }
  84% {
    border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
  }
}
/* ===== Home Page Four & Home Page Five Css Start ======*/
.container-fluid.str-container-fluid {
  max-width: 1720px;
}

.default-btn.style2 {
  padding: 13px 20px 11px 20px;
}
.default-btn.style2::before {
  background-color: #000000;
}
.default-btn.style2::after {
  background-color: #000000;
}
.default-btn.style2:hover {
  color: var(--whiteColor);
}
.default-btn.style2:hover span::before {
  background-color: var(--whiteColor);
}

.pt-100 {
  padding-top: 100px;
}

.navbar.str-navbar-area {
  background: #EAE7E7;
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.03);
}
.navbar.str-navbar-area .others-option .option-item .search-btn {
  bottom: -7px;
  background-color: transparent;
  color: rgb(37, 36, 34);
}
.navbar.str-navbar-area .others-option .option-item .search-btn:hover {
  color: var(--primaryColor);
}
.navbar.str-navbar-area .others-option .option-item .cart-btn {
  top: 3px;
}
.navbar.str-navbar-area .others-option .option-item .cart-btn .icon-image span {
  transition: var(--transition);
  color: var(--headingColor);
  background-color: var(--primaryColor);
  display: inline-block;
}
.navbar.str-navbar-area .others-option .option-item .cart-btn .icon-image img {
  filter: brightness(0) saturate(100%) invert(0%) sepia(86%) saturate(7391%) hue-rotate(216deg) brightness(86%) contrast(93%);
}
.navbar.str-navbar-area .others-option .option-item .cart-btn:hover .icon-image::before {
  color: var(--primaryColor);
  background-color: var(--headingColor);
}
.navbar.str-navbar-area .others-option .option-item .side-bar-btn {
  top: 3px;
  background-color: transparent;
  color: rgb(37, 36, 34);
}
.navbar.str-navbar-area .others-option .option-item .side-bar-btn:hover {
  color: var(--primaryColor);
}
.navbar.str-navbar-area .others-option .option-item .str-contact {
  background: #252422;
  color: #F4BC3E;
  font-family: var(--strFont);
  font-size: 15px;
  font-weight: 500;
  padding: 13px 20px 11px 20px;
}
.navbar.str-navbar-area .others-option .option-item .str-contact a {
  color: var(--whiteColor);
}
.navbar.str-navbar-area .others-option .option-item .str-contact i {
  margin-right: 2px;
  font-size: 18px;
}
.navbar.str-navbar-area .navbar-nav .nav-item {
  margin-left: 22px;
  margin-right: 22px;
}
.navbar.str-navbar-area .navbar-nav .nav-item:first-child {
  margin-left: 0;
}
.navbar.str-navbar-area .navbar-nav .nav-item:last-child {
  margin-right: 0;
}
.navbar.str-navbar-area .navbar-nav .nav-item .nav-link {
  color: #222C26;
  font-family: var(--strFont);
  font-size: 16px;
  font-weight: 600;
}
.navbar.str-navbar-area .navbar-nav .nav-item .dropdown-toggle::before {
  transform: translateY(-47%);
}
.navbar.str-navbar-area .navbar-nav .nav-item .dropdown-toggle.active {
  color: var(--primaryColor);
}
.navbar.str-navbar-area .navbar-nav .nav-item .dropdown-menu {
  top: 91px;
  background: #EAE7E7;
}

.str-hero-area {
  position: relative;
  padding-top: 100px;
  padding-bottom: 150px;
}
.str-hero-area .str-hero-main-image {
  position: relative;
}
.str-hero-area .str-hero-main-image .round-video {
  width: 170px;
  height: 170px;
  line-height: 178px;
  border-radius: 50%;
  text-align: center;
  position: absolute;
  right: 68px;
  bottom: 173px;
  z-index: 1030;
  border: solid 1px rgb(34, 34, 34);
}
.str-hero-area .str-hero-main-image .round-video .video-btn {
  width: 66.98px;
  height: 66.98px;
  border-radius: 50%;
  background-color: #222222;
  text-align: center;
  display: inline-block;
  line-height: 66px;
  font-size: 34px;
  color: #F4BC3E;
  cursor: pointer;
}
.str-hero-area .str-hero-main-image .round-video .video-btn:hover {
  background-color: #F4BC3E;
  color: #222222;
}
.str-hero-area .str-hero-main-image .round-video .round-text {
  position: absolute;
  top: 21px;
  left: 0;
  right: 0;
  z-index: -1;
  margin-left: auto;
  margin-right: auto;
  animation: rotate 5s normal linear infinite;
}
.str-hero-area .str-hero-optional-images {
  margin-top: -485px;
  position: relative;
  z-index: 999;
}
.str-hero-area .str-hero-optional-images .small-image {
  width: 220px;
  height: 220px;
  flex-shrink: 0;
  margin-right: 24px;
  margin-bottom: 108px;
}

.str-hero-content {
  margin-left: -55px;
  max-width: 720px;
  position: relative;
  z-index: 1030;
}
.str-hero-content h1 {
  color: #252422;
  font-family: var(--strFont);
  font-size: 80px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1.6px;
}
.str-hero-content p {
  margin-bottom: 35px;
}
.str-hero-content .default-btn {
  padding: 12px 18px;
  background-color: transparent;
  border: 1px solid #222;
}
.str-hero-content .default-btn::before {
  background-color: var(--primaryColor);
}
.str-hero-content .default-btn::after {
  background-color: var(--primaryColor);
}
.str-hero-content .default-btn:hover {
  border-color: var(--primaryColor);
}

@keyframes rotate {
  0% {
    transform: rotate3d(0, 0, 1, 0deg);
  }
  25% {
    transform: rotate3d(0, 0, 1, 90deg);
  }
  50% {
    transform: rotate3d(0, 0, 1, 180deg);
  }
  75% {
    transform: rotate3d(0, 0, 1, 270deg);
  }
  100% {
    transform: rotate3d(0, 0, 1, 360deg);
  }
}
.str-about-area {
  position: relative;
  z-index: 1;
}
.str-about-area .about-bg-shape {
  position: absolute;
  bottom: 462px;
  z-index: -1;
  pointer-events: none;
}

.str-about-content-widget .str-about-content {
  max-width: 590px;
}
.str-about-content-widget .str-about-content h2 {
  color: #252422;
  font-family: var(--strFont);
  font-size: 46px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
}
.str-about-content-widget .str-about-content p {
  margin-bottom: 34px;
}
.str-about-content-widget .str-about-item {
  max-width: 325px;
  margin-left: auto;
}
.str-about-content-widget .str-about-item .item {
  margin-bottom: 60px;
}
.str-about-content-widget .str-about-item .item:last-child {
  margin-bottom: 0;
}
.str-about-content-widget .str-about-item .item h3 {
  color: #222;
  font-family: var(--strFont);
  font-size: 28px;
  line-height: 1;
  margin-bottom: 10px;
  font-weight: 600;
}
.str-about-content-widget .str-about-item .item h3 span {
  color: #979797;
  font-family: Kanit;
  font-size: 18px;
  font-weight: 400;
  position: relative;
  top: -6px;
}

.str-about-image-widget {
  margin-top: -70px;
}
.str-about-image-widget .str-about-card {
  max-width: 300px;
  padding: 10px;
  background: #252422;
  margin-bottom: 63px;
  transition: var(--transition);
}
.str-about-image-widget .str-about-card:hover {
  transform: translate(10px, -10px);
}
.str-about-image-widget .str-about-card .content {
  padding: 35px 18px 30px 20px;
}
.str-about-image-widget .str-about-card .content h3 {
  color: var(--whiteColor);
  font-family: var(--strFont);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
}
.str-about-image-widget .str-about-card .content a {
  color: #F4BC3E;
  font-family: var(--strFont);
  font-size: 15px;
  font-weight: 500;
}
.str-about-image-widget .str-about-card .content a span {
  text-decoration: underline;
}
.str-about-image-widget .str-about-card .content a i {
  font-size: 22px;
  position: relative;
  top: 4px;
  margin-left: 6px;
}
.str-about-image-widget .str-about-image {
  max-width: 425px;
  margin: auto;
}
.str-about-image-widget .str-about-second-image {
  max-width: 370px;
  margin-left: auto;
  margin-bottom: 63px;
}

.str-text-slider-area {
  overflow: hidden;
  position: relative;
  margin-top: -112px;
  top: -250px;
  z-index: -1;
}
.str-text-slider-area.slide-text-warp .text-slide h1 span {
  font-weight: 700;
  font-family: var(--strFont);
}
.str-text-slider-area.slide-text-warp .text-slide h1 span img {
  position: relative;
  top: -20px;
}

.str-service-image {
  margin-left: -280px;
}

.str-service-content {
  padding-left: 56px;
}
.str-service-content h2 {
  color: #252422;
  font-family: var(--strFont);
  font-size: 46px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 65px;
}
.str-service-content .str-service-item {
  margin-bottom: 70px;
}
.str-service-content .str-service-item:last-child {
  margin-bottom: 0;
}
.str-service-content .str-service-item .icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 30px;
  flex-shrink: 0;
  border: solid 1px transparent;
  background-color: #F4BC3E;
  transition: var(--transition);
}
.str-service-content .str-service-item h3 {
  color: #222;
  font-family: var(--strFont);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: solid 1px rgba(0, 0, 0, 0.1);
}
.str-service-content .str-service-item:hover .icon {
  background-color: transparent;
  border-color: var(--primaryColor);
}

.str-features-area {
  position: relative;
  z-index: 1;
}
.str-features-area .str-features-heading {
  color: #252422;
  font-family: var(--strFont);
  font-size: 46px;
  font-weight: 700;
  line-height: 1.2;
  max-width: 590px;
  margin-bottom: -103px;
}
.str-features-area .col-lg-4:nth-child(1) .str-features-card {
  margin-top: 196px;
}
.str-features-area .col-lg-4:nth-child(2) .str-features-card {
  margin-top: 98px;
}
.str-features-area .str-features-shape {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.str-features-card {
  border: 1px solid #F0F0F0;
  padding: 50px 50px;
  transition: var(--transition);
}
.str-features-card:hover {
  border-color: var(--primaryColor);
  transform: translate(-5px);
}
.str-features-card .icon {
  margin-bottom: 38px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.str-features-card h3 {
  color: #222;
  font-family: var(--strFont);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}
.str-features-card p {
  margin-bottom: 20px;
}
.str-features-card .read-more {
  color: #D6630E;
  font-family: var(--strFont);
  font-size: 15px;
  font-weight: 500;
}
.str-features-card .read-more span {
  text-decoration: underline;
}
.str-features-card .read-more i {
  font-size: 22px;
  position: relative;
  top: 4px;
  margin-left: 6px;
}

.str-section-title {
  text-align: center;
  max-width: 590px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 45px;
}
.str-section-title h2 {
  color: #252422;
  font-family: var(--strFont);
  font-size: 46px;
  font-weight: 700;
  line-height: 1.2;
}

.str-event-item-widget .str-event-item {
  margin-bottom: 40px;
}
.str-event-item-widget .str-event-item:last-child {
  margin-bottom: 0;
}
.str-event-item-widget .str-event-item .image {
  width: 160px;
  height: 200px;
  flex-shrink: 0;
  position: relative;
  margin-right: 28px;
}
.str-event-item-widget .str-event-item .image .date {
  width: 67px;
  height: 66px;
  top: 15px;
  left: 10px;
  padding: 17px 0;
  text-align: center;
  position: absolute;
  background-color: #D6630E;
}
.str-event-item-widget .str-event-item .image .date img {
  position: absolute;
  top: -5px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}
.str-event-item-widget .str-event-item .image .date p {
  color: var(--whiteColor);
  font-family: var(--strFont);
  font-size: 14px;
  line-height: 1;
  margin-bottom: 0;
  font-weight: 600;
  letter-spacing: 1.4px;
}
.str-event-item-widget .str-event-item .image .date span {
  color: var(--whiteColor);
  font-family: var(--strFont);
  font-size: 28px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 2.8px;
}
.str-event-item-widget .str-event-item .content h3 {
  color: #222;
  font-family: var(--strFont);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}
.str-event-item-widget .str-event-item .content p {
  margin-bottom: 16px;
}
.str-event-item-widget .str-event-item .content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.str-event-item-widget .str-event-item .content ul li {
  position: relative;
  margin-bottom: 8px;
}
.str-event-item-widget .str-event-item .content ul li:last-child {
  margin-bottom: 0;
}
.str-event-item-widget .str-event-item .content ul li img {
  position: relative;
  top: -2px;
  margin-right: 5px;
}

.str-event-widget {
  position: relative;
}
.str-event-widget .date-content {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  padding: 25px 25px;
  background: rgba(37, 36, 34, 0.4);
  -webkit-backdrop-filter: blur(50px);
          backdrop-filter: blur(50px);
}
.str-event-widget .date-content .date {
  width: 67px;
  height: 66px;
  padding: 17px 0;
  flex-shrink: 0;
  position: relative;
  margin-right: 28px;
  text-align: center;
  background-color: #D6630E;
}
.str-event-widget .date-content .date img {
  position: absolute;
  top: -5px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}
.str-event-widget .date-content .date p {
  color: var(--whiteColor);
  font-family: var(--strFont);
  font-size: 14px;
  line-height: 1;
  margin-bottom: 0;
  font-weight: 600;
  letter-spacing: 1.4px;
}
.str-event-widget .date-content .date span {
  color: var(--whiteColor);
  font-family: var(--strFont);
  font-size: 28px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 2.8px;
}
.str-event-widget .date-content h3 {
  color: var(--whiteColor);
  font-family: var(--strFont);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 0;
}

.str-video-area {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 294px 0;
}
.str-video-area .video-btn {
  position: relative;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  text-align: center;
  font-size: 45px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #222222;
  z-index: 1;
  background-color: #F4BC3E;
  transition: all ease 0.5s;
}
.str-video-area .video-btn::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 108px;
  height: 108px;
  background-color: #F4BC3E;
  border-radius: 50%;
  animation: pulse-border 1100ms ease-out infinite;
}
.str-video-area .video-btn::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 108px;
  height: 108px;
  background-color: #F4BC3E;
  border-radius: 50%;
  transition: all 200ms;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
.str-testimonial-area {
  padding-top: 185px;
}
.str-testimonial-area .str-testimonial-image {
  position: relative;
  max-width: 356px;
  margin-left: 100px;
  z-index: 1;
}
.str-testimonial-area .str-testimonial-image .small1 {
  position: absolute;
  top: -63px;
  left: -100px;
  transform: rotate(-15deg);
  z-index: -1;
  transition: var(--transition);
}
.str-testimonial-area .str-testimonial-image .small1:hover {
  transform: rotate(0deg);
}
.str-testimonial-area .str-testimonial-image .small3 {
  position: absolute;
  right: -48px;
  bottom: -110px;
  transition: var(--transition);
  transform: rotate(15deg);
}
.str-testimonial-area .str-testimonial-image .small3:hover {
  transform: rotate(0deg);
}

.str-testimonial-slider-warp {
  position: relative;
  margin-left: -60px;
}
.str-testimonial-slider-warp h2 {
  color: #252422;
  font-family: var(--strFont);
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 40px;
}
.str-testimonial-slider-warp .str-testimonial-card {
  padding-right: 15px;
  position: relative;
}
.str-testimonial-slider-warp .str-testimonial-card .icon {
  position: absolute;
  top: -20px;
}
.str-testimonial-slider-warp .str-testimonial-card p {
  color: #555;
  font-weight: 400;
  font-family: var(--strFont);
  font-size: 20px;
  margin-bottom: 32px;
}
.str-testimonial-slider-warp .str-testimonial-card .details h4 {
  color: #252422;
  font-family: Kanit;
  font-size: 16px;
  margin-bottom: 5px;
  font-weight: 700;
}
.str-testimonial-slider-warp .str-testimonial-card .details span {
  font-weight: 300;
  font-family: Kanit;
  display: block;
}
.str-testimonial-slider-warp .swiper-btn {
  display: flex;
  position: relative;
  top: 30px;
}
.str-testimonial-slider-warp .swiper-btn .swiper-button-next,
.str-testimonial-slider-warp .swiper-btn .swiper-button-prev {
  top: var(--swiper-navigation-top-offset, 90%);
}
.str-testimonial-slider-warp .swiper-btn .swiper-button-next::after,
.str-testimonial-slider-warp .swiper-btn .swiper-button-prev::after {
  display: none;
}
.str-testimonial-slider-warp .swiper-btn .swiper-button-next {
  left: auto;
  right: 0;
}
.str-testimonial-slider-warp .swiper-btn .swiper-button-prev {
  left: auto;
  right: 40px;
}

.str-blog-heading {
  margin-bottom: 40px;
}
.str-blog-heading h2 {
  color: #252422;
  font-family: var(--strFont);
  font-size: 46px;
  font-weight: 700;
  max-width: 590px;
  margin-bottom: 0;
}
.str-blog-heading .default-btn {
  background-color: transparent;
  border: 1px solid #222;
}

.str-blog-card {
  position: relative;
  z-index: 2;
}
.str-blog-card ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 16px;
}
.str-blog-card ul li {
  position: relative;
  padding-left: 30px;
}
.str-blog-card ul li img {
  position: absolute;
  left: 0;
  top: 3px;
}
.str-blog-card h3 {
  font-family: var(--strFont);
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 20px;
}
.str-blog-card h3 a {
  color: #222;
}
.str-blog-card h3 a:hover {
  color: var(--primaryColor);
}
.str-blog-card .image {
  overflow: hidden;
}
.str-blog-card .image img {
  transition: var(--transition);
}
.str-blog-card .image:hover img {
  transform: translate(8px);
}

.str-text-slider-area2 {
  background: #222;
  padding-top: 158px;
  height: 100%;
  padding-bottom: 100px;
  overflow: hidden;
  margin-top: -200px;
  z-index: unset;
}
.str-text-slider-area2.slide-text-warp .text-slide {
  position: relative;
  z-index: 999;
}
.str-text-slider-area2.slide-text-warp .text-slide h1 span {
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.2);
  font-family: var(--strFont);
  font-size: 130px;
  font-weight: 700;
  letter-spacing: 2.6px;
}

.mrd-top-header-area {
  background: #252422;
  padding: 12px 0;
}
.mrd-top-header-area .mrd-header-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.mrd-top-header-area .mrd-header-content ul li {
  display: inline-block;
  margin-right: 50px;
  color: #F4BC3E;
  font-family: var(--strFont);
  font-size: 14px;
  font-weight: 400;
}
.mrd-top-header-area .mrd-header-content ul li p {
  color: var(--whiteColor);
}
.mrd-top-header-area .mrd-header-content ul li a {
  color: var(--whiteColor);
}
.mrd-top-header-area .mrd-header-content ul li i {
  margin-right: 2px;
  font-size: 18px;
}
.mrd-top-header-area .mrd-header-content ul li:last-child {
  margin-right: 0;
}

.mrd-hero-area {
  position: relative;
  padding: 125px 0 0 0;
  z-index: 1;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.mrd-hero-area::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(31, 31, 31, 0.7) 9.63%, rgba(31, 31, 31, 0.3) 60.5%);
}
.mrd-hero-area .mrd-hero-shape {
  position: absolute;
  bottom: -85px;
  z-index: -1;
}
.mrd-hero-area .mrd-round-widget {
  width: 180px;
  height: 180px;
  margin-left: auto;
  line-height: 180px;
  flex-shrink: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  text-align: center;
  margin-bottom: 322px;
}
.mrd-hero-area .mrd-round-widget::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  right: 10px;
  left: 10px;
  border-radius: 50%;
  border: solid 1px rgb(34, 34, 34);
}
.mrd-hero-area .mrd-round-widget .round-text {
  position: absolute;
  top: 21px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  animation: rotate 5s normal linear infinite;
}
.mrd-hero-area .mrd-card-widget {
  max-width: 308px;
  position: relative;
  margin-left: auto;
  margin-bottom: -40px;
}
.mrd-hero-area .mrd-card-widget .video-btn {
  position: absolute;
  right: 30px;
  top: 30px;
  width: 66px;
  height: 66px;
  text-align: center;
  display: flex;
  font-size: 30px;
  color: #F4BC3E;
  border-radius: 50%;
  align-items: center;
  transition: var(--transition);
  justify-content: center;
  background-color: rgb(34, 34, 34);
}
.mrd-hero-area .mrd-card-widget .video-btn:hover {
  color: rgb(34, 34, 34);
  background-color: var(--whiteColor);
}
.mrd-hero-area .mrd-card-widget h4 {
  position: absolute;
  background: rgba(37, 36, 34, 0.2);
  -webkit-backdrop-filter: blur(17px);
          backdrop-filter: blur(17px);
  bottom: 10px;
  left: 10px;
  right: 10px;
  padding: 22px 30px;
  color: var(--whiteColor);
  text-align: center;
  font-family: var(--strFont);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 0;
}

.mrd-hero-content {
  max-width: 765px;
}
.mrd-hero-content h1 {
  color: var(--whiteColor);
  font-family: var(--strFont);
  font-size: 80px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.6px;
  margin-bottom: 14px;
}
.mrd-hero-content p {
  color: #E6E6E6;
  font-family: Kanit;
  font-size: 16px;
  padding-right: 100px;
  margin-bottom: 30px;
}
.mrd-hero-content .default-btn {
  color: var(--whiteColor);
  border: 1px solid #D6630E;
  background: #D6630E;
}
.mrd-hero-content .default-btn span::before {
  background-color: var(--whiteColor);
}

.mrd-about-area {
  position: relative;
  z-index: 1;
  padding-top: 40px;
  padding-bottom: 171px;
}
.mrd-about-area .mrd-about-image {
  position: relative;
}
.mrd-about-area .mrd-about-image .mrd-about-shape {
  position: absolute;
  bottom: -70px;
  left: -70px;
}
.mrd-about-area .mrd-about-content {
  margin-bottom: 97px;
  max-width: 390px;
}
.mrd-about-area .mrd-about-content h2 {
  color: #252422;
  font-family: var(--strFont);
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 22px;
}
.mrd-about-area .mrd-about-content p {
  padding-right: 50px;
}
.mrd-about-area .mrd-about-widget {
  padding-left: 42px;
  margin-bottom: 40px;
}
.mrd-about-area .mrd-about-widget .label {
  width: 117.26px;
  height: 112.391px;
  flex-shrink: 0;
  padding: 27px 0;
  text-align: center;
  margin-right: 18px;
}
.mrd-about-area .mrd-about-widget .label span {
  color: var(--whiteColor);
  font-family: var(--strFont);
  font-size: 26px;
  font-weight: 700;
  display: block;
  margin-bottom: -10px;
}
.mrd-about-area .mrd-about-widget .label p {
  color: var(--whiteColor);
  font-family: var(--strFont);
  font-size: 15px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.75px;
}
.mrd-about-area .mrd-about-widget h3 {
  color: #222;
  font-family: var(--strFont);
  font-size: 28px;
  font-weight: 600;
}
.mrd-about-area .mrd-about-widget .label-content {
  margin-bottom: 20px;
}
.mrd-about-area .mrd-about-shape2 {
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  right: 0;
}

.inner-mrd-service-area {
  background: #252422;
  position: relative;
  padding: 120px 0;
}
.inner-mrd-service-area .mrd-service-heading {
  text-align: center;
  color: var(--whiteColor);
  font-family: var(--strFont);
  font-size: 46px;
  font-weight: 700;
  max-width: 590px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 42px;
}
.inner-mrd-service-area .mrd-services-warp {
  position: relative;
}
.inner-mrd-service-area .mrd-services {
  padding: 40px 20px 40px 40px;
  border-left: solid 1px rgb(60, 59, 58);
  transition: var(--transition);
}
.inner-mrd-service-area .mrd-services:hover {
  border-color: var(--primaryColor);
}
.inner-mrd-service-area .mrd-services .icon {
  margin-bottom: 50px;
}
.inner-mrd-service-area .mrd-services h3 {
  color: var(--whiteColor);
  font-family: var(--strFont);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
}
.inner-mrd-service-area .mrd-services p {
  color: #AFAFAF;
}
.inner-mrd-service-area .swiper-btn .swiper-button-next::before, .inner-mrd-service-area .swiper-btn .swiper-button-prev::before {
  color: rgb(214, 99, 14);
}

.mrd-course-content {
  padding-right: 80px;
}
.mrd-course-content h3 {
  color: #252422;
  font-family: var(--strFont);
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 28px;
}

.mrd-courses-area {
  overflow: hidden;
  position: relative;
}
.mrd-courses-area .mrd-courses-slider {
  margin-right: -400px;
}
.mrd-courses-area .mrd-course-card .image {
  position: relative;
  margin-bottom: 40px;
}
.mrd-courses-area .mrd-course-card .image .tag {
  color: #D6630E;
  font-family: Kanit;
  position: absolute;
  bottom: 20px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2.8px;
  line-height: 1;
  padding: 15px 20px;
  background-color: var(--whiteColor);
}
.mrd-courses-area .mrd-course-card h3 {
  color: #222;
  font-family: var(--strFont);
  font-size: 28px;
  font-weight: 600;
  padding-bottom: 18px;
  margin-bottom: 22px;
  border-bottom: solid 1px rgba(0, 0, 0, 0.1);
}
.mrd-courses-area .mrd-course-card p {
  margin-bottom: 15px;
}
.mrd-courses-area .mrd-course-card .details-link {
  color: rgb(214, 99, 14);
  font-size: 24px;
}
.mrd-courses-area .course-shape {
  position: absolute;
  bottom: 250px;
  left: 28%;
}

.mrd-choose-area .choose-content h3 {
  font-family: var(--strFont);
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 45px;
}
.mrd-choose-area .choose-small-widget h5 {
  margin-bottom: 70px;
  line-height: 34px;
  letter-spacing: 0;
  font-family: var(--strFont);
  font-size: 28px;
  font-weight: 600;
}
.mrd-choose-area .choose-small-widget .choose-item {
  margin-bottom: 60px;
}
.mrd-choose-area .choose-small-widget .choose-item .content h1 {
  margin-bottom: 14px;
  color: #222;
  font-family: var(--strFont);
  font-size: 80px;
  font-weight: 700;
}
.mrd-choose-area .choose-small-widget .choose-item .content p {
  font-size: 16px;
}

.mrd-staff-area {
  margin-top: 80px;
}
.mrd-staff-area .mrd-staff-heading {
  color: #252422;
  text-align: center;
  font-family: var(--strFont);
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 35px;
}
.mrd-staff-area .staff-details-box .content h3 {
  margin-bottom: 12px;
  font-family: var(--strFont);
  font-size: 28px;
  font-weight: 600;
}
.mrd-staff-area .staff-details-box .content h3:hover a {
  color: var(--primaryColor);
}
.mrd-staff-area .staff-details-box .content p {
  font-size: 16px;
}
.mrd-staff-area .staff-details-box .content h5 {
  color: #222;
  font-family: Kanit;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 0;
}

.mrd-question-content {
  padding-right: 40px;
}
.mrd-question-content h2 {
  color: #252422;
  font-family: var(--strFont);
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 55px;
  margin-right: -30px;
}
.mrd-question-content .accordion {
  background-color: transparent;
}
.mrd-question-content .accordion .accordion-item {
  background-color: transparent;
  border: none;
  border-radius: 0;
  border-bottom: solid 1px rgba(34, 34, 34, 0.1);
  padding-bottom: 13px;
  margin-bottom: 33px;
}
.mrd-question-content .accordion .accordion-item:last-child {
  margin-bottom: 0;
}
.mrd-question-content .accordion .accordion-item .accordion-button {
  background-color: transparent;
  border: none;
  padding: 0;
  border-radius: 0;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.22px;
  color: var(--headingColor);
  box-shadow: unset;
}
.mrd-question-content .accordion .accordion-item .accordion-button:after {
  background-image: url(../img/accordion.svg);
  background-size: 14px;
}
.mrd-question-content .accordion .accordion-item .accordion-button:focus {
  box-shadow: unset;
}
.mrd-question-content .accordion .accordion-item .accordion-body {
  padding: 10px 0 0 0;
}
.mrd-question-content .accordion .accordion-item .accordion-body p {
  font-size: 16px;
}

.mrd-text-slider {
  background-color: transparent;
  padding-bottom: 50px;
  padding-top: 80px;
  height: 100% !important;
}
.mrd-text-slider h3 {
  font-family: var(--strFont);
  font-size: 36px;
  font-weight: 500;
}
.mrd-text-slider h3 .default-btn {
  background: #F4BC3E;
  color: #252422;
  top: -10px;
}
.mrd-text-slider h3 .default-btn span {
  margin-bottom: 0;
}
.mrd-text-slider h3 .default-btn span::before {
  background-color: #252422;
}
.mrd-text-slider h3 .default-btn::before {
  background-color: #000000;
}
.mrd-text-slider h3 .default-btn::after {
  background-color: #000000;
}
.mrd-text-slider h3 .default-btn:hover {
  color: var(--whiteColor);
}
.mrd-text-slider h3 .default-btn:hover span::before {
  background-color: var(--whiteColor);
}
.mrd-text-slider h3 img {
  position: relative;
  top: -10px;
}

.str-footer-area .footer-widget h3 {
  font-family: var(--strFont);
}

.slide-text-warp-style2 h3 {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  font-size: 36px;
}
.slide-text-warp-style2 h3 .item {
  margin-left: 100px;
}
.slide-text-warp-style2 h3 span {
  margin-left: 10px;
}

.partner-style2 .branding-warp {
  padding-bottom: 100px;
}

.choose-small-widget .round-icon {
  position: relative;
  margin-top: 10px;
  left: 86px;
}

/* ===== Home Page Four & Home Page Five Css End ======*//*# sourceMappingURL=sintra-main-style.css.map */